@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
================================================ */
.mv .mv_type_custom {
  width: 100%;
  position: relative;
  }
.mv .mv_type_custom .pht {
  width: 100%;
  background: url(../../images/top/mv_01.jpg) no-repeat center center / cover;
  }
.mv .mv_type_custom h1 {
  margin-bottom: 0;
  z-index: 1;
  position: absolute;
  font-size: inherit;
  text-align: left;
  }
.mv .mv_type_custom h1 .txt01 {
  display: inline-block;
  background-color: var(--main_color);
  color: #fff;
  letter-spacing: 0.1rem;
  font-weight: 400;
  }
.mv .mv_type_custom h1 .txt02 {
  display: inline-block;
  background-color: #fff;
  color: var(--sub_color);;
  font-weight: 500;
  }
.mv .mv_type_custom h1 .txt02 em {
  color: var(--main_color);
  font-weight: 500;
  }

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

  .mv .mv_type_custom .pht {
    height: 690px;
    clip-path: ellipse(100% 100% at 50% 0%);
    }
  .mv .mv_type_custom h1 {
    bottom: 0;
    left: 30%;
    right: 70%;
    writing-mode: vertical-rl;
    }
  .mv .mv_type_custom h1 .txt01 {
    height: 100%;
    padding: 18px 12px;
    margin-left: 24px;
    font-size: 1.8rem;
    }
  .mv .mv_type_custom h1 .txt02 {
    padding: 18px 9px;
    margin-left: 12px;
    font-size: 3.8rem;
    letter-spacing: 0.3rem;
    }
  .mv .mv_type_custom h1 .txt02:last-of-type {
    height: 100%;
    }

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

  .mv .mv_type_custom .pht {
    height: 300px;
    clip-path: ellipse(150% 100% at 50% 0%);
    }
  .mv .mv_type_custom h1 {
    margin: auto;
    bottom: -15px;
    left: 4%;
    }
  .mv .mv_type_custom h1 .txt01 {
    padding: 7px 12px 8px;
    font-size: 1.2rem;
    }
  .mv .mv_type_custom h1 .txt02 {
    padding: 6px 12px;
    margin-top: 6px;
    font-size: 2.1rem;
    letter-spacing: 0.2rem;
    }

} /* end ＞767 */



/* ================================================
売買物件を探す
================================================ */
.front_page main .sct_baibai h2 {
  color: var(--sub_color);
  font-weight: 500;
  }
.sct_baibai ul {
  display: flex;
  justify-content: center;
  gap: 1.8%;
  }
.sct_baibai ul li {
  list-style: none;
  }
.sct_baibai li a {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  text-decoration: none;
  }
.sct_baibai li a::before {
  margin: auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  content: '';
  }
.sct_baibai li.li01 a::before {
  background: url(../../images/top/baibai_icn_01.png) no-repeat center center / contain;
  }
.sct_baibai li.li02 a::before {
  background: url(../../images/top/baibai_icn_02.png) no-repeat center center / contain;
  }
.sct_baibai li.li03 a::before {
  background: url(../../images/top/baibai_icn_03.png) no-repeat center center / contain;
  }
.sct_baibai li a span {
  margin: auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  background-color: var(--main_color);
  border-radius: 9999px;
  transition: 0.2s;
  color: #fff;
  }
.sct_baibai li a:hover span {
  background-color: var(--main_color_light);
  }
.sct_baibai li a span::before,
.sct_baibai li a span::after {
  margin: auto;
  display: block;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  transition: 0.2s;
  content: '';
  }
.sct_baibai li a span::after {
  transform: rotate(45deg);
  }

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

  .front_page main .sct_baibai {
    padding-bottom: 60px;
    margin-top: 45px;
    }
  .front_page main .sct_baibai h2 {
    margin-bottom: 0.6em;
    font-size: 3.6rem;
    letter-spacing: 0.4rem;
    }
  .sct_baibai ul li {
    width: 30%;
    max-width: 220px;
    }
  .sct_baibai li a::before {
    width: 101px;
    height: 70px;
    top: 21%;
    }
  .sct_baibai li a span {
    width: 80%;
    max-width: 126px;
    padding: 5px 24px 6px;
    bottom: 21%;
    font-size: 1.7rem;
    }
  .sct_baibai li a span::before {
    width: 16px;
    height: 2px;
    top: 3px;
    right: 18px;
    }
  .sct_baibai li a:hover span::before {
    right: 15px;
    }
  .sct_baibai li a span::after {
    width: 9px;
    height: 2px;
    top: -3px;
    right: 17px;
    }
  .sct_baibai li a:hover span::after {
    right: 14px;
    }

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

  .front_page main .sct_baibai {
    padding-bottom: 15px;
    margin-top: 70px;
    }
  .front_page main .sct_baibai h2 {
    margin-bottom: 0.7em;
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
    }
  .sct_baibai ul {
    padding: 0 4%;
    flex-wrap: wrap;
    }
  .sct_baibai ul li {
    width: 48%;
    max-width: 180px;
    }
  .sct_baibai li a::before {
    width: 56%;
    max-width: 93px;
    height: auto;
    aspect-ratio: 202 / 140;
    top: -25%;
    bottom: 0;
    }
  .sct_baibai li a span {
    width: 66%;
    height: 32px;
    max-width: 120px;
    padding: 6px 15px 0;
    top: 0;
    bottom: -42%;
    font-size: 1.2rem;
    }
  .sct_baibai li a span::before {
    width: 12px;
    height: 1px;
    top: 2px;
    right: 12px;
    }
  .sct_baibai li a:hover span::before {
    right: 9px;
    }
  .sct_baibai li a span::after {
    width: 7px;
    height: 1px;
    top: -2px;
    right: 11px;
    }
  .sct_baibai li a:hover span::after {
    right: 8px;
    }

} /* end ＞767 */



/* ================================================
おすすめ物件
================================================ */
.bukken_list.contents_inner {
  width: 100%;
  max-width: none;
  margin: 90px 0 36px;
  position: relative;
  background-color: #fff;
  }
.bukken_list.contents_inner::before {
  width: 100%;
  display: block;
  position: absolute;
  background-color: #fff;
  content: '';
  }
.bukken_list.contents_inner::after {
  width: 100%;
  height: 36px;
  display: block;
  position: absolute;
  bottom: -36px;
  content: '';
  }
.bukken_list>.post_list_wrapper {
  margin: 0 auto;
  }
.front_page main .bukken_list h2 {
  color: var(--sub_color);
  font-weight: 500;
  }
.post_list_wrapper.bukken .type_b .thumbnail {
  box-shadow: 6px 6px 18px rgba(0,0,0,0.1);
  }
/* btn */
.bukken_list .btn {
  margin: 42px 0 0;
  }
.bukken_list .btn a {
  width: 80%;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--main_color);
  border-radius: 9999px;
  transition: 0.2s;
  color: #fff;
  text-align: center;
  }
.bukken_list .btn a:hover {
  background-color: var(--main_color_light);
  }
.bukken_list .btn a::before,
.bukken_list .btn a::after {
  margin: auto;
  display: block;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  transition: 0.2s;
  content: '';
  }
.bukken_list .btn a::before {
  width: 16px;
  height: 2px;
  top: 3px;
  right: 18px;
  }
.bukken_list .btn a:hover::before {
  right: 15px;
  }
.bukken_list .btn a::after {
  width: 9px;
  height: 2px;
  top: -3px;
  right: 17px;
  transform: rotate(45deg);
  }
.bukken_list .btn a:hover::after {
  right: 14px;
  }

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

  .bukken_list.contents_inner {
    padding: 0 0 120px;
    }
  .bukken_list.contents_inner::before {
    height: 90px;
    top: -90px;
    clip-path: ellipse(55% 100% at 50% 100%);
    }
  .bukken_list.contents_inner::after {
    background: url(../../images/bg_wave_wh01.png) no-repeat center top / 100% 36px;
    }
  .bukken_list>.post_list_wrapper {
    max-width: var(--contents_width);
    padding: 0 20px;
    }
  .front_page main .bukken_list h2 {
    font-size: 3.6rem;
    letter-spacing: 0.4rem;
    }
  /* btn */
  .bukken_list .btn a {
    max-width: 216px;
    padding: 14px 24px 15px;
    font-size: 1.7rem;
    }

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

  .bukken_list.contents_inner {
    padding-bottom: 60px;
    }
  .bukken_list.contents_inner::before {
    height: 60px;
    top: -60px;
    left: 0;
    right: 0;
    clip-path: ellipse(60% 100% at 50% 100%);
    }
  .bukken_list.contents_inner::after {
    background: url(../../images/bg_wave_wh02.png) no-repeat 40% 0% / 125% 36px;
    left: 0;
    right: 0;
    }
  .front_page main .bukken_list h2 {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
    }
  /* btn */
  .bukken_list .btn a {
    max-width: 180px;
    padding: 12px 24px 13px;
    font-size: 1.5rem;
    }

} /* end ＞767 */



/* ================================================
ごあいさつ
================================================ */
.greeting {
  position: relative;
  background-color: transparent;
  }
.greeting::before {
  margin: auto;
  display: block;
  position: absolute;
  right: 0;
  background: url(../../images/top/greeting_pht.png) no-repeat 0 0 / contain;
  content: '';
  }
.greeting .wrap_greeting {
  width: 100%;
  margin: 0;
  }
.front_page main .greeting h2 {
  color: var(--sub_color);
  font-weight: 500;
  }
.front_page main .greeting h2 span {
  padding-bottom: 15px;
  border-bottom: 2px solid var(--sub_color);
  }
.greeting .wrap_greeting p {
  color: var(--sub_color);
  font-size: 1.6rem;
  font-size: clamp(1.5rem, 1.95vw, 1.6rem);
  font-weight: 500;
  text-align: left;
  }

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

  .greeting {
    padding: 30px 0 60px 50%;
    }
  .greeting::before {
    width: 570px;
    height: 650px;
    top: -90px;
    left: -610px;
    }
  .greeting .wrap_greeting {
    max-width: 620px;
    padding: 0 40px;
    }
  .front_page main .greeting h2 {
    margin-bottom: 1.5em;
    font-size: 3.3rem;
    letter-spacing: 0.4rem;
    text-align: left;
    }

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

  .greeting {
    padding: 40px 6% 240px;
    }
  .greeting::before {
    width: 300px;
    height: 342px;
    z-index: 1;
    bottom: -120px;
    left: 0;
    }
  .front_page main .greeting h2 {
    margin-bottom: 2.1em;
    font-size: 2.3rem;
    letter-spacing: 0.3rem;
    text-align: center;
    }

} /* end ＞767 */



/* ================================================
売却物件募集中
================================================ */
.sct_wanted {
  position: relative;
  background-color: #efebdc;
  }
.sct_wanted::before {
  width: 100%;
  height: 36px;
  display: block;
  position: absolute;
  top: 0;
  content: '';
  }
.sct_wanted .wrap_wanted {
  margin: 0 auto;
  background: url(../../images/top/wanted_bg.png) no-repeat center center / 100% 100%;
  }
.front_page main .sct_wanted h2 {
  position: relative;
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: 0.3rem;
  }
.front_page main .sct_wanted h2::before,
.front_page main .sct_wanted h2::after {
  width: 2px;
  display: inline-block;
  position: relative;
  bottom: -10px;
  background-color: var(--main_color);
  content: '';
  }
.front_page main .sct_wanted h2::before {
  transform: rotate(-24deg);
  }
.front_page main .sct_wanted h2::after {
  transform: rotate(24deg);
  }
.front_page main .sct_wanted ul {
  position: relative;
  }
.front_page main .sct_wanted li {
  position: relative;
  list-style: none;
  }
.front_page main .sct_wanted li+li {
  margin-top: 15px;
  }
.front_page main .sct_wanted li::before {
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  background-color: #efebdc;
  content: '';
  }
.front_page main .sct_wanted li::after {
  display: block;
  position: absolute;
  transform: rotate(-45deg);
  content: '';
  }

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

  .sct_wanted {
    padding: 90px 0;
    }
  .sct_wanted::before {
    background: url(../../images/bg_wave_bl01.png) no-repeat center top / 100% 36px;
    }
  .sct_wanted .wrap_wanted {
    width: 94%;
    max-width: 962px;
    min-height: 438px;
    padding: 72px 40px 48px;
    }
  .front_page main .sct_wanted h2 {
    font-size: 3.6rem;
    }
  .front_page main .sct_wanted h2::before,
  .front_page main .sct_wanted h2::after {
    height: 48px;
    }
  .front_page main .sct_wanted h2::before {
    margin-right: 48px;
    }
  .front_page main .sct_wanted h2::after {
    margin-left: 45px;
    }
  .front_page main .sct_wanted ul {
    padding-left: 36%;
    }
  .front_page main .sct_wanted ul::before {
    width: 200px;
    height: 134px;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -66%;
    right: 0;
    background: url(../../images/top/wanted_img.png) no-repeat 0 0 / contain;
    content: '';
    }
  .front_page main .sct_wanted li {
    padding-left: 45px;
    font-size: 1.8rem;
    }
  .front_page main .sct_wanted li::before {
    width: 28px;
    height: 28px;
    }
  .front_page main .sct_wanted li::after {
    width: 20px;
    height: 14px;
    top: 6px;
    left: 12px;
    border-left: 6px solid var(--main_color);
    border-bottom: 6px solid var(--main_color);
    }

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

  .sct_wanted {
    padding: 150px 0 60px;
    }
  .sct_wanted::before {
    background: url(../../images/bg_wave_bl02.png) no-repeat 40% 0% / 125% 36px;
    }
  .sct_wanted .wrap_wanted {
    width: 92%;
    min-height: 350px;
    padding: 72px 9% 48px;
    position: relative;
    }
  .sct_wanted .wrap_wanted::before {
    width: 116px;
    height: 78px;
    margin: auto;
    display: block;
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    background: url(../../images/top/wanted_img.png) no-repeat 0 0 / contain;
    content: '';
    }
  .front_page main .sct_wanted h2 {
    font-size: 2.4rem;
    }
  .front_page main .sct_wanted h2::before,
  .front_page main .sct_wanted h2::after {
    height: 36px;
    }
  .front_page main .sct_wanted h2::before {
    margin-right: 24px;
    }
  .front_page main .sct_wanted h2::after {
    margin-left: 21px;
    }
  .front_page main .sct_wanted ul {
    position: relative;
    }
  .front_page main .sct_wanted li {
    padding-left: 42px;
    font-size: 1.5rem;
    }
  .front_page main .sct_wanted li::before {
    width: 22px;
    height: 22px;
    }
  .front_page main .sct_wanted li::after {
    width: 18px;
    height: 12px;
    top: 4px;
    left: 9px;
    border-left: 5px solid var(--main_color);
    border-bottom: 5px solid var(--main_color);
    }

} /* end ＞767 */



/* ================================================
不動産ご売却についてのお悩みを解決いたします。
================================================ */
.sct_solution {
  margin-top: 0;
  background-color: #efebdc;
  }
.front_page main .sct_solution h2 {
  color: var(--sub_color);
  font-weight: 500;
  line-height: 1.4;
  }
.front_page main .sct_solution h2::before {
  display: block;
  background: url(../../images/top/solution_icn.png) no-repeat 0 0 / contain;
  content: '';
  }
.sct_solution p {
  color: var(--sub_color);
  font-weight: 500;
  line-height: 2;
  text-align: center;
  }
.sct_solution .btn {
  margin-top: 30px;
  }
.sct_solution .btn a {
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--main_color);
  border-radius: 9999px;
  transition: 0.2s;
  color: #fff;
  text-decoration: none;
  text-align: center;
  }
.sct_solution .btn a:hover {
  background-color: var(--main_color_light);
  }
.sct_solution .btn a::before {
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42px;
  background: url(../../images/icn_tel_01.png) no-repeat 0 0 / contain;
  content: '';
  }

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

  .sct_solution {
    padding: 0 20px 90px;
    }
  .front_page main .sct_solution h2 {
    margin-bottom: 0.6em;
    font-size: 3.4rem;
    letter-spacing: 0.2rem;
    }
  .front_page main .sct_solution h2::before {
    width: 88px;
    height: 62px;
    margin: 0 auto 9px;
    }
  .sct_solution .btn a {
    width: 80%;
    max-width: 300px;
    padding: 18px 24px 19px 60px;
    font-size: 1.7rem;
    }
  .sct_solution .btn a::before {
    width: 37px;
    height: 28px;
    }

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

  .sct_solution {
    padding: 0 20px 60px;
    }
  .front_page main .sct_solution h2 {
    margin-bottom: 0.9em;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    }
  .front_page main .sct_solution h2::before {
    width: 74px;
    height: 52px;
    margin: 0 auto 12px;
    }
  .sct_solution p {
    font-size: 1.4rem;
    }
  .sct_solution .btn a {
    width: 75%;
    max-width: 240px;
    padding: 15px 24px 16px 60px;
    font-size: 1.5rem;
    }
  .sct_solution .btn a::before {
    width: 29px;
    height: 22px;
    }

} /* end ＞767 */



/* ================================================
LINE公式アカウントはこちら
================================================ */
.sct_line {
  margin-top: 0;
  position: relative;
  background-color: #fff;
  }
.sct_line::before {
  width: 100%;
  height: 36px;
  display: block;
  position: absolute;
  top: 0;
  content: '';
  }
.sct_line .wrap_line {
  display: flex;
  }
.front_page main .sct_line h2 {
  position: relative;
  color: #06c755;
  font-weight: 500;
  }
.front_page main .sct_line h2::before {
  background: url(../../images/icn_line.png) no-repeat 0 0 / contain;
  content: '';
  }
.sct_line p {
  color: var(--sub_color);
  font-weight: 500;
  text-align: center;
  }
.sct_line .qr {
  padding-top: 15px;
  }
.sct_line .qr a {
  min-width: 216px;
  padding: 15px;
  border: 3px solid #06c755;
  }
.sct_line .qr a:hover {
  opacity: 0.7;
  }

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

  .sct_line {
    padding: 90px 0;
    }
  .sct_line::before {
    background: url(../../images/bg_wave_bd01.png) no-repeat center top / 100% 36px;
    }
  .sct_line .wrap_line {
    justify-content: center;
    align-items: center;
    gap: 0 60px;
    }
  .front_page main .sct_line h2 {
    margin-bottom: 0.6em;
    font-size: 3.6rem;
    letter-spacing: 0.15rem;
    }
  .front_page main .sct_line h2::before {
    width: 73px;
    height: 70px;
    margin-right: 18px;
    display: inline-block;
    position: relative;
    bottom: -20px;
    }
  .sct_line p {
    font-size: 1.8rem;
    }
  .sct_line .qr a {
    display: block;
    transition: 0.2s;
    }

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

  .sct_line {
    padding: 80px 0 60px;
    }
  .sct_line::before {
    background: url(../../images/bg_wave_bd02.png) no-repeat 40% 0% / 125% 36px;
    }
  .sct_line .wrap_line {
    flex-direction: column;
    }
  .front_page main .txt {
    padding: 0 6%;
    order: 1;
    }
  .front_page main .sct_line h2 {
    padding-top: 64px;
    margin-bottom: 0.8em;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    text-align: center;
    }
  .front_page main .sct_line h2::before {
    width: 63px;
    height: 60px;
    margin: auto;
    display: block;
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    }
  .sct_line p {
    padding: 0 3%;
    font-size: 1.5rem;
    }
  .sct_line .qr {
    margin-top: 15px;
    order: 2;
    text-align: center;
    }
  .sct_line .qr a {
    display: inline-block;
    }

} /* end ＞767 */



/* ================================================
お知らせ
================================================ */
.front_page main .news h2 {
  position: relative;
  color: var(--sub_color);
  font-weight: 500;
  }
.news .wrap_news {
  margin: 0 auto;
  }
.news .post_list .date {
  letter-spacing: 0.15rem;
  }
/* btn */
.news .btn {
  margin: 36px 0 0;
  }
.news .btn a {
  width: 80%;
  margin: 0 auto;
  display: block;
  position: relative;
  background-color: var(--main_color);
  border-radius: 9999px;
  transition: 0.2s;
  color: #fff;
  text-decoration: none;
  text-align: center;
  }
.news .btn a:hover {
  background-color: var(--main_color_light);
  }
.news .btn a::before,
.news .btn a::after {
  margin: auto;
  display: block;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  transition: 0.2s;
  content: '';
  }
.news .btn a::before {
  width: 16px;
  height: 2px;
  top: 3px;
  right: 18px;
  }
.news .btn a:hover::before {
  right: 15px;
  }
.news .btn a::after {
  width: 9px;
  height: 2px;
  top: -3px;
  right: 17px;
  transform: rotate(45deg);
  }
.news .btn a:hover::after {
  right: 14px;
  }

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

  section.news {
    padding-bottom: 75px;
    text-align: center;
    }
  .front_page main .news h2 {
    font-size: 3.4rem;
    letter-spacing: 0.3rem;
    }
  .news .wrap_news {
    max-width: 750px;
    display: inline-block;
    }
  .post_list_wrapper.news article {
    gap: 30px;
    }
  .news .post_list .date {
    padding-top: 5px;
    font-size: 1.4rem;
    }
  .news .post_list .title {
    font-size: 1.7rem;
    }
  /* btn */
  .news .btn a {
    max-width: 216px;
    padding: 14px 24px 15px;
    font-size: 1.7rem;
    }

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

  section.news {
    padding-bottom: 60px;
    }
  .front_page main .news h2 {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    }
  .news .wrap_news {
    padding: 0 6%;
    }
  .post_list_wrapper.news .post_list {
    gap: 18px;
    }
  .news .post_list .date {
    font-size: 1.3rem;
    }
  .news .post_list .title {
    padding-bottom: 0;
    border-bottom: none;
    font-size: 1.5rem;
    }
  /* btn */
  .news .btn a {
    max-width: 180px;
    padding: 12px 24px 13px;
    font-size: 1.5rem;
    }

} /* end ＞767 */



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



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