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