@charset "UTF-8";
/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.column_blog.flex {
  gap: 100px;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .column_blog.flex {
    gap: 0;
  }
}

.blog_content {
  flex: 1;
}
@media screen and (max-width: 820px) {
  .blog_content {
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
}
.blog_content .archive_box {
  gap: 40px 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blog_content .archive_box a {
  color: #333;
}
.blog_content .archive_box .archive_content {
  width: calc(33.3333333333% - 14px);
}
@media screen and (max-width: 767px) {
  .blog_content .archive_box .archive_content {
    width: 100%;
  }
}
.blog_content .archive_box .thumbnail {
  aspect-ratio: 4/3;
  margin-bottom: 5px;
  overflow: hidden;
  border: 1px solid #eee;
}
.blog_content .archive_box .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.blog_content .archive_box .archive_title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.blog_content .archive_box .excerpt {
  margin-bottom: 5px;
}
.blog_content .archive_box .excerpt,
.blog_content .archive_box .date {
  font-size: 1.5rem;
}
.blog_content .archive_box .content_box:hover .thumbnail img {
  transform: scale(110%);
}
.blog_content .single_content .blog_title {
  border-bottom: 2px solid #333;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.6;
  padding: 10px;
}
.blog_content .single_content .date {
  margin-bottom: 30px;
}
.blog_content .single_content a {
  color: #70bf83;
  text-decoration: underline;
}
.blog_content .single_content p {
  line-height: 1.7;
  padding-bottom: 10px;
}
.blog_content .single_content img {
  margin: 0 auto 20px auto;
  text-align: center;
  display: block;
  height: auto;
}
.blog_content .single_content li {
  list-style-type: disc;
}
.blog_content .single_content table th,
.blog_content .single_content table td {
  border: 1px solid #ccc;
}
.blog_content .single_content .content_box {
  padding: 20px 0 80px;
}

/*------サイドバナー------------------------------*/
.blog_side {
  width: 20%;
}
@media screen and (max-width: 820px) {
  .blog_side {
    width: 100%;
    margin-bottom: 60px;
  }
}
.blog_side .banner_wrap li {
  margin-bottom: 15px;
}
.blog_side .wiget_title {
  background: #70bf83;
  color: #fff;
  padding: 10px;
  margin-bottom: 20px;
}
.blog_side ul li {
  border-bottom: 1px solid #ccc;
}
.blog_side ul li:first-child {
  border-top: none;
}
.blog_side ul li:link, .blog_side ul li:visited {
  color: #666666;
}
.blog_side ul li a {
  font-size: 1.4rem;
  color: #333;
  padding: 0.5em;
  display: block;
}
.blog_side .monthly_archive {
  overflow-y: auto;
  margin-top: 30px;
  height: 250px;
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .blog_side .monthly_archive {
    height: auto;
  }
}

/*------ページング------------------------------*/
.paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .paging {
    flex-wrap: wrap;
    margin: 20px 0;
  }
}
.paging div {
  min-width: 160px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .paging div {
    width: calc(50% - 3px);
  }
  .paging div.prev {
    order: 2;
    margin-left: auto;
  }
  .paging div.listback {
    order: 3;
    width: 100%;
  }
}
.paging div a {
  display: block;
  padding: 10px 20px;
  background: #62b9ca;
  color: #fff;
  border: 1px solid #62b9ca;
}
.paging div.listback a {
  position: relative;
  background: #fff;
  color: #62b9ca;
}
@media screen and (max-width: 767px) {
  .paging div.listback a {
    width: 100%;
  }
}
.paging a {
  color: #70bf83;
  font-weight: 500;
}

/*------ページネーション------------------------------*/
.pagination {
  width: 100%;
}
@media screen and (max-width: 820px) {
  .pagination {
    margin-bottom: 30px;
  }
}

.page_numbers {
  padding: 7px 10px;
  border: 1px solid #70bf83;
  color: #70bf83;
  text-decoration: none;
  display: inline;
  margin-right: 5px;
  line-height: 1;
}
.page_numbers.current, .page_numbers:hover {
  background: #70bf83;
  color: #fff;
}

/*----------------------------------------------------
	TITLE
----------------------------------------------------*/
.blog_content .content_box h2:nth-of-type(1) {
  margin-top: 0;
}
.blog_content h2:not(.blog_title) {
  margin-top: 60px;
  margin-bottom: 35px;
  padding: 20px 30px;
  border-left: 9px solid #70bf83;
  background-color: #fff;
  font-weight: normal;
  border-bottom: none;
  font-size: 22px;
}
.blog_content h3:not(.archive_title) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-bottom: 4px;
  padding-left: 15px;
  border-bottom: 3px solid #e0e0e0;
  font-weight: normal;
  font-size: 20px;
}
.blog_content h3:not(.archive_title)::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 198px;
  height: 3px;
  background-color: #70bf83;
  content: "";
}
.blog_content h4 {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  font-weight: normal;
  font-size: 18px;
}
.blog_content h4::before {
  display: inline-block;
  margin-right: 5px;
  color: #f08336;
  content: "\f058";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}

@media screen and (max-width: 820px) {
  .blog_content h2:not(.blog_title) {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 10px 25px;
  }
  .blog_content h3 {
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .blog_content h4 {
    margin-top: 20px;
    margin-bottom: 5px;
  }
}
/*----------------------------------------------------
	お客様の声
----------------------------------------------------*/
.single_star {
  color: #ff8300;
  font-size: 3rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .single_star {
    text-align: center;
  }
}
.single_star .title {
  font-size: 2rem;
  background: #62b9ca;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  margin-right: 10px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .single_star .title {
    display: block;
    margin-right: 0;
  }
}
.single_star .num {
  margin-left: 10px;
  font-size: 3.8rem;
  font-weight: 700;
}

.voice_content .age,
.voice_content .plan_name {
  font-size: 1.8rem;
}
.voice_content .age span,
.voice_content .plan_name span {
  font-size: 1.6rem;
  background: #eee;
  color: #333;
  padding: 5px 10px;
  border-radius: 4px;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .voice_content .age span,
.voice_content .plan_name span {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .voice_content .plan_name {
    width: 48%;
  }
}
.voice_content .voice_infomation_right {
  width: calc(100% - 200px);
}
@media screen and (max-width: 767px) {
  .voice_content .voice_infomation_right {
    width: 100%;
    margin-bottom: 20px;
  }
}
.voice_content .voice_infomation_right .flex {
  flex-wrap: wrap;
  gap: 0;
}
.voice_content .voice_infomation_right .flex p {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_infomation_right .flex p {
    width: 100%;
  }
}

.voice_content_single .flex {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .voice_content_single .flex {
    flex-wrap: wrap;
  }
}
.voice_content_single .voice_date {
  text-align: right;
}
.voice_content_single .voice_infomation_left {
  width: 200px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .voice_content_single .voice_infomation_left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.voice_content_single .voice_infomation_left p:first-of-type {
  padding: 2% 1%;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  margin-bottom: 10px;
  text-align: center;
}
.voice_content_single .voice_infomation_left .voice_icon {
  margin-bottom: 10px;
}
.voice_content_single .initial {
  font-size: 2rem;
  padding-bottom: 10px;
}
.voice_content_single .voice_info_title {
  border-left: 3px solid #70bf83;
  border-bottom: 1px solid #666;
  margin-bottom: 1em;
  padding-left: 0.5em;
}
.voice_content_single .voice_info_title::before {
  content: none;
}
.voice_content_single .voice-text {
  margin: 15px 0;
  background: #fafafa;
  padding: 20px 15px;
  border-radius: 5px;
  font-weight: normal;
}

.voice_content_archives .voice_flex {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .voice_content_archives .voice_flex {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .voice_content_archives .voice_icon {
    width: 90px;
    display: inline-block;
  }
}
.voice_content_archives .single_star {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .voice_content_archives .single_star {
    line-height: 1.4;
    text-align: center;
  }
  .voice_content_archives .single_star span {
    margin-right: 0;
    display: block;
  }
}

/*----------------------------------------------------
	事例
----------------------------------------------------*/
.case_archives .case_link {
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .case_archives .case_link {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.case_archives .case_link .item {
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .case_archives .case_link .item {
    max-width: 100%;
  }
  .case_archives .case_link .item.seller, .case_archives .case_link .item.user {
    width: 48%;
  }
}
.case_archives .case_link .item a {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  box-shadow: 2px 2px 0 #333;
  text-align: center;
  border-radius: 10px;
  padding: 10px 0;
  margin: 0 auto;
  background: #fff;
  color: #f7ac75;
  border: 1px solid #333;
  transition: all 0.3s;
}
.case_archives .case_link .item a:hover {
  background: #f7ac75;
  color: #fff;
  opacity: 1;
}
.case_archives .case_link .item.stay a {
  background: #f7ac75;
  color: #fff;
}
/*# sourceMappingURL=style-blog.css.map */