@charset "UTF-8";

/* ==========================================
  FV
========================================== */
.fv-block {
  position: relative;
  display: flex;
  align-items: center;
  height: clamp(400px, 80svh, 900px);
  overflow: visible;
}

@media screen and (min-width: 961px) {
  .fv-block {
    min-height: 600px;
    height: calc(100svh - clamp(20px, 3vw, 52px));
    max-height: 1080px;
  }
}

.fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.fv-mainBlock {
  width: 100%;
  position: relative;
}

.fv-txtBlock {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.fv-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 1vw, 12px);
  font-size: clamp(2.4rem, 8vw, 9.4rem);
  font-family: var(--font-NsanJ);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fv-ttl span {
  background: #fff;
  color: #000;
  padding: 0.1em 0em 0.2em 0.6em;
  line-height: 1.2;
}

@media screen and (min-width: 961px) {
  .fv-ttl {
    gap: clamp(6px, 1.5vw, 16px);
  }

  .fv-ttl span {
    font-size: clamp(2.4rem, 5vw, 9.4rem);
    padding: clamp(4px, 1vw, 12px) clamp(12px, 2vw, 32px);
    line-height: 1.3;
  }
}

.fv-model {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: 100%;
  z-index: 2;
  transform: translateY(10%);
}

@media screen and (min-width: 961px) {
  .fv-model {
    right: 0;
    bottom: 0;
    width: clamp(200px, 30vw, 520px);
    /* transform: translateY(10%); */
  }
}

/* ==========================================
  コンセプト
========================================== */
.sec-concept {
  background: #fff;
  overflow: hidden;
}

@media screen and (min-width: 961px) {
  .sec-concept {
    min-height: max(100svh, 650px);
    display: flex;
    align-items: center;
    padding-top: clamp(60px, 8vw, 80px);
    padding-bottom: clamp(60px, 8vw, 80px);
  }
}

.sec-concept .wrapB {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 961px) {
  .sec-concept .wrapB {
    flex-direction: row;
    align-items: flex-start;
    min-width: 0;
    gap: clamp(1.2rem, 2.5vw, 2rem);
  }
}

.concept-textBlock {
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 4;
}

@media screen and (min-width: 961px) {
  .concept-textBlock {
    flex: 0 0 57%;
    width: 57%;
    max-width: 57%;
    min-width: 0;
    margin-top: 0;
  }
}

.concept-textBlock .sec-ttl {
  margin-bottom: clamp(30px, 4vw, 60px);
}

.sec-concept .ttlMain.jaB {
  margin-top: 0;
  font-size: clamp(2.6rem, 3.9vw, 9rem);
  overflow-wrap: break-word;
  word-break: normal;
}

@media screen and (min-width: 1400px) {
  .sec-concept .ttlMain.jaB {
    white-space: nowrap;
  }
}

.sec-concept .basic-txtR {
  line-height: 2;
  font-size: clamp(1.6rem, 1.5vw, 3rem);
}

.concept-imgBlock {
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 1.1;
}

@media screen and (min-width: 961px) {
  .concept-imgBlock {
    flex: 1 1 0%;
    width: auto;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
    aspect-ratio: 1 / 1.25;
  }
}

.concept-imgBlock::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 70%;
  width: 65%;
  height: 65%;
  background: #efefef;
  z-index: 1;
}

.concept-imgBlock li:nth-child(1) {
  width: 85%;
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  z-index: 3;
}

@media screen and (min-width: 961px) {
  .concept-imgBlock li:nth-child(1) {
    width: 74%;
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-right: max(calc((min(90vw, 1100px) - 100vw) / 2), calc(50% - 50vw));
  }
}

.concept-imgBlock li:nth-child(1) img {
  width: 100%;
  height: auto;
  display: block;
}

.concept-imgBlock li:nth-child(2) {
  width: 60%;
  max-width: 100%;
  position: absolute;
  bottom: 5%;
  left: 60px;
  z-index: 2;
}

.concept-imgBlock li:nth-child(2) img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1370px) {
  .concept-imgBlock::before {
    left: 30%;
  }

  .concept-imgBlock li:nth-child(2) {
    left: -60px;
  }
}

@media screen and (max-width: 960px) {
  .concept-imgBlock::before {
    top: 25%;
    left: 20%;
  }

  .concept-imgBlock li:nth-child(1) {
    width: 55%;
    top: 45px;
  }

  .concept-imgBlock li:nth-child(2) {
    width: 40%;
    left: -10px;
  }
}

/* ==========================================
  バナー
========================================== */
.sec-banner {
  padding-block: clamp(4rem, 6vw, 8rem);
}

.sec-banner .banner-inner {
  text-align: center;
}

.sec-banner .banner-inner a {
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .sec-concept.sec_PTB {
    padding-bottom: calc(clamp(5rem, 10vw, 8rem) / 2);
  }

  section.sec-banner {
    padding-top: calc(clamp(4rem, 6vw, 8rem) / 2);
    padding-bottom: clamp(4rem, 6vw, 8rem);
  }
}

/* ==========================================
  ポイント（sec-point）
========================================== */
.sec-point {
  background: #f7f6f4;
  position: relative;
  overflow: visible;
}

.sec-point > .wrapB {
  position: relative;
  z-index: 1;
}

.sec-point-deco {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  font-family: var(--font-futura);
  font-weight: 800;
  font-size: clamp(200px, 45vw, 437px);
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sec-point .sec-ttl .ttlMain {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.08em;
}

.sec-point .sec-ttl .ttlMain .ttlMain-num {
  font-size: clamp(6rem, 12vw, 17.6rem);
  line-height: 1;
}

.sec-point .sec-ttl .ttlMain .ttlMain-txt {
  font-size: clamp(3.2rem, 7vw, 9.6rem);
}

.sec-point .sec-lead {
  font-family: var(--font-go);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 2;
  color: #555;
  margin-left: auto;
  margin-right: auto;
}

.sec-point .block-row {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(100px, 14vw, 160px);
}

.sec-point .row-item {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0;
}

@media screen and (min-width: 961px) {
  .sec-point .row-item {
    flex-direction: row;
    align-items: center;
  }

  .sec-point .row-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.sec-point .row-item .item-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

@media screen and (min-width: 961px) {
  .sec-point .row-item .item-img {
    width: 70%;
    aspect-ratio: 16 / 10;
  }
}

.sec-point .row-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .sec-point .row-item:hover .item-img img {
    transform: scale(1.04);
  }
}

.sec-point .row-item .item-body {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  align-content: center;
  row-gap: 0;
  column-gap: clamp(15px, 2vw, 25px);
  background: #fff;
  border: 2px solid #111;
  border-radius: clamp(15px, 2vw, 24px);
  padding: clamp(20px, 6vw, 55px);
  position: relative;
  bottom: -95px;
  z-index: 2;
  width: 90%;
  min-width: 0;
  margin: -10% auto 0;
  box-sizing: border-box;
}

@media screen and (min-width: 961px) {
  .sec-point .row-item .item-body {
    padding: clamp(16px, 2vw, 40px) clamp(24px, 5vw, 55px);
    width: 40%;
    max-width: 100%;
    aspect-ratio: 1;
    margin: 0;
    margin-left: -10%;
    align-self: center;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
  }

  .sec-point .row-item:nth-child(even) .item-body {
    margin-left: 0;
    margin-right: -10%;
  }
}

@media screen and (min-width: 1440px) {
  .sec-point .row-item .item-body {
    aspect-ratio: auto;
    overflow: visible;
    min-height: 0;
    width: 45%;
    margin-left: -15%;
    padding: clamp(16px, 2vw, 30px) clamp(10px, 2vw, 25px);
  }

  .sec-point .row-item:nth-child(even) .item-body {
    margin-left: 0;
    margin-right: -15%;
  }
}

@media screen and (max-width: 960px) {
  .sec-point .row-item {
    gap: clamp(20px, 5vw, 36px);
  }

  .sec-point .row-item .item-body {
    position: relative;
    bottom: auto;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .sec-point .block-row {
    gap: clamp(48px, 12vw, 80px);
  }
}

.sec-point .row-item .item-num {
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: var(--font-futura);
  font-weight: 800;
  font-size: clamp(3rem, 4.5vw, 7.5rem);
  color: #cdd35e;
  line-height: 1;
  margin: 0;
  padding: 0;
  align-self: start;
}

.sec-point .row-item .item-ttl {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-family: var(--font-futura);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.2vw, 3.2rem);
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  padding-bottom: 4px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.sec-point .row-item .item-tag {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0;
  padding: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.sec-point .row-item .item-catch {
  grid-column: 1 / 3;
  grid-row: 3;
  font-weight: 600;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  margin-top: clamp(15px, 2vw, 20px);
  margin-bottom: 0.5em;
  color: #000;
  position: relative;
  padding-bottom: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.sec-point .row-item .item-catch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3em;
  height: 3px;
  border-radius: 2px;
}

.sec-point .row-item:nth-child(1) .item-num {
  color: #d1ca62;
}
.sec-point .row-item:nth-child(1) .item-catch::after {
  background: #d1ca62;
}

.sec-point .row-item:nth-child(2) .item-num {
  color: #72acb3;
}
.sec-point .row-item:nth-child(2) .item-catch::after {
  background: #72acb3;
}

.sec-point .row-item:nth-child(3) .item-num {
  color: #c78488;
}
.sec-point .row-item:nth-child(3) .item-catch::after {
  background: #c78488;
}

.sec-point .row-item:nth-child(4) .item-num {
  color: #90759f;
}
.sec-point .row-item:nth-child(4) .item-catch::after {
  background: #90759f;
}

.sec-point .row-item:nth-child(5) .item-num {
  color: #a8b658;
}
.sec-point .row-item:nth-child(5) .item-catch::after {
  background: #a8b658;
}

.sec-point .row-item:nth-child(6) .item-num {
  color: #90a2a9;
}
.sec-point .row-item:nth-child(6) .item-catch::after {
  background: #90a2a9;
}

.sec-point .row-item .item-txt {
  grid-column: 1 / 3;
  grid-row: 4;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  line-height: 2;
  color: #000;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (min-width: 961px) {
  .sec-point .row-item .item-num {
    font-size: clamp(2.4rem, 2.75vw, 5.5rem);
  }

  .sec-point .row-item .item-ttl {
    font-size: clamp(1.45rem, 1.4vw, 2.6rem);
    overflow-wrap: break-word;
  }

  .sec-point .row-item .item-tag {
    font-size: clamp(1.35rem, 1.25vw, 1.8rem);
    overflow-wrap: break-word;
  }

  .sec-point .row-item .item-catch {
    font-size: clamp(1.3rem, 1vw, 1.9rem);
    margin-top: clamp(10px, 1.2vw, 16px);
    overflow-wrap: break-word;
  }

  .sec-point .row-item .item-txt {
    font-size: clamp(1.3rem, 1.05vw, 1.75rem);
    line-height: 1.75;
    overflow-wrap: break-word;
  }
}

/* ==========================================
  モデルハウス（sec-model）
========================================== */
.sec-model {
  background: #fff;
}

.sec-model .model-mainImg img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.sec-model .model-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 50px);
}

.sec-model .model-plan-item .plan-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.sec-model .model-plan-item .plan-floor {
  display: inline-block;
  font-family: var(--font-futura);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  letter-spacing: 0.12em;
  color: #000;
  border: 2px solid #000;
  border-radius: 5px;
  padding: 2px 12px;
  margin-top: 1em;
  margin-bottom: 0.8em;
}

.sec-model .model-plan-item .plan-txt {
  font-family: var(--font-go);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.5vw, 2rem);
  line-height: 1.9;
  color: #555;
  margin-top: 1em;
}

.sec-model .model-data {
  border: 1px solid #666;
  border-radius: 12px;
  position: relative;
  margin-top: 30px;
  background: #fff;
  overflow: visible;
}

.sec-model .model-data-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 1.5em;
  font-family: var(--font-go);
  font-weight: bold;
  font-size: clamp(1.6rem, 2vw, 3rem);
  letter-spacing: 0.08em;
  color: #111;
  white-space: nowrap;
  margin: 0;
}

.sec-model .model-data-head::before,
.sec-model .model-data-head::after {
  display: none;
}

.sec-model .model-data-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: clamp(30px, 4vw, 45px) clamp(20px, 4vw, 40px);
}

@media screen and (min-width: 961px) {
  .sec-model .model-data-inner {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: clamp(20px, 4vw, 50px);
  }
}

.sec-model .model-data-type {
  font-family: var(--font-go);
  font-weight: bold;
  font-size: clamp(1.6rem, 2.2vw, 3rem);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 960px) {
  .sec-model .model-data-type {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

.sec-model .model-data-list {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.6em 2em;
  font-family: var(--font-go);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.5vw, 2rem);
  color: #000;
  flex-shrink: 0;
  align-content: center;
}

@media screen and (min-width: 961px) {
  .sec-model .model-data-list {
    padding-left: clamp(20px, 4vw, 50px);
    border-left: 1px solid #efefef;
  }
}

.sec-model .model-data-right {
  font-family: var(--font-go);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.5vw, 2rem);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4em;
}

@media screen and (min-width: 961px) {
  .sec-model .model-data-right {
    padding-left: clamp(20px, 4vw, 50px);
    border-left: 1px solid #efefef;
  }
}

/* ==========================================
  地図（sec-map）
========================================== */
.sec-map {
  background: #fff;
}

.sec-map .map-wrap {
  width: 100%;
  height: clamp(260px, 35vw, 480px);
}

.sec-map .map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ==========================================
  プラン
========================================== */
.sec-plan {
  background: #fff;
  overflow-x: visible;
  overflow-y: hidden;
}

.sec-plan .sec-lead {
  font-family: var(--font-go);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  line-height: 2;
  color: #333;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background: #eee;
  border-radius: 40px;
  padding: 4px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin: clamp(30px, 5vw, 50px) auto 0;
}

.plan-tabs .tab-btn {
  background: transparent;
  border: none;
  border-radius: 40px;
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: bold;
  color: #888;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

@media screen and (min-width: 961px) {
  .plan-tabs .tab-btn {
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    padding: 6px 110px;
  }
}

.plan-tabs .tab-btn.is-active {
  background: #000;
  color: #fff;
}

.plan-panel {
  display: none;
}

.plan-panel.is-active {
  display: block;
}

.plan-carousel.splide {
  --plan-shift: clamp(20px, 3vw, 52px);
  width: calc(100% + var(--plan-shift));
  max-width: calc(100% + var(--plan-shift));
  margin-left: calc(-1 * var(--plan-shift));
  box-sizing: border-box;
  padding-top: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(28px, 4vw, 40px);
  padding-left: max(0px, calc(clamp(12px, 3vw, 24px) - clamp(14px, 2vw, 26px)));
  padding-right: 0;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
}

.plan-carousel .splide__track,
.plan-carousel .splide__list {
  box-sizing: border-box;
}

.plan-carousel .splide__slide {
  box-sizing: border-box;
  width: min(660px, calc(100vw - 48px));
  width: min(660px, calc(100cqi - 48px));
  max-width: 100%;
  opacity: 0.5;
  transform: scale(0.92);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

@media screen and (min-width: 961px) {
  .plan-carousel .splide__slide {
    width: min(646px, 90vw);
    width: min(646px, 90cqw);
  }
}

@media screen and (min-width: 1400px) {
  .plan-carousel .splide__slide {
    width: min(660px, 90vw);
    width: min(660px, 90cqw);
  }
}

.plan-carousel .splide__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.plan-carousel .splide__slide > .plan-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.plan-carousel .splide__arrow {
  top: 50%;
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  opacity: 1;
  transform: translateY(-50%);
}

@media screen and (min-width: 961px) {
  .plan-carousel .splide__arrow {
    top: 60%;
  }
}

.plan-carousel .splide__arrow:hover {
  background: #fff;
}

.plan-carousel .splide__arrow svg {
  fill: #000;
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (max-width: 960px) {
  .plan-carousel .splide__arrow--prev {
    left: calc((100% - min(660px, calc(100cqi - 48px))) / 2);
  }

  .plan-carousel .splide__arrow--next {
    right: calc((100% - min(660px, calc(100cqi - 48px))) / 2);
  }
}

@media screen and (min-width: 801px) and (max-width: 960px) {
  .plan-carousel .splide__arrow {
    top: 64%;
  }

  .plan-carousel .splide__arrow--prev {
    left: calc((100% - min(608px, 90cqw)) / 2);
  }

  .plan-carousel .splide__arrow--next {
    right: calc((100% - min(712px, 90cqw)) / 2);
  }
}

@media screen and (max-width: 800px) {
  .plan-panels {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .plan-carousel.splide {
    --plan-shift: 0px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .plan-carousel .splide__slide {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    transform: none;
    opacity: 1;
  }

  .plan-carousel .splide__list {
    margin: 0;
    padding: 0;
  }

  .plan-carousel .splide__slide.is-active > .plan-item {
    transform: scale(0.8);
    transform-origin: 50% 0;
  }

  .plan-carousel .splide__slide.is-active {
    transform: none;
  }

  .plan-carousel .item-layout img {
		display: block;
  }

  .plan-carousel .splide__arrow--prev {
    left: clamp(8px, 2.5vw, 16px);
  }

  .plan-carousel .splide__arrow--next {
    right: clamp(8px, 2.5vw, 16px);
  }
}

@media screen and (max-width: 576px) {
  .plan-carousel .splide__arrow {
    top: calc(50% - clamp(26px, 12vw, 46px));
  }
}

@media screen and (min-width: 961px) {
  .plan-carousel .splide__arrow--prev {
    left: calc((100% - min(608px, 90cqw)) / 2);
  }

  .plan-carousel .splide__arrow--next {
    right: calc((100% - min(712px, 90cqw)) / 2);
  }
}

.item-exterior img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.item-plan-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: clamp(10px, 2vw, 16px);
  gap: clamp(6px, 2vw, 14px);
}

@media screen and (max-width: 960px) {
  .item-plan-bar {
    padding: 0 5%;
  }
}

.item-plan-bar-compass {
  flex: 0 0 auto;
  line-height: 0;
}

.item-plan-bar-compass img {
  display: block;
  width: clamp(20px, 3vw, 30px);
  height: auto;
}

.btn-zoom-icn {
  flex-shrink: 0;
  width: clamp(36px, 9vw, 48px);
  height: clamp(36px, 9vw, 48px);
  padding: 0;
  border: none;
  background: url("../img/index/icon_zoom.svg") no-repeat center center /
    contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-zoom-icn:hover {
  transform: scale(1.08);
}

.item-layout {
  margin-top: clamp(12px, 2.5vw, 20px);
  text-align: center;
		width: 100%;
}

.item-layout img {
	width: 80%;
	height: auto;
		aspect-ratio: 660/352;
		object-fit: contain;
  margin: 0 auto;
}

.item-perf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  width: 100%;
}

.item-perf-cell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
  width: 100%;
  max-width: 217px;
  justify-self: center;
}

.perf-help-link {
  width: 100%;
  max-width: 100%;
  font-size: 12px;
  color: #000;
  line-height: 1.3;
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: break-word;
}

.perf-help-link:hover {
  opacity: 0.75;
}

.btn-perf {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 217px;
  min-height: 4.2rem;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.35;
  white-space: nowrap;
  border-radius: 4px;
  cursor: default;
  user-select: none;
}

@media screen and (max-width: 960px) {
  .item-perf {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(4px, 1.5vw, 10px);
    width: 100%;
    min-width: 0;
  }

  .item-perf-cell {
    max-width: none;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .btn-perf {
    max-width: none;
    width: 100%;
    min-height: 0;
    padding: 6px clamp(4px, 1.5vw, 10px);
    font-size: 1.8rem;
    white-space: normal;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .perf-help-link {
    text-align: center;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
  }
}

.item-data {
  display: grid;
  grid-template-columns: 1fr auto 1px auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(16px, 3vw, 36px);
  row-gap: clamp(16px, 3vw, 24px);
  margin-top: 30px;
}

.item-data-vrule {
  grid-column: 3;
  grid-row: 1;
  width: 1px;
  background: #efefef;
  align-self: stretch;
  min-height: 4rem;
}

.data-type {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  letter-spacing: 0.1em;
  text-align: center;
}

.data-price-box {
  grid-column: 4;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  text-align: center;
}

.price-label {
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.price-num {
  font-family: var(--font-futura);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin: 5px 0;
}

.price-num span {
  font-family: var(--font-go);
  font-size: 1.6rem;
}

.price-note {
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #666;
}

.data-area {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 8px 20px;
  margin: 0;
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 2.2vw, 20px);
  text-align: left;
}

/* ==========================================
  モーダル
========================================== */

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.custom-modal.is-open {
  display: flex;
}

.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  z-index: 1;
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

#gallery-modal .modal-content {
  width: 55%;
  max-width: 1360px;
  max-height: 90vh;
}

#gallery-modal-img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

@media screen and (max-width: 1360px) {
  #gallery-modal .modal-content {
    width: 76%;
  }
}

@media screen and (max-width: 960px) {
  #gallery-modal .modal-content {
    width: 92%;
  }
}

.plan-modal-close,
.gallery-modal-close {
  position: absolute;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.plan-modal-close:hover,
.gallery-modal-close:hover {
  opacity: 0.7;
}

.plan-modal-close::before,
.plan-modal-close::after,
.gallery-modal-close::before,
.gallery-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
}

.plan-modal-close::before,
.gallery-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.plan-modal-close::after,
.gallery-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.plan-modal-close {
  top: 20px;
  right: 20px;
  border: 3px solid #000;
}
.plan-modal-close::before,
.plan-modal-close::after {
  background: #000;
}

.gallery-modal-close {
  top: 15px;
  right: 20px;
  border: 3px solid #fff;
}

.gallery-modal-close::before,
.gallery-modal-close::after {
  background: #fff;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.modal-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.modal-nav.prev {
  left: 0;
  transform: translate(-140%, -50%);
}

.modal-nav.prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.modal-nav.next {
  right: 0;
  transform: translate(140%, -50%);
}

.modal-nav.next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

@media screen and (max-width: 960px) {
  .gallery-modal-close {
    top: -50px;
    right: 10px;
  }

  .modal-nav {
    top: auto;
    bottom: -72px;
    transform: none;
  }

  .modal-nav.prev {
    left: calc(50% - 38px);
    transform: translateX(-100%);
  }

  .modal-nav.next {
    right: calc(50% - 38px);
    transform: translateX(100%);
  }
}

/* ==========================================
  バナー1（sec-visit）
========================================== */
.sec-visit {
  position: relative;
  background-image: url(../img/index/visit_bgimg.webp);
  background-size: cover;
  background-position: center;
  padding: clamp(60px, 8vw, 100px) 0;
}

@media screen and (max-width: 800px) {
  .sec-visit {
    margin-top: -40%;
  }
}

.sec-visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.sec-visit .wrapB {
  position: relative;
  z-index: 1;
}

.sec-visit .visit-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.sec-visit .visit-ttl {
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 8vw, 9rem);
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 0 clamp(25px, 4vw, 40px);
  text-align: center;
}

.sec-visit .visit-ttl-l1::after {
  content: "\3000";
}

@media screen and (max-width: 576px) {
  .sec-visit .visit-ttl-l1::after {
    content: none;
  }

  .sec-visit .visit-ttl-l1,
  .sec-visit .visit-ttl-l2 {
    display: block;
    text-align: center;
  }
}

.sec-visit .visit-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8em 3em;
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(50px, 10vw, 110px);
  justify-content: center;
  justify-items: center;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .sec-visit .visit-checklist {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: stretch;
    text-align: left;
  }
}

@media screen and (min-width: 961px) {
  .sec-visit .visit-checklist {
    grid-template-columns: auto auto;
    justify-items: stretch;
    text-align: left;
  }
}

.sec-visit .visit-checklist li {
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(14px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.sec-visit .visit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding-right: 10%;
}

.sec-visit .visit-balloon {
  width: clamp(80px, 9vw, 150px);
  height: auto;
  flex-shrink: 0;
  margin-right: 0;
  z-index: 1;
  position: relative;
  top: -46px;
  right: -20px;
}

.sec-visit .btn-res {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-go);
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: bold;
  padding: 0 clamp(20px, 3vw, 40px);
  height: clamp(60px, 7vw, 80px);
  width: 100%;
  max-width: 480px;
  background: #c68f54;
  text-decoration: none;
  transition: 0.3s ease;
}

.sec-visit .btn-res .icon img {
  width: clamp(20px, 2.5vw, 32px);
  height: auto;
}

@media (hover: hover) {
  .sec-visit .btn-res:hover {
    opacity: 0.8;
  }
}

/* ==========================================
  資料請求バナー（sec-request）
========================================== */
.sec-request {
  background: #fff;
}

.request-banner {
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 24px);
}

.request-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.request-banner-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 64px);
  min-height: clamp(260px, 42vw, 440px);
}

.request-banner-catalog {
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.request-banner-catalog img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

.request-banner-copy {
  text-align: left;
}

.request-banner-ttl {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4.5vw, 50px);
  text-align: center;
  line-height: 1.3;
  color: #324358;
  letter-spacing: 0.04em;
}

.request-banner-lead {
  margin: 0 0 clamp(22px, 3.5vw, 32px);
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 25px);
  text-align: center;
  line-height: 1.9;
  color: #324358;
}

.request-banner-free {
  display: inline-block;
  margin: 0 0.2em;
  padding: 0.05em 0.4em;
  font-weight: 700;
  color: #fff;
  background: #324358;
}

.sec-request .request-banner-cv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  max-height: 112px;
  min-height: 48px;
  padding: clamp(10px, 2vw, 20px) clamp(16px, 3vw, 40px);
  font-family:
    "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.sec-request .request-banner-cv .icon img {
  width: clamp(22px, 3.5vw, 36px);
  height: auto;
}

@media (hover: hover) {
  .sec-request .request-banner-cv:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 960px) {
  .request-banner-body {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .request-banner-copy {
    text-align: center;
  }

  .request-banner-catalog {
    order: -1;
  }

  .request-banner-catalog img {
    width: min(88%, 320px);
    margin-inline: auto;
  }
}

/* ==========================================
  ギャラリー（sec-gallery）
========================================== */
.sec-gallery {
  background: #fff;
}

.sec-gallery .sec-ttl {
  margin-bottom: 0;
}

.sec-gallery .gallery-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(6px, 1vw, 12px);
}

@media screen and (min-width: 961px) {
  .sec-gallery .gallery-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .sec-gallery .gallery-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sec-gallery .gallery-item {
  overflow: hidden;
}

.sec-gallery .gallery-item .item-img {
  overflow: hidden;
}

.sec-gallery .gallery-item .item-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .sec-gallery .gallery-item:hover .item-img img {
    transform: scale(1.07);
  }
}

/* ==========================================
  バナー2
========================================== */

html,
body {
  overflow-x: clip;
}
