﻿@charset "utf-8";

/*==================================================
  GENERAL SETTINGS
==================================================*/
.indexWire {
  max-width: var(--width-content);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/*
===== TITLE ==========================================
*/
.indexTtl {
  text-align: center;
}

.indexTtl__en {
  display: block;
  text-align: center;
  font-size: clamp(24px, 6.4vw, 36px);
}

/*
===== BUTTON ==========================================
*/
.btn_archive {
  text-align: center;
  margin-bottom: 2em;
}

.btn_archive a {
  display: inline-block;
  max-width: 120px;
  margin: 1em auto 0;
  background: var(--color-black);
  color: #FFF;
  font-size: 1.4rem;
  padding: .5em;
  line-height: 1;
  letter-spacing: .1em;
  text-decoration: none;
  position: relative;
}

/*
===== SLIDER ==========================================
*/
/*dots*/
.slick-dots li,
.slick-dots li button {
  width: 16px !important;
  height: 16px !important;
}

.slick-dots li button:before {
  content: "" !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 8px;
  opacity: 1 !important;
}

.slick-list.draggable {
  overflow: hidden;
  margin: 0 auto;
}


/*
===== BANNER ==========================================
*/
.bannerBox {
  text-align: center;
  margin: var(--gutter) auto 0;
  max-width: var(--width-content);
}

/*==================================================
  CONTENTS
==================================================*/
/*
===== MAIN ==========================================
*/
.indexmainBox {
  width: 100%;
  max-width: var(--width-wide);
  aspect-ratio: 1400 / 872;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.indexmainBox__photo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.indexmainBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.indexmainBox__txt {
  color: #fff;
  font-size: 40px;
  line-height: 1.4;
  text-align: right;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1));
  position: absolute;
  top: clamp(40px, 10%, 80px);
  right: 1.5em;
  z-index: 100;
}

/*
===== ABOUTBOX ==========================================
*/

.guidebookBox__link {
  display: block;
  width: 290px;
  background: var(--color-main);
  color: #fff;
  font-size: 20px;
  padding: 1em 1.25em;
  text-align: center;
}

.guidebookBox__photo {
  display: block;
  margin-top: 10px;
}

.aboutBox {
  margin-bottom: var(--gutter-wide);
}

.aboutBox__inner {
  position: relative;
}

.aboutBox__ttl {
  text-align: center;
  font-size: clamp(16px, 4.8vw, 40px);
  letter-spacing: .1em;
  margin: var(--gutter-wide) 0;
}

.aboutBox__txt p {
  line-height: 3;
  letter-spacing: .1em;
  margin-top: -1em;
}



/*
===== EVENTBOX ==========================================
*/
.eventBox {
  width: 96%;
  max-width: var(--width-wide);
  margin: var(--gutter) auto;
  padding: var(--gutter) 0;
  border: 1px solid var(--color-main);
  overflow: hidden;
}

.eventBox__ttl .indexTtl__en {
  color: var(--color-main);
}

.eventBox__inner {
  width: 100%;
}

.eventBox__inner .slick-initialized {
  min-height: 200px;
}

.eventBox__list {
  width: 96%;
  margin: 0 auto;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: nowrap;
  /* Safari */
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
  position: relative;
  gap: 25px;
}

.eventBox__item {
  width: calc((100% - 50px) / 3);
  max-width: 320px;
  position: relative;
  margin: 0 20px;
}

.eventBox__item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.eventBox__photo {
  aspect-ratio: 3/ 2;
  overflow: hidden;
}

.eventBox__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eventBox__detail {
  padding: 10px;
}

.eventBox__iconWrap {
  display: block;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.eventBox__iconWrap span {
  min-width: 40px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  line-height: 1;
  padding: 10px;
}

.eventBox__itemTtl {
  text-align: left;
  font-size: 1.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eventBox__date {
  margin: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.eventBox__intro {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*
===== BRANDBOX ==========================================
*/

.brandBox {
  background: url(../img/index/brandBox_bg.webp) no-repeat center / cover;
  background-attachment: fixed;
  padding: var(--gutter-wide) 0;
}

.brandBox__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.brandBox__logo {
  width: 50%;
  padding: var(--gutter-narrow);
  flex-shrink: 0;
}

.brandBox__txtWrap {
  color: #fff;
}

.brandBox__ttl {
  font-size: 3.6rem;
}

.brandBox__txt {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 2;
}

.brandBox__btnList {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.brandBox__btn {
  width: 220px;
  max-width: 45%;
  margin-top: 1.5em;
  background: #fff;
}

.brandBox__btn a {
  display: block;
  font-size: clamp(12px, 1.4vw, 16px);
  padding: .7em 1.5em;
  color: var(--color-black);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.brandBox__btn a:hover {
  color: #fff;
  opacity: 1;
}

.brandBox__btn a::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  background: var(--color-main);
  transition: transform 0.3s;
}

.brandBox__btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.brandBox__btn a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-style: solid;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%) rotate(45deg);
  transition: all .3s;
}

.brandBox__btn__txt {
  position: relative;
}

/*
===== SEARCHBOX ==========================================
*/

.searchBox {
  background: var(--color-verypalegray);
  padding: var(--gutter) 0;
}

.searchBox__ttl {
  text-align: center;
  margin-bottom: 30px;
}

.searchBox__container {}

/*
----- 物件数リスト --------------------
*/
.estateCountBox {}

.estateCountBox__totalBox {
  padding: 0 40px 20px;
}

.estateCountBox__totalWrap {
  display: flex;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.estateCountBox__totalWrap:not(:first-child) {
  margin-top: 20px;
}

.estateCountBox__totalTtl {
  max-width: 170px;
  width: 52%;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  margin-right: 8px;
}

.estateCountBox__totalNumBox {
  font-size: 18px;
}

.estateCountBox__num {
  font-size: clamp(24px, 6.4vw, 36px);
  line-height: 1;
  margin-left: .5em;
}

.estateCountBox__totalTtl--current {
  border: 2px solid var(--color-black);
  color: #fff;
  background-color: var(--color-black);
}

.estateCountBox__totalTtl--today {
  border: 2px solid var(--color-black);
  background-color: #fff;
}

.estateCountBox__detailBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gutter-narrow);
}

.estateCountBox__detailWrap {
  display: flex;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 10px;
  font-size: clamp(12px, 2.4vw, 16px);
}

.estateCountBox__detailWrap--member .estateCountBox__detailTtl,
.estateCountBox__detailWrap--member .estateCountBox__num {
  color: var(--color-darkred);
}

.estateCountBox__btn {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 0 10px;
  border-radius: 3px;
  position: relative;
}

.estateCountBox__btn::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 5px solid #fff;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
}

.estateCountBox__btnTxt {
  font-size: 14px;
}

.estateCountBox__btn--emember {
  background-color: var(--color-red);
}

.estateCountBox__btn--shoprsv {
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
}

.estateCountBox__btn--member {
  background-color: #fff;
  color: var(--color-red);
  padding: 18px 0;
  border: 1px solid var(--color-red);
  position: relative;
}

.estateCountBox__btn--member::after {
  border-left: 5px solid var(--color-orange);
}

/*
----- areasearchBox rightCont --------------------
*/
.areasearchBox__tabList {
  width: 100%;
  display: flex;
  -webkit-flex-wrap: nowrap;
  /* Safari */
  flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
  /* Safari */
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

.areasearchBox__tabItem {
  max-width: 140px;
  width: calc((100% - 1em) / 2);
  border: 2px solid var(--color-darkwarmgray);
  border-bottom-width: 5px;
  background-color: var(--color-palegray);
  color: var(--color-darwarmgray);
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: .7em 0;
  position: relative;
  top: 5px;
  transition: all .5s;
}

@media (any-hover:hover) {
  .areasearchBox__tabItem:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.areasearchBox__tabItem.active {
  background-color: var(--color-darkwarmgray);
  color: #fff;
  top: 0;
}

.areasearchBox__tabTxt {
  line-height: 1.1;
}

.areasearchBox__mapItem {
  text-decoration: none;
  display: block;
}

.areasearchBox__mapItemTtl,
.areasearchBox__mapItemNumBox {
  text-align: center;
  line-height: 1;
}

.areasearchBox__mapItemTtl {
  margin-bottom: 5px;
  font-size: 22px;
  white-space: pre-wrap
}

.areasearchBox__mapItemNumBox {
  font-size: 18px;
}

.areasearchBox__mapItemNum {
  font-family: Arial, Helvetica, 'sans-serif';
  font-size: 24px;
  line-height: 1;
}

@media screen and (min-width: 768px) {

  .index__searchBox__mapBox__map {
    width: 900px;
    max-width: 90%;
    aspect-ratio: 900 / 588;
    margin: 20px auto;
    background: url(../img/index/areasearchBox_map01.webp) no-repeat center top / contain;
    position: relative;
  }


  .index__searchBox__mapBox__map__itemWrap {
    position: absolute;
  }

  .index__searchBox__mapBox__map__item__head a:hover {
    opacity: 1;
  }

  /*エリア名*/
  .index__searchBox__mapBox__map__item__label {
    display: inline-block;
    padding: .5em 1em;
    border: 1px solid #fff;
    background: var(--color-black);
    color: #fff;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, .3);
    font-size: clamp(13px, 1.4vw, 16px);
    overflow: hidden;
    position: relative;
  }

  /*ドロップダウン*/
  .index__searchBox__mapBox__map__localList {
    position: absolute;
    transform: translate(-2px, -11px);
    width: 360px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    z-index: 999;
    transition: all .5s;
  }

  .index__searchBox__mapBox__map__itemWrap:hover .index__searchBox__mapBox__map__localList {
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, .3),
      inset 0 0 0 1px var(--color-black);
    background-color: var(--color-palegray);
    padding: 10px;
  }

  .index__searchBox__mapBox__map__localList li {
    display: block;
    overflow: hidden;
    width: 50%;
    height: 0;
    opacity: 0;
    transition: all .5s;
    font-size: clamp(12px, 1.1vw, 13px);
  }

  .index__searchBox__mapBox__map__itemWrap:hover .index__searchBox__mapBox__map__localList li {
    overflow: visible;
    height: 2.5em;
    opacity: 1;
    padding: .5em 1em;
  }


  /*尾張エリア*/
  .index__searchBox__mapBox__map .c-owari {
    top: 8.16%;
    left: 16.56%;
  }

  /*名古屋エリア*/
  .index__searchBox__mapBox__map .c-nagoya {
    top: 31.80%;
    left: 16.56%;
  }

  /*名古屋市周辺エリア*/
  .index__searchBox__mapBox__map .c-aroundnagoya {
    top: 41.50%;
    left: 24.11%;
  }

  /*知多・半田エリア*/
  .index__searchBox__mapBox__map .c-chitahanda {
    top: 58.16%;
    left: 5.33%;
  }

  /*西三河エリア*/
  .index__searchBox__mapBox__map .c-nishimikawa {
    top: 52.04%;
    left: 41.67%;
  }

  /*東三河エリア*/
  .index__searchBox__mapBox__map .c-higashimikawa {
    top: 48.81%;
    left: 69.22%;
  }

  .index__searchBox__mapBox__map .c-higashimikawa .index__searchBox__mapBox__map__localList {
    left: -100px;
  }

  /*静岡県エリア*/
  .index__searchBox__mapBox__map .c-shizuoka {
    top: 74.32%;
    left: 79.33%;
  }

  .index__searchBox__mapBox__map .c-shizuoka .index__searchBox__mapBox__map__localList {
    display: none;
  }
}


/*会員登録ボタン*/
.searchBox__btn.searchBox__btn--signup {
  display: block;
  width: 220px;
  margin: var(--gutter-supernarrow) auto 0;
  padding: 1em;
  color: #fff;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.searchBox__btn.searchBox__btn--signup:hover {
  color: var(--color-main);
  opacity: 1;
}

.searchBox__btn.searchBox__btn--signup::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  background: #fff;
  transition: transform 0.3s;
}

.searchBox__btn.searchBox__btn--signup:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.searchBox__btn.searchBox__btn--signup::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-style: solid;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%) rotate(45deg);
  transition: all .3s;
}

.searchBox__btn.searchBox__btn--signup .searchBox__btn__txt {
  position: relative;
}

/*
===== RECOMBOX 注目物件／リフォーム済みおすすめ物件 ==========================================
*/

.recomBox--house {
  background: var(--color-verypalegray);
  padding: var(--gutter) 0;
}

.recomBox--land {
  padding: var(--gutter) 0;
}

.recomBox__ttl,
.pickupBox__ttl {
  letter-spacing: .1em;
}

.recomBox__ttl .indexTtl__ja,
.pickupBox__ttl .indexTtl__ja {
  font-size: 20px;
}

.recom .wrap {
  width: 100%;
}

.recom #itemList {
  position: relative;
  display: flex;
  justify-content: center;
}

.recom .item {
  width: 320px;
  position: relative;
  margin: 0 20px;
}

/*会員限定物件*/
.recom .item.emember .photo {
  padding: 20px;
}

.recom .item.emember.land .photo {
  display: block;
  padding: 10px;
  box-shadow: inset 0 0 0 5px #D80C1880;
  background: url(../img/basic/estates_member_bg_land.webp) no-repeat center / cover;
}

.recom .item.emember.house .photo {
  display: block;
  padding: 10px;
  box-shadow: inset 0 0 0 5px #D80C1880;
  background: url(../img/basic/estates_member_bg_house.webp) no-repeat center / cover;
}

.recom__memberItem .btn {
  width: 14em;
  margin: 1em auto 0;
  background: #FF9E020D;
  border: 1px solid var(--color-red);
  padding: .75em 1em;
  letter-spacing: .1em;
  position: relative;
}

.recom__memberItem .btn::after {
  content: "";
  display: block;
  width: .7em;
  height: .7em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%) rotate(45deg);
  transition: all .3s;
}


/*一般公開物件*/
.recom .item>a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.recom .item .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recom .item .icon {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}

.recom .item .price_pay {
  padding-bottom: 8px;
  display: flex;
  align-items: flex-end;
}

.recom .item .price {
  flex-shrink: 0;
}

.recom .item .price span {
  color: var(--color-darkred);
  font-size: 32px;
  line-height: 1;
}

.recom .item .payment_pay {
  margin-left: 2em;
}

.recom .item .payment_pay span {
  font-size: 20px;
  color: var(--color-darkred);
}

.recom .item .photo {
  width: 100%;
  aspect-ratio: 320 / 212;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recom .item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recom .item .info {
  padding: 1em 0;
}

.recom .item .info:has(.madori) {
  display: flex;
}

.recom .item .info .ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recom .item .info .madori {
  margin-left: 1em;
}

.recom .item .info .details {
  min-height: 60px;
}

.recom .item .school {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.recom .item .sales_point2 span {
  color: var(--color-darkred);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(transparent 65%, var(--color-yellow) 65%);
}


/*
===== TOPICSBOX ==========================================
*/
.topicsBox {
  margin: var(--gutter-wide) auto;
}

.topicsBox__btn {
  text-align: right;
}

.topicsBox__btn a {
  display: inline-block;
  margin: .5em 0 .5em auto;
  letter-spacing: .1em;
  padding-right: 2em;
  position: relative;
}

.topicsBox__btn a::after {
  content: "";
  display: block;
  width: .5em;
  height: .5em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%) rotate(45deg) skew(10deg, 10deg);
  transition: all .3s;
}

.topicsBox__list {
  border-top: 1px solid var(--color-gray);
}

.topicsBox__item {
  border-bottom: 1px solid var(--color-gray);
}

.topicsBox__item a {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 1.5em 0;
}

.topicsBox__date {
  width: 24%;
  max-width: 120px;
  flex-shrink: 0;
}

.topicsBox__itemTtl {
  width: 72%;
  margin-right: 1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/*バナー*/
.bannerBox__item--offer {
  width: 96%;
  max-width: 700px;
  margin: var(--gutter) auto;
}

/*==================================================
  PC and tablet SETTINGS : Min768px
==================================================*/
@media screen and (min-width: 768px) {

  /*
===== ABOUTBOX ==========================================
*/
  .guidebookBox {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background: #fff;
    display: none;
  }

  .guidebookBox__close {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-main);
    background: #fff;
    border-radius: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    transition: all .3s;
    opacity: .7;
  }

  .guidebookBox__close:hover {
    opacity: 1;
  }

  .aboutBox__block01 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }

  .aboutBox__block01 .aboutBox__photo {
    width: 48%;
    margin: 0 auto 0 0;
  }

  .aboutBox__block01 .aboutBox__txt {
    width: 50%;
    max-width: (var(--width-content) / 2);
    padding-left: var(--gutter);
    padding-right: calc(50vw - (var(--width-content) / 2));
  }

  .aboutBox__block02 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }

  .aboutBox__block02 .aboutBox__photo {
    width: 50%;
    display: flex;
    flex-direction: column-reverse;
  }

  .aboutBox__block02 .aboutBox__photo__item {
    display: block;
  }

  .aboutBox__block02 .aboutBox__photo__item--01 {
    width: 50%;
    aspect-ratio: 1;
    margin-left: 10%;
  }

  .aboutBox__block02 .aboutBox__photo__item--02 {
    width: 75%;
    overflow: hidden;
    margin: 0 0 10% auto;
  }

  .aboutBox__block02 .aboutBox__txt {
    width: 50%;
    max-width: (var(--width-content) / 2);
    padding-left: calc(50vw - (var(--width-content) / 2));
    padding-top: var(--gutter-narrow);
    white-space: nowrap;
  }

  @media screen and (min-width: 1024px) {
    .aboutBox__block02 .aboutBox__photo__item--02 {
      margin-top: calc(-18% + 1em);
    }
  }

}

/*==================================================
  tablet SETTINGS : Min768px Maxvar(--width-content)
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .indexWire {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .indexmainSlider__item {
    width: 100%;
    height: 46.3vw !important;
  }

  .bannerWrap {
    margin: 30px auto;
    width: 96%;
  }

  /*ABOUTBOX*/
  .aboutBox__block01 .aboutBox__txt {
    padding-left: var(--gutter-supernarrow);
  }

  .aboutBox__block02 .aboutBox__txt p {
    margin-left: 1em;
  }

  /*イベント情報*/
  .eventBox {
    padding: var(--gutter-supernarrow);
  }

  .eventBox__list {
    gap: 0;
  }

  /*BRANDBOX*/
  .brandBox__txtWrap {
    padding-left: 2%;
  }

  /*物件を探す　物件数リスト*/

  .estateCountBox__totalWrap {
    flex-direction: column;
  }

  .estateCountBox__btn {
    padding: 2px 0 10px;
  }

  .estateCountBox__btn--member {
    padding: 18px 0;
  }

  .estateCountBox__btnTxt {
    font-size: clamp(10px, 1vw, 14px);
  }

  .topicsBox {
    padding: 0 var(--gutter-supernarrow);
  }

}

/*==================================================
  SP SETTINGS : Max767px
==================================================*/

@media screen and (max-width: 767px) {
  .indexWire {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }



  .indexmainBox .slick-dots {
    bottom: 0;
  }

  .slick-dots li button:before {
    width: 8px !important;
    height: 8px !important;
  }

  .bannerBox {
    width: 96%;
  }


  /*
  ===== MAIN ==========================================
  */

  .indexmainBox {
    height: calc(80svh - 100px);
    max-height: 500px;
  }

  .indexmainBox__txt {
    font-size: clamp(20px, 5.6vw, 32px);
    line-height: 1.6;
    text-align: center;
    top: clamp(40px, 12%, 120px);
    left: 0;
    right: 0;
  }

  /*
  ===== ABOUTBOX ==========================================
  */

  .guidebookBox__link {
    margin: var(--gutter) auto;
  }

  .aboutBox__ttl {
    margin-bottom: var(--gutter);
  }

  .aboutBox__txt {
    font-size: clamp(12px, 3.2vw, 16px);
    width: 90%;
    margin: var(--gutter) auto;
  }

  .aboutBox__block01 .aboutBox__photo {
    margin-right: 10%;
  }

  .aboutBox__block02 .aboutBox__photo {
    margin: 10% 0 10% 10%;
    display: flex;
    gap: 10%;
    justify-content: space-between;
    align-items: flex-start;
  }

  /*
  ===== SEARCHBOX - SP ==========================================
  */

  .searchBox__ttl {
    margin-bottom: 20px;
  }

  .searchBox__ttl img {
    width: 45%;
  }

  .searchBox__container {
    flex-direction: column-reverse;
  }

  /*物件数リスト*/
  .estateCountBox {
    width: 100%;
    max-width: unset;
  }

  .estateCountBox__totalBox {
    padding: 0 15px 20px;
  }

  .estateCountBox__totalTtl {
    font-size: clamp(14px, 4.6vw, 18px);
  }

  .estateCountBox__detailBox {
    padding: 15px;
  }

  .estateCountBox__detailWrap--shop {
    flex-direction: column;
  }

  .estateCountBox__btnTxt {
    font-size: clamp(12px, 3.8vw, 14px);
  }

  /*エリア別物件一覧*/
  .searchBox__rightCont {
    width: 100%;
    max-width: unset;
  }

  .areasearchBox__tabList {
    background: none;
    /*flex-wrap: wrap;*/
    justify-content: center;
  }

  .areasearchBox__tabItem {
    width: 32%;
    max-width: unset;
    flex-grow: 1;
  }

  .areasearchBox__tabItem:nth-of-type(1),
  .areasearchBox__tabItem:nth-of-type(2) {
    width: 49%;
  }

  .index__searchBox__mapBox__map {
    background: var(--color-darkwarmgray);
    padding: var(--gutter-narrow);
  }

  .index__searchBox__mapBox__map__itemWrap {
    margin-bottom: 10px;
  }

  .index__searchBox__mapBox__map__item__head {
    padding: .5em 1em;
    border: 1px solid #fff;
    background: var(--color-black);
    color: #fff;
    position: relative;
  }

  .index__searchBox__mapBox__map__item__head::before {
    content: "";
    display: block;
    width: 1em;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 1em;
  }

  .index__searchBox__mapBox__map__item__head::after {
    content: "";
    display: block;
    width: 1em;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 1em;
  }

  .index__searchBox__mapBox__map__item__head::after {
    transform: rotate(-90deg);
    transition: all 0.3s;
  }

  .index__searchBox__mapBox__map__item__head.open::after {
    transform: rotate(0);
  }

  .index__searchBox__mapBox__map__itemWrap:not(.c-shizuoka) .index__searchBox__mapBox__map__item__link {
    pointer-events: none;
  }

  /*静岡県：開閉しない*/
  .c-shizuoka .index__searchBox__mapBox__map__item__head::before {
    content: none;
  }

  .c-shizuoka .index__searchBox__mapBox__map__item__head::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: transparent;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: 1.5em;
  }

  .c-shizuoka .index__searchBox__mapBox__map__item__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .index__searchBox__mapBox__map__localList {
    border: 1px solid #fff;
    border-top: none;
    background: var(--color-palegray);
    padding: 1em;
    display: none;
  }

  .index__searchBox__mapBox__map__localList li {
    display: inline-block;
    width: 50%;
    font-size: clamp(13px, 3vw, 15px);
  }

  .searchBox__btn.searchBox__btn--signup {
    margin: var(--gutter) auto 0;
  }

  /*
  ===== EVENTBOX - SP ==========================================
  */

  .eventBox {
    padding: var(--gutter) 4%;
  }

  .eventBox__list:not(.slick-slider) .eventBox__item {
    width: 90%;
    max-width: 480px;
  }


  /*
  ===== BRANDBOX ==========================================
  */

  /*
===== BRANDBOX ==========================================
*/

  .brandBox {
    background: url(../img/index/brandBox_bg_sp.webp) no-repeat center / cover;
  }


  .brandBox__inner {
    flex-direction: column;
  }

  .brandBox__logo {
    width: 65%;
    padding: 20% 0;
  }

  .brandBox__txtWrap {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .brandBox__ttl {
    display: inline-block;
    text-align: left;
    font-size: 2.4rem;
  }

  .brandBox__txt {
    display: inline-block;
    text-align: left;
    margin: 1em 0;
    font-size: clamp(1.4rem, 3.6vw, 1.6rem);
    white-space: nowrap;
  }

  .brandBox__btnList{
    flex-direction: column;
    gap: 0;
  }

  .brandBox__btn {
    max-width: 100%;
    margin: 1em auto;
    text-align: left;
  }

  .brandBox__btn a {
    font-size: 16px;
  }

  /*
  ===== PICKUPBOX・RECOMBOX ==========================================
  */

  .pickupBox,
  .recomBox {
    overflow: hidden;
  }

  .pickupBox {
    padding: 15% 0;
  }

  .pickupBox::before,
  .pickupBox::after {
    height: 10vw;
  }

  /*
  ===== topicsBox ==========================================
  */
  .topicsBox {
    width: 85%;
    margin: var(--gutter-wide) auto;
  }

  .topicsBox__list {
    margin: var(--gutter) 0;
  }

  .topicsBox__btn {
    text-align: center;
    margin-left: 2em;
  }

  /*
  ===== SNSBOX ==========================================
  */
  .SNSBox {
    padding: 10% 2%;
  }

  .SNSBox ul {
    flex-direction: column;
    gap: 10px;
  }

  .SNSBox ul li {
    width: 100%;
  }
}