@charset "UTF-8";
#content_wrapper {
  margin-top: 0;
}

/* -----------------------------------------------------
MV
----------------------------------------------------- */
.wrap_mv {
  max-width: 1400px;
  margin: 0 auto;
}
.wrap_mv.mv_type_custom,
.wrap_mv:has(.swiper.carousel) {
  max-width: none;
  margin: 0;
}

/* MV 画像 */
.mv_type_img img {
  width: 100%;
}

/* MV スライダー */

/* ベース */
.mv_type_slider {
  opacity: 0;
  transition: opacity 0.5s;
}
.mv_type_slider:has(.swiper-initialized) {
  opacity: 1;
}

.mv_type_slider .swiper-wrapper {
  display: none;
}
.mv_type_slider .swiper-initialized .swiper-wrapper {
  display: flex;
}

.mv_type_slider .swiper-wrapper {
  height: auto;
}

.mv_type_slider .swiper-slide img {
  width: 100%;
  height: auto;
}

.mv_type_slider .swiper-pagination {
  position: static;
  margin-top: 14px;
}

.mv_type_slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.mv_type_slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

.mv_type_slider .swiper-pagination-bullet {
  background-color: var(--gray_color_dark);
  height: 12px;
  width: 12px;
}

.mv_type_slider .swiper-button_wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.mv_type_slider .swiper-button_inner {
  position: relative;
  height: 100%;
}

.mv_type_slider .swiper-button:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.mv_type_slider .swiper-button-prev {
  left: var(--side_padding);
}

.mv_type_slider .swiper-button-next {
  right: var(--side_padding);
  transform: rotate(180deg);
}

.mv_type_slider .swiper-button::before,
.mv_type_slider .swiper-button::after {
  margin: auto;
  top: 0;
  bottom: 0;
  left: 22px;
  content: '';
  position: absolute;
}

.mv_type_slider .swiper-button::before {
  background: transparent;
  transform: rotate(-135deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--black_color);
  border-right: 2px solid var(--black_color);
}

@media (max-width: 1000px) {
  .mv_type_slider .swiper-button {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
  .mv_type_slider .swiper-button::before {
    width: 9px;
    height: 9px;
    left: 19px;
  }
}
@media (max-width: 767px) {
  .mv_type_slider .swiper-button {
    width: 36px;
    height: 36px;
    margin-top: -18px;
    box-shadow: 0px 0px 3px #afafaf;
  }

  .mv_type_slider .swiper-button::before {
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--black_color);
    border-right: 1px solid var(--black_color);
    left: 16px;
  }

  .mv_type_slider .swiper-button::after {
    display: none;
  }
  .mv_type_slider .swiper-pagination {
    margin-top: 10px;
  }
}

/* スライド、フェイド */
.mv_type_slider .slide .swiper-button,
.mv_type_slider .fade .swiper-button {
  width: 52px;
  height: 52px;
  margin-top: -27px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 4px #afafaf;
  opacity: 0;
  transition: opacity 0.5s;
}

.mv_type_slider .slide .swiper-wrapper:hover + .swiper-button_wrapper .swiper-button,
.mv_type_slider .slide .swiper-button_wrapper:hover .swiper-button,
.mv_type_slider .fade .swiper-wrapper:hover + .swiper-button_wrapper .swiper-button,
.mv_type_slider .fade .swiper-button_wrapper:hover .swiper-button {
  opacity: 1;
}

/* カルーセル */
.mv_type_slider:has(.carousel) {
  overflow: hidden;
}

.mv_type_slider .carousel {
  width: 100%;
  max-width: 1300px;
  overflow: visible;
  margin-bottom: 16px;
}

.mv_type_slider .carousel .swiper-button_wrapper {
  padding: 0 11.5%;
}

.mv_type_slider .carousel .swiper-button {
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background-color: var(--gray_color_dark);
}

.mv_type_slider .carousel .swiper-button-prev {
  left: -72px;
}

.mv_type_slider .carousel .swiper-button-next {
  right: -72px;
}
.mv_type_slider .carousel .swiper-button::before,
.mv_type_slider .carousel .swiper-button::after {
  left: 0;
  right: 0;
}
.mv_type_slider .carousel .swiper-button::before {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.mv_type_slider .carousel .swiper-button::after {
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 1.5px;
  background-color: #fff;
}
@media (max-width: 1000px) {
  .mv_type_slider .carousel .swiper-button {
    width: 46px;
    height: 46px;
    margin-top: -23px;
  }
  .mv_type_slider .carousel .swiper-button-prev {
    left: -58px;
  }

  .mv_type_slider .carousel .swiper-button-next {
    right: -58px;
  }
  .mv_type_slider .carousel .swiper-button::before {
    width: 10px;
    height: 10px;
  }

  .mv_type_slider .carousel .swiper-button::after {
    width: 13px;
  }
}
@media (max-width: 767px) {
  .mv_type_slider .slide .swiper-button,
  .mv_type_slider .fade .swiper-button {
    width: 36px;
    height: 36px;
    margin-top: -18px;
    box-shadow: 0px 0px 3px #afafaf;
    opacity: 1;
  }
  .mv_type_slider .carousel {
    margin-bottom: 0;
  }

  .mv_type_slider .carousel.swiper {
    overflow: hidden;
  }

  .mv_type_slider .carousel .swiper-button_wrapper {
    padding: 0;
  }

  .mv_type_slider .carousel .swiper-button {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .mv_type_slider .carousel .swiper-button-prev {
    left: var(--side_padding);
  }

  .mv_type_slider .carousel .swiper-button-next {
    right: var(--side_padding);
  }

  .mv_type_slider .carousel .swiper-button::before {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    left: 16px;
    right: auto;
  }

  .mv_type_slider .carousel .swiper-button::after {
    display: none;
  }
}

/* -----------------------------------------------------
公開物件数表示
----------------------------------------------------- */
.wrap_bukken_post_count,
.wrap_bukken_post_count dl,
.wrap_bukken_post_count dd {
  display: flex;
}
.wrap_bukken_post_count {
  gap: 14px 20px;
  justify-content: center;
  line-height: 1;
  flex-wrap: wrap;
}
.wrap_bukken_post_count dl {
  gap: 10px;
  justify-content: center;
}
.wrap_bukken_post_count dl,
.wrap_bukken_post_count dd {
  align-items: baseline;
}
.wrap_bukken_post_count dd {
  gap: 2px;
}
.wrap_bukken_post_count dd strong {
  color: var(--main_color);
  font-size: 3.4rem;
}
@media (max-width: 767px) {
  .wrap_bukken_post_count dl.total_count {
    width: 100%;
  }
  .wrap_bukken_post_count dd strong {
    font-size: 3.2rem;
  }
}

/* -----------------------------------------------------
こだわり検索
----------------------------------------------------- */
.wrap_kodawari ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 2%;
}
.wrap_kodawari li {
  width: 32%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrap_kodawari figure {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.wrap_kodawari figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap_kodawari a:hover figure img {
  transform: scale(1.04);
}
.wrap_kodawari figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .wrap_kodawari ul {
    gap: 14px 2%;
  }
  .wrap_kodawari figcaption {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .wrap_kodawari ul {
    gap: 12px 2%;
  }
  .wrap_kodawari figcaption {
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .wrap_kodawari ul {
    gap: 10px 3%;
  }
  .wrap_kodawari li {
    width: 48.5%;
  }
  .wrap_kodawari figcaption {
    font-size: 1.4rem;
  }
}

/* -----------------------------------------------------
ごあいさつ
----------------------------------------------------- */
.greeting {
  background-color: var(--gray_color_super_light);
  padding: 60px 0;
  text-align: center;
}
.wrap_greeting p {
  margin-bottom: 1.5em;
}
.wrap_greeting p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .wrap_greeting p {
    text-align: left;
  }
}

/* -----------------------------------------------------
フリーコンテンツ
----------------------------------------------------- */
.wrap_free_contents {
  display: flex;
  flex-flow: column;
  gap: 60px;
  overflow: hidden;
}

.wrap_free_contents .content {
  display: flex;
  max-width: var(--contents_width);
  padding-left: var(--side_padding);
  padding-right: var(--side_padding);
  margin: auto;
  gap: 5%;
  width: 100%;
}

.wrap_free_contents .wrap_content:nth-child(even) .content {
  flex-direction: row-reverse;
}
.wrap_free_contents .wrap_content h2,
.wrap_free_contents .wrap_content h3 {
  text-align: left;
}

.wrap_free_contents .content .image {
  width: 47.5%;
  flex: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
  margin-right: calc(50% - 50vw);
}
.wrap_free_contents .content_1 .image {
  background-image: url(../../images/page/page_top_free_contents_1.jpg);
}
.wrap_free_contents .content_2 .image {
  background-image: url(../../images/page/page_top_free_contents_2.jpg);
}

.wrap_free_contents .wrap_content:nth-child(even) .image {
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
.wrap_free_contents .content .image img {
  object-fit: cover;
  height: 100%;
  height: calc(100% - 60px);
}
.wrap_free_contents .content .text {
  width: 47.5%;
}
.wrap_free_contents .content .text p {
  margin-bottom: 1.5em;
}
.wrap_free_contents .content .text p:last-child {
  margin-bottom: 0;
}
.wrap_free_contents .content .text p:last-child {
  margin-bottom: 0;
}

.wrap_free_contents .content .text p.more {
  text-align: left;
}

@media (max-width: 1200px) {
  .wrap_free_contents .content {
    gap: 3%;
  }
  .wrap_free_contents .content .image {
    width: 40%;
  }
  .wrap_free_contents .content .text {
    width: 57%;
  }
}
@media (max-width: 900px) {
  .wrap_free_contents .content {
    gap: 3%;
  }
  .wrap_free_contents .content .image {
    width: 38%;
  }
  .wrap_free_contents .content .text {
    width: 59%;
  }
}
@media (max-width: 767px) {
  .wrap_free_contents {
    gap: 40px;
  }
  .wrap_free_contents .content,
  .wrap_free_contents .wrap_content:nth-child(even) .content {
    flex-flow: column;
    gap: 16px;
  }
  .wrap_free_contents .content .image,
  .wrap_free_contents .wrap_content:nth-child(even) .image {
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: auto;
    margin: 0;
  }
  .wrap_free_contents .content .text {
    width: 100%;
  }
}

/* -----------------------------------------------------
店舗紹介動画
----------------------------------------------------- */
.wrap_shop_movie {
  aspect-ratio: 16 / 9;
}
.wrap_shop_movie iframe {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------
店舗地図
----------------------------------------------------- */
.wrap_shop_map {
  position: relative;
  width: 100%;
  padding-top: 380px;
  overflow: hidden;
  background-color: #fff;
}
/* 地図に色をつける場合はafterのコメントアウトを解除 */
/*
.wrap_shop_map::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--main_color_light);
  opacity: 0.35;
  position: absolute;
  top: 0;
  left: 0;
}
*/
.wrap_shop_map iframe {
  position: absolute;
  top: -190px;
  left: 0;
  width: 100%;
  height: calc(100% + 190px + 190px);
  pointer-events: none;
  filter: grayscale(100%);
}

/* -----------------------------------------------------
TikTok
----------------------------------------------------- */
.wrap_tiktok .taggbox .tb_onsite_upload_btn_wrap {
  display: none;
}
.wrap_tiktok .taggbox .tb_swiper .swiper-wrapper {
  justify-content: center;
}
.tb_post_modal_body_container button,
.tb_subtree_container button {
  background-color: transparent !important;
}
@media (max-width: 767px) {
  .wrap_tiktok .taggbox .tb_swiper .swiper-wrapper {
    justify-content: normal;
  }
}

/* -----------------------------------------------------
バナー
----------------------------------------------------- */
.wrap_banner {
  display: flex;
  flex-flow: column;
  gap: 36px;
}
.wrap_banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wrap_banner ul.column_1 {
  gap: 30px;
}
.wrap_banner ul.column_2 {
  gap: 24px 4%;
}
.wrap_banner ul.column_3 {
  gap: 20px 2.75%;
}
.wrap_banner li {
  display: block;
}
.wrap_banner ul.column_1 li {
  width: 100%;
}
.wrap_banner ul.column_2 li {
  width: 48%;
}
.wrap_banner ul.column_3 li {
  width: 31.5%;
}
.wrap_banner li img {
  width: 100%;
}
.wrap_banner li a:hover img {
  opacity: 0.85;
}
@media (max-width: 900px) {
  .wrap_banner ul.column_2 {
    gap: 20px 4%;
  }
  .wrap_banner ul.column_3 {
    gap: 14px 2.75%;
  }
}
@media (max-width: 640px) {
  .wrap_banner ul.column_3 {
    gap: 18px 4%;
  }
  .wrap_banner ul.column_3 li {
    width: 48%;
  }
}




/* ============================================================
カスタマイズ
============================================================ */
/* ------------------------------------
MV
------------------------------------ */
.wrap_mv {
  width: 100%;
  position: relative;
  }
.wrap_mv::before,
.wrap_mv::after {
  display: block;
  z-index: 1;
  position: absolute;
  content: '';
  }
.wrap_mv .catch {
  display: flex;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  }
.wrap_mv .catch h1 {
  margin-bottom: 18px;
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.15rem;
  }
.wrap_mv .catch p {
  color: var(--third_color);
  letter-spacing: 0.3rem;
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .wrap_mv {
    height: 690px;
    }
  .wrap_mv::before,
  .wrap_mv::after {
    height: 690px;
    }
  .wrap_mv::before {
    width: calc(50% + 180px);
    top: 0;
    right: 0;
    background: url(../../images/top/mv_pht01.jpg) no-repeat left bottom / cover;
    }
  .wrap_mv::after {
    width: calc(50% - 210px);
    bottom: -120px;
    left: 0;
    background: url(../../images/top/mv_pht02.jpg) no-repeat right bottom / cover;
    }
  .wrap_mv .catch {
    width: 48%;
    max-width: 600px;
    min-height: 300px;
    padding: 24px 4% 30px;
    right: 50%;
    }
  .wrap_mv .catch h1 {
    font-size: 3.4rem;
    font-size: clamp(2.4rem,3.125vw,3.4rem);
    line-height: 1.6;
    text-align: left;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .wrap_mv {
    height: calc(100vh - 50px);
    }
  .wrap_mv::before,
  .wrap_mv::after {
    height: calc(50vh + 45px);
    }
  .wrap_mv::before {
    width: 92%;
    bottom: 0;
    left: 0;
    background: url(../../images/top/mv_pht01.jpg) no-repeat 80% 100% / cover;
    }
  .wrap_mv::after {
    width: 92%;
    top: 0;
    right: 0;
    background: url(../../images/top/mv_pht02.jpg) no-repeat right bottom / cover;
    }
  .wrap_mv .catch {
    width: 84%;
    height: 270px;
    margin: auto;
    padding: 30px 7.5% 36px;
    top: 0;
    left: 0;
    right: 0;
    }
  .wrap_mv .catch h1 {
    font-size: 2.1rem;
    line-height: 1.4;
    text-align: center;
    }
  .wrap_mv .catch p {
    text-align: center;
    }

} /* end ＞767 */
/* 1200＜ --------------------------- */
@media (min-width: 1200px) {

  .wrap_mv .catch {
    padding: 24px 60px 30px;
    }

} /* end 1200＜ */



/* ------------------------------------
お知らせ
------------------------------------ */
.front_page section.news h2 {
  margin-bottom: 0;
  color: var(--black_color);
  font-weight: 500;
  letter-spacing: 0.2rem;
  }
.front_page section.news .more a {
  padding: 0.9em 0;
  background-color: var(--sub_color);
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  }
.front_page section.news .more a::after {
  width: 28px;
  height: 1px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -14px;
  background-color: #e2c9a3;
  border: none;
  transform: rotate(0deg);
  }
.front_page section.news .post_list p.date {
  padding-top: 0.2rem;
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.news {
    max-width: 1200px;
    padding-left: calc(50% - 140px);
    }
  .front_page section.news {
    display: flex;
    justify-content: space-between;
    }
  .front_page section.news .wrap_title {
    width: 190px;
    }
  .front_page section.news h2 {
    font-size: 2.7rem;
    text-align: left;
    }
  .front_page section.news .more {
    width: 180px;
    margin-top: 15px;
    text-align: left;
    }
  .front_page section.news .more a {
    width: 11em;
    }
  .front_page section.news .wrap_news {
    width: calc(100% - 210px);
    max-width: 510px;
    }
  .post_list_wrapper.news article {
    gap: 24px;
    }
  .front_page section.news .post_list p.date {
    font-size: 1.4rem;
    }
  .front_page section.news .post_list p.title a {
    font-size: 1.6rem;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.news {
    padding: 0 6%;
    }
  .front_page section.news h2 {
    font-size: 2.4rem;
    text-align: center;
    }
  .front_page section.news .more {
    margin-top: 30px;
    text-align: center;
    }
  .front_page section.news .more a {
    width: 14em;
    }
  .front_page section.news .wrap_news {
    margin-top: 24px;
    }
  .front_page section.news .post_list p.date {
    font-size: 1.3rem;
    }
  .front_page section.news .post_list p.title a {
    font-size: 1.5rem;
    }

} /* end ＞767 */
/* 1200＜ --------------------------- */
@media (min-width: 1200px) {

  .front_page section.news {
    width: 1200px;
    padding-left: 460px;
    }

} /* end 1200＜ */



/* ------------------------------------
このようなお悩みはありませんか？
------------------------------------ */
.front_page section.suggestion {
  background-color: var(--sub_color_super_light);
  }
.front_page section.suggestion .wrap_suggestion {
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  }
.front_page section.suggestion h2 {
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.3rem;
  }
.front_page section.suggestion figure {
  padding: 0 30px;
  }
.front_page section.suggestion figure img {
  width: 100%;
  max-width: 450px;
  display: block;
  }
.front_page section.suggestion ul li {
  padding-left: 48px;
  position: relative;
  list-style: none;
  color: var(--third_color);
  font-weight: 500;
  }
.front_page section.suggestion ul li+li {
  margin-top: 12px;
  }
.front_page section.suggestion ul li::before {
  width: 27px;
  height: 27px;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #fff;
  border: 2px solid #ddc6b4;
  content: '';
  }
.front_page section.suggestion ul li.checked::after {
  width: 25px;
  height: 17px;
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  background: url(../../images/top/suggestion_check.png) no-repeat 0 0 / contain;
  content: '';
  }
/* answer */
.front_page section.suggestion .answer {
  width: 100%;
  position: relative;
  bottom: -60px;
  background-color: #fff;
  box-shadow: 10px 15px 0 #ede9e2;
  }
.front_page section.suggestion .answer h3 {
  margin-bottom: 0.6em;
  color: var(--third_color);
  font-weight: 500;
  }
.front_page section.suggestion .answer p {
  line-height: 1.8;
  text-align: center;
  }
/* btn */
.front_page section.suggestion .answer .btn {
  margin-top: 24px;
  }
.front_page section.suggestion .answer .btn a {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--sub_color);
  transition: 0.2s;
  color: #fff;
  letter-spacing: 0.3rem;
  text-decoration: none;
  text-align: center;
  }
.front_page section.suggestion .answer .btn a:hover {
  background-color: var(--sub_color_light);
  }
.front_page section.suggestion .answer .btn a::after {
  width: 40px;
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  background-color: #e2c9a3;
  content: '';
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.suggestion {
    padding-top: 75px;
    }
  .front_page section.suggestion h2 {
    font-size: 3.7rem;
    }
  .front_page section.suggestion h2 span.line1 {
    display: inline-block;
    }
  .front_page section.suggestion h2 span.line1::after {
    width: 100%;
    height: 9px;
    display: block;
    background: url(../../images/top/suggestion_wave.png) repeat-x center center / contain;
    content: '';
    }
  .front_page section.suggestion .bundle {
    display: flex;
    justify-content: center;
    align-items: center;
    }
  .front_page section.suggestion figure {
    width: 50%;
    }
  .front_page section.suggestion figure img {
    margin-left: auto;
    }
  .front_page section.suggestion ul {
    width: 50%;
    }
  .front_page section.suggestion ul li {
    font-size: 1.8rem;
    }
  /* answer */
  .front_page section.suggestion .answer {
    padding: 48px 60px;
    margin-top: -15px;
    }
  .front_page section.suggestion .answer h3 {
    font-size: 3.6rem;
    letter-spacing: 0.3rem;
    }
  .front_page section.suggestion .answer h3 span {
    font-size: 2.7rem;
    }
  .front_page section.suggestion .answer p {
    font-size: 1.6rem;
    }
  /* btn */
  .front_page section.suggestion .answer .btn a {
    max-width: 420px;
    padding: 18px 6px;
    font-size: 1.8rem;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.suggestion {
    padding-top: 60px;
    }
  .front_page section.suggestion h2 {
    font-size: 2.5rem;
    }
  .front_page section.suggestion h2 span.line2 {
    display: inline-block;
    }
  .front_page section.suggestion h2 span.line2::after {
    width: 100%;
    height: 9px;
    display: block;
    background: url(../../images/top/suggestion_wave.png) repeat-x center center / contain;
    content: '';
    }
  .front_page section.suggestion figure {
    width: 100%;
    }
  .front_page section.suggestion figure img {
    margin: 0 auto;
    }
  .front_page section.suggestion ul {
    width: 100%;
    max-width: 360px;
    margin: 30px auto 0;
    }
  .front_page section.suggestion ul li {
    font-size: 1.6rem;
    }
  /* answer */
  .front_page section.suggestion .answer {
    padding: 36px 6%;
    margin-top: -30px;
    }
  .front_page section.suggestion .answer h3 {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    }
  .front_page section.suggestion .answer h3 span {
    display: block;
    font-size: 1.7rem;
    }
  .front_page section.suggestion .answer p {
    font-size: 1.4rem;
    }
  /* btn */
  .front_page section.suggestion .answer .btn a {
    max-width: 240px;
    padding: 14px 6px;
    font-size: 1.6rem;
    }

} /* end ＞767 */



/* ------------------------------------
ご状況に応じたサポート内容
------------------------------------ */
.front_page section.support {
  width: 100%;
  margin: 0 auto;
  }
.front_page section.support h2 {
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.3rem;
  }
.front_page section.support .wrap_support dl {
  margin-top: 20px;
  position: relative;
  background-color: var(--main_color_super_light);
  }
.front_page section.support .wrap_support dd.tag {
  position: absolute;
  top: 30px;
  left: -10px;
  background-color: var(--main_color);
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  text-align: center;
  }
.front_page section.support .wrap_support dd.tag::before {
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #899fbf transparent transparent;
  content: '';
  }
.front_page section.support .wrap_support dd.tag span {
  display: block;
  }
.front_page section.support .wrap_support dt {
  color: var(--main_color);
  }
.front_page section.support .wrap_support dd.txt {
  margin-top: 15px;
  line-height: 1.8;
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.support {
    max-width: 1200px;
    padding: 160px 30px 40px;
    }
  .front_page section.support h2 {
    padding: 0 30px;
    font-size: 3.4rem;
    }
  .front_page section.support .wrap_support {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
  .front_page section.support .wrap_support dl {
    width: 48%;
    padding: 40px 30px 40px 120px;
    }
  .front_page section.support .wrap_support dd.tag {
    width: 90px;
    height: 90px;
    padding-top: 23px;
    font-size: 1.4rem;
    }
  .front_page section.support .wrap_support dd.tag::before {
    top: 90px;
    }
  .front_page section.support .wrap_support dd.tag span {
    font-size: 2.7rem;
    letter-spacing: 0.6rem;
    }
  .front_page section.support .wrap_support dt {
    font-size: 2.4rem;
    }
  .front_page section.support .wrap_support dt small {
    font-size: 1.8rem;
    }
  .front_page section.support .wrap_support dd.txt {
    font-size: 1.4rem;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.support {
    padding: 120px 30px 40px;
    }
  .front_page section.support h2 {
    padding: 0 6%;
    font-size: 2.4rem;
    line-height: 1.5;
    }
  .front_page section.support .wrap_support dl {
    width: 100%;
    padding: 30px 6% 30px 90px;
    }
  .front_page section.support .wrap_support dd.tag {
    width: 70px;
    height: 70px;
    padding-top: 14px;
    font-size: 1.2rem;
    }
  .front_page section.support .wrap_support dd.tag::before {
    top: 70px;
    }
  .front_page section.support .wrap_support dd.tag span {
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
    }
  .front_page section.support .wrap_support dt {
    font-size: 2.1rem;
    line-height: 1.5;
    }
  .front_page section.support .wrap_support dt small {
    font-size: 1.6rem;
    }
  .front_page section.support .wrap_support dd.txt {
    font-size: 1.3rem;
    }

} /* end ＞767 */



/* ------------------------------------
知っておきたい買取と仲介の違い
------------------------------------ */
.front_page section.comparison {
  padding: 0 30px;
  background-color: var(--sub_color_super_light);
  }
.front_page section.comparison .wrap_comparison {
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
  }
.front_page section.comparison .hl {
  margin-bottom: 15px;
  }
.front_page section.comparison .hl::before {
  width: 107px;
  height: 96px;
  display: block;
  background: url(../../images/top/comparison_icn.png) no-repeat 0 0 / contain;
  content: '';
  }
.front_page section.comparison h2 {
  margin-bottom: 0;
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.4;
  text-align: center;
  }
.front_page section.comparison h2 small {
  display: block;
  }
.front_page section.comparison .hl+p {
  margin-top: 18px;
  letter-spacing: 0.1rem;
  text-align: center;
  }
/* table */
.front_page section.comparison .table_outer {
  margin-top: 18px;
  }
.front_page section.comparison .table h3 {
  margin-bottom: 0;
  border-top: 2px solid #dad1c0;
  border-bottom: 1px solid #dad1c0;
  color: var(--third_color);
  font-weight: 500;
  }
.front_page section.comparison .table.chukai h3 {
  color: var(--main_color);
  }
.front_page section.comparison .table dl {
  padding-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #dad1c0;
  }
.front_page section.comparison .table dt {
  border-top: 1px solid #ebe5db;
  }
.front_page section.comparison .table dd {
  border-top: 1px solid #ebe5db;
  color: var(--third_color);
  }
.front_page section.comparison .table dt:first-of-type,
.front_page section.comparison .table dd:first-of-type {
  border-top: none;
  }
.front_page section.comparison .table.chukai dd {
  color: var(--main_color);
  }
.front_page section.comparison .table .target {
  padding: 15px 6px 18px;
  position: relative;
  background-color: #f0e6d3;
  border: 1px solid #c8a063;
  }
.front_page section.comparison .table.chukai .target {
  background-color: #e3e4e3;
  border: 1px solid #94a4bc;
  }
.front_page section.comparison .table .target::before {
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #c8a063 transparent transparent transparent;
  content: '';
  }
.front_page section.comparison .table.chukai .target::before {
  border-color: #012e72 transparent transparent transparent;
  }
.front_page section.comparison .table .target h4 {
  color: var(--third_color);
  font-weight: 500;
  letter-spacing: 0.3rem;
  text-align: center;
  }
.front_page section.comparison .table.chukai h4 {
  color: var(--main_color);
  }
.front_page section.comparison .table .target h4 em {
  font-weight: 500;
  }
.front_page section.comparison .table .target .ul_outer {
  text-align: center;
  }
.front_page section.comparison .table .target ul {
  margin-top: 8px;
  display: inline-block;
  }
.front_page section.comparison .table .target li {
  padding-left: 3rem;
  position: relative;
  list-style: none;
  color: var(--third_color);
  text-align: left;
  }
.front_page section.comparison .table.chukai .target li {
  color: var(--main_color);
  }
.front_page section.comparison .table .target li::before {
  position: absolute;
  top: -0.3rem;
  left: 0;
  content: '◎';
  color: var(--third_color);
  font-size: 2rem;
  }
.front_page section.comparison .table.chukai .target li::before {
  color: var(--main_color);
  }
.front_page section.comparison .contact p {
  margin-top: 36px;
  letter-spacing: 0.2rem;
  text-align: center;
  }
.front_page section.comparison .contact p.catch {
  margin-top: 12px;
  color: var(--third_color);
  }
/* btn */
.front_page section.comparison .contact .btn {
  margin-top: 24px;
  }
.front_page section.comparison .contact .btn a {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--sub_color);
  transition: 0.2s;
  color: #fff;
  letter-spacing: 0.3rem;
  text-decoration: none;
  text-align: center;
  }
.front_page section.comparison .contact .btn a:hover {
  background-color: var(--sub_color_light);
  }
.front_page section.comparison .contact .btn a::after {
  width: 40px;
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  background-color: #e2c9a3;
  content: '';
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.comparison .wrap_comparison {
    padding: 90px 0;
    }
  .front_page section.comparison .hl {
    display: flex;
    justify-content: center;
    align-items: center;
    }
  .front_page section.comparison .hl::before {
    margin-right: 24px;
    }
  .front_page section.comparison h2 {
    font-size: 4.5rem;
    }
  .front_page section.comparison h2 span {
    font-size: 3.9rem;
    }
  .front_page section.comparison h2 small {
    font-size: 2.1rem;
    }
  .front_page section.comparison .hl+p {
    font-size: 1.6rem;
    line-height: 1.8;
    }
  /* table */
  .front_page section.comparison .table_outer {
    display: flex;
    }
  .front_page section.comparison .table.kaitori {
    width: 50%;
    }
  .front_page section.comparison .table.chukai {
    width: 50%;
    }
  .front_page section.comparison .table h3 {
    padding: 8px 0;
    font-size: 2.3rem;
    }
  .front_page section.comparison .table.kaitori h3 {
    padding-left: 30%;
    }
  .front_page section.comparison .table dt {
    width: 30%;
    padding: 15px 6px;
    font-size: 1.5rem;
    }
  .front_page section.comparison .table dd {
    width: 70%;
    padding: 15px 6px;
    font-size: 1.6rem;
    text-align: center;
    }
  .front_page section.comparison .table.chukai dd {
    width: 100%;
    }
  .front_page section.comparison .table.chukai dt {
    display: none;
    }
  .front_page section.comparison .table .target {
    width: 98%;
    margin-top: 20px;
    }
  .front_page section.comparison .table.chukai .target {
    margin-left: auto;
    }
  .front_page section.comparison .table.kaitori .target::before {
    left: 32%;
    }
  .front_page section.comparison .table .target h4 {
    font-size: 1.9rem;
    }
  .front_page section.comparison .table .target h4 em {
    font-size: 2.5rem;
    }
  .front_page section.comparison .table .target li {
    font-size: 1.7rem;
    }
  .front_page section.comparison .contact p {
    font-size: 1.7rem;
    line-height: 1.3;
    }
  .front_page section.comparison .contact p.catch {
    font-size: 3.2rem;
    }
  /* btn */
  .front_page section.comparison .contact .btn a {
    max-width: 420px;
    padding: 18px 6px;
    font-size: 1.8rem;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.comparison {
    margin-top: 0;
    }
  .front_page section.comparison .wrap_comparison {
    padding: 60px 0;
    }
  .front_page section.comparison .hl::before {
    margin: 0 auto 12px;
    }
  .front_page section.comparison h2 {
    font-size: 2.7rem;
    }
  .front_page section.comparison h2 span {
    font-size: 2.1rem;
    }
  .front_page section.comparison h2 small {
    font-size: 1.6rem;
    }
  .front_page section.comparison .hl+p {
    font-size: 1.4rem;
    line-height: 1.6;
    }
  /* table */
  .front_page section.comparison .table.kaitori {
    width: 100%;
    }
  .front_page section.comparison .table.chukai {
    width: 100%;
    margin-top: 45px;
    }
  .front_page section.comparison .table h3 {
    padding: 6px 0;
    font-size: 2.1rem;
    }
  .front_page section.comparison .table dt {
    width: 35%;
    padding: 12px 6px;
    font-size: 1.4rem;
    }
  .front_page section.comparison .table dd {
    width: 65%;
    padding: 12px 6px;
    font-size: 1.5rem;
    }
  .front_page section.comparison .table .target {
    width: 100%;
    margin: 20px auto 0;
    }
  .front_page section.comparison .table .target h4 {
    font-size: 1.7rem;
    }
  .front_page section.comparison .table .target h4 em {
    font-size: 2.1rem;
    }
  .front_page section.comparison .table .target li {
    font-size: 1.5rem;
    }
  .front_page section.comparison .contact p {
    font-size: 1.5rem;
    line-height: 1.6;
    }
  .front_page section.comparison .contact p.catch {
    font-size: 2.1rem;
    }
  /* btn */
  .front_page section.comparison .contact .btn a {
    max-width: 240px;
    padding: 15px 6px;
    font-size: 1.5rem;
    }

} /* end ＞767 */



/* ------------------------------------
ごあいさつ
------------------------------------ */
.front_page section.greeting {
  margin-top: 0;
  background: url(../../images/top/greeting_bg.jpg) no-repeat center center / cover;
  }
.front_page section.greeting .wrap_greeting {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  }
.front_page section.greeting h2 {
  color: var(--third_color);
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-align: center;
  }
.front_page section.greeting p {
  text-align: left;
  }
/* btn */
.front_page section.greeting .btn a {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--sub_color);
  transition: 0.2s;
  color: #fff;
  letter-spacing: 0.3rem;
  text-decoration: none;
  text-align: center;
  }
.front_page section.greeting .btn a:hover {
  background-color: var(--sub_color_light);
  }
.front_page section.greeting .btn a::after {
  width: 40px;
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  background-color: #e2c9a3;
  content: '';
  }
/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.greeting {
    padding: 0 30px;
    }
  .front_page section.greeting .wrap_greeting {
    max-width: 900px;
    padding: 90px 135px;
    bottom: -75px;
    }
  .front_page section.greeting h2 {
    font-size: 3.2rem;
    }
  .front_page section.greeting p {
    font-size: 1.5rem;
    line-height: 2.1;
    }
  /* btn */
  .front_page section.greeting .btn {
    margin-top: 36px;
    }
  .front_page section.greeting .btn a {
    max-width: 300px;
    padding: 18px 6px;
    font-size: 1.8rem;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.greeting {
    padding: 0 9%;
    }
  .front_page section.greeting .wrap_greeting {
    padding: 36px 9%;
    bottom: -60px;
    }
  .front_page section.greeting h2 {
    font-size: 2.4rem;
    }
  .front_page section.greeting p {
    font-size: 1.4rem;
    line-height: 1.8;
    }
  /* btn */
  .front_page section.greeting .btn {
    margin-top: 24px;
    }
  .front_page section.greeting .btn a {
    max-width: 240px;
    padding: 15px 6px;
    font-size: 1.5rem;
    }

} /* end ＞767 */



/* ------------------------------------
ご相談ください
------------------------------------ */
.front_page section.counseling {
  margin-top: 0;
  background-color: var(--sub_color_super_light);
  }
.front_page section.counseling h2 {
  margin-bottom: 15px;
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  }
.front_page section.counseling h2+p {
  text-align: center;
  }
/* btn */
.front_page section.counseling .btn {
  margin-top: 24px;
  }
.front_page section.counseling .btn a {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--main_color);
  transition: 0.2s;
  color: #fff;
  letter-spacing: 0.3rem;
  text-decoration: none;
  text-align: center;
  }
.front_page section.counseling .btn a:hover {
  background-color: var(--main_color_light);
  }
.front_page section.counseling .btn a::after {
  width: 40px;
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  background-color: #bac6d8;
  content: '';
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.counseling {
    padding: 135px 30px 60px;
    }
  .front_page section.counseling h2 {
    font-size: 3.6rem;
    }
  .front_page section.counseling h2 span {
    font-size: 3rem;
    }
  .front_page section.counseling h2+p {
    font-size: 1.7rem;
    }
  /* btn */
  .front_page section.counseling .btn a {
    max-width: 420px;
    padding: 18px 6px;
    font-size: 1.8rem;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.counseling {
    padding: 105px 30px 60px;
    }
  .front_page section.counseling h2 {
    font-size: 2.4rem;
    }
  .front_page section.counseling h2 span {
    font-size: 1.8rem;
    }
  .front_page section.counseling h2+p {
    font-size: 1.5rem;
    }
  /* btn */
  .front_page section.counseling .btn a {
    max-width: 240px;
    padding: 15px 6px;
    font-size: 1.5rem;
    }

} /* end ＞767 */



/* ------------------------------------
新着物件
------------------------------------ */
.front_page .bukken_list_outer {
  padding: 60px 0;
  }
/* btn */
.front_page .bukken_list_outer .btn {
  margin-top: 36px;
  }
.front_page .bukken_list_outer .btn a {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--main_color);
  transition: 0.2s;
  color: #fff;
  letter-spacing: 0.3rem;
  text-decoration: none;
  text-align: center;
  }
.front_page .bukken_list_outer .btn a:hover {
  background-color: var(--main_color_light);
  }
.front_page .bukken_list_outer .btn a::after {
  width: 40px;
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  background-color: #bac6d8;
  content: '';
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page .bukken_list h2 {
    font-size: 3.4rem;
    }

  /* btn */
  .front_page .bukken_list_outer .btn a {
    max-width: 300px;
    padding: 18px 6px;
    font-size: 1.8rem;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page .bukken_list h2 {
    font-size: 2.6rem;
    }

  /* btn */
  .front_page .bukken_list_outer .btn a {
    max-width: 240px;
    padding: 15px 6px;
    font-size: 1.5rem;
    }

} /* end ＞767 */



/* ------------------------------------
売買物件を探す
------------------------------------ */
.front_page section.sellitem {
  margin-top: 0;
  position: relative;
  background: #ede8dc;
  }
.front_page section.sellitem::before {
  margin: auto;
  display: block;
  position: absolute;
  background: url(../../images/top/sellitem_bg.png) no-repeat 0 0 / contain;
  content: '';
  }
.front_page section.sellitem .wrap_sellitem {
  width: 100%;
  margin: 0 auto;
  }
.front_page section.sellitem h2 {
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.2rem;
  }
.front_page section.sellitem h2::before {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  display: inline-block;
  position: relative;
  background: url(../../images/top/sellitem_icn.png) no-repeat 0 0 / contain;
  content: '';
  }
.front_page section.sellitem ul {
  display: flex;
  flex-wrap: wrap;
  }
.front_page section.sellitem li {
  list-style: none;
  }
.front_page section.sellitem li a {
  width: 100%;
  display: block;
  position: relative;
  background-color: var(--main_color);
  transition: 0.2s;
  color: #fff;
  letter-spacing: 0.3rem;
  text-decoration: none;
  text-align: center;
  }
.front_page section.sellitem li a:hover {
  background-color: var(--main_color_light);
  }
.front_page section.sellitem li a::after {
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #bac6d8;
  content: '';
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.sellitem {
    padding: 60px 30px;
    overflow: hidden;
    }
  .front_page section.sellitem::before {
    width: 356px;
    height: 235px;
    top: 0;
    bottom: 0;
    left: 60%;
    right: 50%;
    }
  .front_page section.sellitem .wrap_sellitem {
    max-width: 900px;
    padding: 0 270px 0 0;
    }
  .front_page section.sellitem h2 {
    margin-bottom: 12px;
    font-size: 2.8rem;
    }
  .front_page section.sellitem h2::before {
    bottom: -3px;
    }
  .front_page section.sellitem ul {
    gap: 15px;
    }
  .front_page section.sellitem li {
    width: 48%;
    }
  .front_page section.sellitem li a {
    max-width: 270px;
    padding: 18px 6px;
    font-size: 1.8rem;
    }
  .front_page section.sellitem li a::after {
    width: 40px;
    right: -20px;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.sellitem {
    padding: 60px 6% 250px;
    }
  .front_page section.sellitem::before {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 356 / 235;
    bottom: 36px;
    left: 0;
    right: 0;
    }
  .front_page section.sellitem h2 {
    margin-bottom: 15px;
    font-size: 2.4rem;
    }
  .front_page section.sellitem h2::before {
    bottom: -4px;
    }
  .front_page section.sellitem ul {
    gap: 15px 24px;
    }
  .front_page section.sellitem li {
    width: 46%;
    }
  .front_page section.sellitem li a {
    padding: 15px 6px;
    font-size: 1.5rem;
    }
  .front_page section.sellitem li a::after {
    width: 30px;
    right: -15px;
    }

} /* end ＞767 */



/* ------------------------------------
freebtn
------------------------------------ */
.front_page section.freebtn {
  margin-top: 0;
  }
.front_page section.freebtn li a {
  width: 100%;
  padding: 18px 6px 18px 36px;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--sub_color);
  transition: 0.2s;
  color: #fff;
  letter-spacing: 0.3rem;
  text-decoration: none;
  text-align: center;
  }
.front_page section.freebtn li a:hover {
  background-color: var(--sub_color_light);
  }
.front_page section.freebtn li.flow a::before,
.front_page section.freebtn li.faq a::before {
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  content: '';
  }
.front_page section.freebtn li.flow a::before {
  width: 28px;
  height: 28px;
  background: url(../../images/top/icn_flow.png) no-repeat 0 0 / contain;
  }
.front_page section.freebtn li.faq a::before {
  width: 42px;
  height: 35px;
  background: url(../../images/top/icn_faq.png) no-repeat 0 0 / contain;
  }
.front_page section.freebtn li a::after {
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #e2c9a3;
  content: '';
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.freebtn {
    padding: 60px 30px;
    }
  .front_page section.freebtn ul {
    display: flex;
    justify-content: center;
    gap: 60px;
    }
  .front_page section.freebtn li {
    width: 48%;
    max-width: 420px;
    list-style: none;
    }
  .front_page section.freebtn li a {
    max-width: 420px;
    font-size: 1.8rem;
    }
  .front_page section.freebtn li a::after {
    width: 40px;
    right: -20px;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.freebtn {
    padding: 36px 6%;
    }
  .front_page section.freebtn li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    list-style: none;
    }
  .front_page section.freebtn li+li {
    margin-top: 12px;
    }
  .front_page section.freebtn li a {
    max-width: 360px;
    font-size: 1.6rem;
    }
  .front_page section.freebtn li a::after {
    width: 30px;
    right: -15px;
    }

} /* end ＞767 */



/* ------------------------------------
店舗地図
------------------------------------ */
.front_page section.shop_map {
  margin-top: 0;
  }



/* ------------------------------------
コーポレートサイト
------------------------------------ */
.front_page section.cpsite {
  margin-top: 0;
  position: relative;
  background-color: var(--main_color_super_light);
  }
.front_page section.cpsite .wrap_cpsite {
  width: 100%;
  margin: 0 auto;
  }
.front_page section.cpsite::before {
  aspect-ratio: 366 / 230;
  margin: auto;
  display: block;
  position: absolute;
  }
.front_page section.cpsite .btn a::after {
  background: url(../../images/top/icn_blank.png) no-repeat 0 0 / contain;
  content: '';
  }

/* 768＜ --------------------------- */
@media (min-width: 768px) {

  .front_page section.cpsite {
    min-height: 230px;
    overflow: hidden;
    }
  .front_page section.cpsite .wrap_cpsite {
    max-width: 1200px;
    padding: 75px 0 0 30px;
    }
  .front_page section.cpsite::before {
    min-height: 230px;
    top: 0;
    bottom: 0;
    left: 60%;
    right: 50%;
    background: url(../../images/top/cpsite_bg.png) no-repeat 0 0 / contain;
    content: '';
    }
  .front_page section.cpsite .btn a {
    width: 100%;
    max-width: 600px;
    padding: 24px 6px;
    display: block;
    position: relative;
    background-color: var(--main_color);
    transition: 0.2s;
    color: #fff;
    font-size: 2.1rem;
    letter-spacing: 0.3rem;
    text-decoration: none;
    text-align: center;
    }
  .front_page section.cpsite .btn a span {
    font-size: 1.8rem;
    }
  .front_page section.cpsite .btn a:hover {
    background-color: var(--main_color_light);
    }
  .front_page section.cpsite .btn a::after {
    width: 18px;
    height: 18px;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    }

} /* end 768＜ */
/* ＞767 --------------------------- */
@media (max-width: 767px) {

  .front_page section.cpsite {
    height: 300px;
    }
  .front_page section.cpsite .wrap_cpsite {
    padding: 30px 0 0;
    }
  .front_page section.cpsite::before {
    max-height: 180px;
    margin: auto;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../../images/top/cpsite_bg.png) no-repeat 0 0 / contain;
    content: '';
    }
  .front_page section.cpsite .btn a {
    width: 90%;
    max-width: 420px;
    padding: 21px 6px;
    margin: 0 auto;
    display: block;
    position: relative;
    background-color: var(--main_color);
    transition: 0.2s;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    text-decoration: none;
    text-align: center;
    }
  .front_page section.cpsite .btn a span {
    font-size: 1.3rem;
    }
  .front_page section.cpsite .btn a:hover {
    background-color: var(--main_color_light);
    }
  .front_page section.cpsite .btn a::after {
    width: 15px;
    height: 15px;
    right: 20px;
    }

} /* end ＞767 */



/* ------------------------------------
フッター
------------------------------------ */
.front_page .site_footer {
  margin-top: 0;
  }


