﻿@charset "utf-8";

/*==================================================
  GENERAL SETTINGS
==================================================*/


/*==================================================
  TITLE COMMON
==================================================*/


/*
===== SLIDER ==========================================
*/
#indexMainSlider {
  overflow: hidden;
  position: relative;
}

#mainsliderArrows {
  width: min(98%, 1250px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

#mainsliderArrows img {
  width: 50px;
  height: 50px;
}

#mainsliderArrows .slide-arrow {
  cursor: pointer;
  pointer-events: auto;
}

.indexMainSlider__wrap {
  position: relative;
  width: min(100vw, 1200px);
  margin: 0 auto;
}

.indexMainSlider__item {
  width: min(100vw, 1200px) !important;
}

/*dots*/
#indexMainSlider .slick-dots {
  bottom: 10px;
}

#indexMainSlider .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*スライドのばらけ防止*/
.indexMainSlider__item:not(:first-child) {
  display: none;
}

.slick-slider .indexMainSlider__item {
  display: block !important;
}


/*
===== EVENTBOX ==========================================
*/
.eventBox {
  padding: var(--gutter-wide) 0;
  background: url(../img/index/bg_eventBox_01.webp) no-repeat center / cover;
}

.eventBox__inner {
  display: flex;
  justify-content: space-between;
}

.eventBox__ttl {
  width: min(14%, 127px);
}

.eventBox__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px 2%;
  width: calc(100% - min(17%, 180px));
}

.eventBox__item {
  width: 49%;
}

.eventBox__itemLink {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(17, 17, 17, 0.1));
  position: relative;
  background: #fff;
  transform: scale(1);
  transition: 0.3s;
  padding: 10px;
}

.eventBox__itemLink::after {
  content: "";
  border-radius: 50%;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background: url(../img/common/icon_arrow_white_01.svg) no-repeat center / 36% auto var(--color-main);
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  transition: 0.3s;
}


.eventBox__itemLink:active {
  filter: drop-shadow(0 0 8px rgba(17, 17, 17, 0.1));
  transform: scale(1.02);
}

.eventBox__itemLink:active::after {
  transform: scale(1.1);
  background-color: var(--color-red);
}


@media (any-hover:hover) {
  .eventBox__itemLink:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(17, 17, 17, 0.1));
    transform: scale(1.02);
  }

  .eventBox__itemLink:hover::after {
    transform: scale(1.1);
    background-color: var(--color-red);
  }
}

.eventBox__new {
  position: absolute;
  right: -10px;
  top: -35px;
  filter: drop-shadow(2px 2px 10px rgba(98, 33, 20, 0.15));
  z-index: 1;
  width: clamp(100px, 12vw, 124px);
}

.eventBox__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--color-palegray);
  position: relative;
  overflow: hidden;
}

.eventBox__photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  transition: 0.3s;
}

.eventBox__iconWrap {
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  flex-direction: column;
  display: none;
}

.eventBox__infoWrap {
  padding: 10px 10px 15px;
}

.eventBox__itemTtl {
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
}

.eventBox__date {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
  font-weight: bold;
  color: var(--color-darkgray);
  margin: 0.6em 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.eventBox__intro {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 500;
  display: block;
  width: calc(100% - clamp(50px, 5vw, 70px));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2em;
}

.eventBox__btn {
  margin-top: 40px;
}

.eventBox__btn a {
  margin-left: auto;
}

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

.searchBox {
  margin: var(--gutter-wide) auto var(--gutter-superwide);
}

.searchBox__ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
}

.searchBox__ttlEn {
  font-family: var(--font-en);
  font-size: 3.5em;
  color: var(--color-main);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}


/*
----- 物件数リスト --------------------
*/
.estateCountBox {
  max-width: 420px;
  width: calc(40% - 20px);
  background: rgba(255, 255, 255, .8);
  padding: 40px 0 20px;
}

.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;
  font-weight: bold;
  line-height: 1;
  margin-right: 8px;
}

.estateCountBox__totalNumBox {
  font-weight: bold;
  font-size: 18px;
}

.estateCountBox__num {
  font-size: 36px;
  line-height: 1;
}

.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 {
  border: 1px solid var(--color-black);
  margin: 0 18px;
  padding: 30px;
}

.estateCountBox__detailWrap {
  display: flex;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}

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

.estateCountBox__detailTtl,
.estateCountBox__detailNumBox {
  font-weight: bold;
  font-size: 18px;
}

.estateCountBox__detailTtl i {
  margin-right: 5px;
}

.estateCountBox__detailWrap--general i {
  color: var(--color-lightblue);
}

.estateCountBox__detailWrap--member i {
  color: var(--color-red);
}

.estateCountBox__detailWrap--shop i {
  color: var(--color-green);
}

.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%;
  border-bottom: 4px solid var(--color-main);
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 6px;
}

.areasearchBox__tabItem {
  width: 100%;
  flex-grow: 1;
  background-color: var(--color-palegray);
  color: var(--color-gray);
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 0 0;
  transition: height 0.3s;
}

@media (any-hover:hover) {
  .areasearchBox__tabItem:hover {
    cursor: pointer;
    opacity: 1;
    background-color: var(--color-main);
    color: #fff;
    height: 60px;
  }
}

.areasearchBox__tabItem.active {
  background-color: var(--color-main);
  color: #fff;
  height: 60px;
}

.areasearchBox__tabTxt {
  line-height: 1.1;
}

/* 選択中の種別 */
.areasearchBox__tabItem {
  position: relative;
}

.searchBox .animationBox {
  text-align: center;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  z-index: 3;
}

.searchBox .mapWrap__icon {
  display: inline-block;
  background: var(--color-black);
  border-radius: var(--rad-full);
  padding: 0.45em 1.85em;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
}

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

.searchBox .animationBox {
  display: none;
}

.searchBox .active .animationBox {
  display: block;
}

.animation-searchPoyoyon {
  animation: searchPoyoyon 2s infinite;
  opacity: 1;
}

@keyframes searchPoyoyon {
  0%, 40%, 60%, 80% {
    transform: translateX(-50%) scale(1.0);
  }

  50%, 70% {
    transform: translateX(-50%) scale(0.95);
  }
}

.areasearchBox__mapBox {
  width: 100%;
  height: 470px;
  background: url(../img/index/areasearchBox_map1.webp) center no-repeat;
  position: relative;
}

.areasearchBox__mapItem {
  text-decoration: none;
  display: block;
  filter: drop-shadow(0 0 6px rgba(32, 93, 73, 0.3));
}

.areasearchBox__mapItemTtl,
.areasearchBox__mapItemNumBox {
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}

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

.areasearchBox__mapItemNumBox {
  font-size: 16px;
}

.areasearchBox__mapItemNum {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
}

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

  .areasearchBox__mapItem {
    position: absolute;
  }

  /*高槻市*/
  .areasearchBox__mapBox .c-27207 {
    top: 206px;
    left: 50%;
    transform: translateX(calc(-50% + 2px));
  }

  /*茨木市*/
  .areasearchBox__mapBox .c-27211 {
    top: 240px;
    left: 50%;
    transform: translateX(calc(-50% - 150px));
  }

  /*三島郡島本町*/
  .areasearchBox__mapBox .c-27301 {
    top: 160px;
    left: 50%;
    transform: translateX(calc(-50% + 110px));
  }


  /* 店舗 */
  .searchBox__shopItem {
    font-size: 1.6rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    border: 2px solid var(--color-main);
    position: absolute;
    line-height: 1;
  }

  .searchBox__shopItemInner {
    padding: 15px 25px;
    width: 100%;
    height: 100%;
    display: block;
  }

  .searchBox__shopItem::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: -15px;
    background: url(../img/common/icon_shop_white_01.svg) no-repeat center / 50% var(--color-main);
    z-index: 1;
  }

  .searchBox__shopItem--01 {
    bottom: 336px;
    left: 50%;
    transform: translateX(calc(-50% + -425px));
  }

  .searchBox__shopItem--02 {
    bottom: 75px;
    left: 50%;
    transform: translateX(calc(-50% + -375px));
  }

  /*補助線*/
  .searchBox__shopItem--01::after,
  .searchBox__shopItem--02::after {
    position: absolute;
    content: '';
    border-top: 1px dotted #fff;
    transform-origin: left;
  }

  .searchBox__shopItem--01::after {
    width: 280px;
    top: 0;
    left: 100%;
    transform: translate(0, 24px) rotate(16deg);
  }

  .searchBox__shopItem--02::after {
    width: 440px;
    top: 0;
    left: 100%;
    transform: translate(0, 22px)rotate(-6deg);
  }
}


/*物件検索へのボタン*/
.searchBox__mapBox {
  position: relative;
}

.searchBox__linkBtnWrap {
  position: absolute;
  flex-direction: column;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.searchBox__linkBtn {
  background-color: #fff;
  color: var(--color-black);
  border-radius: var(--rad-full);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  width: 310px;
  height: 80px;
  border: 2px solid var(--color-black);
  box-shadow: 0 5px 0 rgba(0, 0, 0, .3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-right: 0.5em;
  font-weight: bold;
}

.searchBox__linkBtn::after {
  content: "";
  background: url(../img/common/icon_arrow_black_01.svg)no-repeat center / contain;
  width: 1.8rem;
  height: auto;
  aspect-ratio: 16 / 14;
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.searchBox__linkBtnTxt {
  font-size: 0.75em;
}

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


@media (any-hover:hover) {
  .searchBox__linkBtn:hover {
    opacity: 1;
    background: var(--color-black);
    color: #fff;
  }

  .searchBox__linkBtn:hover::after {
    filter: invert(1);
    right: 7%;
  }
}


/*
----- pcCounterBox --------------------
*/
.pcCounterBox {
  display: flex;
  justify-content: center;
  margin: 40px auto 100px;
  position: relative;
}


.pcCounterBox::before {
  content: "";
  width: 100%;
  height: calc(100% + 220px);
  background: var(--color-main);
  z-index: -1;
  position: absolute;
  display: block;
  top: -120px;
}

.countBox__inner {
  background: #fff;
  padding: 60px;
  border-radius: 10px;
  position: relative;
}

.countBox__inner::before {
  content: "";
  width: clamp(100px, 13vw, 123px);
  height: auto;
  aspect-ratio: 123 / 267;
  position: absolute;
  left: 20px;
  bottom: -10px;
  background: url(../img/index/img_searchBox_left_01.webp) no-repeat center / contain;
}

.countBox__inner::after {
  content: "";
  width: clamp(120px, 13vw, 146px);
  height: auto;
  aspect-ratio: 146 / 270;
  position: absolute;
  right: 20px;
  bottom: -10px;
  background: url(../img/index/img_searchBox_right_01.webp) no-repeat center / contain;
}

.pcCounterBox__totalInner {
  gap: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pcCounterBox__totalTtl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0;
  text-align: left;
  font-weight: 800;
  line-height: 1.4;
}

.pcCounterBox__totalTtlBig {
  font-size: 3rem;
}

.pcCounterBox__totalItem {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: flex-end;
  font-size: 2.4rem;
  color: var(--color-main);
  font-weight: bold;
  gap: 5px;
}

.pcCounterBox__totalTxt {
  margin-left: 5px;
}

.pcCounterBox__totalNum {
  font-size: clamp(5rem, 6vw, 7rem);
  line-height: 1;
  color: #fff;
  background-color: var(--color-main);
  width: 70px;
  height: 85px;
  line-height: 1;
  border-radius: var(--rad-common);
  font-weight: bold;
  font-family: var(--font-en);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcCounterBox__detailBox {
  display: flex;
  justify-content: space-between;
  width: 79%;
  gap: 5px;
  margin: 20px auto 40px;
}

.pcCounterBox__detailItem {
  flex: 1;
  text-align: center;
  background: var(--color-palemain);
  padding: 0.88em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pcCounterBox__detailItem--general {
  border-radius: var(--rad-common) 0 0 var(--rad-common);
  border-radius: 10px 0 0 10px;
}

.pcCounterBox__detailItem--member .pcCounterBox__detailNumWrap {
  position: relative
}

.pcCounterBox__detailItem--member .pcCounterBox__detailNumWrap::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: var(--rad-full);
  background: var(--color-red);
  position: absolute;
  bottom: 0;
  left: 0;
}

.pcCounterBox__detailItem--member .pcCounterBox__detailNum {
  color: var(--color-red);
}

.pcCounterBox__detailItem--shop {
  border-radius: 0 var(--rad-common) var(--rad-common) 0;
  border-radius: 0 10px 10px 0;
}

.pcCounterBox__detailTtl {
  font-size: 1.6rem;
  font-weight: bold;
}

.pcCounterBox__detailNumWrap {
  font-weight: 500;
  font-size: 1.6rem;
  font-family: var(--font-en);
}


.pcCounterBox__detailNum {
  font-size: clamp(3rem, 3vw, 3.6rem);
  line-height: 1;
  font-weight: bold;
}

.pcCounterBox__btnBox {
  margin-top: 25px;
}

.pcCounterBox__btnBox .btn_signup__badge {
  transform: scale(0.9);
}

.pcCounterBox__searchBtn a {
  margin: 0 auto;
  position: relative;
}

.pcCounterBox__signupBtmCap {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
  padding-left: 2em;
}

/*
===== RECOMBOX 注目物件／リフォーム済みおすすめ物件 ==========================================
*/
.pickupBox {
  overflow: hidden;
}

.pickupBox__wrapper {
  padding: var(--gutter-superwide) 0;
}

.pickupBox__ttl {
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
}

.pickupBox__ttlEn {
  font-family: var(--font-en);
  font-size: 3.5em;
  color: var(--color-main);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.recomBox {
  padding: 50px 0;
  background: url(../img/index/recBox_re_bg.webp) no-repeat top center/cover;
}

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

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

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

.recom .item {
  width: 300px;
  min-height: 437px;
  background: #FFF;
  position: relative;
  margin: 0 20px;
  border: 1px solid var(--color-lightgray);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
}

.recom .item.brand {
  background: var(--color-verypalemain);
  border: 1px solid var(--color-main);
}

.recom .item.emember {
  border: 2px solid var(--color-main);
}

.recom .item.emember a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-main);
  background: url(../img/index/bg_prpregist.webp) no-repeat center / cover;
}

.recomSignup__icon {
  width: 22px;
}

.recomSignup__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
}

.recomSignup__ttl::before {
  content: "";
  width: auto;
  height: 1.07em;
  aspect-ratio: 16 / 28;
  background: url(../img/common/deco_prpregist_01.svg) no-repeat center / contain;
  position: absolute;
  left: -0.92em;
  top: 50%;
  transform: scaleX(-1) translateY(-50%);
}

.recomSignup__ttl::after {
  content: "";
  width: auto;
  height: 1.07em;
  aspect-ratio: 16 / 28;
  background: url(../img/common/deco_prpregist_01.svg) no-repeat center / contain;
  position: absolute;
  right: -0.92em;
  top: 50%;
  transform: translateY(-50%);
}

.recomSignup__txt {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 0;
}

.recomSignupBtn {
  border-radius: var(--rad-full);
  background-color: var(--color-main);
  color: #fff;
  border: 2px solid var(--color-main);
  width: 220px;
  height: auto;
  aspect-ratio: 220 / 58;
  max-width: 88vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 5px 0 rgba(33, 141, 94, 0.3);
  font-size: 1.6rem;
  font-feature-settings: 'palt';
}

.recomSignupBtn::after {
  content: "";
  background: url(../img/common/icon_arrow_maincolor_01.svg)no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: 1em;
  height: auto;
  aspect-ratio: 16 / 14;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.recomSignupBtn:active {
  opacity: 1;
  background: #fff;
  color: var(--color-main);
}

.recomSignupBtn:active.recomSignupBtn::after {
  filter: unset;
  right: 15px;
}

@media (any-hover:hover) {
  .recom .item a:hover {
    opacity: 1;

  }

  .recom .item:hover {
    transform: scale(1.02);
  }

  .recom .item.emember a:hover {
    opacity: 1;
    border-width: 4px;
  }

  .recom .item.emember a:hover .recomSignupBtn {
    opacity: 1;
    background: #fff;
    color: var(--color-main);
  }

  .recom .item.emember a:hover .recomSignupBtn::after {
    filter: unset;
    right: 15px;
  }
}

.recomSignupBtn__badge {
  position: absolute;
  top: -34px;
  left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50vh;
  color: var(--color-black);
  background-color: #fff;
  border: 2px solid var(--color-main);
  width: 60px;
  height: 60px;
  line-height: 1;
  font-feature-settings: 'palt';
  z-index: 3;
}

.recomSignupBtn__badge::before {
  content: "";
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  right: 4px;
  bottom: 1px;
  z-index: 2;
  transform: rotate(45deg);
}

.recomSignupBtn__badge::after {
  content: "";
  border-left: 9px solid var(--color-main);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  right: 2px;
  bottom: -2px;
  z-index: 1;
  transform: rotate(45deg);
}

.recomSignupBtn__badgeTop {
  font-size: 1em;
}

.recomSignupBtn__badgeNumWrap {
  font-size: 1.25em;
  position: relative;
  top: -1px;
}

.recomSignupBtn__badgeNum {
  font-size: 1.7em;
  line-height: 1;
  font-family: var(--font-en);
  color: var(--color-main);
}

.recomSignupBtn__badgeUnit {
  color: var(--color-main);
}

.recomSignupBtn__badgeTxt {
  font-size: 1.25em;
}

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

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

.recom .item .box01 {
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
}

.recom .item .box01 .ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 10px 0 0;
}

.recom .item .box01 .iconWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}

.recom .item .box01 .icon_txt {
  width: 50px;
  height: 20px;
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: 'palt';
}

.recom .item .box01 .icon_txt.icon_brand {
  width: auto;
  padding: 0 1em;
}

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

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

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

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

.recom .item .info .price span {
  font-size: 2.6rem;
  line-height: 1.2;
  font-family: var(--font-en);
  margin-right: 2px;
}

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

.recom .item .payment_pay {
  border-top: 1px dotted var(--color-lightgray);
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0;
  font-feature-settings: 'palt';
}

.recom .item .payment_pay dl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.2rem;
}

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

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

.recom .item .payment_pay .payment_txt {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  line-height: 1;
  color: var(--color-gray);
}

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

.recom .item .staffComment_img {
  width: 75px;
  height: auto;
  aspect-ratio: 1 / 1;
}

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

.recom .item .staffComment_txtBox {
  width: calc(100% - 75px);
  padding: 0 8px;
  text-align: left;
}

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

.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;
}

/*
===== GALLERYBOX ==========================================
*/
.galleryBox {
  padding: var(--gutter-superwide) 0;
  border-top: 3px solid var(--color-darkgray);
  border-bottom: 3px solid var(--color-darkgray);
}

.galleryBox__ttlBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.galleryBox__ttl {
  width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.galleryBox__ttlTxt {
  margin-top: 20px;
  font-size: 1.5rem;
  width: 100%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.galleryBox__ttlTxt::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--color-black);
  position: relative;
  display: block;
}

.galleryBox__ttlTxt::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--color-black);
  position: relative;
  display: block;
}

.galleryBox__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

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

.galleryBox__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  gap: 20px;
  padding: 20px;
  background: var(--color-black);
  box-shadow: 10px 10px 0 var(--color-darkgray);
  margin-bottom: 20px;
}

.galleryBox__item {
  position: relative;
}

.galleryBox__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gelleryBox__new {
  position: absolute;
  right: -10px;
  top: -15px;
  filter: drop-shadow(2px 2px 10px rgba(98, 33, 20, 0.15));
  z-index: 1;
  width: clamp(110px, 12vw, 124px);
}

.galleryBox__photo {
  width: clamp(200px, 20vw, 280px);
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.galleryBox__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

@media (any-hover:hover) {
  .galleryBox__item a:hover {
    opacity: 1;
  }

  .galleryBox__item a:hover .galleryBox__photo img {
    transform: scale(1.1);
  }
}

.galleryBox__itemTtl {
  position: absolute;
  bottom: 0;
  font-size: 1.6rem;
  padding: 0.25em 0.9em;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.galleryBox__pcBtn a {
  width: 240px;
  aspect-ratio: 240 / 62;
}


/*
===== index memberMeritBox ==========================================
*/
.index__memberMeritBox .memberMeritBox {
  padding: 130px 0 var(--gutter-superwide);
}

/*
===== indexShopBox ==========================================
*/
.shopAndNewsBox {
  margin: var(--gutter-superwide) auto;
}

/*
===== NEWSBOX ==========================================
*/
.newsBox {
  background: var(--color-palegray);
  padding: 35px clamp(20px, 5vw, 50px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  margin-top: 30px;
}

.newsBox__ttl {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--font-en);
  position: absolute;
  top: -12px;
  left: clamp(20px, 5vw, 50px);
  line-height: 1;
}

.newsBox__itemLink {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 150px);
  gap: 0 20px;
}

.newsBox__date {
  font-weight: bold;
  font-size: 1.5rem;
  font-family: var(--font-en);
  flex-shrink: 0;
}

.newsBox__Itemttl {
  font-weight: 500;
  font-size: 1.5rem;
  text-decoration: underline;
}

.newsBox__btn {
  text-decoration: underline;
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsBox__btn::after {
  content: "";
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/common/icon_arrow_white_01.svg) no-repeat center / 40% auto var(--color-main);
  position: relative;
  display: block;
  transition: 0.3s;
}


.newsBox__btn:active::after {
  transform: scale(1.1);
  background-color: var(--color-red);
}


@media (any-hover:hover) {
  .newsBox__itemLink:hover {
    opacity: 1;
    color: var(--color-main);
    font-weight: bold;
  }

  .newsBox__itemLink:hover .newsBox__Itemttl {
    text-decoration: none;
  }

  .newsBox__btn:hover {
    opacity: 1;
    color: var(--color-main);
    font-weight: bold;
  }

  .newsBox__btn:hover::after {
    transform: scale(1.1);
    background-color: var(--color-red);
  }
}

/*
===== NOTICEBOX ==========================================
*/
.noticeBox__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.noticeBox__btn a {
  display: block;
  width: 180px;
  padding: 15px;
  margin: 0 auto;
  color: #FFFFFF;
  background: var(--color-black);
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 3px;
  position: relative;
}

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

.topicsBox__ttl,
.columnBox__ttl {
  margin: 20px 0;
  text-align: center;
  height: 50px;
}

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

.topicsBox__date {
  width: 32%;
  max-width: 150px;
  flex-shrink: 0;
  font-weight: bold;
}

.topicsBox__itemTtl {
  width: 75%;
  max-width: 360px;
  margin: 15px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.noticeBox .cate_new,
.noticeBox .cate_popular {
  padding: 2px 5px;
  font-weight: bold;
}

.columnBox__item {
  display: block;
}

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

.columnBox__item a {
  display: block;
  text-decoration: none;
}

.columnBox__photo {
  width: 33.3%;
  display: inline-block;
  vertical-align: middle;
}

.columnBox__photo img {
  width: 120px;
  height: 80px;
}

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

.columnBox__iconWrap {
  font-weight: bold;
}

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

.columnBox__infoItem {
  margin-right: 5px;
  display: inline-block;
}

.columnBox__date {
  font-weight: bold;
}

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

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

/*
===== 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 Max1200px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1200px) {

  /* 地図 */
  .searchBox__shopItem--01,
  .searchBox__shopItem--02 {
    left: 55%;
  }

  .searchBox__shopItem--01::after {
    transform: translate(0, 24px) rotate(18deg);
    width: 230px;
  }

  .searchBox__shopItem--02::after {
    width: 380px;
  }

  /* pcCounterBox */
  .countBox__inner::before {
    left: -5%;
  }

  .countBox__inner::after {
    right: -5%;
  }
}

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

  /* 地図 */
  .searchBox__shopItem {
    display: none;
  }

  /*==================================================
    gelleryBox TABLET
  ==================================================*/
  .galleryBox__inner {
    flex-direction: column;
  }

  .galleryBox__photo {
    width: clamp(200px, 27vw, 280px);
  }
}

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

@media screen and (max-width: 767px) {
  #indexMainSlider {}

  #indexMainSlider .slick-dots {
    bottom: -20px;
  }

  #indexMainSlider .slick-arrow.slick-next,
  #indexMainSlider .slick-arrow.slick-prev {
    display: none !important;
  }

  #indexMainSlider .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }

  .indexMainSlider__item {
    width: auto !important;
  }

  .indexWire {
    width: 98%;
    margin: 0 auto;
    overflow: hidden;
  }


  /*
  ===== infoBox ==========================================
  */
  #spInfoBox {
    margin: var(--gutter-supernarrow) auto var(--gutter);
    position: relative;
  }

  .spInfoBox__countAllBox {
    background: var(--color-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 10px 0;
    position: relative;
  }

  .spInfoBox__countAllBox::before {
    content: "";
    width: 16%;
    height: auto;
    aspect-ratio: 123 / 267;
    position: absolute;
    left: 5px;
    bottom: -10px;
    background: url(../img/index/img_searchBox_left_01.webp) no-repeat center / contain;
    z-index: 1;
  }

  .spInfoBox__countAllBox::after {
    content: "";
    width: 20%;
    height: auto;
    aspect-ratio: 146 / 270;
    position: absolute;
    right: 5px;
    bottom: -10px;
    background: url(../img/index/img_searchBox_right_01.webp) no-repeat center / contain;
    z-index: 1;
  }


  .spInfoBox__countAllBoxTtl {
    font-size: 2rem;
    font-weight: bold;
  }

  .spInfoBox__countAll {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 5px 0 10px;
    gap: 4px;
  }

  .spInfoBox__countAllNum {
    color: var(--color-main);
    font-size: clamp(4rem, 13vw, 6rem);
    font-family: var(--font-en);
    padding: 5px;
    border-radius: 4px;
    background: #fff;
    width: clamp(30px, 12vw, 50px);
    height: auto;
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .spInfoBox__countAllTxt {
    position: relative;
    bottom: 2px;
    margin-left: 3px;
  }


  .spInfoBox__countDetail {
    padding: 25px 2% 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .spInfoBox__detailItem {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    flex-direction: column;
  }

  .spInfoBox__detailItem:nth-child(2) {
    border-left: 1px solid var(--color-lightgray);
    border-right: 1px solid var(--color-lightgray);
  }

  .spInfoBox__detailItemTtl {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    line-height: 1.2;
  }

  .spInfoBox__detailItemTxt-general .num {
    color: var(--color-black);
  }

  .spInfoBox__detailItemTxt-emember {
    border-bottom: 2px solid var(--color-red);

  }

  .spInfoBox__detailItemTxt-emember .num {
    color: var(--color-red);
  }

  .spInfoBox__detailItemTxt-shop .num {
    color: var(--color-black);
  }


  .spInfoBox__detailItemTxt {
    font-size: 1.4rem;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 5px;
  }

  .spInfoBox__detailItemTxt .num {
    font-size: 2em;
    margin: 0 2px 0 0;
    font-family: var(--font-en);
    font-weight: bold;
  }

  .spInfoBox__detailDate {
    font-size: 1.2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-feature-settings: "palt";
  }

  .spInfoBox__btnBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 3%;
    font-weight: bold;
    width: 96%;
    margin: 25px auto 0;
  }

  .spInfoBox__btn {
    width: 48.5%;
    padding: 1em 0.5em 1em 0;
    text-align: center;
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
    background-color: #fff;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    position: relative;
    border-radius: var(--rad-full);
  }

  .spInfoBox__btn::after {
    content: "";
    background: url(../img/common/icon_arrow_black_01.svg)no-repeat center / contain;
    /* filter: brightness(10) grayscale(); */
    width: 1em;
    height: auto;
    aspect-ratio: 16 / 14;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s;
  }

  .spInfoBox__btnBalloon {
    position: absolute;
    font-size: 1rem;
    display: block;
    top: -17px;
    white-space: nowrap;
    font-weight: normal;
    padding: 0.3em 0.5em;
    background-color: var(--color-red);
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    transform-origin: center;
    animation: balloon ease-in-out 1s infinite alternate;
  }

  @keyframes balloon {
    0% {
      transform: translateX(-50%) rotate(2deg);
    }

    10% {
      transform: translateX(-50%) rotate(-2deg);
    }

    20% {
      transform: translateX(-50%) rotate(2deg);
    }

    30% {
      transform: translateX(-50%) rotate(-2deg);
    }

    35% {
      transform: translateX(-50%) rotate(0deg);
    }

    100% {
      transform: translateX(-50%) rotate(0deg);
    }
  }

  .spInfoBox__btnBalloon::after {
    content: "";
    border-top: 4px solid var(--color-red);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
  }



  /*
  ===== SEARCHBOX - SP ==========================================
  */
  .searchPickupWrap {
    display: flex;
    flex-direction: column-reverse;
  }

  .searchBox {
    margin-bottom: var(--gutter-superwide);
    width: 100%;
  }

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

  .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 {
    height: 45px;
  }

  .areasearchBox__tabItem {
    font-size: 1.1rem;
    white-space: pre;
    height: 40px;
  }

  .areasearchBox__tabItem.active {
    height: 45px;
  }

  .searchBox .mapWrap__icon {
    font-size: 1.2rem;
    padding: 0.45em 1.1em;
  }

  .searchBox .animationBox {
    top: -34px;
  }

  .areasearchBox__mapBox {
    background: none;
    height: unset;
  }

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

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

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

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

  .areasearchBox__mapItemNum {
    font-size: 17px;
  }

  /*物件検索へのリンク*/
  .searchBox__linkBtnWrap {
    position: relative;
    align-items: center;
    bottom: 0;
    right: 0;
    margin: var(--gutter-narrow) auto;
  }

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

  .eventBox__ttl {
    width: 20%;
  }

  .eventBox__list {
    width: 77%;
  }

  .slick-initialized.eventBox__list {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding-bottom: 70px;
  }

  .eventBox__item:not(:first-child) {
    display: none;
  }

  .slick-initialized .eventBox__item {
    width: 70vw;
    margin: 0 10px;
    display: block;
  }

  .slick-initialized.eventBox__list .slick-dots {
    bottom: 20px;
  }

  .slick-initialized.eventBox__list .slick-prev,
  .slick-initialized.eventBox__list .slick-next {
    top: auto;
    bottom: -20px;
  }

  .eventBox__item {
    width: 100%;
  }

  .eventBox__itemTtl {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: initial;
  }

  .eventBox__btn a {
    margin-right: auto;
  }

  /*
  ===== PICKUPBOX・RECOMBOX ==========================================
  */
  .pickupBox {
    width: 100%;
  }

  .pickupBox__wrapper {
    padding: 0;
  }


  /*
  ===== GALLERYBOX ==========================================
  */
  .galleryBox__inner {
    flex-direction: column;
  }

  .galleryBox__list {
    flex-direction: column;
  }

  .galleryBox__photo {
    width: clamp(250px, 75vw, 320px);
  }

  .slick-initialized.galleryBox__list {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 100vw;
    padding-bottom: 70px;
  }

  .galleryBox__item:not(:first-child) {
    display: none;
  }

  .slick-initialized .galleryBox__item {
    width: 80vw;
    margin: 0 10px;
    display: block;
  }

  .slick-initialized.galleryBox__list .slick-dots {
    bottom: 20px;
  }

  .slick-initialized.galleryBox__list .slick-prev,
  .slick-initialized.galleryBox__list .slick-next {
    top: auto;
    bottom: -20px;
  }
  
  .slick-initialized.galleryBox__list .galleryBox__photo {
    width: 100%;
  }
  .slick-initialized.galleryBox__list .slick-dots li.slick-active button:before {
  background: var(--color-main);
}

  /*
===== index memberMeritBox ==========================================
*/
  .index__memberMeritBox .memberMeritBox {
    padding: var(--gutter-superwide) 0;
  }


  /*
  ===== newsBox ==========================================
  */
  .newsBox {
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
  }

  .newsBox__itemLink {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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