@charset "utf-8";
/* CSS Document */

/*==================================================
  CSS CUSTOM PROPERTY
==================================================*/
:root {
  --width-content: 1200px;

  --color-main: #E60023;
  --color-red: #E60023;
  --color-orange: #F67600;
  --color-yellow: #FFC822;
  --color-ygreen: #8ECC11;
  --color-green: #6DB62A;
  --color-linegreen: #06C754;
  --color-blue: #009DC0;
  --color-lightblue: #00ADA9;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #111111;
  --color-darkgray: #666;
  --color-darkredgray: #705152;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-lightredgray: #ccc;
  --color-palemain: #EAF4FF;
  --color-palegray: #F5F5F5;
  --color-palegreen: #F5FFED;
  --color-paleorange: #FFF7F0;
  --color-palered: #fff2f6;
  --color-paleyellow: #FFFAE5;

  --gutter-ultranarrow: 20px;
  --gutter-supernarrow: 30px;
  --gutter-narrow: 40px;
  --gutter-medium: 60px;
  --gutter: 80px;
  --gutter-wide: 100px;
  --gutter-superwide: 120px;

  --rad-large: 30px;
  --rad-common: 0;

  --font-en: "Red Rose", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-ja2: "Zen Kaku Gothic New", sans-serif;

  --transition-btn : .3s cubic-bezier(.34,1.56,.64,1) .05s;
  --transition-common : .3s cubic-bezier(.22,.61,.36,1) .05s;

  --header-height: 0;
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-ultranarrow: 10px;
    --gutter-supernarrow: 20px;
    --gutter-narrow: 30px;
    --gutter-medium: 40px;
    --gutter: 50px;
    --gutter-wide: 60px;
    --gutter-superwide: 80px;
  }
}

@media (min-width: 767px) {

  /* ▼スマホサイズでのみ架電可能▼ */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*==================================================
  GENERAL SETTINGS
==================================================*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  font-size: 10px;
  line-height: 1.5;
  background: #fff;
  color: var(--color-black);
  font-weight: 500;
  -webkit-tap-highlight-color: rgba(230, 0, 35, 0.08);
}

html img {
  max-width: 100%;
  height: auto;
}

body {
  font-size: 1.6rem;
  overflow-x: hidden;
}

main {
  display: block;
  word-break: break-word;
  position: relative;
  min-height: 400px;
  z-index: 2;
  overflow: hidden;
}

a {
  text-decoration: none;
}

@media (any-hover:hover) {

  a:hover,
  a:active {
    text-decoration: none;
    filter: alpha(opacity=70);
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}

[id] {
  scroll-margin-top: var(--header-height);
}

/*bodyを固定*/
body.menu-open,
body.modal-open {
  overflow: hidden;
}

/*==================================================
  common parts
==================================================*/
/* commonTel */
.commonTel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.commonTel__num {
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 2.66em;
}

.commonTel__num::before {
  content: "";
  position: relative;
  width: auto;
  height: 0.7em;
  aspect-ratio: 17 / 22;
  background: url(../img/common/icon_tel_black_01.svg) no-repeat center / contain;
  display: block;
}

.commonTel__time {
  font-size: 0.9em;
  font-weight: bold;
}

/* bannerWrap */
.bannerWrap {
  text-align: center;
  margin: var(--gutter-medium) auto;
  width: min(90%, 1010px);
}

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

.bannerWrap a {
  border-radius: var(--rad-common);
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: var(--transition-btn);
}

@media(any-hover: hover) {

  .bannerWrap a:hover {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* indexTtl */
.indexTtl {
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.indexTtl__main {
  font-size: clamp(1.3rem, 1.8vw, 1.4rem);
}

.indexTtl__sub {
  font-size: clamp(4.5rem, 5vw, 5.4rem);
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.14em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.indexTtl__icon {
  height: 1em;
}

.indexTtlWrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gutter-narrow);
}

/* commonIconWrap */
.commonIconWrap {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* -------------------------------------------------------
  一覧を見るボタン デフォルト
---------------------------------------------------------- */

.btn_archive {
  text-align: center;
}

.btn_archive a {
  display: block;
  width: 200px;
  height: auto;
  aspect-ratio: 200 / 50;
  color: #fff;
  background: var(--color-black);
  border: 2px solid var(--color-black);
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.4;
  border-radius: var(--rad-common);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-right: 10px;
  overflow: hidden;
  transition: var(--transition-btn);
}

.btn_archive a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url("../img/common/icon_arrow_black_thin_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_arrow_black_thin_01.svg") no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  transition: var(--transition-btn);
}


@media (any-hover:hover) {
  .btn_archive a:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  

  .btn_archive a:hover::after {
    right: 2%;
  }
}

/* ホバーアニメーション　背景色変化 */
.btn_archive--hoverColorChange a::before {
  content: "";
  background: #fff;
  display: block;
  width: calc(100% + 10px);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 1);
  transform-origin: right top;
  z-index: -1;
  transition: var(--transition-common);
}

@media (any-hover:hover) {
  .btn_archive--hoverColorChange a:hover { 
    color: var(--color-black);
  }

  .btn_archive--hoverColorChange a:hover::before {
    transform-origin: left top;
    transform: translate(-50%, -50%) scale(1, 1);
  }
}


/* -------------------------------------------------------
  一覧を見るボタン 赤色塗り
---------------------------------------------------------- */
.btn_archive--fillRed a {
  color: #fff;
  background: var(--color-red);
  border: 2px solid var(--color-red);
}


/* ホバーアニメーション　背景色変化 */
.btn_archive--fillRed.btn_archive--hoverColorChange a::before {
  background: #fff;
}

@media (any-hover:hover) {
  .btn_archive--fillRed.btn_archive--hoverColorChange a:hover {
    color: var(--color-red);
  }
}


/* -------------------------------------------------------
  一覧を見るボタン メインカラー塗り
---------------------------------------------------------- */
.btn_archive--fillMainColor a {
  color: #fff;
  background: var(--color-main);
  border: 2px solid var(--color-main);
}

/* ホバーアニメーション　背景色変化 */
.btn_archive--fillMainColor.btn_archive--hoverColorChange a::before {
  background: #fff;
}

@media (any-hover:hover) {
  .btn_archive--fillMainColor.btn_archive--hoverColorChange a:hover {
    color: var(--color-main);
  }
}

/* -------------------------------------------------------
  一覧を見るボタン 線がメインカラー
---------------------------------------------------------- */

.btn_archive--mainColor a {
  color: var(--color-main);
  background-color: #fff;
  border: 2px solid var(--color-main);
}

@media (any-hover:hover) {
  .btn_archive--mainColor a:hover {
    background-color: var(--color-paleyellow);
  }
}

/* ホバーアニメーション　背景色変化 */
.btn_archive--mainColor.btn_archive--hoverColorChange a::before {
  background: var(--color-main);
}

@media (any-hover:hover) {
  .btn_archive--mainColor.btn_archive--hoverColorChange a:hover {
    color: #fff;
  }
}

/* -------------------------------------------------------
  一覧を見るボタン 線が黒
---------------------------------------------------------- */
.btn_archive--lineBlack a {
  color: var(--color-black);
  background-color: #fff;
}

@media (any-hover:hover) {
  .btn_archive--lineBlack a:hover {
    background-color: var(--color-paleyellow);
  }
}

/* ホバーアニメーション　背景色変化 */
.btn_archive--lineBlack a::before {
  background: var(--color-black);
}

@media (any-hover:hover) {
  .btn_archive--lineBlack.btn_archive--hoverColorChange a:hover {
    color: #fff;
  }
}


/* -------------------------------------------------------
  一覧を見るボタン 大きめ中央寄せ
---------------------------------------------------------- */
.btn_archive--center a {
  margin: 0 auto;
  width: 250px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.btn_archive--center a::after {
  right: 3%;
  width: 14px;
  height: 14px;
}

@media (any-hover:hover) {
  .btn_archive--center a:hover::after {
    right: 2%;
  }
}

/* -------------------------------------------------------
  一覧を見るボタン タイトルの下にある時
---------------------------------------------------------- */
.btn_archive--underTtl a {
  width: 220px;
}

/* ------------------------------------------------------- */

/* カタログバナー */
.bnrCatalog {
  width: min(1010px, 90%);
  margin: var(--gutter-wide) auto;
  border: 5px solid var(--color-main);
  border-radius: var(--rad-common);
  background: #fff;
  padding: 65px clamp(20px, 4vw, 40px) 35px clamp(20px, 4vw, 40px);
  position: relative;
  display: block;
  transition: transform .3s ease-in-out .05s;
}

.bnrCatalog__catch {
  background-color: var(--color-main);
  color: #fff;
  line-height: 1.6;
  padding: 10px 30px;
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 var(--rad-common) 0;
  text-align: center;
}

.bnrCatalog__catchSmall {
  font-size: 0.8em;
}

.bnrCatalog__main {
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.8;
  color: var(--color-main);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 70%;
}

.bnrCatalog__logo {
  height: 2.4em;
  position: relative;
}

.bnrCatalog__logo img {
  width: auto;
  height: 100%;
}

.bnrCatalog__subTxt {
  font-weight: bold;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.8;
  margin-top: 10px;
}

.bnrCatalog__btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 1;
}

.bnrCatalog__btn::after {
  content: "";
  width: 200px;
  height: auto;
  aspect-ratio: 200 / 250;
  background: url(../img/common/img_catalog_01.webp) no-repeat center / contain;
  position: absolute;
  left: 20%;
  bottom: 3px;
  z-index: -1;
}

.bnrCatalog__btnInner {
  display: block;
  width: clamp(200px, 29vw, 280px);
  height: auto;
  aspect-ratio: 280 / 60;
  margin: 0 auto;
  color: #fff;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: var(--rad-common);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-right: 10px;
  overflow: hidden;
  transition: color .3s ease-in-out .1s;
}

.bnrCatalog__btnInner::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_arrow_mainColor_normal_01.svg) no-repeat center / contain;
  filter: grayscale(1) invert(1) brightness(2);
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  transition: right .3s ease-in-out .1s, filter .3s ease-in-out .1s;
}

.bnrCatalog__btnInner::before {
  content: "";
  background: #fff;
  display: block;
  width: calc(100% + 10px);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 1);
  transform-origin: right top;
  z-index: -1;
  transition: transform .3s ease-in-out .1s;
}

@media (any-hover:hover) {
  .bnrCatalog:hover {
    opacity: 1;
    transform: scale(1.02);
  }

  .bnrCatalog:hover .bnrCatalog__btnInner {
    color: var(--color-main);
  }

  .bnrCatalog:hover .bnrCatalog__btnInner::before {
    transform-origin: left top;
    transform: translate(-50%, -50%) scale(1, 1);
  }

  .bnrCatalog:hover .bnrCatalog__btnInner::after {
    right: 6%;
    filter: none;
  }

}

/* LINE公式アカウント */
.lineBox {
  padding: var(--gutter) 0;
  border-top: 1px solid var(--color-green);
  background: url(../img/common/deco_line_top_01.webp) no-repeat right top 30px / 24%, url(../img/common/deco_line_bottom_01.webp) no-repeat left bottom 30px / 35%, var(--color-paleyellow)
}

.lineBox__ttl {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 700;
  margin-bottom: var(--gutter-supernarrow);
  text-align: center;
  text-shadow: -3px -3px 0 var(--color-paleyellow), 3px -3px 0 var(--color-paleyellow), -3px 3px 0 var(--color-paleyellow), 3px 3px 0 var(--color-paleyellow);
}

.lineBox__ttlGreen {
  color: #06C755;
  font-size: 1.2em;
  line-height: 1;
  position: relative;
  top: 2px;
  left: 6px;
}

.lineBox__txt {
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--gutter-supernarrow);
}

.lineBox .btn_line {
  margin: 0 auto;
}

.btn_line {
  width: 320px;
  height: 70px;
  color: #fff;
  background: #06C755;
  border: 2px solid #06C755;
  border-radius: var(--rad-common);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  gap: 7%;
  padding-right: 15px;
  z-index: 2;
  transition: var(--transition-btn);
}

.btn_lineIcon {
  width: 30px;
  height: 30px;
  outline: 1px solid #fff;
  border-radius: 5px;
}

.btn_line::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("../img/common/icon_arrow_linegreen_thin_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_arrow_linegreen_thin_01.svg") no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  transition: var(--transition-btn);
}

@media (any-hover:hover) {
  .btn_line:hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .btn_line:hover::after {
    right: 3%;
  }
}


.indexLineMerit__ttl {
  font-weight: bold;
  font-size: clamp(2rem, 3vw, 2.2rem);
  text-align: center;
  margin: var(--gutter) auto var(--gutter-medium);
  position: relative;
  width: fit-content;
}

.indexLineMerit__ttl::after {
  content: "";
  width: 2.5em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../img/common/deco_mainColor_01.svg) no-repeat center / contain;
  position: absolute;
  top: -1.3em;
  right: -1.3em;
  transform: rotate(15deg);
}

.indexLineMerit__list {
  display: flex;
  justify-content: center;
  gap: 15px 30px;
  margin-bottom: var(--gutter);
}

.indexLineMerit__item {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-black);
  border-radius: var(--rad-common);
  position: relative;
  background: #fff;
}

.indexLineMerit__num {
  font-family: var(--font-en);
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: bold;
  line-height: 1.8;
  background: var(--color-red);
  width: 1.8em;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.indexLineMerit__imgWrap {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

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

.indexLineMerit__itemTtlWrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.indexLineMerit__important {
  color: var(--color-red);
}

.indexLineMerit__txt {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}

.indexLineMerit__itemInner {
  padding: clamp(10px, 2vw, 20px) 10px;
  display: flex;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}


/*==================================================
  HEADER
==================================================*/
.header {
  z-index: 10000;
  position: relative;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.30);
}

.header.fixed {
  position: fixed;
  top: 0;
  animation: header-slidein .5s;
}

@keyframes header-slidein {
  0% {
    transform: translateY(-200px);
  }

  100% {
    transform: translateY(0);

  }
}

.header__inner {
  width: min(1200px, 96%);
  margin: 0 auto;
  padding: 10px 0;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.header__logo {
  width: auto;
  /*ロゴ画像の幅に合わせる*/
  height: 50px;
  aspect-ratio: 226 / 50;
  display: block;
}

.header__logo a {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: url(../img/common/sitelogo_01.webp) no-repeat left center;
  background-size: contain;
}

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

.header__logoSub {
  font-weight: bold;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

/* エリア選択モーダル */
.header__areaSelect {
  font-size: clamp(1.2rem, 2vw, 1.2rem);
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
  color: var(--color-blue);
}

.header.fixed .header__areaSelect {
  display: none;
}

.areaSelectModal[hidden] {
  display: none;
}

.areaSelectModal__content {
  max-width: 420px;
  max-height: calc(100dvh - 40px);
  overflow: auto;
}

.areaSelectModal__ttl {
  margin-bottom: 1em;
}

.areaSelectModal__nav {
  display: grid;
  gap: 12px;
}

.areaSelectModal__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  transition: var(--transition-btn);
}

.areaSelectModal__link::after {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../img/common/icon_arrow_black_thin_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_arrow_black_thin_01.svg") no-repeat center / contain;
}

.areaSelectModal__close {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .areaSelectModal__content {
    max-width: 860px;
  }

  .areaSelectModal__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: min(100%, 684px);
    margin: 0 auto;
  }

  .areaSelectModal__link {
    width: 220px;
    min-height: 56px;
  }
}

/* ヘッダー右側 */
.header__innerRight {
  display: flex;
  align-items: center;
}

/* ヘッダーアイコンボタン */
.headerBtns__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.headerBtns__item {
  position: relative;
}

.headerBtns__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--color-lightgray);
  position: absolute;
  left: -4px;
  top: 0;
}

.headerBtns__item:first-child::before {
  content: none;
}

.headerBtns__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 88px;
  height: 45px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: color var(--transition-common), background-color var(--transition-common);
  line-height: 1.25;
  text-align: center;
}

.headerBtns__link--user {
  color: var(--color-red);
}

.headerBtns__link::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  transition: color var(--transition-common);
}

.headerBtns__link--search::before {
  -webkit-mask: url("../img/common/icon_search_black_01.svg") no-repeat center / 20px;
  mask: url("../img/common/icon_search_black_01.svg") no-repeat center / 20px;
}

.headerBtns__link--user::before {
  -webkit-mask: url("../img/common/icon_user_mainColor_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_user_mainColor_01.svg") no-repeat center / contain;
}

.headerBtns__link--login::before {
  -webkit-mask: url("../img/common/icon_login_black_01.svg") no-repeat center / 21px;
  mask: url("../img/common/icon_login_black_01.svg") no-repeat center / 21px;
}

.headerBtns__link--favorite::before {
  -webkit-mask: url("../img/common/icon_favorite_black_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_favorite_black_01.svg") no-repeat center / contain;
}

.headerBtns__link--history::before {
  -webkit-mask: url("../img/common/icon_history_black_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_history_black_01.svg") no-repeat center / contain;
}

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


.headerBtns__childList {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-black);
  z-index: 1;
  top: 50px;
  left: -1px;
  transition: var(--transition-common);
  transform: scaleY(0);
  transform-origin: top;
}

.headerBtns__item:hover .headerBtns__childList {
  transform: scaleY(1);
  transition: var(--transition-common);
}

.headerBtns__childList::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  top: -10px;
  position: absolute;
}

.headerBtns__childItem {
  width: 92px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 1.3rem;
  background-color: #fff;
  color: var(--color-black);
  position: relative;
  text-align: center;
}

.headerBtns__childItem::before {
  content: "";
  width: 1px;
  height: 82%;
  background-color: var(--color-lightgray);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.headerBtns__childItem:first-child::before {
  content: none;
}

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

/* ヘッダー四角ボタン */
.headerLinks {
  display: none;
}

.header.fixed .headerLinks {
  display: block;
}

.headerLinks__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.headerLinks__link {
  color: #fff;
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
  padding: 0.6em 1.5em 0.69em 0.76em;
  font-size: 1.3rem;
  line-height: 1;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition-common);
}

.headerLinks__link::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: currentColor;
  -webkit-mask: url("../img/common/icon_arrow_white_normal_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_arrow_white_normal_01.svg") no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  transition: var(--transition-common);
}

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

.headerLinks__link--summarize {
  cursor: default;
}

.headerLinks__link--areaTop {
  font-size: clamp(1.2rem, 1vw, 1.2rem) !important;
}

.headerLinks__childList {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-black);
  z-index: 1;
  top: 40px;
  left: -2px;
  transition: var(--transition-common);
  transform: scaleY(0);
  transform-origin: top;
}

.headerLinks__link:hover .headerLinks__childList {
  transform: scaleY(1);
  transition: var(--transition-common);
}

.headerLinks__childList::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  top: -10px;
  position: absolute;
}

.headerLinks__childItem {
  width: 92px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 1.3rem;
  background-color: #fff;
  color: var(--color-black);
  position: relative;
  text-align: center;
}

.headerLinks__childItem::before {
  content: "";
  width: 1px;
  height: 82%;
  background-color: var(--color-lightgray);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.headerLinks__childItem:first-child::before {
  content: none;
}

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

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

  .header.fixed .header__logo {
    height: 40px;
  }

  .header.fixed .header__inner {
    padding: 5px 0;
  }

  .header.fixed .headerLinks__link {
    font-size: 1.2rem;
  }

  .header.fixed .headerBtns__link {
    height: 35px;
  }

  .header.fixed .headerBtns__link::before {
    width: 20px;
    height: 20px;
  }
  
  .header.fixed .headerBtns__link--search::before {
    -webkit-mask-size: 18px;
    mask-size: 18px;
  }
  
  .header.fixed .headerBtns__link--login::before {
    -webkit-mask-size: 18px;
    mask-size: 18px;
  }
}

/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  background-color: var(--color-palegray);
}

.pcNavi__list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.pcNavi__item {
  width: 20%;
}

.pcNavi__item>a {
  display: block;
  width: 100%;
  padding: 22px 0;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: var(--transition-common);
}

.pcNavi__item>a::after {
  content: "";
  width: 1px;
  background-color: var(--color-lightgray);
  height: 35px;
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
}

.pcNavi__item:last-child>a::after {
  content: none;
}

.pcNavi__item i {
  margin-right: 5px;
  color: var(--color-gray);
}

@media (any-hover:hover) {
  .pcNavi__item>a:hover {
    background: var(--color-main);
    opacity: 1 !important;
    color: #FFF;
  }

  .pcNavi__item>a:hover::after {
    content: none;
  }

}

.pcNavi__item--parent {
  list-style: none;
  padding: 0;
  position: relative;
}

.pcNavi__childList {
  position: absolute;
  width: 100%;
  display: block;
  z-index: 999;
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition-common);
}

.pcNavi__childItem {
  display: block;
  overflow: hidden;
  width: 100%;
}

@media (any-hover:hover) {
  .pcNavi__item:hover .pcNavi__childList {
    transform: scaleY(1);
  }
  
  .pcNavi__item:hover .pcNavi__childItem {
    overflow: visible;
    background-color: var(--color-palegray);
    border-top: 1px solid var(--color-lightgray);
  }
}

.pcNavi__childItem>a {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
  padding: 20px 0;
  font-weight: bold;
  transition: var(--transition-common);
}

@media (any-hover:hover) {
  .pcNavi__childItem a:hover {
    background: var(--color-main);
    opacity: 1;
    color: #fff;
  }
}

/*
  ===== loginfixbox ==========================================
  */
.pcMemberNavi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.3rem;
  background-color: #fff;
}

.pcMemberNavi--logined {
  display: none;
}

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

.pcMemberNavi__box tbody {
  height: 100%;
}

.pcMemberNavi__box tr {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 6px;
}

.pcMemberNavi__ttl {
  color: var(--color-main);;
  border: 1px solid var(--color-main);
  padding: 0 1em;
}

.pcMemberNavi__itemBox {
  vertical-align: middle;
  text-align: center;
}

.pcMemberNavi__inputWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcMemberNavi__item {
  margin-left: 20px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
}

input[type="submit"].pcMemberNavi__loginBtn {
  border: none;
  padding: 5px 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background: var(--color-main);
}

.pcMemberNavi__item--input {
  margin-left: 5px;
}

.pcMemberNavi__item--input input {
  padding: 3px 10px !important;
  text-align: left;
}


/*ログイン時*/
.pcMemberNavi__item--link {
  position: relative;
}

.pcMemberNavi__item--link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url(../img/common/icon_arrow_black_thin_01.svg) no-repeat center / contain;
  width: 6px;
  height: auto;
  aspect-ratio: 9 / 19;
  pointer-events: none;
}

.pcMemberNavi__item--link a {
  padding-right: 2em;
  text-decoration: underline;
}

.pcMemberNavi__item--name {
  margin-right: 20px;
}

.pcMemberNavi__memberInfoList {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcMemberNavi__memberInfoList .pcMemberNavi__item {
  margin-left: clamp(10px, 1.5vw, 20px);
}

.pcMemberNavi__memberInfoList .pcMemberNavi__item--link {
  flex-shrink: 0;
}

.pcMemberNavi__logoutBtn {
  padding: 8px 10px !important;
  width: auto;
  font-size: 1.3rem;
}


/* 最近見た物件モーダル */
.modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}

.modal-content {
  background-color: #fff;
  padding: clamp(20px, 5vw, 50px);
  width: 90%;
  max-width: 930px;
  max-height: calc(100vh - 150px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: scroll;
  scrollbar-width: none; /* Firefox */
}

.modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9em;
  height: 3em;
  margin: 1em auto 0;
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  min-width: auto !important;
}

.close-button:hover {
  opacity: 0.6;
}

.modalRecently__ttl {
  text-align: center;
  font-weight: bold;
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.5em;
}

.modalRecently__ttl--empty {
  font-size: 1.8rem;
}

#estateViewHistoryBox .btn_archive {
  margin: 0;
}

#estateViewHistoryBox .btn_archive a {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}


.modalRecently__checkbox {
  text-align: right;
}

.modalRecently__checkbox input {
  margin: 0 !important;
}

.modalRecently__btn {
  text-align: center;
}

/*List*/
.modalRecently__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 10px;
}

.modalRecently__item {
  position: relative;
  background: #fff;
}

.modalRecently__item:nth-of-type(5n) {
  margin-right: 0;
}

.modalRecently__item a {
  display: block;
  border: 1px solid var(--color-black);
  height: 100%;
  border-radius: var(--rad-common);
  overflow: hidden;
}

.modalRecently__image {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  position: relative;
}

.modalRecently__info {
  padding: 10px;
  font-size: 1.4rem;
}

.modalRecently__ttl {
  font-weight: bold;
}

.modalRecently__price {
  color: var(--color-red);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.modalRecently__priceNum {
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: var(--font-en);
  margin-right: 3px;
  position: relative;
  top: 1px;
}

.modalRecently__priceTxt {
  font-size: 1.9rem;
  line-height: 1.15;
}

.modalRecently__txt {
  font-size: 1.2rem;
}

.modalRecently__checkbox {
  position: absolute;
  top: 1px;
  left: 1px;
  padding: 5px;
  background: #fff;
  border-radius: var(--rad-common);
}

.modalRecently__checkbox input {
  margin-right: 0;
  cursor: pointer;
}

.modalRecently__iconWrap {
  position: absolute;
  bottom: 5px;
  left: 5px;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}

.modalRecently__icon {
  border-radius: var(--rad-common);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.3em 0.8em;
  border: 1px solid var(--color-black);
  background: #fff;
}

.modalRecently__icon--new {
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-en);
  border-color: var(--color-yellow);
}

.modalRecently__icon--brand {
  color: #fff;
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.modalRecently__icon--red {
  color: #fff;
  background: var(--color-red);
  border-color: var(--color-red);
}

.modalRecently__btn {
  text-align: center;
  margin-top: var(--gutter-supernarrow);
}

.modalRecently__btn input {
  font-size: 1.5rem;
  width: min(100%, 360px);
  padding: 25px 10px;
  margin: 0;
}

#estateViewHistoryBox .recentlyList_btn {
  text-align: center;
}

#estateViewHistoryBox .recentlyList_btn .btn_form {
  width: 80%;
  margin: 0 auto;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}


/*==================================================
  FOOTER
==================================================*/
/*footFix*/
.footFix {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
  /* display: none; 常に表示するためコメントアウト */
}

.footFix .ancPagetop a {
  width: 44px;
  height: 44px;
  position: absolute;
  background-color: #fff;
  border-radius: var(--rad-common);
  display: flex;
  align-items: center;
  justify-content: center;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--color-black);
}

.footFix .ancPagetop a::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_arrow_black_normal_01.svg) no-repeat center / contain;
  position: relative;
  transform: rotate(-90deg);
  transition: var(--transition-common);
}

@media (any-hover:hover) {
  .footFix .ancPagetop a:hover {
    transform: scale(1.05);
    opacity: 1;
  }
}


/* 来店予約ボタン */
.footerBtn {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 999;
  display: none;
}

.footerBtn.hidden {
  display: none !important;
}

.footerBtn__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-red);
  border-radius: 50%;
  width: 150px;
  height: auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
  color: #fff;
  animation: poyopoyo 2s ease-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }

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

.footerBtn__link::before {
  content: "";
  background: url(../img/common/img_campaign_01.webp)no-repeat center / contain;
  width: 38%;
  height: auto;
  aspect-ratio: 57 / 36;
  margin-bottom: 10px;
}

.footerBtn__txt01 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.footerBtn__txt02 {
  font-size: 1.3rem;
  font-weight: bold;
}

.footerBtn__txt03 {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.footerBtn__txt03::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_arrow_black_thin_01.svg) no-repeat center / contain;
  position: relative;
  filter: grayscale(1) invert(1) brightness(2);
  top: -1px;
}

@media (any-hover:hover) {
  .footerBtn__link:hover {
    opacity: 1;
    animation: poyopoyohover .3s forwards;
  }

  @keyframes poyopoyohover {
    0% {
      transform: scale(1.0);
    }

    100% {
      transform: scale(1.05);
    }
  }

}

/* 来店予約ボタンの閉じるボタン */
.footerBtn__close {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  width: 22px;
  height: 22px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  z-index: 1;
}

.footerBtn__close:hover {
  opacity: 0.8;
}

.footerBtn__close::before,
.footerBtn__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 10px;
  background: var(--color-black);
}

.footerBtn__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.footerBtn__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 縦長ボタン */
.pcFooterMenu {
  position: fixed;
  bottom: 60px;
  right: 0;
  z-index: 999;
  transform: translateX(100px);
  transition: transform .3s;
}

.pcFooterMenu.slidein {
  display: block;
  transform: translateX(0);
}

.pcFooterMenu__list {
  display: flex;
  flex-direction: column;
  border-radius: var(--rad-common) 0 0 var(--rad-common);
  border: 3px solid var(--color-lightredgray);
  border-right: none;
  overflow: hidden;
}

.pcFooterMenu__item {
  width: 60px;
  height: 160px;
  position: relative;
}

.pcFooterMenu__item:not(:last-child)::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-lightredgray);
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color .3s ease-in-out .1s;
}

.pcFooterMenu__itemLink {
  position: relative;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  font-weight: bold;
  background: #fff;
  transition: color .3s ease-in-out .1s, background-color .3s ease-in-out .1s;
}

.pcFooterMenu__itemLink--estates {
  gap: 3px;
}

.pcFooterMenu__itemTxt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.pcFooterMenu__itemLink--estates .pcFooterMenu__itemTxt {
  letter-spacing: 0;
  font-size: 0.9em;
}

/* アイコン */
.pcFooterMenu__itemLink::before {
  content: "";
  width: auto;
  height: 25px;
  aspect-ratio: 1 / 1;
  position: relative;
  transition: filter .3s ease-in-out;
}

.pcFooterMenu__itemLink--shopreserve::before {
  background: url(../img/common/icon_calendar_black_01.svg) no-repeat center / contain;
  left: 2px;
}

.pcFooterMenu__itemLink--estates::before {
  background: url(../img/common/icon_search_black_01.svg) no-repeat center / contain;
  height: 20px;
}

.pcFooterMenu__itemLink--event::before {
  background: url(../img/common/icon_flag_black_01.svg) no-repeat center / contain;
  left: 2px;
}

.pcFooterMenu__itemLink--line::before {
  background: url(../img/common/icon_line.svg) no-repeat center / contain;
  border: 1px solid #fff;
  border-radius: 6px;
}

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

  .pcFooterMenu__item:hover::after {
    background-color: var(--color-main);
  }

  .pcFooterMenu__item:has(+ .pcFooterMenu__item:hover)::after {
    background-color: #fff;

  }

  .pcFooterMenu__itemLink--line:hover {
    background-color: #06C755;
  }


  .pcFooterMenu__itemLink--shopreserve:hover::before,
  .pcFooterMenu__itemLink--estates:hover::before,
  .pcFooterMenu__itemLink--event:hover::before {
    filter: grayscale(1) invert(1) brightness(2);
  }


}

/* footer */
.footer {
  border-top: 1px solid var(--color-main);
  padding-top: var(--gutter-medium);
}

.footerBox1 {
  display: flex;
  justify-content: space-between;
  gap: var(--gutter-wide) 30px;
}

.footerBox1__left {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 5vw, 40px);
  align-items: center;
  text-align: center;
}

.footerBox1__sitelogo img {
  max-width: 232px;
}

.footerBox1__catch {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
}

.footerBox1 .btn_line {
  width: 250px;
  height: 60px;
}

.footerBox2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--gutter-narrow) auto;
  gap: 20px;
}

.footerBox2__company {
  font-size: 1.6rem;
  line-height: 1.6;
}

.footerBox2__tel {
  font-size: 1.5rem;
}

.footerAreaList {
  margin-top: var(--gutter);
}

.footerAreaList__mainTxt {
  font-size: clamp(1.2rem, 1.2vw, 1.3rem);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10px;
}

.footerAreaList__txt {
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  text-align: center;
  border: 1px solid var(--color-black);
  padding: 0.5em 1em;
}

.footerAreaList__txt .font_b {
  margin: 0 0.5em 0 1em;
}

.footerAreaList__txtMarker {
  font-weight: 900;
  background: linear-gradient(transparent 65%, var(--color-yellow) 65%);
}

.footerAreaList__txt--land .inline_block:first-child {
  margin-top: 0.5em;
}

.footerAreaList__txt--land .inline_block {
  margin-bottom: 1em;
}

.footerAreaList__txt--land .font_b {
  margin: 0;
}

.footerSitemap {
  display: flex;
  justify-content: space-between;
  width: min(100%, 773px);
}

.footerSitemap__wrap:nth-child(2) {
  margin-top: 60px;
}

.footerSitemap__ttl {
  color: var(--color-main);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2vw, 1.6rem);
}

.footerSitemap__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px 0;
  font-size: 1.4rem;
}

.footerSitemap__item {
  line-height: 1.4;
}

.footerSitemap__item a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
  transition: color .2s ease-in-out 0.1s;
  z-index: 1;
}

.footerSitemap__item a::after {
  background: var(--color-main);
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 5px);
  border-radius: var(--rad-common);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 1);
  transform-origin: right top;
  z-index: -1;
  transition: transform .2s ease-in-out .1s;
}


.footerSitemap__item--child a::before {
  content: "┗";
  color: var(--color-lightredgray);
  margin-right: 5px;
}

@media (any-hover:hover) {
  .footerSitemap__item a:hover {
    opacity: 1;
    color: #fff;
    transition: color .2s ease-in-out 0.05s;
  }

  .footerSitemap__item a:hover::after {
    transform-origin: left top;
    transform: translate(-50%, -50%) scale(1, 1);
  }
}

/*SNS icon*/
.footerSocial {
  display: flex;
  justify-content: center;
}

.footerSocial__item {
  width: 32px;
  height: 32px;
  margin: 0 10px;
}

.footerCopy {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-style: normal;
  font-size: clamp(1.1rem, 1vw, 1.3rem);
  color: #fff;
  background: var(--color-main);
  text-align: right;
  position: relative;
  line-height: 1.3;
}

/* recaptcha */
.grecaptcha-badge {
  bottom: 60px !important;
  overflow: hidden;
  z-index: 1000;
}

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  margin: var(--gutter-supernarrow) auto var(--gutter-narrow);
  position: relative;
  width: min(90%, var(--width-content));
}

.ttlWrap .icon_txt {
  margin-bottom: 0;
}

.mainTtl {
  font-size: clamp(2.6rem, 4vw, 3rem);
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.ttlWrap__icon {
  margin-bottom: 10px;
}

#container {
  margin: 0 auto !important;
}

/*投稿box*/
#container .page_title01 {
  text-align: center;
  font-size: 40px;
  line-height: 1.0;
  letter-spacing: 0.08em;
  font-weight: bolder;
  background: url('../img/common/page_title01_bg.webp') no-repeat top center;
}

/*--BREAD--*/
#bread {
  max-width: 100%;
  font-size: 12px;
  margin: 0 auto;
  padding: clamp(5px, 2%, 10px) 0;
  width: min(90%, var(--width-content));
}

#bread>span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
  margin-right: 5px;
}

#bread a {
  display: inline-block;
  margin-right: 5px;
  padding-left: 5px;
  text-decoration: underline;
}

@media (any-hover:hover) {
  #bread a:hover {
    text-decoration: none;
  }
}

/*投稿box*/
#postbox {
  width: 100%;
  margin: 0 auto;
  margin-bottom: var(--gutter-wide);
}


/*サブタイトル*/
#main .secTtl {
  font-size: clamp(2.4rem, 4.2vw, 2.8rem);
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  margin: var(--gutter-medium) auto var(--gutter-supernarrow);
  border-left: 5px solid var(--color-main);
  padding: 0 0 0 .5em;
}

.secTtl--underline {
  border-bottom: 2px solid var(--color-main);
  padding: 0.5em;
}

#postbox .wp-caption {
  max-width: 100% !important;
}

/*(開閉タイトル)*/
.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open {
  cursor: pointer;
}

.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open,
.srchbox01 .selectbox01 h3 {
  cursor: pointer;
  margin: 10px 0;
  font-size: 1.3em;
  font-weight: bold;
  padding-bottom: 10px;
  /* border-bottom: dotted 1px var(--color-main); */
}

.oc_bar01_open:after,
.srchbox01 .selectbox01 .selectbox_ttl_open:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "＋";
  float: right;
  color: #fff;
  border-radius: var(--rad-common);
  background: var(--color-main);
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "－";
  float: right;
  color: #fff;
  border-radius: var(--rad-common);
  background: var(--color-main);
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/*投稿画像*/
.noticePage img,
.gallery_renovationPage img .qaPage img .staffPage img .columnPage img {
  max-width: 100%;
  height: auto;
}


/*==================================================
  slick
==================================================*/
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto !important;
}

.slick-list.draggable {
  padding: 0 25px !important;
}

/*arrow*/
.slick-arrow::before {
  content: "" !important;
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
}

.slick-arrow.slick-prev {
  left: -30px !important;
}

.slick-arrow.slick-next {
  right: -30px !important;
}

.slick-next,
.slick-prev {
  z-index: 99 !important;
  width: 60px !important;
  height: 60px !important;
}

.slick-next::before {
  background: url(../img/common/slick_arrow_next_01.svg) no-repeat center !important;
  background-size: contain !important;
  left: 0 !important;
  opacity: 1 !important;
}

.slick-prev::before {
  background: url(../img/common/slick_arrow_prev_01.svg) no-repeat center !important;
  background-size: contain !important;
  right: 0 !important;
  opacity: 1 !important;
}

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

.slick-dots li button:before {
  content: "" !important;
  width: 13px !important;
  height: 13px !important;
  background: #fff;
  border: 1px solid var(--color-black);
  border-radius: 8px;
  opacity: 1 !important;
}

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

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}


/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox {
  margin: var(--gutter-medium) auto;
}

.shopInfoBox__ttl {
  gap: 10px;
}

.shopInfoBox__shopNameBox {
  font-size: clamp(2.2rem, 2vw, 2.4rem);
  font-weight: bold;
  border-bottom: 1px solid var(--color-black);
  padding: 0 10px 10px;
  display: flex;
  align-items: center;
  gap: 5px 15px;
  flex-wrap: wrap;
}

.shopInfoBox__shopSnsList {
  display: flex;
  gap: 10px;
}

.shopInfoBox__shopSnsItem {
  width: 28px;
  height: 28px;
}

.shopInfoBox__shopSnsItem a {
  font-size: 0;
  display: block;
}

.shopInfoBox__inner {
  width: 100%;
  margin: 0 auto var(--gutter-wide);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shopInfoBox__inner:last-child {
  margin-bottom: 0;
}

.shopInfoBox__imgBox {
  width: min(486px, 40%);
  max-width: 486px;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
  border-radius: var(--rad-common);
  overflow: hidden;
}

.shopInfoBox .slick-list.draggable {
  width: 100%;
  overflow: hidden;
  padding: 0 !important;
  margin-bottom: var(--gutter-supernarrow);
}

.shopInfoBox__dataBox {
  flex: 1;
  margin-left: clamp(40px, 5vw, 60px);
  font-size: 1.4rem;
}

.shopInfoBox__dataWrap {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed var(--color-darkgray);
}

.shopInfoBox__dataTtl {
  max-width: 200px;
  width: 8em;
  font-weight: bold;
  padding: 20px 10px;
  flex-shrink: 0;
}

.shopInfoBox__data {
  flex-grow: 1;
  padding: 20px 25px;
}

.shopInfoBox__shopCommentBox {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
  background: var(--color-palered);
  border-radius: var(--rad-common);
  font-size: 1.4rem;
}

.shopInfoBox__shopCommentTtl {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.6rem;
}

.shopInfoBox__map {
  width: 100%;
  height: 250px;
  margin-top: 30px;
}


/*==================================================
  コンポーネント-イベントリスト
==================================================*/
/* -------------------------------------------------------
  c-eventList ブロック
---------------------------------------------------------- */
.c-eventList {
  display: flex;
  position: relative;
  /* 一覧ページの時 */
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px 5%;
}

/* トップページの時（カルーセル） */
.c-eventList--carousel {
  flex-wrap: nowrap;
  justify-content: center;
}

.c-eventList--carousel.slick-initialized {
  margin-bottom: 35px !important;
  display: block;
}

.c-eventList--carousel .slick-dots {
  bottom: -35px;
}

/* -------------------------------------------------------
  c-eventList エレメント
---------------------------------------------------------- */
.c-eventList__item {
  width: 30%;
  position: relative;
}

.c-eventList--carousel .c-eventList__item {
  width: 360px !important;
}

.c-eventList--carousel.slick-initialized .c-eventList__item {
  margin: 0 20px;
}


.c-eventList__itemLink {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 終了オーバーレイ */
.c-eventList__endMessage {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  border: 1px solid var(--color-lightgray);
  border-radius: var(--rad-common);
  backdrop-filter: blur(3px);
}

/* イベント写真 */
.c-eventList__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--rad-common);
  position: relative;
  border: 1px solid var(--color-black);
}

.c-eventList__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-common);
  background-color: var(--color-lightredgray);
}

/* イベントテキスト部分 */
.c-eventList__detail {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  flex: 1;
  font-size: 1.2rem;
}

.c-eventList__iconWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.c-eventList__itemTtl {
  text-align: left;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.5em;
  line-height: 1.4;
}

.c-eventList__date {
  font-weight: bold;
  font-size: 1.15em;
  color: var(--color-darkgray);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-eventList__intro {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1em;
  line-height: 1.4;
}


/* ホバーアニメーション */
@media (any-hover:hover) {
  .c-eventList__itemLink:hover {
    opacity: 1;
  }

  .c-eventList__itemLink:hover .c-eventList__photo img {
    transform: scale(1.05);
  }
}


/*==================================================
  コンポーネント-先取りリスト
==================================================*/
.c-sakidoriList {
  display: flex;
  justify-content: center;
  gap: 60px 35px;
  flex-wrap: wrap;
  position: relative;
}

.c-sakidoriList__item {
  width: calc((100% - (35px * 2)) / 3);
}

.c-sakidoriList__itemLink {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: var(--rad-common);
  background: #fff;
  position: relative;
  padding: 40px 25px 30px;
  min-height: 180px;
  gap: 20px;
  transition: transform .2s, outline 0s;
}

.c-sakidoriList__total {
  font-size: clamp(1.6rem, 3vw, 1.8rem);
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
  padding: 5px 15px;
  background: var(--color-main);
  border-radius: var(--rad-common);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-sakidoriList__infoWrap {
  width: 100%;
}

.c-sakidoriList__itemTtl {
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 5px;
}

.c-sakidoriList__comment {
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  line-height: 1.4;
}

.c-sakidoriList__btn {
  font-size: 1.3rem;
  line-height: 1;
  padding: 10px 5px 10px 10px;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  transition: color .2s ease-in-out .2s;
  z-index: 1;
  position: relative;
}

.c-sakidoriList__btn::before {
  background: var(--color-main);
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 5px);
  border-radius: var(--rad-common);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 1);
  transform-origin: right top;
  z-index: -1;
  transition: transform .2s ease-in-out .2s;
}

.c-sakidoriList__btn::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_arrow_black_thin_01.svg) no-repeat center / contain;
  display: block;
  position: relative;
  transition: right .2s ease-in-out .2s, filter .2s ease-in-out .2s;
}

@media (any-hover:hover) {
  .c-sakidoriList__itemLink:hover {
    opacity: 1;
    border-color: var(--color-main);
    outline: 3px solid var(--color-main);
    transform: scale(1.02);
  }

  .c-sakidoriList__itemLink:hover .c-sakidoriList__btn {
    color: #fff;
  }

  .c-sakidoriList__itemLink:hover .c-sakidoriList__btn::after {
    filter: grayscale(1) invert(1) brightness(2);
  }

  .c-sakidoriList__itemLink:hover .c-sakidoriList__btn::before {
    transform-origin: left top;
    transform: translate(-50%, -50%) scale(1, 1);
  }
}


/*==================================================
  コンポーネント-お客様の声リスト
==================================================*/
.voiceBox {
  border-top: 1px solid var(--color-yellow);
  background-color: var(--color-paleyellow);
  padding: var(--gutter-wide) 0 var(--gutter-wide);
}

.voiceBox .indexTtlWrap {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  gap: var(--gutter-narrow);
}

.voiceBox__inner {
  display: flex;
  align-items: flex-start;
  gap: 0 25px;
  position: relative;
}

.voiceBox__sns {
  position: absolute;
  left: 30px;
  bottom: 0;
}

.voiceBox__snsIcon {
  width: 34px;
  height: 34px;
  margin: 0 auto;
}

.voiceBox__snsTxt {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}

/* -------------------------------------------------------
  c-voiceList ブロック
---------------------------------------------------------- */
.c-voiceList {
  display: flex;
  position: relative;
  margin-bottom: var(--gutter);
  /* 一覧ページの時 */
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px 50px;
}

/* トップページの時（カルーセル） */
.c-voiceList--carousel {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 22px !important;
  flex: 1;
  margin-bottom: 0;
  width: 100%;
}

.c-voiceList--carousel .c-voiceList__item {
  width: calc((100% - 44px) / 3);
}

.c-voiceList--carousel.slick-initialized {
  margin-bottom: 110px !important;
  display: block;
}

.c-voiceList--carousel.slick-initialized .c-voiceList__item {
  margin: 0 25px;
}

.c-voiceList--carousel .slick-dots {
  bottom: -60px;
}

/* -------------------------------------------------------
  c-voiceList エレメント
---------------------------------------------------------- */
.c-voiceList__item {
  width: calc((100% - 100px) / 3);
  position: relative;
  max-width: 360px;
}

.c-voiceList__itemLink {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* お客様の声写真 */
.c-voiceList__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 400;
  overflow: hidden;
  border-radius: var(--rad-common);
  position: relative;
  border: 1px solid var(--color-black);
}

.c-voiceList__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-common);
}

/* お客様の声テキスト部分 */
.c-voiceList__detail {
  padding: 10px 0 0;
  display: flex;
}

.c-voiceList__detailTtl {
  line-height: 1.4;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-voiceList__iconWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding-right: 10px;
}

/* ホバーアニメーション */
@media (any-hover:hover) {
  .c-voiceList__itemLink:hover {
    opacity: 1;
  }

  .c-voiceList__itemLink:hover .c-voiceList__photo img {
    transform: scale(1.05);
  }

}

/*==================================================
  コンポーネント-オススメ物件
==================================================*/

.c-recomList {
  position: relative;
}

.c-recomList .slick-arrow.slick-prev {
  left: -30px !important;
}

.c-recomList .slick-arrow.slick-next {
  right: -30px !important;
}

.c-recomList__item {
  position: relative;
  background: #FFF;
  border: solid 1px var(--color-black);
  border-radius: var(--rad-common);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-recomList__normalLink {
  display: block;
}

.c-recomList__normalLink:hover {
  opacity: 1;
}

.c-recomList__itemInner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*会員限定物件*/
.c-recomList__item--member {
  border-color: var(--color-red);
}

.c-recomList__item--member .c-recomList__ttlBox {
  background: var(--color-red);
}

.c-recomList__memberTxt {
  font-size: 14px;
  margin-bottom: 10px;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}

.c-recomList__memberBtnWrap {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.c-recomList__memberBtn {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  border-radius: var(--rad-common);
  width: 130px;
  height: 47px;
  background: var(--color-red);
  border: 2px solid var(--color-red);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  padding-right: 10px;
  overflow: hidden;
  transition: var(--transition-btn);
}

.c-recomList__memberBtn::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("../img/common/icon_arrow_black_thin_01.svg") no-repeat center / contain;
  mask: url("../img/common/icon_arrow_black_thin_01.svg") no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  transition: var(--transition-btn);
}

.c-recomList__memberBtn--login {
  background: #fff;
  color: var(--color-red);
}


@media (any-hover:hover) {
  .c-recomList__memberBtn:hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .c-recomList__memberBtn:hover::after {
    right: 6%;
  }
}

.c-recomList__memberTxtBox {
  padding: 30px 0;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url(../img/basic/btn_prpregist_txt.webp) no-repeat center top / contain;
}

/*会員限定物件のぼかし*/
.c-recomList__item--member.land.ememberBg01 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_land01.webp) no-repeat center / cover;
}

.c-recomList__item--member.land.ememberBg02 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_land02.webp) no-repeat center / cover;
}

.c-recomList__item--member.land.ememberBg03 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_land03.webp) no-repeat center / cover;
}

.c-recomList__item--member.house.ememberBg01 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_house01.webp) no-repeat center / cover;
}

.c-recomList__item--member.house.ememberBg02 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_house02.webp) no-repeat center / cover;
}

.c-recomList__item--member.house.ememberBg03 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_house03.webp) no-repeat center / cover;
}

.c-recomList__item--member.mansion.ememberBg01 .c-recomList__photo--member,
.c-recomList__item--member.otherAll.ememberBg01 .c-recomList__photo--member,
.c-recomList__item--member.otherPart.ememberBg01 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_mansion01.webp) no-repeat center / cover;
}

.c-recomList__item--member.mansion.ememberBg02 .c-recomList__photo--member,
.c-recomList__item--member.otherAll.ememberBg02 .c-recomList__photo--member,
.c-recomList__item--member.otherPart.ememberBg02 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_mansion02.webp) no-repeat center / cover;
}

.c-recomList__item--member.mansion.ememberBg03 .c-recomList__photo--member,
.c-recomList__item--member.otherAll.ememberBg03 .c-recomList__photo--member,
.c-recomList__item--member.otherPart.ememberBg03 .c-recomList__photo--member {
  background: url(../img/basic/btn_prpregist_mansion03.webp) no-repeat center / cover;
}


/*一般公開物件*/
.c-recomList__ttlBox {
  color: #fff;
  background: var(--color-blue);
  padding: 10px;
  overflow: hidden;
  border-radius: calc(var(--rad-common) - 2px) calc(var(--rad-common) - 2px) 0 0;
}

.c-recomList__ttl {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-recomList__photo {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 200;
}

.c-recomList__iconWrap {
  position: absolute;
  bottom: 10px;
  left: 10px;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}

.c-recomList__icon {
  border-radius: var(--rad-common);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.4em 0.95em;
  border: 1px solid var(--color-black);
  background: #fff;
}

.c-recomList__icon--new {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  font-family: var(--font-en);
}

.c-recomList__icon--brand {
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.c-recomList__icon--red {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

.c-recomList__info {
  flex-grow: 1;
  padding: 10px 15px;
}

.c-recomList__mainWrap {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: baseline;
  gap: 5px;
}

.c-recomList__price {
  color: var(--color-red);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.c-recomList__priceTxt {
  font-size: 2rem;
  line-height: 1;
}

.c-recomList__priceNum {
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: var(--font-en);
  position: relative;
  top: 2px;
}

.c-recomList__madori {
  color: var(--color-red);
  font-weight: 800;
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.c-recomList__madoriTtl {
  color: var(--color-red);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

.c-recomList__madoriItem {
  font-size: 2rem;
  line-height: 1;
  margin-left: 3px;
  position: relative;
}

.c-recomList__details {
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}

.c-recomList__details li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-recomList__details li.half {
  width: 50%;
}

.c-recomList__payment {
  margin: 0 10px;
  padding: 10px 0;
  border-top: 1px dashed var(--color-lightredgray);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

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

.c-recomList__paymentTtl {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 5px 10px;
  border: 1px solid var(--color-black);
  text-align: center;
}

.c-recomList__paymentMonth {
  font-size: 1.2rem;
  font-weight: bold;
}

.c-recomList__paymentNum {
  font-size: 1.6rem;
  font-family: var(--font-en);
  letter-spacing: 0.02em;
  padding: 0 3px;
}

.c-recomList__paymentTxt {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
}

/* スタッフコメント */
.c-recomList__staffBox {
  display: flex;
  padding: 10px 0;
  margin: 0 10px;
  border-top: 1px dashed var(--color-lightredgray);
  gap: 8px;
}

.c-recomList__staffImgBox {
  width: 75px;
  height: auto;
  border-radius: var(--rad-common);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-lightgray);
  flex-shrink: 0;
}

.c-recomList__staffImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-recomList__staffTxtBox {
  text-align: left;
  flex-grow: 1;
}

.c-recomList__staffName {
  font-size: 1.4rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

/* 資料請求チェックボックス */
/* .c-recomList__check {
  border: 2px solid var(--color-main);
  background: #fff;
  border-radius: var(--rad-common);
  text-align: center;
  white-space: nowrap;
  position: relative;
  font-size: 1.3rem;
  border-radius: 5px 5px 0 0;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -43px;
  right: 5px;
  height: 49px;
  transition: transform .3s ease-in-out;
}

.c-recomList__check:has(input:checked) {
  background: var(--color-main);
  color: #fff;
  transform: translateY(-5px);
}

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

.c-recomList__check input[type="checkbox"] {
  border: none;
  background: #fff;
  margin: 0;
}

.c-recomList__check input[type="checkbox"]:checked {
  background: var(--color-main);
  border-color: var(--color-main);
}

.c-recomList__check input[type="checkbox"]:checked::before,
.c-recomList__check input[type="checkbox"]:checked::after {
  box-shadow: none;
}

.c-recomList__check input[type="checkbox"]:not(:checked):before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  content: "";
  width: 10px;
  height: 4px;
  background: var(--color-lightgray);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.c-recomList__check input[type="checkbox"]:not(:checked):after {
  display: block;
  position: absolute;
  left: 9px;
  top: 16px;
  content: "";
  width: 16px;
  height: 4px;
  background: var(--color-lightgray);
  -webkit-transform: rotate(-53deg);
  transform: rotate(-53deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@media (any-hover:hover) {
  .c-recomList__check:hover {
    transform: translateY(-5px);
  }
} */

/* チェックボックス・お気に入りボタン */
.c-recomList__checkFavoriteWrap {
  display: flex;
  align-items: stretch;
  line-height: 1;
  max-height: 60px;
  font-size: 1.1rem;
  text-align: center;
  padding: 0 10px 10px;
}

.c-recomList__check {
  width: 50%;
  border: 2px solid var(--color-black);
  background: #fff;
  padding: 0.5em;
  margin-right: 5px;
  border-radius: var(--rad-common);
  text-align: center;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-recomList__check:has(input:checked) {
  background: var(--color-black);
  color: #fff;
}

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

/*checkbox-design*/
.c-recomList__check input {
  flex-shrink: 0;
}

.c-recomList__check input[type="checkbox"] {
  border: none;
  background: #fff;
  margin: 0;
}

.c-recomList__check input[type="checkbox"]:checked {
  background: var(--color-black);
}

.c-recomList__check input[type="checkbox"]:not(:checked):before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  content: "";
  width: 10px;
  height: 4px;
  background: var(--color-lightgray);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.c-recomList__check input[type="checkbox"]:not(:checked):after {
  display: block;
  position: absolute;
  left: 9px;
  top: 16px;
  content: "";
  width: 16px;
  height: 4px;
  background: var(--color-lightgray);
  -webkit-transform: rotate(-53deg);
  transform: rotate(-53deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

/*favorite_btn*/
.c-recomList__favorite {
  width: 50%;
}

.c-recomList__favoriteBtn {
  width: 100%;
  padding: 0.5em;
  cursor: pointer;
  border-radius: var(--rad-common);
  height: 100%;
  white-space: nowrap;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.c-recomList__favoriteBtn.add_favorite {
  background: #fff;
  border: 2px solid var(--color-red);
  color: var(--color-red);
}

.c-recomList__favoriteBtn.is_favorite {
  background: var(--color-red);
  border: 2px solid var(--color-red);
  color: #fff;
}

.c-recomList__favoriteBtn.add_favorite::before,
.c-recomList__favoriteBtn.is_favorite::before {
  content: "";
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
}

.c-recomList__favoriteBtn.add_favorite::before {
  background: url('../img/common/icon_heart_line_color.svg') no-repeat center;
  background-size: contain;
}

.c-recomList__favoriteBtn.is_favorite::before {
  background: url('../img/common/icon_heart_white.svg') no-repeat center;
  background-size: contain;
}

/* 特集・キャンペーンページ */
.specialEstateBtnWrap {
  display: flex;
  padding-bottom: var(--gutter-supernarrow);
  margin-bottom: var(--gutter-supernarrow);
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--color-lightgray);
}

.specialEstateBtnWrap__btn {
  border-radius: var(--rad-common);
  background-color: #eee;
  cursor: pointer;
  transition: 0.3s;
}

.specialEstateBtnWrap__btn:not(:has(.specialEstateBtnWrap__btnInner)) {
  padding: 0.5em 1em;
}

.specialEstateBtnWrap__btnInner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
}

.specialEstateBtnWrap__btn--active {
  background-color: var(--color-main);
  color: #fff;
}

@media (any-hover:hover) {
  .specialEstateBtnWrap__btn:hover {
    background-color: var(--color-main);
    color: #fff;
  }
}

.specialEstateBox .c-recomList {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.btn_form--recomList {
  margin: var(--gutter-narrow) auto 0 !important;
  width: auto !important;
  padding: 1.5em 2em !important;
  font-size: clamp(1.3rem, 3.7vw, 1.4rem) !important;
  background-color: var(--color-red) !important;
  min-width: inherit !important;
  width: min(100%, 400px) !important;
  border-bottom: 4px solid rgba(0, 0, 0, 0.2) !important;
}

.c-recomList__fixedBtn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 8px;
  gap: 10px;
}

.c-recomList__fixedBtnFavorite {
  display: flex;
  border: 2px solid var(--color-black);
  border-radius: var(--rad-common);
  background: #fff;
  justify-content: center;
  align-items: center;
  padding: 0 1.5em;
  font-weight: bold;
  text-align: center;
  transition: .3s ease-in-out .05s;
  min-height: 68px;
  min-width: 230px;
}

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

.c-recomList__fixedBtn .btn_form--recomList {
  margin: 0 !important;
  padding: 1.2em 0.5em !important;
  width: min(100%, 360px) !important;
}

.specialEstateBox .c-recomList__photo {
  overflow: hidden;
}

.specialEstateBox .c-recomList__photo img {
  transition: transform .3s ease-in-out .05s;
}

.specialEstateBox .c-recomList__memberBtn {
  width: 100px;
}

@media (any-hover:hover) {
  .specialEstateBox .c-recomList__normalLink:hover .c-recomList__photo img {
    transform: scale(1.1);
  }
}

/* もっと見る */
.specialReadMoreWrap {
  margin: 0 auto var(--gutter);
  position: relative;
  padding-bottom: var(--gutter-medium);
}

.specialReadMoreWrap input[type="checkbox"]#readmore,
.specialReadMoreWrap label.readmoreLabel {
  display: none;
}

/* 【もっと見る】3行以上になるときの高さ制限 */
.specialReadMoreWrap.specialReadMoreWrap--overflow .specialReadMoreWrap__inner {
  position: relative;
  height: 1100px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* 【もっと見る】白いグラデ */
.specialReadMoreWrap.specialReadMoreWrap--overflow .specialReadMoreWrap__inner::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 20%, #fff 50%);
  z-index: 1;
}

/* 【もっと見る】全カテゴリー表示ボタン */
.specialReadMoreWrap.specialReadMoreWrap--overflow .readmoreLabel {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: min(260px, 100%);
  padding: 1em 2em 1em 3em;
  color: #fff;
  text-align: center;
  border-radius: var(--rad-common);
  background-color: var(--color-main);
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
  font-size: 1.8rem;
  transition: opacity 0.3s;
}

@media (any-hover:hover) {
  .specialReadMoreWrap.specialReadMoreWrap--overflow .readmoreLabel:hover {
    opacity: 0.8;
  }
}

.specialReadMoreWrap .readmoreLabel::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_arrow_black_thin_01.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%) rotate(90deg);
  transition: top .3s, filter .3s;
  filter: grayscale(1) invert(1) brightness(2);
  z-index: 3;
}

.specialReadMoreWrap .readmoreLabel::before {
  content: '物件をさらに表示';
}

.specialReadMoreWrap input[type="checkbox"]#readmore:checked~.readmoreLabel::before {
  content: '物件をたたむ';
}

.specialReadMoreWrap input[type="checkbox"]#readmore:checked~.readmoreLabel::after {
  transform: translateY(-50%) rotate(-90deg);
}

/* 【もっと見る】開いた時に高さ制限OFF */
.specialReadMoreWrap input[type="checkbox"]#readmore:checked~.specialReadMoreWrap__inner {
  height: auto;
}

/* 【もっと見る】開いた時にグラデ消す */
.specialReadMoreWrap input[type="checkbox"]#readmore:checked~.specialReadMoreWrap__inner::before {
  display: none;
}

/*==================================================
  FIRST TOPIC BOX
==================================================*/
.firstTopicBox {
  padding: var(--gutter-medium) 0;
  border-top: 1px solid var(--color-blue);
}

.firstTopicBox .indexTtlWrap {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  gap: var(--gutter-narrow);
}

.firstTopicBox__inner {
  display: flex;
  align-items: flex-start;
  gap: 37px;
}

.firstTopicBox__list {
  overflow: hidden;
  flex: 1;
}

.firstTopicBox__item {
  border-bottom: 1px dashed var(--color-darkgray);
}

.firstTopicBox__itemLink {
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  padding: 25px 40px 25px 10px;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
  position: relative;
  transition: var(--transition-common);
  z-index: 1;
  overflow: hidden;
}

.firstTopicBox__itemLink::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_arrow_black_normal_01.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: var(--transition-common);
}

.firstTopicBox__itemLink--external::after {
  width: 16px;
  height: 16px;
  background: url(../img/common/icon_external_01.svg) no-repeat center / contain;
}

.firstTopicBox__iconWrap {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

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

.firstTopicBox__itemTtl {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (any-hover:hover) {
  .firstTopicBox__itemLink:hover {
    opacity: 1;
    transform: translateX(5px);
  }
}

/*==================================================
  For pcFooterMenu SETTINGS : Min768px Max1350px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1350px) {

  /* 縦長ボタン */
  .pcFooterMenu {
    right: 60px;
    bottom: 0;
    transform: translateY(100px);
  }

  .pcFooterMenu.slidein {
    display: block;
    transform: translateY(0);
  }

  .pcFooterMenu__list {
    border: 3px solid var(--color-lightredgray);
    flex-direction: row;
    border-radius: var(--rad-common) var(--rad-common) 0 0;
    border-bottom: 0;

  }

  .pcFooterMenu__itemLink {
    -webkit-writing-mode: unset;
    -moz-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
  }

  .pcFooterMenu__item {
    width: 180px;
    height: 45px;
  }

  .pcFooterMenu__item:last-child {
    width: 170px;
  }

  .pcFooterMenu__item:not(:last-child)::after {
    content: "";
    height: 32px;
    width: 1px;
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/*==================================================
  For Slick Arrows SETTINGS : Min768px Max1260px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1260px) {

  /* arrow */
  .slick-arrow.slick-prev {
    left: -5px !important;
  }

  .slick-arrow.slick-next {
    right: -5px !important;
  }

}

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

  /*==================================================
  common parts
  ==================================================*/
  /* カタログバナー */
  .bnrCatalog__btn::after {
    bottom: 20px;
  }


  /*==================================================
    HEADER TABLET
  ==================================================*/
  .header__logo {
    height: 40px;
  }

  .pcMemberNavi__item--input input {
    width: clamp(150px, 20vw, 250px);
  }

  .headerBtns__link {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    width: clamp(65px, 9vw, 88px);
  }

  .headerLinks__link {
    font-size: 1.2rem;
  }

  .headerLinks__link--areaTop {
    font-size: 1rem !important;
  }


  /*==================================================
    FOOTER PC/TABLET
    ==================================================*/
  .footerBox1 {
    flex-direction: column;
    align-items: center;
  }

  .footerBox2__company {
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  }

  .footerBox2__tel {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  }

  .footerBox2__tel .commonTel__num {
    font-size: clamp(2.8rem, 3.3vw, 4.1rem);
  }


  /*==================================================
  コンポーネント-イベントリスト（タブレット） 
==================================================*/
  .c-eventList__item {
    width: calc((100% - 5%) / 2);
    max-width: initial;
  }

  .c-eventList__itemTtl {
    font-size: 1.2em;
  }

  .c-eventList__date {
    font-size: 1em;
  }

  /*==================================================
  コンポーネント-先取りリスト（タブレット）
==================================================*/
  .c-sakidoriList__item {
    width: calc((100% - (35px * 1)) / 2);
  }

  /*==================================================
  コンポーネント-お客様の声リスト（タブレット） 
==================================================*/
  .voiceBox__inner {
    flex-direction: column;
  }

  .voiceBox .indexTtlWrap {
    flex-direction: row;
    margin-bottom: var(--gutter-supernarrow);
    align-items: flex-end;
    width: 100%;
  }

  .voiceBox .indexTtlWrap .btn_archive a {
    width: 200px;
  }

    .voiceBox__sns {
    position: relative;
    left: 0;
    bottom: 0;
    margin: var(--gutter-narrow) auto 0;
  }



  .c-voiceList {
    gap: 60px 30px;
  }

  .c-voiceList__item {
    width: calc((100% - 30px) / 2);
  }

  .c-voiceList__detailTtl {
    font-size: 1.6rem;
  }

  /*==================================================
  クリッカブルマップ
==================================================*/
  /* クリッカブルマップ　モーダル */
  .commonMapModal__item {
    width: calc((100% - 20px) / 3);
  }

  /*==================================================
  Instagram feed
==================================================*/
  .instaBox__inner {
    flex-direction: column;
  }

  .instaBox__btnInner {
    margin-top: var(--gutter-narrow);
  }
}

/*==================================================
  tablet & SP SETTINGS : Max1080px
==================================================*/
@media screen and (max-width: 1080px) {
  /*==================================================
  FIRST TOPIC BOX
==================================================*/

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

  .firstTopicBox .indexTtlWrap {
    flex-direction: row;
    margin-bottom: var(--gutter-supernarrow);
    align-items: flex-end;
    width: 100%;
  }

  .firstTopicBox .indexTtlWrap .btn_archive a {
    width: 200px;
  }

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

  .firstTopicBox__list {
    width: 100%;
  }

  .firstTopicBox__itemLink {
    flex-direction: column;
    gap: 5px;
    padding: 15px 35px 15px 10px;
  }
  
}

/*==================================================
  SP SETTINGS : Max767px
==================================================*/
@media screen and (max-width: 767px) {
  body {
    min-width: 300px;
  }

  /*arrow*/
  .slick-arrow::before {
    content: "" !important;
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
  }

  .slick-arrow.slick-prev {
    left: -20px !important;
  }

  .slick-arrow.slick-next {
    right: -20px !important;
  }

  .slick-next,
  .slick-prev {
    z-index: 99 !important;
    width: 50px !important;
    height: 50px !important;
  }

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

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

  /*==================================================
  common parts
  ==================================================*/

  /* 一覧を見るボタン */

  .index__section .btn_archive {
    margin: var(--gutter-narrow) auto 0;
  }

  .btn_archive a {
    margin: 0 auto;
    width: 250px;
    height: 60px;
  }

  /* カタログバナー */
  .bnrCatalog {
    padding: 70px 15px 15px;
  }

  .bnrCatalog__catch {
    width: 100%;
    border-radius: 0;
    padding: 10px;
  }

  .bnrCatalog__btnInner {
    width: min(100%, 320px);
    margin: 20px auto 0;
  }

  .bnrCatalog__main {
    max-width: 100%;
    font-size: clamp(2rem, 4.7vw, 2rem);
    max-width: 100%;
    line-height: 1.4;
    text-align: center;
    justify-content: center;
  }

  .bnrCatalog__mainTxt {
    font-size: 0.9em;
  }

  .bnrCatalog__subTxt {
    font-size: clamp(1.1rem, 3.4vw, 1.4rem);
    margin: 20px auto 20px 0;
    position: relative;
  }

  .bnrCatalog__btn {
    position: relative;
    right: 0;
    bottom: 0;
  }

  .bnrCatalog__btn::after {
    width: min(150px, 35%);
    right: -5px;
    left: auto;
    bottom: 40px;
  }

  /* LINE公式アカウント */
  .lineBox {
    padding: 80px 0 140px;
    background: url(../img/common/deco_line_top_01.webp) no-repeat right -40px top 10px / auto 80px, url(../img/common/deco_line_bottom_01.webp) no-repeat left bottom 15px / auto 100px, var(--color-paleyellow);
  }

  .lineBox .btn_line {
    width: 250px;
    height: 60px;
  }

  .lineBox__ttl {
    line-height: 1.2;
  }

  .btn_line {
    font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  }

  
  .indexLineMerit__list {
    flex-direction: column;
  }

  .indexLineMerit__item {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
  }

  .indexLineMerit__num {
    font-size: 3rem;
    left: -10px;
    top: -10px;
    transform: none;
  }

  .indexLineMerit__itemTtlWrap {
    justify-content: flex-start;
    min-height: 100px;
  }

  .indexLineMerit__txt {
    font-size: clamp(1.2rem, 3vw, 1.3rem);
  }

  .indexLineMerit__itemInner {
    text-align: left;
    padding: clamp(10px, 3vw, 20px);
    width: 55%;
    height: auto;
  }

  .indexLineMerit__imgWrap {
    width: 45%;
    aspect-ratio: inherit;
  }

  .indexLineMerit__img {
    border-radius: var(--rad-common) 0 0 var(--rad-common);
  }


  /*==================================================
    HEADER SP
  ==================================================*/
  .header__inner {
    padding: 0;
    width: 100%;
  }

  .header__logoWrap {
    width: calc(100% - 185px);
    margin-left: 2%;
  }

  .header__logoSub {
    font-size: 1.5rem;
  }

  .header__logo, .header.fixed .header__logo {
    width: 100%;
    height: 35px;
  }

  /* ボタン */
  .headerBtns__link {
    width: 60px;
    height: 50px;
    font-size: 1rem;
  }

  .headerBtns__list {
    gap: 0;
  }

  .headerBtns__link::before {
    width: 20px;
    height: 20px;
  }

  .headerBtns__item::before {
    left: 0;
  }

  .headerBtns__item:last-child:before {
    content: none;
  }

  /* エリアトップの場合 */
  .header--areaTop:not(.fixed) .header__logoWrap {
    width: calc(100% - 75px);
  }

  .header--areaTop:not(.fixed) .header__logo {
    width: auto;
    height: clamp(30px, 9vw, 35px);
  }

  .header--areaTop.fixed .header__logo {
    width: auto;
    height: auto;
    flex: 1;
  }

  .header.fixed .header__logoSub {
    font-size: 1rem;
    flex-shrink: 0;
  }

  .header--areaTop:not(.fixed) .headerBtns__item--favorite, 
  .header--areaTop:not(.fixed) .headerBtns__link--history {
    display: none;
  }

  .spHeaderAreaselect  {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-main);
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 0.5em 2%;
  }

  .spHeaderAreaselect__txt {
    font-size: 1.2rem; 
    font-weight: bold;
  }

  .spHeaderAreaselect__btn {
    font-size: 1.1rem;
    background-color: #fff;
    padding: 0.5em 0.7em;
    font-weight: bold;
    line-height: 1;
    color: var(--color-main); 
  }

  .header.fixed .spHeaderAreaselect  {
    display: none;
  }

  /*ハンバーガーボタン*/
  body.menu-open,
  body.modal-open {
    overflow: hidden;
  }

  .spmenu {
    width: 55px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-main);
    padding-bottom: 3px;
  }

  .spmenu__btn {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: relative;
    width: 34px;
    height: 18px;
    margin-top: -10px;
  }

  .spmenu__line {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }

  .spmenu__line:nth-child(1) {
    top: 0;
  }

  .spmenu__line:nth-child(2) {
    top: 8px;
  }

  .spmenu__line:nth-child(3) {
    bottom: 0;
  }

  .spmenu__btn::after {
    width: auto;
    position: absolute;
    bottom: -17px;
    content: 'MENU';
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all .4s;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    left: 50%;
    transform: translateX(-50%);
  }

  .spmenu.active .spmenu__btn::after {
    content: 'CLOSE';
    bottom: -17px;
    text-align: center;
  }

  .spmenu.active .spmenu__line:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  .spmenu.active .spmenu__line:nth-child(2) {
    opacity: 0;
  }

  .spmenu.active .spmenu__line:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  /*ドロップダウンメニュー*/
  .spNavi {
    height: calc(100dvh - 50px);
    width: 100%;
    margin-left: auto;
    overflow-y: scroll;
    display: none;
    z-index: -1;
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    padding: 0 0 10px;
  }

  .header.is_home:not(.fixed) .spNavi {
    padding: 30px 0 0;
  }

  .spNavi__pickUpList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
    padding: 0 10px;
  }


  .spNavi__pickUpItem {
    width: calc((100% - 5px) / 2);
    position: relative;
  }

  .spNavi__pickUpItem--w100 {
    width: 100%;
  }

  .spNavi__pickUpItem a, .spNavi__pickUpItemLogout {
    padding: 1em 1em 1em 1em;
    text-align: center;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: var(--color-blue);
    border-radius: var(--rad-common);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-blue);
  }

  .spNavi__pickUpItem::after {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/common/icon_arrow_white_thin_01.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .spNavi__pickUpItem--member a {
    background-color: #fff;
    color: var(--color-red);
    border: 1px solid var(--color-red)
  }
  
  .spNavi__pickUpItem--member::after {
    background: url(../img/common/icon_arrow_mainColor_thin_01.svg) no-repeat center / contain;
  }

  .spNavi__pickUpItem--login a {
    background-color: var(--color-red);
    color: #fff;
    border: 1px solid var(--color-red)
  }
  
  .spNavi__pickUpItem--shop a {
    background-color: #fff;
    color: var(--color-black);
    border: 1px solid var(--color-black)
  }

  .spNavi__pickUpItem--shop::after {
    background: url(../img/common/icon_arrow_black_thin_01.svg) no-repeat center / contain;
  }
  
  .spNavi__pickUpItem--logout {
    border-color: #fff;
  }

  .spNavi__pickUpItemLogout {
    padding: 1em !important;
    background-color: var(--color-darkgray);
  }

  .spNavi__pickUpItem--about a {
    background-color: var(--color-green);
    border-color: var(--color-green);
  }

  .spNavi__bnrList {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
  }

  .spNavi__bnrItem {
    border-radius: var(--rad-common);
    overflow: hidden;
  }

  .spNavi__list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-lightgray);
  }

  .spNavi__item {
    width: 50%;
    border-bottom: 1px solid var(--color-lightgray);
    position: relative;
  }

  .spNavi__item::after {
    content: "";
    background: url(../img/common/icon_arrow_black_thin_01.svg) no-repeat center / contain;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: auto;
    aspect-ratio: 9 / 19;
  }

  .spNavi__item:nth-of-type(odd) {
    border-right: 1px solid var(--color-lightgray);
  }

  .spNavi__item--w100 {
    width: 100%;
    text-align: left;
    border-right: none !important;
  }

  .spNavi__item a {
    display: block;
    padding: 1em;
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  /* spNavi__txtLink */
  .spNavi__txtLinkList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 1.5em;
    font-size: 1.2rem;
  }

  .spNavi__txtLink {
    display: block;
    position: relative;
    padding: 1em 0;
    text-decoration: underline;
  }
  /* spNavi__contactWrap */
  .spNavi__contactWrap {
    margin: var(--gutter-narrow) auto;
  }

  .spNavi__sitelogo {
    margin: 0 auto 15px;
    max-width: 94%;
  }

  .spNavi__tel {
    font-size: 1.5rem;
  }

  /* spNavi__searchList */
  .spNavi__searchTtl {
    background: var(--color-black);
    text-align: center;
    color: #FFF;
    font-weight: bold;
    padding: 0.5em;
    font-size: 1.4rem;
  }

  .spNavi__search .spNavi__list {
    border-top: none;
  }

  .spNavi__search .spNavi__item a {
    justify-content: center;
    padding: 1em 2em 1em 1em;
  }

  .spNavi__item.col3 {
    width: calc(100% / 3);
    border-right: 1px solid var(--color-lightgray);
  }
  
  .spNavi__item.col3:last-child {
    border-right: none;
  }

  /* fixed */
  .header.fixed .header__inner {
    padding: 0;
  }


  /*最近見た物件*/
  .modalRecently__list {
    grid-template-columns: 1fr 1fr;
  }

  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 180px;
  }

  /* footer */
  .footerBox1 {
    flex-direction: column;
  }

  .footerSitemap {
    flex-wrap: wrap;
    gap: var(--gutter-medium);
    max-width: 100%;
    margin: 0 auto;
  }

  .footerSitemap__column {
    width: 100%;
  }

  .footerSitemap__list {
    width: 100%;
    gap: 10px 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footerSitemap__item {
    width: min(50%, 13em);
  }

  .footerSitemap__wrap:nth-child(2) {
    margin-top: var(--gutter-medium);
  }

  .footerBox2 {
    flex-direction: column;
  }

  .footerBox2__company {
    text-align: center;
  }

  /* 来店予約ボタン */
  .footerBtn {
    bottom: 65px;
  }

  .footerBtn__close {
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
  }

  .footerBtn__link {
    width: 100px;
  }

  .footerBtn__link::before {
    margin-bottom: 5px;
  }

  .footerBtn__txt01 {
    font-size: 1.8rem;
  }

  .footerBtn__txt02 {
    font-size: 1.2rem;
  }

  .footerBtn__txt03 {
    font-size: 1rem;
    gap: 0;
    margin-top: 0;
  }

  /* フッターメニュー */
  .spFooterMenu {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    transform: translateY(100px);
    transition: transform .3s;
    width: 100%;
  }

  .spFooterMenu.slidein {
    transform: translateY(0);
    display: block;

  }

  .spFooterMenu__list {
    display: flex;
    border-top: 2px solid var(--color-lightredgray);
  }

  .spFooterMenu__item {
    height: 55px;
    width: calc(100% / 3);
    background-color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    position: relative;
  }

  .spFooterMenu__item:not(:last-child)::after {
    content: "";
    height: 45px;
    width: 1px;
    background: var(--color-lightredgray);
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .3s;
  }

  .spFooterMenu__itemLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 3px;
  }

  .spFooterMenu__itemLink--estates {
    gap: 3px;
  }

  .spFooterMenu__itemTxt {
    font-size: 1.3rem;
  }

  .spFooterMenu__itemLink--estates .spFooterMenu__itemTxt {
    font-size: 0.9em;
  }

  /* アイコン */
  .spFooterMenu__itemLink::before {
    content: "";
    width: auto;
    height: 20px;
    aspect-ratio: 1 / 1;
    position: relative;
    transition: filter .3s;
  }

  .spFooterMenu__itemLink--shopreserve::before {
    background: url(../img/common/icon_calendar_black_01.svg) no-repeat center / contain;
    left: 2px;
  }

  .spFooterMenu__itemLink--estates::before {
    background: url(../img/common/icon_search_thin_black_01.svg) no-repeat center / contain;
    height: 18px;
  }

  .spFooterMenu__itemLink--event::before {
    background: url(../img/common/icon_flag_black_01.svg) no-repeat center / contain;
    left: 2px;
  }

  .spFooterMenu__itemLink--line::before {
    background: url(../img/common/icon_line.svg) no-repeat center / contain;
    border: 1px solid #fff;
    border-radius: 6px;
  }

  .spFooterMenu__itemLink--pickup::before {
    background: url(../img/common/icon_star_black_01.svg) no-repeat center / contain;
  }

  /* recaptcha */
  .grecaptcha-badge {
    bottom: 8px !important;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  /*--BREAD--*/
  #bread {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: auto;
  }

  /*(開閉タイトル)*/
  .oc_bar01,
  .oc_bar01_open,
  .srchbox01 .selectbox01 .selectbox_ttl,
  .srchbox01 .selectbox01 .selectbox_ttl_open,
  .srchbox01 .selectbox01 h3 {
    font-size: 1.2em;
  }

  /*==================================================
    shopInfoBox SP
  ==================================================*/
  .shopInfoBox__shopNameBox {
    text-align: center;
    margin-top: var(--gutter-supernarrow);
  }

  .shopInfoBox__dataBox {
    width: 100%;
    max-width: unset;
    margin: 0;
  }

  .shopInfoBox__imgBox {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }

  .shopInfoBox__dataWrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 5%;
  }

  .shopInfoBox__dataTtl {
    width: 30%;
    flex-shrink: 0;
  }

  .shopInfoBox__dataTtl,
  .shopInfoBox__data {
    padding: 0;
    max-width: unset;
    text-align: left;
  }

  .shopInfoBox__shopCommentBox {
    margin-top: 3%;
    padding: 5%;
  }

  .shopInfoBox__map {
    margin-top: 3%;
  }

  /*
===== コンポーネント-イベントリスト（SP）==========================================
*/
  .c-eventList {
    flex-direction: column;
    align-items: center;
  }

  .c-eventList__item {
    width: 90%;
  }

  .c-eventList__itemTtl {
    font-size: 1.3em;
  }

  /* トップページの時（カルーセル） */
  .c-eventList--carousel .c-eventList__item {
    width: 300px;
    margin: 0 10px;
  }

  .c-eventList--carousel.slick-initialized {
    margin-bottom: 80px !important;
  }

  .c-eventList--carousel .slick-dots {
    bottom: -40px;
  }


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

  .c-eventList--carousel.slick-initialized .c-eventList__item {
    display: block;
  }

  /*==================================================
  コンポーネント-先取りリスト（SP）
==================================================*/
  .c-sakidoriList {
    gap: 30px 35px;
  }

  .c-sakidoriList__item {
    width: 100%;
    margin: 0;
  }

  .c-sakidoriList__itemLink {
    padding: 40px 25px 20px;
    min-height: 160px;
  }

  .c-sakidoriList--carousel.slick-initialized {
    margin-bottom: 80px !important;
  }

  .c-sakidoriList--carousel .slick-dots {
    bottom: -40px;
  }

  .c-sakidoriList--carousel.slick-initialized {
    display: block;
  }

  .c-sakidoriList--carousel.slick-initialized .c-sakidoriList__item {
    margin: 0 10px;
  }


  /*==================================================
  コンポーネント-お客様の声リスト（SP）
==================================================*/
  .voiceBox__inner {
    flex-direction: column;
  }

  .voiceBox__sns {
    position: relative;
    left: 0;
    bottom: 0;
    margin: var(--gutter-narrow) auto 0;
  }

  .c-voiceList {
    gap: 30px 20px;
    width: 100%;
  }

  .c-voiceList__item {
    width: calc((100% - 20px) / 2);
  }

  .c-voiceList__detailTtl {
    font-size: 1.6rem;
  }

  /* トップページの時（カルーセル） */
  .c-voiceList--carousel .c-voiceList__item {
    width: 300px;
    margin: 0 10px;
  }

  .c-voiceList--carousel.slick-initialized {
    margin-bottom: 50px !important;
  }

  .c-voiceList--carousel .slick-dots {
    bottom: -40px;
  }

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

  .c-voiceList--carousel.slick-initialized .c-voiceList__item {
    display: block;
    margin: 0 10px;
  }

  /*==================================================
  コンポーネント-オススメ物件
==================================================*/
  .specialEstateBox .c-recomList {
    width: 90%;
    margin: 0 auto;
    gap: 0;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .specialEstateBox .c-recomList__item:not(:first-child) {
    margin-top: 35px;
  }

  .c-recomList__fixedBtn {
    gap: 5px;
  }

  .c-recomList__fixedBtn .btn_form--recomList {
    font-size: 1.3rem !important;
    padding: 0.5em !important;
    width: 60% !important;
  }

  .c-recomList__fixedBtnFavorite {
    width: 40%;
    padding: 0.5em;
    font-size: 1.3rem;
    min-height: 57px;
    min-width: auto;
  }

  /* もっと見る */
  /* 【もっと見る】3行以上になるときの高さ制限 */
  .specialReadMoreWrap.specialReadMoreWrap--overflow .specialReadMoreWrap__inner {
    height: 2100px;
  }

}
