@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%;
  }
}



/* =====================================================
カスタム
===================================================== */
/* more button */
.more > a.button {
  padding: 15px 18px;
  font-weight: 200;
  }
.more > a.button::after {
  display: none;
  }
.more > a.button::before {
  width: 40px;
  height: 1px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  background-color: #cedce8;
  content: '';
  }

/* footer */
.front_page .site_footer {
  margin-top: 0;
  }

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

  /* more button */
  .more > a.button {
    width: 300px;
    font-size: 1.8rem;
    }

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

  /* more button */
  .more > a.button {
    width: 240px;
    font-size: 1.6rem;
    }

} /* end ＞767 */



/* ------------------------------------
MV
------------------------------------ */
.mv {
  width: 100%;
  position: relative;
  background: url(../../images/top/mv01.jpg) no-repeat center center / cover;
  }
.mv::before {
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  }
.mv p {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--main_color);
  font-weight: 400;
  line-height: 1;
  }
.mv p em {
  display: inline-block;
  background-color: #fff;
  font-weight: 400;
  }
.mv p em:nth-of-type(1) {
  margin-bottom: -1px;
  }

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

  .mv {
    height: 720px;
    }
  .mv::before {
    width: 90px;
    }
  .mv p {
    font-size: 5.7rem;
    letter-spacing: 0.45rem;
    }
  .mv p span {
    font-size: 5.1rem;
    }
  .mv p em:nth-of-type(1) {
    padding: 30px 30px 8px 45px;
    }
  .mv p em:nth-of-type(2) {
    padding: 26px 75px 39px 45px;
    }

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

  .mv {
    height: 600px;
    }
  .mv::before {
    width: 24px;
    }
  .mv p {
    min-width: 315px;
    z-index: 1;
    font-size: 3rem;
    letter-spacing: 0.4rem;
    }
  .mv p span {
    font-size: 2.4rem;
    }
  .mv p em:nth-of-type(1) {
    padding: 22px 18px 4px 24px;
    }
  .mv p em:nth-of-type(2) {
    padding: 18px 48px 26px 24px;
    }

} /* end ＞767 */



/* ------------------------------------
ごあいさつ
------------------------------------ */
.greeting {
  padding: 0;
  margin-top: 0;
  background: url(../../images/top/greeting_bg.jpg) no-repeat center center / cover;
  }
.greeting .wrap_greeting {
  position: relative;
  }
.greeting .wrap_greeting::before {
  margin: auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  background: url(../../images/logomark.png) no-repeat 0 0 / contain;
  content: '';
  }
.greeting p {
  color: #fff;
  letter-spacing: 0.06rem;
  }

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

  .greeting .wrap_greeting {
    padding-top: 310px;
    padding-bottom: 180px;
    }
  .greeting .wrap_greeting::before {
    width: 140px;
    height: 128px;
    top: 135px;
    }
  .greeting p {
    font-size: 1.5rem;
    line-height: 2.4;
    }

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

  .greeting .wrap_greeting {
    padding: 240px 6% 120px;
    }
  .greeting .wrap_greeting::before {
    width: 118px;
    height: 108px;
    top: 90px;
    }
  .greeting p {
    font-size: 1.3rem;
    line-height: 2.1;
    }

} /* end ＞767 */



/* ------------------------------------
新着売買物件, 新着賃貸物件
------------------------------------ */
.front_page .bukken_list h2 {
  color: var(--main_color);
  font-weight: 400;
  }
.front_page .bukken_list h2 span {
  padding: 1px 12px;
  margin-right: 18px;
  display: inline-block;
  position: relative;
  border: 1px solid #6694b8;
  font-weight: 500;
  letter-spacing: 0.1rem;
  }
.post_list_wrapper.bukken .bukken_type {
  background-color: #b4a585;
  }
.post_list_wrapper.bukken .type_b .post_title {
  font-size: 1.8rem;
  font-weight: 600;
  }
.post_list_wrapper.bukken .content .price .base {
  color: #0c6cb8;
  }

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

  .front_page .bukken_list h2 {
    font-size: 3.6rem;
    letter-spacing: 0.6rem;
    }
  .front_page .bukken_list h2 span {
    bottom: 0.5rem;
    font-size: 1.7rem;
    }

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

  .front_page .bukken_list h2 {
    font-size: 2.6rem;
    letter-spacing: 0.4rem;
    }
  .front_page .bukken_list h2 span {
    bottom: 0.4rem;
    font-size: 1.3rem;
    }

} /* end ＞767 */



/* ------------------------------------
当社が選ばれる理由
------------------------------------ */
.front_page .reasons h2 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  color: var(--black_color);
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.4;
  text-align: left;
  }
.front_page .reasons h2 span {
  padding: 6px;
  display: inline-block;
  background-color: #fff;
  }
.front_page .reasons h2 span:nth-of-type(1) {
  margin-bottom: -1px;
  }
.reasons .column {
  width: 100%;
  padding: 0 calc(50% - 620px);
  margin: 0 auto;
  position: relative;
  }
.reasons .column:nth-of-type(2n) {
  margin-top: 240px;
  }
.reasons .column::before {
  width: calc(50% + 180px);
  display: block;
  z-index: 1;
  position: absolute;
  top: -240px;
  content: '';
  }
.reasons .column:nth-of-type(2n+1)::before {
  right: 0;
  background: url(../../images/top/reasons_pht01.jpg) no-repeat left center / cover;
  }
.reasons .column:nth-of-type(2n)::before {
  left: 0;
  background: url(../../images/top/reasons_pht02.jpg) no-repeat right center / cover;
  }
.reasons .wrap {
  z-index: 2;
  position: relative;
  background-color: #fff;
  }
.reasons .column:nth-of-type(2n) .wrap {
  margin-left: auto;
  }
.reasons .wrap::before {
  max-width: 360px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: var(--main_color);
  content: '';
  }
.reasons .column h3 {
  color: var(--main_color);
  font-weight: 400;
  letter-spacing: 0.3rem;
  line-height: 1.5;
  text-align: left;
  }
.reasons .column:nth-of-type(2n) h3 {
  text-align: right;
  }
.reasons .column h3 span {
  display: block;
  }
.reasons .column:nth-of-type(2n+1) h3 span {
  text-indent: -2rem;
  }
.reasons .column:nth-of-type(2n) h3 span {
  margin-right: -2rem;
  }
.reasons .column p {
  letter-spacing: 0.12rem;
  text-align: left;
  }
.reasons .column p+p {
  margin-top: 18px;
  }

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

  .front_page .reasons {
    margin-top: 210px;
    }
  .front_page .reasons h2 {
    max-width: 1240px;
    padding: 0 60px 60px;
    font-size: 3.9rem;
    }
  .reasons .column::before {
    height: 600px;
    }
  .reasons .wrap {
    width: 84%;
    max-width: 800px;
    padding: 60px;
    }
  .reasons .wrap::before {
    width: calc(100% - 420px);
    top: 126px;
    }
  .reasons .column:nth-of-type(2n+1) .wrap::before {
    right: -60px;
    }
  .reasons .column:nth-of-type(2n) .wrap::before {
    left: -60px;
    }
  .reasons .column h3 {
    font-size: 2.4rem;
    }
  .reasons .column h3 span {
    font-size: 3.9rem;
    }
  .reasons .column p {
    font-size: 1.5rem;
    line-height: 2;
    }

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

  .front_page .reasons {
    margin-top: 180px;
    }
  .front_page .reasons h2 {
    padding: 0 6% 60px;
    font-size: 3rem;
    }
  .reasons .column::before {
    height: 360px;
    }
  .reasons .wrap {
    width: 88%;
    padding: 48px 7.5%;
    }
  .reasons .wrap::before {
    width: calc(88% - 270px);
    top: 63px;
    }
  .reasons .column:nth-of-type(2n+1) .wrap::before {
    right: -6%;
    }
  .reasons .column:nth-of-type(2n) .wrap::before {
    left: -6%;
    }
  .reasons .column h3 {
    font-size: 2.1rem;
    }
  .reasons .column h3 span {
    font-size: 3rem;
    }
  .reasons .column p {
    font-size: 1.4rem;
    line-height: 1.8;
    }

} /* end ＞767 */



/* ------------------------------------
店舗紹介動画
------------------------------------ */
.front_page .shop_movie {
  max-width: none;
  position: relative;
  }
.front_page .shop_movie::before {
  height: 100%;
  display: block;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e2ebf3;
  content: '';
  }
.front_page .shop_movie::after {
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  background-color: var(--main_color);;
  content: '';
  }
.front_page .shop_movie .wrap {
  width: 100%;
  max-width: var(--contents_width);
  padding: 0 20px;
  margin: 0 auto;
  }
.front_page .shop_movie h2 {
  margin-bottom: 30px;
  color: var(--main_color);
  letter-spacing: 0.2rem;
  line-height: 1.5;
  text-align: left;
  }
.front_page .shop_movie h2::before {
  display: block;
  content: 'STORE TOUR';
  font-weight: 500;
  letter-spacing: 0.6rem;
  }
.front_page .wrap_shop_movie {
  max-width: var(--contents_width_narrow);
  margin: 0 auto;
  }
.wrap_shop_movie iframe {
  vertical-align: bottom;
  }

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

  .front_page .shop_movie {
    padding: 90px 0;
    margin-top: 45px;
    }
  .front_page .shop_movie::before {
    width: calc(50% + 180px);
    }
  .front_page .shop_movie::after {
    width: calc(50% + 180px);
    max-width: calc(100% - 384px);
    height: calc(100% - 180px);
    bottom: 90px;
    }
  .front_page .shop_movie h2 {
    font-size: 1.8rem;
    font-weight: 400;
    }
  .front_page .shop_movie h2::before {
    font-size: 3.9rem;
    }

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

  .front_page .shop_movie {
    padding: 48px 0;
    margin-top: 30px;
    }
  .front_page .shop_movie::before {
    width: 78%;
    }
  .front_page .shop_movie::after {
    width: 60%;
    height: calc(100% - 144px);
    bottom: 24px;
    }
  .front_page .shop_movie h2 {
    font-size: 1.4rem;
    font-weight: 500;
    }
  .front_page .shop_movie h2::before {
    font-size: 3rem;
    }

} /* end ＞767 */



/* ------------------------------------
よくある質問
------------------------------------ */
.front_page .faq h2 {
  font-weight: 500;
  letter-spacing: 0.3rem;
  }
.faq .faq_question p {
  font-weight: 500;
  }
.faq .faq_question p::before {
  color: var(--main_color);
  font-family: 'Noto Serif JP', serif;
  }
.faq .faq_answer p::before {
  font-family: 'Noto Serif JP', serif;
  }

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

  .front_page .faq {
    /*margin-top: 90px;*/
    margin-top: 45px;
    }
  .front_page .faq h2 {
    font-size: 3.2rem;
    }

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

  .front_page .faq {
    margin-top: 30px;
    }
  .front_page .faq {
    padding: 0 6%;
    }
  .front_page .faq h2 {
    font-size: 2.6rem;
    }

} /* end ＞767 */



/* ------------------------------------
お知らせ
------------------------------------ */
.front_page .news {
  width: 100%;
  max-width: none;
  background-color: #e5edf3;
  }
.front_page .news .wrap_news {
  width: 100%;
  max-width: 900px;
  padding: 0;
  margin: 0 auto 48px;
  }
.front_page .news h2 {
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.3rem;
  }
.post_list_wrapper.news .date {
  line-height: 2;
  }

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

  .front_page .news {
    padding: 84px 0 96px;
    margin-top: 105px;
    }
  .front_page .news .wrap_news {
    display: flex;
    justify-content: center;
    }
  .front_page .news h2 {
    min-width: 240px;
    padding-right: 75px;
    font-size: 3rem;
    }
  .post_list_wrapper.news .post_list {
    padding: 12px 0 18px 75px;
    border-left: 1px solid #b4c5d4;
    }
  .post_list_wrapper.news .date {
    font-size: 1.4rem;
    }

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

  .front_page .news {
    padding: 60px 6% 78px;
    margin-top: 90px;
    }
  .front_page .news h2 {
    font-size: 2.6rem;
    }
  .post_list_wrapper.news .post_list {
    padding-top: 14px;
    border-top: 1px solid var(--gray_color_light);
    }
  .post_list_wrapper.news .date {
    font-size: 1.2rem;
    }

} /* end ＞767 */



/* ------------------------------------
店舗地図
------------------------------------ */
.front_page .shop_map {
  margin-top: 0;
  }
.wrap_shop_map iframe {
  filter: none;
  }
