@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
:root {
  --ink: #23231f;
  --ink-soft: #55534c;
  --paper: #f8f6f1;
  --white: #ffffff;
  --gold: #9c8354;
  --gold-deep: #7e6a42;
  --gold-pale: #cdbd9b;
  --line: #ddd6c8;
  --navy: #16303f;
  --lixil: #da6629;
  --lixil-deep: #c25a22;
  --err: #b4553f;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --en: "Cormorant Garamond", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.page-sub {
  font-weight: 400;
}

/* ---------- layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: clamp(84px, 11vw, 150px) 0;
  position: relative;
}

.p-sub {
  padding-top: 90px;
}

.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 40px 0 16px;
}
.post-body h2 {
  font-size: 24px;
}
.post-body h3 {
  font-size: 20px;
}
.post-body h4 {
  font-size: 17px;
}
.post-body p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.post-body a {
  color: var(--gold-deep);
  text-decoration: underline;
}
.post-body ul,
.post-body ol {
  margin: 0 0 24px 1.4em;
}
.post-body ul li,
.post-body ol li {
  font-size: 16px;
  color: var(--ink-soft);
  list-style: revert;
}
.post-body img {
  margin: 0 auto 24px;
}

.bg-white {
  background: var(--white);
}

.bg-tint {
  background: #efebe2;
}

.bg-navy {
  background: var(--navy);
  color: #eef0ee;
}
.bg-navy .sec-title {
  color: #fff;
}
.bg-navy .sec-lead {
  color: #c7cdd0;
}
.bg-navy .eyebrow {
  color: var(--gold-pale);
}

.bg-lixil {
  background: var(--lixil);
  color: #fff;
}
.bg-lixil .sec-title {
  color: #fff;
}
.bg-lixil .sec-lead {
  color: rgba(255, 255, 255, 0.92);
}
.bg-lixil .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}
.bg-lixil .sec-head .rule {
  background: #fff;
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 22px;
}
.eyebrow.is-pale {
  color: var(--gold-pale);
}

.sec-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.sec-lead {
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.sec-head {
  margin-bottom: clamp(48px, 7vw, 84px);
}
.sec-head .rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 28px;
}
.sec-head.center {
  text-align: center;
}
.sec-head.center .rule {
  margin-left: auto;
  margin-right: auto;
}
.sec-head.is-tight {
  margin-bottom: 36px;
}

/* ---------- reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ---------- buttons ---------- */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  transition: opacity 0.3s;
}
.btn-line .arrow {
  width: 46px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}
.btn-line .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 9px;
  height: 1px;
  background: var(--gold);
  transform: rotate(35deg);
  transform-origin: right bottom;
}
.btn-line:hover .arrow {
  width: 64px;
}

.btn-fill {
  display: inline-block;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  padding: 18px 56px;
  transition: background 0.35s, color 0.35s;
}
.btn-fill:hover {
  background: transparent;
  color: var(--navy);
}
.bg-navy .btn-fill {
  background: transparent;
  border-color: var(--gold-pale);
  color: #fff;
}
.bg-navy .btn-fill:hover {
  background: var(--gold-pale);
  color: var(--navy);
}

.btn-gold {
  display: inline-block;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 18px 56px;
  transition: background 0.35s, color 0.35s;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ---------- photo slider（共通） ---------- */
.slider {
  position: relative;
  overflow: hidden;
  background: #e9e4d9;
}
.slider .slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider .slides img {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  display: block;
}
.slider.ratio-45 .slides img {
  aspect-ratio: 4/5;
}
.slider.ratio-43 .slides img {
  aspect-ratio: 4/3;
}
.slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.82);
  color: var(--gold-deep);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
.slider .nav:hover {
  background: #fff;
}
.slider .nav svg {
  width: 14px;
  height: 14px;
}
.slider .nav.prev {
  left: 14px;
}
.slider .nav.next {
  right: 14px;
}
@media screen and (max-width: 560px) {
  .slider .nav {
    width: 38px;
    height: 38px;
  }
}
.slider .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.slider .dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.3s, transform 0.3s;
}
.slider .dots button.active {
  background: #fff;
  transform: scale(1.25);
}
.slider .count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.14em;
  background: rgba(22, 48, 63, 0.72);
  color: #fff;
  padding: 4px 12px;
}

/* ---------- 定義リスト（物件概要・会社概要／共通） ---------- */
.spec-badge {
  display: block;
  width: fit-content;
  margin: 0 auto clamp(36px, 5vw, 52px);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.24em;
  color: #fff;
  background: var(--gold);
  padding: 9px 30px;
}

dl.spec {
  border-top: 1px solid var(--line);
  max-width: 920px;
  margin: 0 auto;
}
dl.spec > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}
@media screen and (max-width: 640px) {
  dl.spec > div {
    grid-template-columns: 1fr;
  }
}
dl.spec dt {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 20px 18px;
  background: rgba(156, 131, 84, 0.06);
  color: var(--gold-deep);
}
@media screen and (max-width: 640px) {
  dl.spec dt {
    padding: 14px 16px 4px;
    background: none;
  }
}
dl.spec dd {
  font-size: 16px;
  padding: 20px 22px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 640px) {
  dl.spec dd {
    padding: 0 16px 16px;
  }
}

.spec-note {
  max-width: 920px;
  margin: 26px auto 0;
  font-size: 16px;
  color: #9a958a;
  text-align: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
  color: #fff;
}
header.solid {
  background: rgba(248, 246, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.hd-in {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.brand .b1 {
  font-family: var(--en);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.3em;
}
.brand .b2 {
  font-family: var(--en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.24em;
  opacity: 0.75;
}

nav.gnav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav.gnav a {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
nav.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
nav.gnav a:hover::after {
  width: 100%;
}

.hd-cta {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  border: 1px solid currentColor;
  padding: 11px 22px;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
header:not(.solid) .hd-cta:hover {
  background: #fff;
  color: var(--navy);
}
header.solid .hd-cta {
  border-color: var(--gold);
  color: var(--gold-deep);
}
header.solid .hd-cta:hover {
  background: var(--gold);
  color: #fff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 130;
}
.menu-btn span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: 0.3s;
}
.menu-btn span:nth-child(1) {
  top: 14px;
}
.menu-btn span:nth-child(2) {
  top: 20px;
}
.menu-btn span:nth-child(3) {
  top: 26px;
}
.menu-btn.open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(22, 48, 63, 0.97);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer.open {
  opacity: 1;
  visibility: visible;
}
.drawer a {
  font-family: var(--serif);
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.2em;
  padding: 12px;
}
.drawer .drawer-cta {
  border: 1px solid var(--gold-pale);
  padding: 12px 40px;
  margin-top: 14px;
  color: var(--gold-pale);
}

@media screen and (max-width: 1060px) {
  nav.gnav,
  .hd-cta-wrap {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}
footer {
  background: var(--navy);
  color: #dfe3e2;
  padding: clamp(70px, 9vw, 100px) 0 0;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
}
@media screen and (max-width: 820px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}

.ft h4 {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26em;
  color: var(--gold-pale);
  margin-bottom: 20px;
}
.ft h4.is-second {
  margin-top: 28px;
}
.ft p,
.ft li {
  font-size: 16px;
  line-height: 2.2;
  color: #b9c2c6;
}
.ft .ft-cta {
  margin-top: 18px;
}
.ft .btn-gold {
  padding: 14px 38px;
  font-size: 16px;
}

.ft-brand .b1 {
  font-family: var(--en);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.3em;
  color: #fff;
}
.ft-brand .b2 {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.24em;
  color: var(--gold-pale);
  display: block;
  margin: 4px 0 24px;
}
.ft-brand p {
  font-size: 16px;
  line-height: 2.2;
  color: #b9c2c6;
}

.ft-bottom {
  margin-top: clamp(50px, 7vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px 24px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #8d9aa1;
}

.line-float {
  position: fixed;
  right: 22px;
  bottom: 42px;
  z-index: 90;
  background: #06c755;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: transform 0.3s;
}
.line-float:hover {
  transform: translateY(-3px);
}

/* ==================================================
   HERO
   ================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 0;
  background: var(--navy);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 30, 41, 0.62) 0%, rgba(13, 30, 41, 0.28) 55%, rgba(13, 30, 41, 0.45) 100%);
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2.4s ease, transform 8s linear;
}
.hero-slides .slide.act {
  opacity: 1;
  transform: scale(1);
}
.hero-slides .slide.slide-01 {
  background-image: url("../assets/img/hero-ocean.webp");
}
.hero-slides .slide.slide-02 {
  background-image: url("../assets/img/pool-jacuzzi-aerial.avif");
}
.hero-slides .slide.slide-03 {
  background-image: url("../assets/img/villa-exterior.webp");
}

.hero-in {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 24px 210px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 880px) {
  .hero-in {
    padding-bottom: 380px;
  }
}
@media screen and (max-width: 560px) {
  .hero-in {
    padding-top: 120px;
    padding-bottom: 400px;
  }
}

.hero-copy .h-eyebrow {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 28px;
}
.hero-copy h1 {
  font-family: var(--en);
  font-weight: 400;
  font-size: clamp(54px, 8vw, 96px);
  letter-spacing: 0.18em;
  line-height: 1.1;
}
.hero-copy .h-kana {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.6em;
  display: block;
  margin: 14px 0 40px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-copy .h-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: 0.2em;
  line-height: 2.1;
  font-weight: 500;
}
.hero-copy .h-sub {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge {
  display: inline-block;
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.24em;
  border: 1px solid var(--gold-pale);
  color: var(--gold-pale);
  padding: 9px 26px;
}

.hero-cta {
  margin-top: 42px;
}

.hero-tate {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0.5em;
  line-height: 2.6;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 30px;
  height: 340px;
  color: rgba(255, 255, 255, 0.92);
}
@media screen and (max-width: 880px) {
  .hero-tate {
    display: none;
  }
}

@media screen and (max-height: 840px) {
  .hero-in {
    padding-top: 110px;
    padding-bottom: 196px;
  }
  .hero-tate {
    height: 280px;
  }
}
@media screen and (max-height: 700px) {
  .hero-in {
    padding-top: 96px;
    padding-bottom: 186px;
  }
  .hero-tate {
    display: none;
  }
}
.hero-feats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(13, 30, 41, 0.55);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-feats ul {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 880px) {
  .hero-feats ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero-feats li {
  text-align: center;
  padding: 18px 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-feats li:first-child {
  border-left: none;
}
@media screen and (max-width: 880px) {
  .hero-feats li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .hero-feats li:nth-child(3) {
    border-left: none;
  }
  .hero-feats li:nth-child(-n+2) {
    border-top: none;
  }
}
.hero-feats .f-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  margin-bottom: 8px;
}
.hero-feats .f-ic svg {
  width: 30px;
  height: 30px;
}
.hero-feats .f-ja {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.14em;
  display: block;
}
.hero-feats .f-en {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--gold-pale);
}

.scroll-sign {
  position: absolute;
  right: 34px;
  bottom: 110px;
  z-index: 3;
  font-family: var(--en);
  font-size: 16px;
  letter-spacing: 0.34em;
  color: #fff;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-sign::after {
  content: "";
  width: 1px;
  height: 64px;
  background: #fff;
  animation: scl 2.2s ease-in-out infinite;
}
@media screen and (max-width: 880px) {
  .scroll-sign {
    display: none;
  }
}

@keyframes scl {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ==================================================
   CONCEPT
   ================================================== */
.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media screen and (max-width: 880px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }
}

.concept-words {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 40px 0;
}
.concept-words li {
  background: var(--paper);
  text-align: center;
  padding: 26px 8px;
}
.concept-words .w-ja {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.3em;
  display: block;
}
.concept-words .w-en {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.concept-figs {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(40px, 5vw, 54px);
}
@media screen and (max-width: 560px) {
  .concept-figs {
    flex-direction: column;
  }
}
.concept-figs .fig {
  flex: 1;
  text-align: center;
  padding: clamp(24px, 3vw, 34px) 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  position: relative;
  transition: box-shadow 0.4s, transform 0.4s;
}
.concept-figs .fig:hover {
  box-shadow: 0 16px 40px rgba(35, 35, 31, 0.08);
  transform: translateY(-3px);
}

.fig .f-cap {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.fig .num {
  font-family: var(--en);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.fig .num .unit {
  font-size: 0.36em;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.fig .lbl {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.24em;
  color: var(--ink);
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  position: relative;
}
.fig .lbl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 1px;
  background: var(--gold-pale);
}

.concept-photo {
  position: relative;
}
.concept-photo .tate {
  position: absolute;
  top: -26px;
  right: -14px;
  z-index: 5;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: 0.42em;
  font-weight: 500;
  background: var(--paper);
  padding: 26px 14px;
  line-height: 2;
}
@media screen and (max-width: 880px) {
  .concept-photo {
    margin-top: 50px;
  }
  .concept-photo .tate {
    right: auto;
    left: -6px;
  }
}

/* ==================================================
   TOTAL PRODUCE（4ステップ）
   ================================================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 110px);
}

.step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.step:nth-child(even) .step-ph {
  order: 2;
}
.step:hover .step-ph img {
  transform: scale(1.04);
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(21px, 2.4vw, 27px);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.step p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 22px;
}
.step ul li {
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.step ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
@media screen and (max-width: 780px) {
  .step {
    grid-template-columns: 1fr;
  }
  .step:nth-child(even) .step-ph {
    order: 0;
  }
}

.step-ph {
  position: relative;
  overflow: hidden;
}
.step-ph img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  transition: transform 1.4s ease;
}

.step-no {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.26em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.step-no::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: var(--gold);
}

/* ==================================================
   STRENGTHS（ビジネスモデル図＋数値）
   ================================================== */
.model {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(34px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.model-title {
  font-family: var(--serif);
  text-align: center;
  letter-spacing: 0.3em;
  font-size: 21px;
  margin-bottom: 10px;
}

.model-sub {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: clamp(34px, 5vw, 50px);
}

.model-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.model-flow .mstep {
  flex: 1;
  text-align: center;
  padding: 30px 12px;
  background: #e7ecee;
  color: var(--ink);
}
.model-flow .mstep.is-last {
  background: var(--navy);
  color: #fff;
}
.model-flow .mstep.is-last .ms-no {
  color: var(--gold-pale);
}
.model-flow .m-arrow {
  flex: 0 0 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--en);
  font-size: 20px;
  color: var(--gold);
}
@media screen and (max-width: 760px) {
  .model-flow {
    flex-wrap: wrap;
    gap: 10px;
  }
  .model-flow .mstep {
    flex: 1 1 45%;
    min-width: 130px;
  }
  .model-flow .m-arrow {
    display: none;
  }
}

.mstep .ms-no {
  font-family: var(--en);
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 8px;
}
.mstep .ms-ja {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.14em;
  display: block;
}

.model-rel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}
.model-rel .rel-node {
  flex: 1;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 18px;
  text-align: center;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.16em;
}
.model-rel .rel-node.seller {
  background: var(--navy);
  color: #fff;
}
.model-rel .rel-node.owner {
  background: #1d8f92;
  color: #fff;
}
.model-rel .rel-mid {
  flex: 0 0 clamp(150px, 20vw, 240px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 0 clamp(10px, 2vw, 22px);
}
@media screen and (max-width: 760px) {
  .model-rel {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .model-rel .rel-node {
    max-width: none;
  }
  .model-rel .rel-mid {
    flex: none;
    flex-direction: row;
    justify-content: center;
    gap: 18px;
    padding: 18px 0;
  }
}

.rel-mid .rel-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.rel-mid .rel-line::before, .rel-mid .rel-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-pale);
  min-width: 14px;
}
@media screen and (max-width: 760px) {
  .rel-mid .rel-line::before, .rel-mid .rel-line::after {
    min-width: 10px;
  }
}

.model-note {
  margin-top: clamp(28px, 4vw, 38px);
  font-size: 16px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 2;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.strength-grid .sg {
  background: var(--white);
  padding: 36px 26px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  .strength-grid {
    grid-template-columns: 1fr;
  }
}

.sg .big {
  font-family: var(--en);
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1.2;
}
.sg .big .u {
  font-size: 0.45em;
}
.sg .t {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.14em;
  display: block;
  margin: 10px 0 12px;
}
.sg p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
  text-align: left;
}

.strength-extra {
  margin-top: 1px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: none;
}
.strength-extra .sg {
  background: var(--white);
  padding: 32px 30px;
  text-align: left;
}
@media screen and (max-width: 560px) {
  .strength-extra {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   CTA バンド
   ================================================== */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) 24px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 30, 41, 0.6);
}
.cta-band > * {
  position: relative;
}
.cta-band .eyebrow {
  color: var(--gold-pale);
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.cta-band p {
  font-size: 16px;
  line-height: 2.4;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-band.is-consult {
  background-image: url("../assets/img/hero-ocean.webp");
}
.cta-band.is-villa {
  background-image: url("../assets/img/bbq-terrace-family.avif");
}
@media screen and (max-width: 880px) {
  .cta-band {
    background-attachment: scroll;
  }
}

/* ==================================================
   WHY CHOOSE US
   ================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 56px) clamp(28px, 4vw, 56px);
}
@media screen and (max-width: 920px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why {
  border-top: 1px solid var(--ink);
  padding-top: 26px;
  position: relative;
}
.why::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.why .no {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
}
.why h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.12em;
  margin: 8px 0 14px;
  line-height: 1.9;
}
.why p {
  font-size: 16px;
  color: var(--ink-soft);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(156, 131, 84, 0.08);
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.why-icon svg {
  width: 30px;
  height: 30px;
}

/* ==================================================
   STATEMENT（縦組み）
   ================================================== */
.statement {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: clamp(110px, 16vw, 200px) 24px;
  background-size: cover;
  background-position: center;
  background-image: url("../assets/img/pool-jacuzzi-aerial.avif");
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 30, 41, 0.35), rgba(13, 30, 41, 0.6));
}
.statement .tate-wrap {
  display: flex;
  gap: clamp(22px, 3vw, 40px);
  flex-direction: row-reverse;
}
.statement .t1 {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 34px);
  letter-spacing: 0.4em;
  line-height: 2.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.statement .t2 {
  writing-mode: vertical-rl;
  font-size: 16px;
  letter-spacing: 0.22em;
  line-height: 2.6;
  color: rgba(255, 255, 255, 0.88);
  max-height: 420px;
}
@media screen and (max-width: 680px) {
  .statement .t2 {
    display: none;
  }
}

.statement-in {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 680px) {
  .statement-in {
    justify-content: center;
  }
}

/* ==================================================
   VILLA SERIES
   ================================================== */
.villa-list {
  display: flex;
  flex-direction: column;
  gap: clamp(70px, 9vw, 120px);
}

.villa {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.villa:nth-child(even) .villa-ph {
  order: 2;
}
@media screen and (max-width: 820px) {
  .villa {
    grid-template-columns: 1fr;
  }
  .villa:nth-child(even) .villa-ph {
    order: 0;
  }
  .villa .villa-info {
    margin-top: 30px;
  }
}

.villa-ph {
  position: relative;
}
.villa-ph .vno {
  position: absolute;
  top: -30px;
  left: -8px;
  z-index: 6;
  font-family: var(--en);
  font-style: italic;
  font-size: clamp(56px, 7vw, 84px);
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-pale);
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.villa-info .v-en {
  font-family: var(--en);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
}
.villa-info .v-spec {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  display: block;
  margin: 10px 0 22px;
}
.villa-info .v-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.villa-info .v-tags li {
  font-size: 16px;
  letter-spacing: 0.14em;
  border: 1px solid var(--line);
  padding: 6px 16px;
  color: var(--ink-soft);
  background: var(--white);
}
.villa-info p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.villa-info .v-photos {
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 18px;
}

/* ==================================================
   競合との差別化（ポジショニングマップ＋比較）
   ================================================== */
.pos-map {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(12px, 2vw, 22px);
  margin: 0 auto clamp(22px, 2.5vw, 30px);
  max-width: 660px;
}
.pos-map svg {
  width: 100%;
  height: auto;
  display: block;
}
.pos-map .pm-axis {
  font-family: var(--sans);
  font-size: 17px;
  fill: #6b7c88;
  letter-spacing: 0.1em;
}
.pos-map .pm-quad {
  font-family: var(--sans);
  font-size: 16px;
  fill: #9aa5ac;
  letter-spacing: 0.08em;
}
.pos-map .pm-lbl {
  font-family: var(--sans);
  font-size: 17px;
  fill: var(--ink-soft);
  letter-spacing: 0.06em;
}
.pos-map .pm-me {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  fill: var(--gold-deep);
  letter-spacing: 0.1em;
}

.pos-legend {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  flex-wrap: wrap;
  margin-bottom: clamp(44px, 6vw, 64px);
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.pos-legend li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.pos-legend .lg-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #6b7c88;
  flex: none;
}
.pos-legend .lg-dot.me {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(205, 189, 155, 0.45);
}
.pos-legend b {
  color: var(--gold-deep);
  font-weight: 500;
}

.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media screen and (max-width: 920px) {
  .cmp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  .cmp-grid {
    grid-template-columns: 1fr;
  }
}

.cmp {
  background: var(--white);
  padding: 36px 30px;
}
.cmp h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  min-height: 3.4em;
}
.cmp .cnum {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 6px;
}
.cmp .cnum .n {
  font-family: var(--en);
  font-size: 44px;
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
}
.cmp .cnum .u {
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}
.cmp p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.95;
}
.cmp .vs {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 16px;
  color: #9a958a;
  letter-spacing: 0.08em;
}
.cmp .vs::before {
  content: "vs ";
  font-family: var(--en);
  font-style: italic;
  color: var(--gold);
}

/* ==================================================
   GUEST REVIEWS
   ================================================== */
.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.review-score .rs-main {
  text-align: center;
}
.review-score .rs-main .n {
  font-family: var(--en);
  font-size: clamp(60px, 7vw, 84px);
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
}
.review-score .rs-main .l {
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  display: block;
  margin-top: 8px;
}

.rs-listings {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.rs-listings li {
  background: var(--paper);
  padding: 16px 22px;
  text-align: center;
}
.rs-listings .ln {
  font-family: var(--en);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
}
.rs-listings .gf {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-left: 4px;
}
.rs-listings .lt {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  display: block;
}
.rs-listings .lc {
  font-size: 16px;
  color: var(--ink-soft);
}
@media screen and (max-width: 760px) {
  .rs-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(44px, 6vw, 64px);
}
.review-tags li {
  font-size: 16px;
  letter-spacing: 0.12em;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 7px 18px;
  color: var(--ink-soft);
}
.review-tags li b {
  font-family: var(--en);
  color: var(--gold-deep);
  font-weight: 500;
  margin-left: 6px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media screen and (max-width: 860px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 38px 32px;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--en);
  font-size: 74px;
  color: var(--gold-pale);
  line-height: 1;
}
.review p {
  font-size: 16px;
  line-height: 2.1;
  margin: 26px 0 24px;
}
.review .who {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review .who .w1 {
  font-size: 16px;
  letter-spacing: 0.14em;
  display: block;
}
.review .who .w2 {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
}

.review-note {
  margin-top: 34px;
  text-align: center;
  font-size: 16px;
  color: #9a958a;
}

/* ==================================================
   FACILITIES
   ================================================== */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media screen and (max-width: 820px) {
  .fac-grid {
    grid-template-columns: 1fr;
  }
}

.fac {
  background: var(--white);
}
.fac .fac-ph {
  overflow: hidden;
}
.fac img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform 1.4s ease;
}
.fac:hover img {
  transform: scale(1.05);
}
.fac .fac-tx {
  padding: 30px 28px 36px;
  border: 1px solid var(--line);
  border-top: none;
}
.fac .f-en {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.fac h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.16em;
  margin: 8px 0 14px;
}
.fac p {
  font-size: 16px;
  color: var(--ink-soft);
}

/* ==================================================
   TAX BENEFITS
   ================================================== */
.tax-head-fig {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 64px);
}
.tax-head-fig .n {
  font-family: var(--en);
  font-size: clamp(56px, 7vw, 80px);
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
}
.tax-head-fig .n .u {
  font-size: 0.45em;
}
.tax-head-fig .l {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  display: block;
  margin-top: 10px;
}

.tax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}
@media screen and (max-width: 920px) {
  .tax-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  .tax-grid {
    grid-template-columns: 1fr;
  }
}

.tax {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.tax h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tax h3::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.tax p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.95;
  flex: 1;
}
.tax .ef {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.tax-note {
  margin-top: 36px;
  font-size: 16px;
  color: #9a958a;
  line-height: 2.1;
}

/* ==================================================
   LOCATION
   ================================================== */
.loc-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: clamp(90px, 12vw, 140px) 24px;
  background-size: cover;
  background-position: center;
  text-align: center;
  background-image: url("../assets/img/spot-manza-beach.jpg");
}
.loc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 30, 41, 0.45);
}
.loc-hero > * {
  position: relative;
}
.loc-hero .le {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 18px;
}
.loc-hero h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.22em;
  line-height: 2;
}

.sec-location {
  padding-top: clamp(70px, 9vw, 110px);
}

.loc-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.loc-body .loc-tx p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .loc-body {
    grid-template-columns: 1fr;
  }
}

.loc-photos {
  position: sticky;
  top: 100px;
}
.loc-photos img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 820px) {
  .loc-photos {
    position: static;
  }
  .loc-photos img {
    aspect-ratio: 4/3;
  }
}

.access,
.spots {
  margin-top: clamp(60px, 8vw, 90px);
}
.access h3,
.spots h3 {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}
.access h3::after,
.spots h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.access-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.access-rows li {
  background: var(--paper);
  padding: 32px 22px 26px;
  text-align: center;
}
.access-rows .ar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-pale);
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.access-rows .ar-icon svg {
  width: 26px;
  height: 26px;
}
.access-rows .ar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.1em;
}
.access-rows .ar .sep {
  color: var(--gold);
  font-family: var(--en);
}
.access-rows .tm {
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 8px;
}
@media screen and (max-width: 760px) {
  .access-rows {
    grid-template-columns: 1fr;
  }
}

.spots-lead {
  font-family: var(--serif);
  letter-spacing: 0.18em;
  margin: -14px 0 30px;
  font-size: 16px;
  color: var(--ink-soft);
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 28px);
}
@media screen and (max-width: 880px) {
  .spot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  .spot-grid {
    grid-template-columns: 1fr;
  }
}

.spot {
  background: var(--white);
  border: 1px solid var(--line);
}
.spot .sp-ph {
  overflow: hidden;
  position: relative;
}
.spot img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s ease;
}
.spot:hover img {
  transform: scale(1.05);
}
.spot .dist {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(22, 48, 63, 0.82);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 6px 14px;
}
.spot .sp-tx {
  padding: 22px 22px 26px;
}
.spot h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.spot p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ==================================================
   FAQ
   ================================================== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq {
  border-bottom: 1px solid var(--line);
}
.faq button {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 26px 54px 26px 6px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--ink);
  position: relative;
  line-height: 1.9;
}
.faq button .qn {
  font-family: var(--en);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.14em;
  flex: none;
}
.faq button::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s;
}
.faq.open button::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq .ans-in {
  padding: 0 6px 30px 52px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 2.1;
}

.faq-cta {
  text-align: center;
  margin-top: clamp(44px, 6vw, 60px);
}
.faq-cta p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

/* ==================================================
   LIXIL
   ================================================== */
.lixil-figs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: clamp(44px, 6vw, 60px);
}
.lixil-figs li {
  background: var(--lixil);
  text-align: center;
  padding: 38px 14px;
}
.lixil-figs .n {
  font-family: var(--en);
  font-size: clamp(38px, 4.4vw, 54px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}
.lixil-figs .n .u {
  font-size: 0.45em;
}
.lixil-figs .l {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.88);
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 560px) {
  .lixil-figs {
    grid-template-columns: 1fr;
  }
}

.lixil-quote {
  max-width: 760px;
  margin: 0 auto clamp(44px, 6vw, 60px);
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  position: relative;
  padding-top: 34px;
}
.lixil-quote::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--en);
  font-size: 70px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}

.lixil-src {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
  margin-bottom: clamp(50px, 7vw, 70px);
}

.era-title {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin-bottom: 8px;
}

.era-sub {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 36px;
}

.era-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 880px) {
  .era-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  .era-grid {
    grid-template-columns: 1fr;
  }
}

.era {
  background: var(--lixil);
  padding: 32px 24px;
  text-align: center;
}
.era h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  color: #fff;
}
.era p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 2;
  text-align: left;
}

/* ==================================================
   RESERVATION
   ================================================== */
.resv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: clamp(44px, 6vw, 60px);
}
@media screen and (max-width: 760px) {
  .resv-grid {
    grid-template-columns: 1fr;
  }
}

.resv {
  background: var(--white);
  padding: 38px 30px;
  text-align: center;
}
.resv .rn {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 14px;
}
.resv h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.resv p {
  font-size: 16px;
  color: var(--ink-soft);
}

.resv-cta {
  text-align: center;
}

/* ==================================================
   COMPANY
   ================================================== */
.philosophy {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 80px);
}
.philosophy .pe {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.philosophy p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(19px, 2.6vw, 26px);
  letter-spacing: 0.22em;
  line-height: 2.4;
}

.history {
  margin-top: clamp(60px, 8vw, 90px);
}
.history h3 {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}
.history h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.timeline li {
  position: relative;
  padding: 0 0 34px 30px;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline .yr {
  font-family: var(--en);
  font-size: 21px;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  display: block;
}
.timeline .ev {
  font-size: 16px;
  letter-spacing: 0.08em;
}

/* ==================================================
   ページヒーロー
   ================================================== */
.form-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: clamp(140px, 18vw, 200px) 24px clamp(70px, 9vw, 100px);
  background-size: cover;
  background-position: center;
  text-align: center;
  background-image: url("../assets/img/hero-ocean.webp");
}
.form-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 30, 41, 0.5), rgba(13, 30, 41, 0.62));
}
.form-hero > * {
  position: relative;
}
.form-hero .fe {
  font-family: var(--en);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 18px;
}
.form-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.form-hero p {
  margin-top: 22px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

/* ==================================================
   説明会の3つのメリット
   ================================================== */
.benefits {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.benefits ul {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 720px) {
  .benefits ul {
    grid-template-columns: 1fr;
  }
}
.benefits li {
  text-align: center;
  padding: 34px 20px;
  border-left: 1px solid var(--line);
}
.benefits li:first-child {
  border-left: none;
}
@media screen and (max-width: 720px) {
  .benefits li {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .benefits li:first-child {
    border-top: none;
  }
}
.benefits .bn {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
}
.benefits .bt {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.12em;
  display: block;
  margin: 8px 0;
}
.benefits .bd {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ==================================================
   フォームセクション
   ================================================== */
.form-sec {
  padding: clamp(64px, 9vw, 110px) 0;
}
.form-sec .container {
  max-width: 1000px;
}

.form-head {
  text-align: center;
  margin-bottom: clamp(46px, 6vw, 64px);
}
.form-head .eyebrow {
  font-family: var(--en);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 14px;
  text-transform: none;
}
.form-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: 0.16em;
}
.form-head .rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

.form-note-top {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 16px;
  color: var(--ink-soft);
  text-align: center;
}
.form-note-top .is-req-word {
  color: var(--gold-deep);
}

/* お電話のご案内 */
.phone-notice {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--gold-pale);
  padding: 22px 26px;
}
.phone-notice .pn-ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(156, 131, 84, 0.1);
  color: var(--gold-deep);
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-notice .pn-ic svg {
  width: 24px;
  height: 24px;
}
.phone-notice p {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 560px) {
  .phone-notice {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ステップ表示 */
.steps-ind {
  max-width: 560px;
  margin: 0 auto clamp(38px, 5vw, 54px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.steps-ind .st {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: none;
}
.steps-ind .st.active .st-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.steps-ind .st.active .st-lbl {
  color: var(--gold-deep);
}
.steps-ind .st.done .st-num {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold-deep);
}
.steps-ind .st.done .st-lbl {
  color: var(--ink-soft);
}
.steps-ind .st-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--en);
  font-size: 16px;
  border: 1px solid var(--line);
  color: #a9a396;
  background: var(--white);
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}
.steps-ind .st-lbl {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #a9a396;
  transition: color 0.35s;
}
.steps-ind .st-bar {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 12px;
  position: relative;
  top: -11px;
  min-width: 30px;
}
.steps-ind .st-bar.done {
  background: var(--gold-pale);
}

/* ==================================================
   フォーム本体
   ================================================== */
form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 56px);
}

.field {
  margin-bottom: 30px;
}
.field:last-of-type {
  margin-bottom: 0;
}
.field label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field input[type=date],
.field input[type=time],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 15px 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  transition: border-color 0.25s, background 0.25s;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239c8354' stroke-width='1.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field .hint {
  font-size: 16px;
  color: #9a958a;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.field .errmsg {
  display: none;
  color: var(--err);
  font-size: 16px;
  margin-top: 8px;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--err);
  background: #fbf4f2;
}
.field.invalid .errmsg {
  display: block;
}

.req,
.opt {
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  line-height: 1.4;
  font-family: var(--sans);
  font-weight: 500;
}

.req {
  background: var(--gold);
  color: #fff;
}
.req.is-inline {
  margin-left: 4px;
}

.opt {
  background: #eae5da;
  color: var(--ink-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 560px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ラジオ・チェックボックス */
.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.choices label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 11px 20px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.06em;
  transition: border-color 0.25s, background 0.25s;
}
.choices label:has(input:checked) {
  border-color: var(--gold);
  background: #fff;
}
.choices input {
  accent-color: var(--gold);
  width: 17px;
  height: 17px;
  cursor: pointer;
}

/* 個人情報の取り扱い */
.privacy {
  margin-top: 34px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.privacy label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  cursor: pointer;
  font-family: var(--sans);
}
.privacy input {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  margin-top: 5px;
  flex: none;
  cursor: pointer;
}
.privacy .errmsg {
  display: none;
  color: var(--err);
  margin-top: 10px;
}

.submit-wrap {
  text-align: center;
  margin-top: 40px;
}

button.submit,
input.submit {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 19px 72px;
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
}
button.submit:hover,
input.submit:hover {
  background: transparent;
  color: var(--gold);
}

.form-note {
  max-width: 760px;
  margin: 30px auto 0;
  font-size: 16px;
  color: #9a958a;
  line-height: 1.9;
  text-align: center;
}

/* ==================================================
   確認画面
   ================================================== */
.confirm {
  display: none;
  max-width: 760px;
  margin: 0 auto;
}
.confirm.show {
  display: block;
}

.confirm-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
}

dl.cf {
  border-top: 1px solid var(--line);
}
dl.cf > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
@media screen and (max-width: 600px) {
  dl.cf > div {
    grid-template-columns: 1fr;
  }
}
dl.cf dt {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 18px 16px;
  background: rgba(156, 131, 84, 0.06);
  color: var(--gold-deep);
}
@media screen and (max-width: 600px) {
  dl.cf dt {
    padding: 14px 14px 4px;
    background: none;
  }
}
dl.cf dd {
  font-size: 16px;
  padding: 18px;
  letter-spacing: 0.04em;
  white-space: pre-wrap;
}
dl.cf dd.empty {
  color: #a9a396;
}
@media screen and (max-width: 600px) {
  dl.cf dd {
    padding: 0 14px 14px;
  }
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

button.btn-back {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  padding: 18px 44px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
button.btn-back:hover {
  background: var(--paper);
  border-color: var(--ink-soft);
}

/* ==================================================
   完了画面
   ================================================== */
.thanks {
  display: none;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(46px, 7vw, 80px) 28px;
}
.thanks.show {
  display: block;
}
.thanks .tk-mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin: 0 auto 26px;
  position: relative;
}
.thanks .tk-mark::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 19px;
  width: 12px;
  height: 24px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(42deg);
}
.thanks h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.thanks p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 2;
}
.thanks .back {
  display: inline-block;
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.18em;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 16px 48px;
  transition: background 0.35s, color 0.35s;
}
.thanks .back:hover {
  background: var(--navy);
  color: #fff;
}

/* ==================================================
   お問い合わせ先
   ================================================== */
.contact-info {
  background: var(--navy);
  color: #dfe3e2;
  padding: clamp(60px, 8vw, 90px) 0;
}
.contact-info .ci-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.contact-info .ci-head .eyebrow {
  font-family: var(--en);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-pale);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 12px;
  text-transform: none;
}
.contact-info .ci-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: 0.16em;
  color: #fff;
}

.ci-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@media screen and (max-width: 640px) {
  .ci-grid {
    grid-template-columns: 1fr;
  }
}

.ci {
  background: var(--navy);
  padding: 34px 30px;
}
.ci h3 {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gold-pale);
  margin-bottom: 14px;
}
.ci p {
  font-size: 16px;
  color: #c7cdd0;
  line-height: 2;
}

/* ==================================================
   Contact Form 7（WordPress側のフォーム）
   テンプレート側で .field / .req / .two-col を使っているので、
   ここではCF7が独自に出力する要素だけを調整する
   ================================================== */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  color: var(--err);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.wpcf7 .wpcf7-not-valid {
  border-color: var(--err);
  background: #fbf4f2;
}
.wpcf7 .wpcf7-response-output {
  margin: 26px 0 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--err);
  color: var(--err);
  background: #fbf4f2;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: var(--white);
}
.wpcf7 .wpcf7-spinner {
  margin: 0 0 0 14px;
}

.privacy-check {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.privacy-check .wpcf7-list-item {
  margin: 0;
}
.privacy-check label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.privacy-check input[type=checkbox] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  margin-top: 5px;
  flex: none;
  cursor: pointer;
}

.form-missing {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gold-pale);
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.08em;
}

button.submit:disabled,
input.submit:disabled,
.wpcf7-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button.submit:disabled:hover,
input.submit:disabled:hover,
.wpcf7-submit:disabled:hover {
  background: var(--gold);
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
