﻿@charset "utf-8";

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

/*準備中表示*/
.indexPage__notice {
  text-align: center;
  font-size: 16px;
}

/*==================================================
  TITLE COMMON
==================================================*/
.indexPage__ttl {
  font-size: clamp(4rem, 5vw, 8rem);
  font-weight: 900;
  margin-bottom: var(--gutter);
  line-height: 1.3;
}
.indexPage__subTtl {
  font-size: clamp(1.7rem, 4vw, 2rem);
  font-weight: bold;
  margin-bottom: 5px;
}

/*
===== SLIDER ==========================================
*/
.indexmainBox {
  max-height:500px;
  overflow: hidden;
}

.indexmainBox .slick-list.draggable {
  width: 100%;
}

.indexmainBox__wrap {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

/*dots*/
.slick-dots {
  bottom: -45px!important;
}

.slick-dots li,
.slick-dots li button {
  width: 10px !important;
  height: 10px !important;
}

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

.indexmainBox .slick-dots {
  bottom: 25px!important;
}
.indexmainBox .slick-dots li.slick-active button:before {
  background: var(--color-green);
}

.indexmainBox .slick-dots li button:before {
  background: var(--color-lightgray);
}

.bannerWrap {
  text-align: center;
  margin: var(--gutter-wide) auto 0;
}

@media (any-hover:hover) {
  .bannerWrap a:hover {
    opacity: .8;
  }
}

.slick-list.draggable {
  width: calc(100% - 100px);
  overflow: hidden;
  margin: 0 auto;
}

/*
===== EVENTBOX ==========================================
*/
.eventBox {
  margin-top: var(--gutter-wide);
  position: relative;
  padding-bottom: var(--gutter-wide);
}
.eventBox::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: var(--color-paleyellow);
  z-index: -1;
}
.eventBox__ttl {
  text-align: center;
}

.eventBox__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.eventBox__list {
  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: 30px;
}

.eventBox__item {
  width: calc((100% - 30px) / 2);
  max-width: 585px;
  position: relative;
}

.eventBox__item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: var(--rad-common);
}

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

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

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

.eventBox__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}

.eventBox__detail {
  padding: 20px;
  font-size: 1.4rem;
}

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

.eventBox__shopWrap {
  margin-top: 10px;
}

.eventBox__itemTtl {
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2rem;
}

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

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

.eventBox__time {
  margin-top: var(--gutter);
}
.eventBox__time,
.eventBox__place {
  font-size: 1.2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 340px;
}

.eventBox__item__btn {
  background: var(--color-green);
  border-radius: var(--rad-common) 0 var(--rad-common) 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 15px 50px;
  width: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.eventBox__item__btn::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 17px;
  background: url(../img/common/arrow_white.svg) no-repeat center / contain;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (any-hover:hover) {
  .eventBox__item a:hover {
    transform: scale(0.97);
  }
}

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

.searchBox {
  position:relative;
  padding-top: clamp(6rem, 5vw, 12rem);
}
.searchBox::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:550px;
  background:linear-gradient(
    to right,
    var(--color-green) 50%,
    var(--color-blue) 50%
  );
  z-index: -1;
}

.searchBox__inner {
  background: #fff;
  border-radius: var(--rad-common);
  position: relative;
  &::before {
    position: absolute;
    content: "SEARCH";
    color: #fff;
    font-family: var(--font-en);
    font-size: 4rem;
    left: 2rem;
    top: -4.8rem;
  }
}

/* searchBox__mainWrap */
.searchBox__mainWrap {
  padding: var(--gutter) var(--gutter) clamp(3.5rem, 6vw, 7rem);
}
.searchBox__topWrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}
.searchBox__ttl {
  margin-bottom: 0;
}
.searchBox__ttl span {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
}

.searchBox__totalTtl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0;
  padding-bottom: var(--gutter-supernarrow);
  &::before {
    content: "";
    display: block;
    width: 2.4rem;
    height: 1px;
    background: currentColor;
    transform: rotate(45deg);
  }
  &::after {
    content: "";
    display: block;
    width: 2.4rem;
    height: 1px;
    background: currentColor;
    transform: rotate(-45deg);
  }
}

.searchBox__totalNumBox {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .2rem;
  margin: 0;
  line-height: 1;
}

.searchBox__num {
  display: flex;
  gap: 0.2rem;
  font-family: var(--font-en);
  font-size: 0;
}

.searchBox__num > span {
  display: grid;
  place-items: center;
  width: 10rem;
  aspect-ratio: 1 / 1.2;
  border-radius: var(--rad-common);
  background: var(--color-yellow);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 700;
  line-height: 1;
}

.searchBox__totalNumBox::after {
  content: "件";
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  padding-left: 7px;
}

.searchBox__numWrap {
  display: flex;
  justify-content: space-between;
  gap: 1px;
}
.searchBox__numDetail {
  background: var(--color-palegray);
  border-radius: var(--rad-common);
  align-items: center;
  font-weight: bold;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  width: calc(100% / 3);
}
.searchBox__numDetail__num {
  font-size: clamp(2.4rem, 5vw, 6rem);
  font-family: var(--font-en);
  font-weight: bold;
}
.searchBox__numDetail--general .searchBox__numDetail__num {
  color: var(--color-green);
}
.searchBox__numDetail--member .searchBox__numDetail__num {
  color: var(--color-orange);
}
.searchBox__numDetail--shop .searchBox__numDetail__num {
  color: var(--color-blue);
}
.searchBox__numDetail__num::after {
  content: "件";
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  padding-left: 5px;
  color: var(--color-black);
}

/*
----- areasearchBox rightCont --------------------
*/
.areasearchBox__tabList {
  width: 100%;
  border-bottom: 2px solid var(--color-black);
  display: flex;
  -webkit-flex-wrap: nowrap;
  /* Safari */
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
  gap: 2px;
}

.areasearchBox__tabItem {
  width: calc(91% / 4);
  background-color: var(--color-palegray);
  border-radius: var(--rad-common) var(--rad-common) 0 0;
  color: var(--color-gray-a5);
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px 5px;
  position: relative;
  transition: all 0.5s ease;
}
@media (any-hover:hover) {
  .areasearchBox__tabItem:hover {
    cursor: pointer;
    opacity: 1;
    background-color: var(--color-black);
    color: #fff;
  }
}

.areasearchBox__tabItem.active {
  background-color: var(--color-black);
  color: #fff;
}

.areasearchBox__tabTxt {
  line-height: 1.1;
}

.areasearchBox .animationBox {
  background: var(--color-yellow);
  border-radius: var(--rad-common);
  text-align: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%);
  width: 175px;
  padding: .5rem;
  z-index: 3;
}

.areasearchBox .mapWrap__icon {
  display: inline-block;
  position: relative;
  color: var(--color-black);
  font-size: 1.6rem;
}

.areasearchBox .mapWrap__icon:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 8px solid var(--color-yellow);
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.areasearchBox .areasearchBox__tabItem .animationBox {
  display: none;
}

.areasearchBox .areasearchBox__tabItem.active .animationBox {
  display: block;
}

.areasearchBox__mapBox {
  width: 100%;
  height: 693px!important;
  background: url(../img/index/areasearchBox_map1.webp) center no-repeat;
  position: relative;
}
.areasearchBox__mapBox--tab {
  display: none;
}

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

/* 0件の時 */
.areasearchBox__mapItem.is-zero {
  pointer-events: none;
}
.areasearchBox__mapItem.is-zero .areasearchBox__mapItemNumBox {
  color: var(--color-gray);
}

@media (any-hover:hover) {
  .areasearchBox__mapItem:hover {
    color: var(--color-red);
  }
}

.areasearchBox__mapItemTtl,
.areasearchBox__mapItemNumBox {
  font-weight: bold;
  text-align: center;
  line-height: 1;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  paint-order: stroke;
}

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

.areasearchBox__mapItemNum {
  font-size: 2.6rem;
  line-height: 1;
}

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

  .areasearchBox__mapItem {
    position: absolute;
  }

  /*高知市*/
  .areasearchBox__mapBox .c-39201{
    top: 160px;
    left: 50%;
    transform: translateX(calc(-50% + 85px));
  }
  
  /*南国市*/
  .areasearchBox__mapBox .c-39204{
    top: 114px;
    left: 50%;
    transform: translateX(calc(-50% + 138px));
  }
  
  /*土佐市*/
  .areasearchBox__mapBox .c-39205{
    top: 274px;
    left: 50%;
    transform: translateX(calc(-50% + 93px));
  }
  
  /*須崎市*/
  .areasearchBox__mapBox .c-39206{
    top: 265px;
    left: 50%;
    transform: translateX(calc(-50% - 27px));
  }
  
  /*香南市*/
  .areasearchBox__mapBox .c-39211{
    top: 160px;
    left: 50%;
    transform: translateX(calc(-50% + 197px));
  }
  
  /*香美市*/
  .areasearchBox__mapBox .c-39212{
    top: 72px;
    left: 50%;
    transform: translateX(calc(-50% + 235px));
  }
  
  /*いの町*/
  .areasearchBox__mapBox .c-39386{
    top: 59px;
    left: 50%;
    transform: translateX(calc(-50% - 45px));
  }
  
  /*仁淀川町*/
  .areasearchBox__mapBox .c-39387{
    top: 138px;
    left: 50%;
    transform: translateX(calc(-50% - 132px));
  }
  
  /*佐川町*/
  .areasearchBox__mapBox .c-39402{
    top: 199px;
    left: 50%;
    transform: translateX(calc(-50% - 45px));
  }
  
  /*越知町*/
  .areasearchBox__mapBox .c-39403{
    top: 139px;
    left: 50%;
    transform: translateX(calc(-50% - 60px));
  }
  
  /*日高村*/
  .areasearchBox__mapBox .c-39410{
    top: 153px;
    left: 50%;
    transform: translateX(calc(-50% + 4px));
  }
  
  /*大川村*/
  .areasearchBox__mapBox .c-39364{
    top: 9px;
    left: 50%;
    transform: translateX(calc(-50% + 25px));
  }
  
  /*本山町*/
  .areasearchBox__mapBox .c-39341{
    top: 7px;
    left: 50%;
    transform: translateX(calc(-50% + 117px));
  }
  
  /*大豊町*/
  .areasearchBox__mapBox .c-39344{
    top: 12px;
    left: 50%;
    transform: translateX(calc(-50% + 185px));
  }
  
  /*土佐町*/
  .areasearchBox__mapBox .c-39363{
    top: 63px;
    left: 50%;
    transform: translateX(calc(-50% + 70px));
  }
  
  /*宿毛市*/
  .areasearchBox__mapBox .c-39208{
    top: 500px;
    left: 50%;
    transform: translateX(calc(-50% - 315px));
  }
  
  /*土佐清水市*/
  .areasearchBox__mapBox .c-39209{
    top: 620px;
    left: 50%;
    transform: translateX(calc(-50% - 213px));
  }
  
  /*四万十市*/
  .areasearchBox__mapBox .c-39210{
    top: 440px;
    left: 50%;
    transform: translateX(calc(-50% - 270px));
  }
  
  /*中土佐町*/
  .areasearchBox__mapBox .c-39401{
    top: 298px;
    left: 50%;
    transform: translateX(calc(-50% - 100px));
  }

  /*檮原町*/
  .areasearchBox__mapBox .c-39405{
    top: 239px;
    left: 50%;
    transform: translateX(calc(-50% - 240px));
  }

  /*四万十町*/
  .areasearchBox__mapBox .c-39412{
    top: 364px;
    left: 50%;
    transform: translateX(calc(-50% - 180px));
  }

  /*津野町*/
  .areasearchBox__mapBox .c-39411{
    top: 229px;
    left: 50%;
    transform: translateX(calc(-50% - 161px));
  }

  /*大月町*/
  .areasearchBox__mapBox .c-39424{
    top: 605px;
    left: 50%;
    transform: translateX(calc(-50% - 350px));
  }

  /*三原村*/
  .areasearchBox__mapBox .c-39427{
    top: 552px;
    left: 50%;
    transform: translateX(calc(-50% - 260px));
  }

  /*黒潮町*/
  .areasearchBox__mapBox .c-39428{
    top: 450px;
    left: 50%;
    transform: translateX(calc(-50% - 158px));
  }

  /*愛南町*/
  .areasearchBox__mapBox .c-38506{
    top: 495px;
    left: 50%;
    transform: translateX(calc(-50% - 390px));
  }

  /*室戸市*/
  .areasearchBox__mapBox .c-39202{
    top: 276px;
    left: 50%;
    transform: translateX(calc(-50% + 412px));
  }

  /*安芸市*/
  .areasearchBox__mapBox .c-39203{
    top: 124px;
    left: 50%;
    transform: translateX(calc(-50% + 310px));
  }

  /*安田町*/
  .areasearchBox__mapBox .c-39304{
    top: 205px;
    left: 50%;
    transform: translateX(calc(-50% + 328px));
  }

  /*芸西村*/
  .areasearchBox__mapBox .c-39307{
    top: 165px;
    left: 50%;
    transform: translateX(calc(-50% + 255px));
  }

  /*馬路村*/
  .areasearchBox__mapBox .c-39306{
    top: 110px;
    left: 50%;
    transform: translateX(calc(-50% + 388px));
  }

  /*北川村*/
  .areasearchBox__mapBox .c-39305{
    top: 189px;
    left: 50%;
    transform: translateX(calc(-50% + 402px));
  }

  /*東洋町*/
  .areasearchBox__mapBox .c-39301{
    top: 186px;
    left: 50%;
    transform: translateX(calc(-50% + 476px));
  }

  /*田野町*/
  .areasearchBox__mapBox .c-39303{
    top: 274px;
    left: 50%;
    transform: translateX(calc(-50% + 276px));
  }

  /*奈半利町*/
  .areasearchBox__mapBox .c-39302{
    top: 332px;
    left: 50%;
    transform: translateX(calc(-50% + 303px));
  }

  /*補助線*/
  .areasearchBox__mapBox .c-39205::before,
  .areasearchBox__mapBox .c-39303::before,
  .areasearchBox__mapBox .c-39302::before {
    position: absolute;
    content: '';
    width: 40px;
    border-top: 1px solid var(--color-black);
    transform: rotate(45deg);
    top: 40px;
    left: 40px;
  }
  .areasearchBox__mapBox .c-39205::before{
    top: -20px;
    left: -34px;
  }
  .areasearchBox__mapBox .c-39303::before{
    top:10px;
    left:45px;
    width: 40px;
    transform: rotate(-45deg);
  }
  .areasearchBox__mapBox .c-39302::before{
    top:-25px;
    left:35px;
    width: 60px;
    transform: rotate(-45deg);
  }
}

/*物件検索へのボタン*/
.searchBox__linkBtnWrap {
  position: absolute;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
  right: 3rem;
  bottom: 3rem;
}

.searchBox__linkBtn {
  background-color: var(--color-paleyellow);
  border: 2px solid var(--color-lightgray);
  border-radius: var(--rad-common);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  width: 280px;
  height: 80px;
  padding: 0 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  &::before {
    content: "";
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(../img/common/icon_train.svg) no-repeat center / contain;
  }
}
@media (any-hover:hover) {
  .searchBox__linkBtn:hover {
    background: var(--color-yellow);
  }
}


.searchBox__linkBtn--other::before {
  background: url(../img/common/icon_glass.svg) no-repeat center / contain;
}

.searchBox__linkBtnSubTxt {
  font-size: 1.4rem;
}

/*
===== selectionBox 厳選おすすめ物件 ==========================================
*/
.selectionBox {
  position:relative;
  padding-top: clamp(6rem, 5vw, 12rem);
  overflow: hidden;
  background: var(--color-palegray);
  margin-top: var(--gutter-wide);
}
.selectionBox::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:450px;
  background: var(--color-green);
}
.selectionBox__inner {
  background: var(--color-palegray);
  border-radius: var(--rad-common);
  position: relative;
  padding: var(--gutter) var(--gutter) var(--gutter-wide);
  width: 100%;
  max-width: var(--width-content);
  margin: var(--gutter) auto 0;
  &::before {
    position: absolute;
    content: "RECOMMEND";
    color: var(--color-palegray);
    font-family: var(--font-en);
    font-size: 4rem;
    left: 2rem;
    top: -4.8rem;
  }
}
.selectionBox__ttl {
  position: relative;
}
.selectionBox__ttl::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 156px;
  height: 174px;
  background: url(../img/index/img_selection_01.svg) no-repeat center / contain;
  right: 0;
  bottom: -50px;
  position: absolute;
}
#selectionBox .slick-list {
  overflow: visible;
}

.selectionBox__item {
  width: 360px;
  margin: 0 15px;
}

.selectionBox__item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: var(--rad-common);
  position: relative;
}
@media (any-hover:hover) {
  .selectionBox__item a:hover {
    transform: scale(0.97);
  }
}

.cate_reservable {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-yellow);
  border-radius: var(--rad-common) 0 var(--rad-common) 0;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5px 10px;
  z-index: 2;
}

.selectionBox__photo {
  aspect-ratio: 3/ 2;
  overflow: hidden;
  position: relative;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}

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

.selectionBox__num {
  position: absolute;
  bottom: -3px;
  right: 1rem;
  color: #fff;
  font-size: clamp(2rem, 4rem + 3vw, 3rem);
  font-weight: bold;
}

.selectionBox__num span {
  font-size: 2em;
}

.selectionBox__detail {
  padding: 0 2rem 1.5rem 2rem;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.selectionBox__iconWrap {
  display: block;
  position: absolute;
  top: -30px;
}

.selectionBox__iconWrap span,
.voiceBox__item__tagList .voiceBox__item__tagItem {
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 8px;
  font-weight: 700;
  font-size: 1.4rem;
  background: #fff;
}

.selectionBox__itemTtl {
  text-align: left;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 1.8rem);
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-top: 2rem;
}

.selectionBox__access {
  margin: 12px 0;
  font-size: 1.4rem;
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  padding-left: 20px;
}

.selectionBox__access::after {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  background: url(../img/common/icon_access.svg) no-repeat center / contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.selectionBox__intro {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .85em;
}

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

.selectionBox__inner>.selectionBox__list>.selectionBox__item:nth-child(3n) {
  margin-right: 0;
}

.selectionBox__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  flex-flow: row wrap;
}

.selectionBox__item .btn {
  text-align: center;
  font-weight: bold;
  position: relative;
  padding: .75em 1em;
  font-size: clamp(1.4rem, 1rem + 1vw, 2rem);
  color: #fff;
  border-radius: 0 0 var(--rad-common) var(--rad-common);
}

.selectionBox__item .btn::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow_white.svg) no-repeat center / contain;
  top: 50%;
  right: 25%;
  transform: translate(-50%, -50%);
}

.selectionBox__item .reservableBtn {
  background: var(--color-green);
}

.selectionBox__item .detailBtn {
  background: var(--color-blue);
}

.selectionBox .btn_archive a {
  margin-top: clamp(4rem, 5vw, 8rem);
}

/*
===== RECOMBOX 注目物件/新着物件 ==========================================
*/
/* 注目物件 */
.pickupBox {
  position:relative;
  padding-top: clamp(6rem, 5vw, 12rem);
  overflow: hidden;
  margin-top: var(--gutter-wide);
}
.pickupBox::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:450px;
  background: var(--color-blue);
}
.pickupBox__inner {
  background: #fff;
  border-radius: var(--rad-common);
  position: relative;
  padding: var(--gutter) var(--gutter) var(--gutter-wide);
  max-width: var(--width-content);
  margin: var(--gutter) auto 0;
  &::before {
    position: absolute;
    content: "PICKUP";
    color: #fff;
    font-family: var(--font-en);
    font-size: 4rem;
    left: 2rem;
    top: -4.8rem;
  }
}

.pickupBox__ttl {
  position: relative;
}
.pickupBox__ttl .indexPage__ttl--small {
  font-size: .75em;
}
.pickupBox__ttl .indexPage__ttl--small span {
  font-size: .65em;
}
.pickupBox__ttl::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 204px;
  height: 190px;
  background: url(../img/index/img_pickupBox_01.svg) no-repeat center / contain;
  right: 0;
  bottom: -50px;
  position: absolute;
}

/* 新着物件 */
.newArrivalsBox {
  position:relative;
  padding-top: clamp(6rem, 5vw, 12rem);
  overflow: hidden;
}
.newArrivalsBox::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:450px;
  background: var(--color-yellow);
}
.newArrivalsBox__inner {
  background: #fff;
  border-radius: var(--rad-common);
  position: relative;
  padding: var(--gutter) var(--gutter) 0;
  max-width: var(--width-content);
  margin: var(--gutter) auto 0;
  &::before {
    position: absolute;
    content: "LATEST";
    color: #fff;
    font-family: var(--font-en);
    font-size: 4rem;
    left: 2rem;
    top: -4.8rem;
  }
}
.newArrivalsBox__ttl {
  position: relative;
}
.newArrivalsBox__ttl::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 272px;
  height: 150px;
  background: url(../img/index/img_newArrivalBox_01.svg) no-repeat center / contain;
  right: 0;
  bottom: -50px;
  position: absolute;
}

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

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

.recom .item {
  width: 300px;
  background: #FFF;
  border: solid 1px #eee;
  border-radius: var(--rad-common);
  position: relative;
  margin: 0 15px;
  transition: all 0.5s ease;
}

/*会員限定物件*/
.recom .item.emember .memberItem {
  border-radius: var(--rad-common);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.recom .item.emember .memberItem__body {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: var(--rad-common);
}

.recom .item.emember .memberItem__txt {
  font-size: 18px;
  margin-bottom: 0;
}

.recom .item.emember .memberItem__btn {
  max-width: 240px;
  width: 100%;
  border-radius: var(--rad-common);
  background: var(--color-orange);
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1.5rem;
  padding: 10px 0;
  line-height: 1.4;
  position: relative;
}

.recom .item.emember .memberItem__btn span {
  display: block;
  font-size: 1.6em;
}

.recom .item.emember .memberItem__btn::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 14px;
  background: url(../img/common/arrow_white.svg) no-repeat center / contain;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (any-hover:hover) {
  .recom .item:hover {
    transform: scale(0.97);
  }
  .recom .item:hover .memberItem__btn {
    background: #fff;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
  }
  .recom .item:hover .memberItem__btn::after {
    background: url(../img/common/arrow_orange.svg) no-repeat;
  }
}

/*会員限定物件のぼかし*/
/*スタッフコメント有(注目物件)*/
.recom .itemList--hasStaffComment .item.emember.land:nth-of-type(3n-2) .memberItem {
  background: url(../img/basic/btn_prpregist02_land01.webp) no-repeat center / cover;
}

.recom .itemList--hasStaffComment .item.emember.land:nth-of-type(3n-1) .memberItem {
  background: url(../img/basic/btn_prpregist02_land02.webp) no-repeat center / cover;
}

.recom .itemList--hasStaffComment .item.emember.land:nth-of-type(3n) .memberItem {
  background: url(../img/basic/btn_prpregist02_land03.webp) no-repeat center / cover;
}

.recom .itemList--hasStaffComment .item.emember.house:nth-of-type(3n-2) .memberItem {
  background: url(../img/basic/btn_prpregist02_house01.webp) no-repeat center / cover;
}

.recom .itemList--hasStaffComment .item.emember.house:nth-of-type(3n-1) .memberItem  {
  background: url(../img/basic/btn_prpregist02_house02.webp) no-repeat center / cover;
}

.recom .itemList--hasStaffComment .item.emember.house:nth-of-type(3n) .memberItem {
  background: url(../img/basic/btn_prpregist02_house03.webp) no-repeat center / cover;
}

.recom .itemList--hasStaffComment .item.emember.mansion:nth-of-type(3n-2) .memberItem,
.recom .itemList--hasStaffComment .item.emember.otherAll:nth-of-type(3n-2) .memberItem,
.recom .itemList--hasStaffComment .item.emember.otherPart:nth-of-type(3n-2) .memberItem {
  background: url(../img/basic/btn_prpregist02_mansion01.webp) no-repeat center / cover;
}

.recom .itemList--hasStaffComment .item.emember.mansion:nth-of-type(3n-1) .memberItem,
.recom .itemList--hasStaffComment .item.emember.otherAll:nth-of-type(3n-1) .memberItem,
.recom .itemList--hasStaffComment .item.emember.otherPart:nth-of-type(3n-1) .memberItem {
  background: url(../img/basic/btn_prpregist02_mansion02.webp) no-repeat center / cover;
}

.pickupBox .itemList--hasStaffComment .item.emember.mansion:nth-of-type(3n) .memberItem,
.pickupBox .itemList--hasStaffComment .item.emember.otherAll:nth-of-type(3n) .memberItem,
.pickupBox .itemList--hasStaffComment .item.emember.otherPart:nth-of-type(3n) .memberItem {
  background: url(../img/basic/btn_prpregist02_mansion03.webp) no-repeat center / cover;
}

/*スタッフコメント無(注目物件にコメントなし・リノベ済みおすすめ物件)*/
.recom .item.emember.land:nth-of-type(3n-2) .memberItem {
  background: url(../img/basic/btn_prpregist_land01.webp) no-repeat center / cover;
}

.recom .item.emember.land:nth-of-type(3n-1) .memberItem {
  background: url(../img/basic/btn_prpregist_land02.webp) no-repeat center / cover;
}

.recom .item.emember.land:nth-of-type(3n) .memberItem {
  background: url(../img/basic/btn_prpregist_land03.webp) no-repeat center / cover;
}

.recom .item.emember.house:nth-of-type(3n-2) .memberItem {
  background: url(../img/basic/btn_prpregist_house01.webp) no-repeat center / cover;
}

.recom .item.emember.house:nth-of-type(3n-1) .memberItem {
  background: url(../img/basic/btn_prpregist_house02.webp) no-repeat center / cover;
}

.recom .item.emember.house:nth-of-type(3n) .memberItem {
  background: url(../img/basic/btn_prpregist_house03.webp) no-repeat center / cover;
}

.recom .item.emember.mansion:nth-of-type(3n-2) .memberItem,
.recom .item.emember.otherAll:nth-of-type(3n-2) .memberItem,
.recom .item.emember.otherPart:nth-of-type(3n-2) .memberItem,
.recom .item.emember.mansion:nth-of-type(3n-2) .memberItem,
.recom .item.emember.otherAll:nth-of-type(3n-2) .memberItem,
.recom .item.emember.otherPart:nth-of-type(3n-2) .memberItem {
  background: url(../img/basic/btn_prpregist_mansion01.webp) no-repeat center / cover;
}

.recom .item.emember.mansion:nth-of-type(3n-1) .memberItem,
.recom .item.emember.otherAll:nth-of-type(3n-1) .memberItem,
.recom .item.emember.otherPart:nth-of-type(3n-1) .memberItem,
.recom .item.emember.mansion:nth-of-type(3n-1) .memberItem,
.recom .item.emember.otherAll:nth-of-type(3n-1) .memberItem,
.recom .item.emember.otherPart:nth-of-type(3n-1) .memberItem {
  background: url(../img/basic/btn_prpregist_mansion02.webp) no-repeat center / cover;
}

.recom .item.emember.mansion:nth-of-type(3n) .memberItem,
.recom .item.emember.otherAll:nth-of-type(3n) .memberItem,
.recom .item.emember.otherPart:nth-of-type(3n) .memberItem,
.recom .item.emember.mansion:nth-of-type(3n) .memberItem,
.recom .item.emember.otherAll:nth-of-type(3n) .memberItem,
.recom .item.emember.otherPart:nth-of-type(3n) .memberItem {
  background: url(../img/basic/btn_prpregist_mansion03.webp) no-repeat center / cover;
}

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

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

.recom_boxWrap {
  padding: 10px;
}

.recom .item .box01 {
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

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

.recom .item .price {
  color: var(--color-red);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.recom .item .price span {
  font-size: clamp(2rem, 6vw, 2.2rem);
  line-height: 1.3;
}

.recom .item .photo {
  text-align: center;
}

.recom .item .photo img {
  width: 100%;
  height: 195px;
  display: block;
  margin: 0 auto;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}

.recom .item .recom_icon-new {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-yellow);
  border-radius: var(--rad-common) 0 var(--rad-common) 0;
  padding: 2px 15px;
}

.recom .item .info {
  padding: 10px 0;
  flex-grow: 1;
}

.recom .item .info h3.ttl {
  font-weight: bold;
  margin-bottom: 5px;
}

.recom .item .info .details {
  min-height: 60px;
  font-size: 1.4rem;
}

.recom .item .payment_pay {
  background: var(--color-palegray);
}

.recom .item .payment_pay dl {
  display: flex;
  gap: 5px;
  align-items: center;
}

.recom .item .payment_pay dt {
  background: var(--color-black);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 20px 8px;
}

.recom .item .payment_pay dd {
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.2rem;
}

.recom .item .payment_pay dd span {
  font-size: 1.6rem;
}

.recom .item .payment_pay dd .payment_txt {
  font-weight: 500;
}

/* スタッフコメント */
.recom .item .staffComment {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.recom .item .staffComment_ttl {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.recom .item .staffComment_ttl span {
  font-weight: bold;
}

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

/*
===== membershipBox ==========================================
*/
.membershipBox {
  position: relative;
  overflow: hidden;
  padding-top: 230px;
  margin-top: var(--gutter-wide);
}
.membershipBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 230px;
  background: rgba(255, 94, 0, 0.08);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.membershipBox::after {
  content: "MEMBERSHIP";
  position: absolute;
  bottom: 100px;
  right: 0;
  writing-mode: vertical-rl;
  transform: scale(-1, -1);
  font-size: 20rem;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 1;
}
.membershipBox__head {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--width-content);
}
.membershipBox__ttl .lead__small {
  font-size: .75em;
}
.membershipBox__inner {
  background: rgba(255, 94, 0, 0.08);
  padding-bottom: var(--gutter-wide);
}
.membershipBox__list {
  padding-top: clamp(13rem, 6vw, 8rem);
  position: relative;
  z-index: 2;
}
.membershipBox__item {
  position: relative;
}
.membershipBox__num {
  position: absolute;
  font-size: clamp(5rem, 6vw, 10rem);
  letter-spacing: .02em;
  line-height: 1;
}
.membershipBox__content {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 4rem);
  padding: 50px 0 0 50px;
}
.membershipBox__img {
  width: 380px;
}
.membershipBox__txt {
  flex: 1;
}
.membershipBox__copy {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: .02em;
}
.membershipBox__item--02 {
  margin: var(--gutter) 0 var(--gutter) 150px;
}
.membershipBox__item--03 {
  margin-left: 250px;
}
.membershipBox__benefits {
  background: #fff;
  border-radius: var(--rad-common);
  padding: 18px;
  margin-top: 15px;
}
.membershipBox__benefits .benefits__txt {
  font-weight: bold;
  margin-bottom: 10px;
}
.membershipBox__benefits .benefits__link {
  text-align: right;
  color: var(--color-green);
  display: block;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.membershipBox__benefits .benefits__link::after {
  content: '';
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow_green.svg) no-repeat center / contain;
}
@media (any-hover:hover) {
  .membershipBox__benefits .benefits__link:hover {
    color: var(--color-orange);
  }
  .membershipBox__benefits .benefits__link:hover::after {
    background: url(../img/common/arrow_orange.svg) no-repeat center / contain;
  }
}
.membershipBox__btnWrap {
  position: relative;
  margin-top: var(--gutter-wide);
}
.membershipBox__btnWrap .animationBox {
  background: var(--color-yellow);
  border-radius: var(--rad-common);
  text-align: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%);
  width: 175px;
  padding: .5rem;
  z-index: 3;
}
.membershipBox__btnWrap .animeWrap__icon {
  display: inline-block;
  position: relative;
  color: var(--color-black);
  font-size: 1.2rem;
  font-weight: bold;
}
.membershipBox__btnWrap .animeWrap__icon:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 8px solid var(--color-yellow);
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.membershipBox__btnWrap .animeWrap__icon span {
  font-size: 1.6rem;
  font-weight: 900;
}

/* ログイン時-プレミアム */
.premiumBox {
  background: var(--color-navy);
  padding: var(--gutter-wide) 0;
  color: #fff;
  margin-top: var(--gutter-wide);
}

.premiumBox_ttl {
  font-size: clamp(2.6rem, 2vw, 4rem);
  font-weight: 900;
  text-align: center;
}

.premiumBox_ttl .font_gold {
  color: var(--color-gold);
  font-size: 1.2em;
}

.premiumBox__box01 {
  text-align: center;
  margin-top: var(--gutter-supernarrow);
  padding-bottom: var(--gutter);
  position: relative;
}

.premiumBox__box01::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 217px;
  height: 200px;
  background: url(../img/system/offer/premiumBox_img_01.svg) no-repeat center / contain;
  right: 50px;
  bottom: 0;
  position: absolute;
}

.premiumBox__box01__lead {
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.premiumBox__box01__main {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-top: 1.5rem;
}

.premiumBox__box01__main span {
  color: var(--color-yellow);
}

.premiumBox__box02 {
  text-align: center;
}

.premiumBox__box02__inner {
  background: #fff;
  border-radius: var(--rad-common);
  padding: 2rem;
  color: var(--color-navy);
}

.premiumBox__box02__ttl {
  font-size: clamp(2.4rem, 4vw, 3rem);
}

.premiumBox__box02__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
}
.premiumBox__box02__txt {
  margin: var(--gutter-narrow) 0;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: bold;
}

.premiumBox__box02__txt--under {
  border-bottom: 2px solid var(--color-yellow);
  width: fit-content;
  margin: auto;
}

.premiumBox__box02__btnWrap .btn_archive a {
  max-width: 400px;
}

.premiumBox__box02__attention {
  font-size: 1.4rem;
  margin-top: 1rem;
}

/*
===== GALLERYBOX ==========================================
*/
.galleryBox {
  background: url(../img/index/bg_galleryBox_01.webp) no-repeat center/cover;
  padding: var(--gutter-wide) 0;
  overflow: hidden;
}

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

.galleryBox__list {
  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: 3rem
}

.galleryBox .slick-list {
  overflow: visible;
}
.galleryBox .slick-dots li.slick-active button:before {
  background: var(--color-blue);
}

.galleryBox__item {
  width: calc((100% / 2) - 3rem);
  position: relative;
  transition: all 0.5s ease;
}

.galleryBox__item.slick-slide {
  opacity: .7;
  width: 700px;
  margin: 0 15px;
}
.galleryBox__item.slick-center {
  opacity: 1;
}

.galleryBox__item a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--rad-common);
  background: #fff;
}
.galleryBox__photo {
  aspect-ratio: 3 / 1.7;
}
.galleryBox__photo img {
  width: 100%;
  height: 100%;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}

.galleryBox__detail {
  padding: 20px 30px;
}

.galleryBox__infoWrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.galleryBox__num {
  text-transform: initial;
  font-size: clamp(2rem, 4vw, 3rem);
}
.galleryBox__num span {
  display: block;
  font-size: 1.65em;
}

.galleryBox__detailTtl {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.galleryBox__iconWrap {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.galleryBox .cate_syubetu {
  padding: 5px 15px !important;
  border: none;
  border-radius: var(--rad-common) 0 var(--rad-common) 0;
  background: var(--color-main);
  line-height: 1;
  font-size: 1.4rem;
}
.galleryBox .cate_kodate {
  background: var(--color-lightblue);
}
.galleryBox .cate_mansion {
  background: var(--color-blue);
}

.galleryBox .cate_new {
  padding: 5px 15px !important;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
  line-height: 1;
  font-size: 1.4rem;
  border-radius: 0 0 var(--rad-common) var(--rad-common);
}

.galleryBox .btn_archive a {
  margin-top: clamp(4rem, 5vw, 8rem);
}

@media (any-hover:hover) {
  .galleryBox__item:hover {
    transform: scale(0.97);
  }
}

/*
===== voiceBox ==========================================
*/
.voiceBox {
  margin-top: var(--gutter-wide);
  padding-bottom: var(--gutter-wide);
  position: relative;
}
.voiceBox::after {
  position: absolute;
  content: 'CUSTOMERS VOICES';
  font-family: var(--font-en);
  font-size: clamp(4rem, 6vw, 20rem);
  bottom: 0;
  left: 0;
  letter-spacing: .02em;
  color: rgba(0,144,86,0.05);
  line-height: 0.9;
  z-index: -1;
}

.voiceBox__contentWrap {
  display:grid;
  grid-template-columns: 1fr minmax(0, var(--width-content)) 1fr;
}

.voiceBox__row {
  grid-column: 2 / 4;
  display:grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  align-items: start;
  gap: 60px;
}

.voiceBox__leftWrap {
  grid-column: 1;
}

.voiceBox__leftWrap__txt {
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  line-height: 2;
  font-weight: bold;
}

.voiceBox__leftWrap .btn_archive a {
  margin: 40px 0;
}

.voiceBox__rightWrap {
  grid-column: 2;
  width: min(100%, calc(50vw + (var(--wire) / 2)));
  max-width: 100%;
  overflow: hidden;
  min-width: 0;
}

.voiceBox__rightWrap .slick-list.draggable {
  width: 100%;
}

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

.voiceBox__list {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: nowrap;
  /* Safari */
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
  position: relative;
}

.voiceBox__new {
  position: absolute;
  right: 0;
  top: 3px;
}

.voiceBox__new .cate_new {
  border-radius: 0 var(--rad-common) 0 var(--rad-common);
  padding: 5px 15px !important;
  line-height: 1;
  font-size: 1.4rem;
}

.voiceBox__numTag {
  font-family: var(--font-en);
  font-size: 1.8rem;
  text-align: left;
  line-height: 1;
  background: url(../img/index/deco_tag_01.svg) no-repeat top / cover;
  color: #fff;
  width: 81px;
  height: 94px;
  padding: 14px 16px;
  margin-left: clamp(10px, 4vw, 30px);
}
.voiceBox__numValue {
  font-size: 1.7em;
  display: block;
}

.voiceBox__detailHead {
  padding-top: 20px;
  width: calc(100% - 200px);
}

.voiceBox__cateWrap {
  border: 1px solid var(--color-black);
  padding: 3px 10px;
  font-size: 1.4rem;
  font-weight: bold;
  width: fit-content;
}

.voiceBox__detailTtl {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 8px;
  text-align: left;
}

.voiceBox__list .voiceBox__item{
  position: relative;
}

.voiceBox__list .voiceBox__detail{
  display: flex;
  gap: clamp(10px, 4vw, 30px);
}

.voiceBox__list .voiceBox__photo{
  width:320px;
  height:400px;
  margin: clamp(3rem, 6vw, 6rem) auto 0;
}

.voiceBox__rightWrap .slick-list{ 
  margin: 0 -2.5rem;
}
.voiceBox__rightWrap .slick-slide{
  margin: 0 2.5rem 3rem 2.5rem;
}
.voiceBox__item{
  margin: 0 5rem 3rem 0;
}
.voiceBox__list:not(.slick-initialized){
  justify-content:flex-start;
}

.voiceBox__item {
  width: 520px;
  background: var(--color-palegray);
  border-radius: var(--rad-common);
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  margin: 0 15px 0;
  transition: all 0.5s ease;
}

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

.voiceBox__photo {
  width: 400px;
  height: 300px;
}

.voiceBox__photo img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border: 1px solid var(--color-lightgray);
}

.voiceBox .slick-dots {
  display: flex;
  bottom: 0!important;
  left: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}

.voiceBox .slick-dots li {
  flex: 1 1 0;
  height: 5px;
  background: var(--color-gray);
  cursor: pointer;
  transition: all 0.3s;
  margin: 0;
  width: 260px !important;
  height: 5px !important;
}

/* ボタン要素は非表示 */
.voiceBox .slick-dots li button {
  display: none;
}

/* アクティブ時の色 */
.voiceBox .slick-dots li.slick-active {
  background: var(--color-green);
}

@media (any-hover:hover) {
  .voiceBox__item:hover {
    transform: scale(0.97);
  }
}

/*
===== qaBox ==========================================
*/
.qaBox {
  background: url(../img/index/bg_qaBox_01.webp);
  padding: var(--gutter-wide) 0;
}
.qaBox__ttl {
  text-align: center;
  margin-bottom: var(--gutter);
}
.qaBox__content {
  display: flex;
  justify-content: center;
}
.qaBox__img {
  position: relative;
  flex-shrink: 0;
  margin-right: -20px;
  z-index: 1;
  width: 44%;
  max-width: 100%;
}
.qaBox__list {
  width: 60%;
}
.qaBox__list ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (any-hover:hover) {
  .qaBox__list li:hover {
    cursor: pointer;
  }
}
.qaBox__list dt {
  background: var(--color-lightgreen);
  border-radius: var(--rad-common);
  font-size: 2rem;
  font-weight: bold;
  padding: 30px 60px 30px 65px;
  position: relative;
}
.qaBox__list dt::before {
  content: "Q.";
  color: var(--color-green);
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.qaBox__list dt.open {
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}
.qaBox__list dt::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow_green.svg) no-repeat center / contain;
  top: 50%;
  right: 5%;
  transform: rotate(90deg) translate(-50%, -50%);
}
.qaBox__list dt.open::after {
  transform: rotate(270deg);
  right: 4%;
}
.qaBox__list dd {
  background: var(--color-lightgreen);
  border-radius: 0 0 var(--rad-common) var(--rad-common);
  border-top: 1px solid #fff;
  font-size: 2rem;
  position: relative;
  padding: 30px 60px 30px 65px;
}
.qaBox__list dd::before {
  content: "A.";
  color: var(--color-black);
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.qaBox__list dd iframe {
  width: 100%;
}

/*
===== SHOPINFOBOX ==========================================
*/
.shopInfoBox {
  margin-top: var(--gutter-wide);
  padding-top: var(--gutter-wide);
  position: relative;
}
.shopInfoBox::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:450px;
  background: var(--color-paleblue);
  z-index: -1;
}
.shopInfoBox__shopWrap {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.shopInfoBox__inner {
  width: calc((100% / 3) - 20px);
  flex-direction: column;
  justify-content: flex-start;
}
.shopInfoBox__imgBox {
  width: 100%;
  max-width: 100%;
}
.shopInfoBox__dataBox {
  width: 100%;
}

/*
===== NOTICEBOX ==========================================
*/
.noticeBox {
  margin-top: var(--gutter-wide);
}

.noticeBox__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3rem);
}

.noticeBox__btn a {
  display: block;
  width: 140px;
  padding: 15px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
}

.noticeBox__headWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.topicsBox__ttl,
.columnBox__ttl {
  font-size: clamp(2rem, 4vw, 3.6rem);
  position: relative;
  padding-left: 40px;
  margin-bottom: 0;
}

.topicsBox__ttl::before,
.columnBox__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background:
    linear-gradient(#1f8f5f 0 0) 0 0 / 10px 10px no-repeat,
    linear-gradient(#1f8f5f 0 0) 100% 0 / 10px 10px no-repeat,
    linear-gradient(#1f8f5f 0 0) 0 100% / 10px 10px no-repeat,
    linear-gradient(#1f8f5f 0 0) 100% 100% / 10px 10px no-repeat;
}

.topicsBox__item a {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid var(--color-lightgray);
  gap: 10px;
  padding-right: 40px;
  position: relative;
}
@media (any-hover:hover) {
  .topicsBox__item a:hover {
    transform: scale(0.97);
  }
}

.topicsBox__item a::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow_green.svg) no-repeat center / contain;
  top: 50%;
  right: 5px;
  transform: translate(-50%, -50%);
}

.topicsBox__date {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: var(--font-en);
  display: flex;
  gap: 10px;
}

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

.noticeBox .cate_new,
.noticeBox .cate_popular {
  padding: 0 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.columnBox__item {
  display: block;
}

.columnBox__item:nth-child(even) {
  margin: 20px 0;
}

.columnBox__item a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}
@media (any-hover:hover) {
  .columnBox__item a:hover {
    transform: scale(0.97);
  }
}

.columnBox__photo {
  width: 150px;
  height: 100px;
  display: inline-block;
  vertical-align: middle;
}

.columnBox__photo img {
  border-radius: var(--rad-common);
  width: 100%;
  height: 100%;
}

.columnBox__detail {
  width: calc(100% - 160px);
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.columnBox__iconWrap {
  font-weight: bold;
}

.columnBox__infoList {
  display: flex;
  align-items: center;
  gap: 10px;
}

.columnBox__infoItem {
  margin-right: 5px;
}

.columnBox__date {
  font-weight: bold;
  font-family: var(--font-en);
}

.columnBox__writer {
  font-size: 1.4rem;
  display: flex;
  gap: 8px;
}

.columnBox__itemTtl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
}

.topicsBox,
.columnBox {
  width: calc((100% - 30px)/2);
  position: relative;
}

.topicsBox__inner,
.columnBox__inner {
  min-height: 280px;
  margin-bottom: 20px;
}

/*準備中*/
.noticeBox__notice {
  padding-top: 15px;
}

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

.SNSBox ul {
  max-width: 1200px;
  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 : Min1281px Max1366px
==================================================*/
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  /* 地図 */
  #postbox.conditionsSearchBox {
    margin-bottom: var(--gutter-narrow);
  }

  .areasearchBox.sp_hidden {
    display: none;
  }
  .searchBox_sp.pc_hidden {
    display: block!important;
  }
  .areasearch__mapImg img {
    display: block;
    margin: auto;
  }
  .searchBox_sp .selectWrap {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
  }
  .searchBox_sp .selectWrap select {
    width: 45%;
    padding: 10px;
  }

  .searchBox__linkBtnWrap {
    gap: 1rem;
    position: initial;
    flex-direction: row;
    justify-content: center;
  }
}

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

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

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

  /*イベント情報*/
  .eventBox__list {
    gap: 10px;
  }
  .eventBox__item__btn {
    padding: 15px 30px;
    width: 160px;
  }

  /*物件を探す　物件数リスト*/
  .estateCountBox {
    padding: 4% 0;
  }

  .estateCountBox__totalWrap {
    flex-direction: column;
  }

  .estateCountBox__totalTtl {
    width: 100%;
    margin-right: 0;
  }

  .estateCountBox__detailBox {
    padding: 7%;
  }

  .estateCountBox__detailWrap {
    flex-direction: column;
  }

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

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

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

  /* 地図 */
  #postbox.conditionsSearchBox {
    margin-bottom: var(--gutter-narrow);
  }

  .areasearchBox.sp_hidden {
    display: none;
  }
  .searchBox_sp.pc_hidden {
    display: block!important;
  }
  .areasearch__mapImg img {
    display: block;
    margin: auto;
  }
  .searchBox_sp .selectWrap {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
  }
  .searchBox_sp .selectWrap select {
    width: 45%;
    padding: 10px;
  }

  .searchBox__linkBtnWrap {
    gap: 1rem;
    position: initial;
    flex-direction: row;
    justify-content: center;
  }
  
  /*==================================================
  membershipBox
  ==================================================*/
  .membershipBox__list {
    padding-top: 0;
  }
  .membershipBox__content {
    padding: 30px 0 0 30px;
  }
  .membershipBox__item--02,
  .membershipBox__item--03 {
    margin-left: 0;
  }
  .membershipBox__copy {
    font-size: 2rem;
  }

  /*
  ===== voiceBox ==========================================
  */
  .voiceBox__row {
    grid-template-columns: minmax(0, 350px) minmax(0, 1fr);
    gap: 20px;
  }
  .voiceBox__leftWrap {
    margin-left: 10px;
  }
  .voiceBox__leftWrap__txt {
    font-size: 1.6rem;
  }

  /*
  ===== NOTICEBOX ==========================================
  */
  .topicsBox__ttl, .columnBox__ttl {
    font-size: 2.2rem;
  }

}

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

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

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

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

  .slick-dots {
    bottom: -25px!important;
  }

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

  .bannerWrap {
    width: 96%;
  }

  /*
  ===== spInfoBox - SP   ==========================================
  */
  .spInfoBox {
    width: 100%;
    margin: 20px auto 15px;
    padding: 10px;
  }

  .spInfoBox__countAll {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
  }

  .spInfoBox__countAllTtl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding-bottom: var(--gutter-supernarrow);
    &::before {
      content: "";
      display: block;
      width: 2.4rem;
      height: 1px;
      background: currentColor;
      transform: rotate(45deg);
    }
    &::after {
      content: "";
      display: block;
      width: 2.4rem;
      height: 1px;
      background: currentColor;
      transform: rotate(-45deg);
    }
  }

  /*
  ===== SEARCHBOX - SP ==========================================
  */
  .searchBox__inner {
    padding: 15px 8px;
  }

  .searchBox__mainWrap {
    padding: 0;
  }

  .searchBox__topWrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .searchBox__ttl span {
    display: inline-block;
  }

  .searchBox__num > span {
    width: 6.5rem;
  }

  .searchBox__numDetail {
    flex-direction: column;
    gap: 5px;
  }
  .searchBox__numDetail__ttl {
    font-size: 1.4rem;
  }
  
  /*検索ボックス*/
  .searchBox_sp .areasearch__mapImg {
    margin: var(--gutter-narrow) 0;
  }
  .searchBox_sp .selectWrap {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 10px;
  }
  .searchBox_sp .selectWrap select {
    width: 48%;
    height: 48px;
  }
  .searchBox_sp .btn_search {
    font-size: 1.8rem;
  }

  /*物件検索へのリンク*/
  .searchBox__linkBtnWrap {
    flex-direction: column;
    align-items: center;
    position: static;
  }

  .searchBox__linkBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
  }

  .searchBox__linkBtnTxt {
    font-size: 0.7em;
  }

  /*
  ===== selectionBox 厳選おすすめ物件 ==========================================
  */
  .selectionBox__ttl::after {
    content: none;
  }

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

  .pickupBox,
  .recomBox {
    overflow: hidden;
  }

  .pickupBox__ttl::after,
  .newArrivalsBox__ttl::after {
    content: none;
  }

  /*
  ===== membershipBox ==========================================
  */
  .membershipBox {
    padding-top: 70px;
  }
  .membershipBox::before {
    height: 70px;
  }
  .membershipBox::after {
    z-index: 1;
    font-size: 15rem;
  }
  .membershipBox__head {
    top: 30px;
    padding: 0 15px;
    z-index: 2;
  }
  .membershipBox__list {
    position: relative;
    z-index: 2;
  }
  .membershipBox__content {
    padding: 15px 0 0 10px;
    align-items: flex-start;
  }
  .membershipBox__img {
    width: 40%;
  }
  .membershipBox__txt {
    width: 58%;
  }
  .membershipBox__item--02 {
    margin: var(--gutter-narrow) 0 var(--gutter-narrow) 0;
  }
  .membershipBox__item--03,
  .membershipBox__item--02 {
    margin-left: 0;
  }
  
  /* ログイン時-プレミアム */
  .premiumBox__box01::after {
    content: none;
  }
  .premiumBox__box02__inner {
    padding: 1.5rem 1rem;
  }
  .premiumBox__box02__list {
    flex-direction: column;
    gap: .25em;
    justify-content: flex-start;
    text-align: left;
  }

  /*
  ===== EVENTBOX - SP ==========================================
  */
  .eventBox {
    overflow: hidden;
  }

  .eventBox__inner {
    width: 96%;
    margin: 0 auto 5%;
  }

  .eventBox__list {
    flex-direction: column;
  }

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

  .eventBox__item {
    width: 100%;
  }

  .eventBox__detail {
    padding: 10px;
    display: inline-block;
    width: 100%;
  }

  .eventBox__date {
    max-width: 280px;
  }

  .eventBox__time,
  .eventBox__place {
    max-width: 200px;
  }

  .eventBox__item__btn {
    width: 135px;
    padding: 10px 15px;
    font-size: 1.6rem;
    text-align: center;
  }

  /*
  ===== voiceBox ==========================================
  */
  .voiceBox__row {
    display: block;
  }
  .voiceBox__leftWrap {
    margin: 0 auto var(--gutter);
    text-align: center;
  }
  .voiceBox__list.slick-initialized .voiceBox__item {
    width: 330px;
    margin: 0 .5rem 3rem .5rem;
  }
  .voiceBox__detailHead {
    width: calc(100% - 160px);
  }
  .voiceBox__numTag {
    width: 71px;
    height: 84px;
    font-size: 1.6rem;
  }
  .voiceBox .slick-dots {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  /*
  ===== GALLERYBOX ==========================================
  */
  .galleryBox {
    overflow: hidden;
  }

  .galleryBox__ttl {
    margin-bottom: 5%;
  }

  .galleryBox__item{
    width:300px;
  }

  .galleryBox__detail {
    padding: 10px 15px;
  }

  .galleryBox__item.slick-slide {
    width: 310px;
    margin: 0 10px;
  }

  /*
  ===== qaBox ==========================================
  */
  .qaBox__content {
    flex-direction: column-reverse;
    gap: 1rem;
    align-items: center;
  }
  .qaBox__list {
    width: 100%;
  }
  .qaBox__list ul {
    gap: 15px;
  }
  .qaBox__list dt,
  .qaBox__list dd {
    padding: 20px 50px 20px 55px;
    font-size: 1.6rem;
  }
  .qaBox__list dt::before,
  .qaBox__list dd::before {
    font-size: 3rem;
  }
  .qaBox__list dt.open::after {
    right: 3%;
    top: 40%;
  }
  .qaBox__list dd iframe {
    width: 100%;
    max-height: 250px;
  }

  /*
  ===== noticeBox ==========================================
  */
  .noticeBox {
    padding: 0;
  }

  .noticeBox__inner {
    flex-direction: column;
    padding: 0;
    width: 96%;
  }

  .topicsBox,
  .columnBox {
    width: 100%;
    max-width: unset;
  }

  .topicsBox__ttl,
  .columnBox__ttl {
    padding-left: 30px;
  }
  .topicsBox__ttl::before,
  .columnBox__ttl::before {
    width: 23px;
    height: 23px;
  }

  .noticeBox__btn a {
    width: 120px;
  }

  .topicsBox__inner,
  .columnBox__inner {
    min-height: unset;
  }

  .topicsBox__item a {
    flex-direction: column;
    align-items: baseline;
    gap: 5px;
    padding: 10px 25px 10px 10px;
  }

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

  /*
  ===== SHOPINFOBOX ==========================================
  */
  .shopInfoBox__shopWrap {
    flex-direction: column;
  }
  .shopInfoBox__inner {
    width: 100%;
    padding: 0;
  }
  .shopInfoBox__dataWrap {
    padding: 10px;
    font-size: 1.4rem;
  }
  .shopInfoBox__imgBox {
    margin-bottom: 10px;
  }
  .shopInfoBox__dataTtl {
    width: 34%;
  }

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

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

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