﻿@charset "utf-8";

/*==================================================
  GENERAL SETTINGS
==================================================*/
.indexWire {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.btn_archive {
  text-align: center;
}

.btn_archive a {
  display: block;
  width: 90%;
  max-width: 250px;
  margin: 0 auto;
  background: var(--color-black);
  color: #FFF;
  padding: 20px 0;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: var(--weight-button);
  line-height: 1;
  text-decoration: none;
  position: relative;
}

.btn_archive a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(3px 0px,
      /* 上頂点 */
      12px 6px,
      /* 右頂点 */
      3px 12px
      /* 下頂点 */
    );
}

/*==================================================
  TITLE COMMON
==================================================*/
.eventBox,
.searchBox,
.pickupBox,
.galleryBox,
.shopInfoBox,
.noticeBox {
  padding: 50px 0;
}

.pickupBox {
  position: relative;
  padding: 80px 0;
}

/*各タイトル共通設定*/
.indexPage__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: bold;
  line-height: 1.2;
}

.indexPage__ttl--en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-family: var(--font-en);
  font-size: 0.77em;
  font-weight: 900;
  color: var(--color-blue);
  letter-spacing: 0.03em;
}

.indexPage__ttl--en::before,
.indexPage__ttl--en::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 75px;
  height: 1px;
  background: var(--color-blue);
}

/*
===== SLIDER ==========================================
*/

/*dots*/
.indexmainBox .slick-dots {
  bottom: 20px;
}

.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 {
  width: calc(100% - 100px);
  overflow: hidden;
  margin: 0 auto;
}

/*
===== INTROBOX ==========================================
*/

.introBox {
  background: url(../img/index/bg_intro_01.svg) no-repeat center;
  background-size: clamp(230px, 90vw, 840px);
  background-position: 110% 70%;
}

.introBox__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 70px 0 90px;
}

/*現在の物件数*/
.introBox__landCountBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(80%, 380px);
}

.introBox__landCountTtl {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--color-gold);
  font-size: clamp(2.8rem, 3vw, 3.7rem);
  font-weight: bold;
  line-height: 1.4;
}

.introBox__landCountTtl--label {
  font-size: 0.7em;
}

.introBox__landCountWrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.introBox__landCountWrap img {
  width: clamp(45px, 4vw, 69px);
  aspect-ratio: 69 / 107;
}

.introBox__landCount {
  font-family: var(--font-en);
  font-size: clamp(12rem, 10vw, 18rem);
  font-weight: bold;
  line-height: 0.8;
}

.introBox__landCount--unit {
  font-size: 0.16em;
  padding-left: 5px;
}

/*サイトの説明*/
.introBox__siteInfoBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.introBox__ttl {
  font-size: clamp(2.1rem, 2.6vw, 2.9rem);
  color: var(--color-blue);
  font-weight: 800;
  line-height: 1;
}

.introBox__ttl--large {
  font-size: 1.3em;
}

.introBox__ttl--large.marker_gold {
  background: linear-gradient(transparent 70%, var(--color-gold) 70%);
}

.introBox__ttl--small {
  font-size: 0.56em;
  color: var(--color-black);
  font-weight: 500;
}

.introBox__ttl--middleDot {
  font-size: 0.7em;
  position: relative;
  top: -0.1em;
}

.introBox__siteInfoTxt {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 500;
}

.introBox__siteInfoTxt--bold {
  font-weight: bold;
}

.introBox__siteInfoTxt--blue {
  color: var(--color-blue);
  font-weight: bold;
}

.introBox__siteInfoTxt--blue .marker_gold {
  font-size: 1.3em;
}

.introBox__signupBtn {
  width: min(80%, 360px);
  text-align: center;
}

.introBox__signupBtn a {
  display: block;
  width: 100%;
  padding: 15px 0;
  background: var(--color-blue);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: var(--weight-button);
  color: #fff;
  line-height: 1.3;
  position: relative;
}

.introBox__signupBtn a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(3px 0px,
      /* 上頂点 */
      12px 6px,
      /* 右頂点 */
      3px 12px
      /* 下頂点 */
    );
}

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

/*.searchBox {
  background: url(../img/index/bg_search.webp) center/cover;
}*/

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

.searchBox__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  gap: 20px;
}

/*
----- areasearchBox rightCont MAP--------------------
*/

/*.searchBox__rightCont {
  max-width: 640px;
  width: 60%;
}*/

.areasearchBox__mapBox {
  width: 100%;
  height: 1140px;
  background: url(../img/index/areasearchBox_map1.webp) center no-repeat;
  position: relative;
  border: solid 3px var(--color-lightgray);
}

.areasearchBox__mapInner [class^="c-"] {
  filter: drop-shadow(0 2px 3px rgba(0, 65, 76, .6));
}

.areasearchBox__mapItem {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: solid 2px var(--color-black);
  background: #fff;
}

.areasearchBox__mapItemTtl,
.areasearchBox__mapItemNumBox {
  font-weight: bold;
  text-align: center;
  line-height: 0.9;
}

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

.areasearchBox__mapItemNumBox {
  font-size: 18px;
}

.areasearchBox__mapItemNum {
  font-family: var(--font-en);
  font-size: 70px;
  font-weight: 800;
}

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

  .areasearchBox__mapBox::after {
    position: absolute;
    content: "";
    background: url(../img/index/txt_search_01.svg) no-repeat center/ contain;
    top: 60px;
    left: -30px;
    width: clamp(200px, 30vw, 380px);
    aspect-ratio: 490 / 170;
    rotate: -8deg;
    filter: drop-shadow(4px 4px 0 rgba(174, 208, 231, 1));
  }

  .areasearchBox__mapInner [class^="c-"] {
    position: absolute;
  }

  /*強調エリア*/
  .areasearchBox__mapBox .c-23101 {
    background: var(--color-black);
    color: #fff;
    border-radius: 100%;
    padding: 1em;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /*北九州エリア*/
  .areasearchBox__mapBox .c-kitakyushu {
    top: 101px;
    left: 54%;
    transform: translateX(calc(-50% + 135px));
  }

  /*久留米エリア*/
  .areasearchBox__mapBox .c-kurume {
    bottom: 240px;
    left: 48%;
    transform: translateX(calc(-50% - 120px));
  }

  /*中心部*/
  .areasearchBox__mapBox .c-central {
    top: 433px;
    left: 21%;
    transform: translateX(calc(-50% + 14px));
  }

  /*筑後エリア*/
  .areasearchBox__mapBox .c-chikugo {
    bottom: 120px;
    left: 58%;
    transform: translateX(calc(-50% + 14px));
  }

  /*筑豊エリア*/
  .areasearchBox__mapBox .c-chikuho {
    top: 393px;
    left: 66%;
    transform: translateX(calc(-50% + 14px));
  }

  /*西エリア*/
  .areasearchBox__mapBox .c-west {
    top: 590px;
    left: 8%;
    transform: translateX(calc(-50% + 14px));
  }

  /*東エリア*/
  .areasearchBox__mapBox .c-east {
    top: 234px;
    left: 30%;
    transform: translateX(calc(-50% + 14px));
  }

  /*南エリア*/
  .areasearchBox__mapBox .c-south {
    top: 624px;
    left: 42%;
    transform: translateX(calc(-50% + 14px));
  }


  /*補助線*/
  .areasearchBox__mapBox .c-23102::before,
  .areasearchBox__mapBox .c-23103::before {
    position: absolute;
    content: '';
    width: 40px;
    border-top: 2px solid var(--color-darkgray);
    transform: rotate(45deg);
    top: 40px;
    left: 40px;
  }

  .areasearchBox__mapBox .c-23102::before {
    width: 100px;
    top: -40px;
    left: -80px;
  }

  .areasearchBox__mapBox .c-23103::before {
    top: -20px;
    left: -40px;
  }

  /*○○群*/
  .areasearchBox__mapBox .c-23103 .areasearchBox__itemTtl {
    font-size: 16px;
  }
}


/*物件検索へのボタン*/
.searchBox__linkBtn {
  width: min(90%, 470px);
  margin: var(--gutter) auto 0;
}

.searchBox__linkBtn a {
  display: block;
  padding: 20px 0;
  background-color: var(--color-black);
  color: #fff;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: var(--weight-button);
  text-align: center;
  line-height: 1.2;
  border: 1px solid #fff;
  position: relative;
}

.searchBox__linkBtn a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(3px 0px,
      /* 上頂点 */
      12px 6px,
      /* 右頂点 */
      3px 12px
      /* 下頂点 */
    );
}

.searchBox__linkBtnTxt {
  font-size: 14px;
}

.searchBox__linkBtn--station {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.recomBox {
  padding: 50px 0 100px;
  background: linear-gradient(to right, rgba(220, 182, 93, 0.2) 0%, rgba(124, 88, 2, 0.2) 100%);
  overflow: hidden;
  position: relative;
}

.recomBox::before {
  content: attr(data-en);
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(26%);
  font-family: var(--font-en);
  font-size: clamp(40px, 20vw, 150px);
  font-weight: bold;
  color: rgba(220, 182, 93, 0.6);
}

.recomBox__ttl {
  text-align: center;
  margin-bottom: 20px;
}

.recomBox__ttl--en {
  color: var(--color-gold);
}

.recomBox__ttl .indexPage__ttl--en::before,
.recomBox__ttl .indexPage__ttl--en::after {
  background: var(--color-gold);
}

/*新着物件スライダー*/
.recom .wrap {
  max-width: var(--width-content);
  margin: 0 auto;
  width: 100%;
}

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

.recom .slick-list {
  overflow: visible;
}

/*スライダー矢印*/
.recom .slick-arrow.slick-prev,
.recom .slick-arrow.slick-prev::before {
  left: 40px !important;
}

.recom .slick-arrow.slick-next,
.recom .slick-arrow.slick-next::before {
  right: 40px !important;
}

.recom .item {
  width: 300px;
  background: #FFF;
  border: solid 1px #ccc;
  position: relative;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
}

/*会員限定物件*/
.recomBox.recom .item.emember {
  border: none;
}

.recom .item.emember .memberItem {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/index/prplist_memberItem_bg.webp) no-repeat center / cover;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.recom .item.emember .memberItem__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background: none;
}

.recom .item.emember .memberItem__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background: none;
  transform: translateY(-20%);
}

.recom .item.emember .memberItem__txt {
  text-align: center;
  color: var(--color-black);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: bold;
  margin-bottom: clamp(10px, 2vw, 15px);
}

.recom .item.emember .memberItem__txt--blue {
  font-size: 1.2em;
  color: var(--color-blue);
}

.recom .item.emember .memberItem_Btn {
  padding: 1em 2.3em;
  margin-top: 10px;
  background-color: var(--color-blue);
  color: #fff;
  font-weight: var(--weight-button);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.3;
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
  position: relative;
  animation: 1.4s fuwafuwa infinite ease-in-out;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.recom .item.emember .memberItem_Btn_main {
  font-size: 1.6em;
  position: relative;
}

.recom .item.emember .memberItem_Btn::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: auto;
  right: 21px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(3px 0px,
      /* 上頂点 */
      12px 6px,
      /* 右頂点 */
      3px 12px
      /* 下頂点 */
    );
}

.recom .item.emember a img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

/*通常の物件(ぼかしなし)-------------------------▲*/
.recomBox__estateItemInner {
  display: flex;
  flex-direction: column;
  height: 100%;
  /*padding: 5px 10px;*/
  /*会員限定アイテムの余白は不要なためこちらで指定しない*/
}

.recom .item a {
  /*width: 100%;*/
  /*height: 100%;*/
  /*display: block;*/
  /*padding: 10px;*/
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recom .item.emember a {
  padding: 0;
  height: 100%;
}

.recomBox.recom_re .item.emember a {
  padding: 0;
}

.recom .item .inner {
  /*display: flex;
  flex-direction: column;*/
  /*height: 100%;*/
  /*padding: 0 10px 5px;
  flex-grow: 1;*/
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 10px 10px;
}

/*種別アイコン・所在地*/
.recom .item .box01 {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.recom .item .box01 .icon img {
  width: 50px;
  aspect-ratio: 5 / 2;
  display: inline-block !important;
  margin-right: 3px;
}

.recomBox__estateLocation {
  font-size: 16px;
  font-weight: bold;
}

/*価格*/
.recom .item .box03 .price {
  color: var(--color-winered);
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
}

.recom .item .box03 .price span {
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/*写真*/
.recom .item .photo {
  text-align: center;
}

.recom .item .photo img {
  width: 100%;
  height: 185px;
  display: block;
  margin: 0 auto;
}

/*物件概要*/
.recom .item .info {
  padding: 4px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
}

/*物件タイトル
.recom .item .info h3.ttl {
  color: #333;
  font-size: 16px;
  font-weight: bold;
}
*/

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

/*お支払い例*/
.recom .item .payment_pay {
  /*margin: 0 20px;*/
  padding: 10px 0 5px;
}

.recom .item .payment_pay dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recom .item .payment_pay dt,
.recom .item .payment_pay dd {
  font-weight: bold;
  line-height: 1;
}

.recom .item .payment_pay dd span {
  font-size: 16px;
  margin: 0 3px;
}

.recom .item .payment_pay .payment_txt {
  padding: 5px;
  font-size: 12px;
  text-align: center;
  background: var(--color-palegray);
  margin-top: 10px;
  line-height: 1;
}

/* スタッフコメント */
.recom .item .staffComment {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  min-height: 93px;
}

.recom .item .staffComment_img {
  width: 75px;
  height: auto;
  aspect-ratio: 1 / 1;
  min-width: 75px; /*safari 最小幅を固定 */
  max-width: 75px; 
  flex-shrink: 0;  /*safari 縮小を完全に禁止 */
}

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

.recom .item .staffComment_txtBox {
  width: calc(100% - 75px);
  min-width: 0;
  padding: 0 8px;
  text-align: left;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.recom .item .staffComment_name {
  font-size: 1.4rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recom .item .staffComment_name--point {
  font-size: 1.8rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

.recom .item .staffComment_txt {
  font-size: 1.3rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*
===== TOPICSBOX ==========================================
*/

.topicsBox {
  padding: 60px 0 40px;
  position: relative;
}

.topicsBox::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/index/bg_topics_01.webp) no-repeat center / cover;
  z-index: -1;
}

.topicsBox__inner {
  min-height: 280px;
}

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

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

.topicsBox__item a {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 50px;
}

.topicsBox__date {
  font-family: var(--font-en);
  font-size: 1.6rem;
  /*width: 32%;
  max-width: 150px;*/
  width: auto;
  flex-shrink: 0;
  font-weight: 500;
}

.topicsBox__itemTtl {
  width: 75%;
  /*max-width: 360px;*/
  margin: 15px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 600;

}

.topicsBox .cate_new,
.topicsBox .cate_popular {
  padding: 5px 10px;
  margin-left: 15px;
}

.topicsBox__btn {
  margin: var(--gutter) auto 0;
  width: min(90%, 470px);
}

.topicsBox__btn a {
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
}

/*
===== SNSBOX ==========================================
*/
.SNSBox {
  background: var(--color-palegray);
  padding: 50px;
}

.SNSBox ul {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.SNSBox ul li {
  width: 48%;
  margin-bottom: 30px;
}

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

/*==================================================
  tablet SETTINGS : Min768px Max1080px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .indexWire {
    width: 98%;
    margin: 0 auto;
    overflow: hidden;
  }

  /*
  ===== INTROBOX ==========================================
  */

  .introBox__inner {
    gap: 30px;
    padding: var(--gutter) 0 70px;
    flex-direction: column-reverse;
    align-items: center;
  }

  .introBox__siteInfoBox {
    align-items: center;
  }

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

  /* 地図 */
  .areasearchBox__mapBox {
    background-size: cover;
    background-position: 40% 10%;
  }

  .areasearchBox__mapBox::after {
    left: -10px;
  }

  /*久留米エリア*/
  .areasearchBox__mapBox .c-kurume {
    bottom: 190px;
  }

}

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

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

  .eventBox,
  .searchBox,
  .galleryBox,
  .shopInfoBox,
  .topicsBox,
  .columnBox {
    padding: 10% 0;
  }

  .slick-list.draggable {
    width: calc(100% - 60px);
    overflow: visible;
  }

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

  /*
  ===== INTROBOX - SP ==========================================
  */
  .introBox {
    background-position: 180% 60%;
  }

  .introBox__inner {
    padding: 40px 0;
    flex-direction: column-reverse;
    align-items: center;
  }

  .introBox__siteInfoBox {
    align-items: center;
    width: 95%;
  }

  .introBox__ttl {
    line-height: 1.5;
  }

  .introBox__siteInfoTxt {
    line-height: 1.7;
  }


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

  .searchBox__ttl {
    margin-bottom: 20px;
  }

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

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

  .areasearchBox__mapBox {
    height: unset;
    background: none;
    margin-bottom: 20px;
    border: none;
  }

  .areasearchBox__mapInner {
    display: flex;
    flex-wrap: wrap;
  }

  .areasearchBox__mapInner [class^="c-"] {
    display: flex;
    width: 48%;
    margin: 1%;
    filter: none;
  }

  .areasearchBox__mapItem {
    border: 1px solid #ccc;
    width: 100%;
    margin: 5px 1% 0;
    padding: 0;
    position: static;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .areasearchBox__mapItemInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    width: 100%;
  }

  .areasearchBox__mapItemTtl,
  .areasearchBox__mapItemNumBox {
    font-size: 18px;
    font-weight: 600;
    text-shadow: none;
    color: var(--color-black);
    background: none;
  }

  .areasearchBox__mapItemNum {
    font-size: 20px;
    margin-right: 2px;
  }


  /* SP専用マップ */

  /*SP版の地図エリア */
  .areasearchBox__spMapBox.areasearchBox__mapBox {
    width: 100%;
    height: 460px;
    overflow: hidden;
    position: relative;
    background: none;
  }

  /*内部ラッパー */
  .areasearchBox__mapInner--sp {
    width: 100%;
    height: 100%;
    position: relative;
    touch-action: none;
    overflow: hidden;
  }

  /* Panzoom対象 */
  .areasearchBox__panzoomArea {
    width: 130%;
    height: 130%;
    transform-origin: 0 0;
    touch-action: none;
    will-change: transform;
    position: relative;
  }

   .areasearchBox__panzoomArea::before {
    position: absolute;
    content: "";
    background: url(../img/index/illust_search_01.webp) no-repeat center / contain;
    top: 20px;
    left: 12px;
    width: clamp(60px, 22vw, 90px);
    aspect-ratio: 278 / 294;
    z-index: 10;
  }

  /* 地図画像 */
  .areasearchBox__mapImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    position: relative;
  }

  /*地名ラベル共通 */
  .areasearchBox__spMapBox .areasearchBox__mapItemBox {
    position: absolute;
    filter: drop-shadow(0 2px 3px rgba(0, 65, 76, .6));
    transform: translate(-50%, -50%);
  }

  .areasearchBox__spMapBox .areasearchBox__mapItem {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #fff;
    border: solid 2px var(--color-black);
    border-radius: 6px;
    /*SPのエリア一覧CSSを削除*/
    margin: 0;
    width: unset;
  }

  .areasearchBox__spMapBox .areasearchBox__mapItemInner {
    display: block;
    width: unset;
    padding: 0;
  }

  .areasearchBox__spMapBox .areasearchBox__mapItemTtl,
  .areasearchBox__spMapBox .areasearchBox__mapItemNumBox {
    font-weight: bold;
    text-align: center;
    line-height: 0.9;
  }

  .areasearchBox__spMapBox .areasearchBox__mapItemTtl {
    font-size: 16px;
    white-space: pre-wrap;
  }

  .areasearchBox__spMapBox .areasearchBox__mapItemNumBox {
    font-size: 14px;
  }

  .areasearchBox__spMapBox .areasearchBox__mapItemNum {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 800;
  }

  /*北九州エリア*/
  .areasearchBox__spMapBox .c-kitakyushu {
    top: 71px;
    left: 63%;
  }

  /*久留米エリア*/
  .areasearchBox__spMapBox .c-kurume {
    bottom: 30px;
    left: 39%;
  }

  /*中心部*/
  .areasearchBox__spMapBox .c-central {
    top: 313px;
    left: 21%;
  }

  /*筑後エリア*/
  .areasearchBox__spMapBox .c-chikugo {
    bottom: -19px;
    left: 72%;
  }

  /*筑豊エリア*/
  .areasearchBox__spMapBox .c-chikuho {
    top: 193px;
    left: 66%;
    transform: translateX(-40%);
  }

  /*西エリア*/
  .areasearchBox__spMapBox .c-west {
    top: 400px;
    left: 14%;
  }

  /*東エリア*/
  .areasearchBox__spMapBox .c-east {
    top: 234px;
    left: 30%;
  }

  /*南エリア*/
  .areasearchBox__spMapBox .c-south {
    top: 374px;
    left: 48%;
  }

  /* アコーディオンボタン */
  .map-accordion-btn {
    width: 100%;
    padding: 15px 20px;
    background: var(--color-blue);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: var(--weight-button);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    position: relative;
  }

  .map-accordion-btn::before {
    position: absolute;
    content: "";
    background: url(../img/index/illust_search_02.svg) no-repeat center;
    width: clamp(20px, 9vw, 23px);
    aspect-ratio: 23 / 35;
    left: 19%;
    top: 50%;
    transform: translateY(-50%);
  }

  /*.map-accordion-btn:focus {
    background: #fff;
    color: var(--color-blue);
    border: solid 1px var(--color-blue);
    transform: translateY(-1px);
  }*/

  /* アイコン回転アニメーション */
  .map-accordion-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
  }

  .map-accordion-icon.open {
    transform: translateY(-50%) rotate(180deg);
  }

  /* アコーディオンコンテンツ */
  .map-accordion-content {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .map-accordion-content.closed {
    max-height: 0;
    opacity: 0;
  }

  .map-accordion-content.open {
    max-height: 650px;
    opacity: 1;
  }

  /*物件検索へのリンク*/
  /*.searchBox__linkBtn {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.7;
  }*/

  .searchBox__linkBtn a::before {
    position: absolute;
    content: "";
    background: url(../img/index/icon_search-check.svg) no-repeat center;
    width: 25px;
    aspect-ratio: 25 / 25;
    bottom: 0;
    left: 15%;
    transform: translateY(-63%);
  }

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

  .recomBox {
    overflow: hidden;
    padding: 50px 0 70px;
  }

  /*スライダー矢印*/
  .recom .slick-arrow.slick-prev,
  .recom .slick-arrow.slick-prev::before {
    left: 10px !important;
  }

  .recom .slick-arrow.slick-next,
  .recom .slick-arrow.slick-next::before {
    right: 10px !important;
  }

  .recom .item.emember .memberItem_Btn {
    padding: 1em 3em;
  }

  /*
  ===== noticeBox ==========================================
  */

  .topicsBox {
    width: 100%;
    max-width: unset;
    overflow: hidden;
  }

  .topicsBox::before {
    background-position: 65% 10%;
    filter: blur(2px);
    height: calc(100% + 4px);
    top: -2px;
  }

  .topicsBox__inner {
    min-height: unset;
  }

  .topicsBox__item a {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }

  .topicsBox__date,
  .topicsBox__itemTtl {
    width: 100%;
    margin: 0;
  }

  .topicsBox__item {
    padding: 20px;
  }

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

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

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