/* ============================================================
   ハイソウマンスリー沖縄 — alivio-inspired rebuild
   palette: bg #d6e4ea / teal #2ea6af / navy #082436 / white
   ============================================================ */

:root {
  --bg: #d6e4ea;
  --bg-2: #e4eef2;
  --teal: #2ea6af;
  --teal-d: #1f8d96;
  --teal-l: #7fd0d4;
  --navy: #082436;
  --ink: #0d3242;
  --muted: #5c7787;
  --coral: #ec6a52;
  --white: #fff;
  --line: #b9d0d9;
  --font-en: "Inter", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --wrap: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; color: var(--teal); }

.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.wrap--narrow { max-width: 800px; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-en); font-weight: 600; letter-spacing: .35em;
  font-size: .72rem; color: var(--teal-d); margin-bottom: 22px;
}
.eyebrow--light { color: #aee3e6; }
.head-jp { font-family: var(--font-jp); font-weight: 700; font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.5; color: var(--navy); letter-spacing: .02em; }
.big-head { margin-bottom: 54px; }
.big-head--center { text-align: center; }
.head-en {
  font-family: var(--font-en); font-weight: 300; letter-spacing: .22em;
  font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 1; color: var(--navy);
}
.head-en--light { color: #fff; }
.head-jp-sub { font-weight: 700; color: var(--navy); margin-top: 14px; letter-spacing: .14em; font-size: .98rem; }
.big-head--center .head-en { text-indent: .22em; }

/* view-more link */
.view-more {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 30px;
  font-family: var(--font-en); font-weight: 500; letter-spacing: .14em; font-size: .82rem;
  color: var(--navy); text-transform: none;
}
.view-more .circ {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--teal);
  position: relative; transition: background .35s var(--ease);
}
.view-more .circ::after {
  content: "→"; position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--teal); transition: transform .35s var(--ease), color .35s;
}
.view-more:hover .circ { background: var(--teal); }
.view-more:hover .circ::after { color: #fff; transform: translateX(3px); }

/* outline button */
.btn-outline {
  display: inline-flex; align-items: center; gap: 30px;
  padding: 16px 26px 16px 34px; border: 1px solid var(--teal);
  border-radius: 100px; font-family: var(--font-en); letter-spacing: .12em; font-size: .85rem;
  color: var(--navy); font-weight: 500; transition: background .35s var(--ease), color .35s;
}
.btn-outline i { font-style: normal; font-size: 1.2rem; color: var(--teal); transition: transform .35s var(--ease); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-outline:hover i { color: #fff; transform: rotate(90deg); }
.btn-outline--light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline--light i { color: #fff; }
.btn-outline--light:hover { background: #fff; color: var(--navy); }
.btn-outline--light:hover i { color: var(--navy); }
.btn-outline--lg { padding: 20px 30px 20px 40px; font-size: .95rem; gap: 40px; }

/* ---------- rotating seal ---------- */
.seal { position: relative; width: 152px; height: 152px; display: grid; place-items: center; }
.seal__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.seal__ring text { font-family: var(--font-en); font-size: 8.4px; letter-spacing: 2px; fill: var(--navy); font-weight: 700; }
.seal__core {
  width: 80px; height: 80px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; line-height: 1.1; text-align: center;
}
.seal__core b { font-size: 1.08rem; font-weight: 700; }
.seal__core small { font-family: var(--font-en); font-size: .56rem; letter-spacing: .15em; opacity: .8; display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 46px); transition: padding .35s, background .35s;
}
.header.is-scrolled { background: rgba(214, 228, 234, .82); backdrop-filter: blur(12px); padding-top: 14px; padding-bottom: 14px; }
/* When the mobile menu is open, drop backdrop-filter so the fixed full-screen
   overlay is positioned relative to the viewport (backdrop-filter creates a
   containing block for fixed descendants and breaks the menu when scrolled). */
body.nav-open .header, body.nav-open .header.is-scrolled { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
body.nav-open { position: fixed; width: 100%; overflow: hidden; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo__img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 14px -6px rgba(8,36,54,.5); background: #fff; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; letter-spacing: .18em; color: var(--navy); }
.logo__sub { font-family: var(--font-en); font-size: .56rem; letter-spacing: .26em; color: var(--teal-d); }

.gnav { display: flex; gap: 20px; margin-left: auto; margin-right: 24px; }
.gnav a { font-size: .8rem; font-weight: 500; color: var(--navy); position: relative; padding: 4px 0; transition: color .25s; white-space: nowrap; }
.gnav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--teal); transition: width .3s var(--ease); }
.gnav a:hover { color: var(--teal-d); }
.gnav a:hover::after { width: 100%; }

.header__cta { margin-left: 22px; background: var(--teal); color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .04em; padding: 11px 24px; border-radius: 100px; transition: background .3s, transform .3s var(--ease); box-shadow: 0 10px 22px -12px rgba(46,166,175,.9); }
.header__cta:hover { background: var(--teal-d); transform: translateY(-2px); }

.menu-btn { display: none; flex-direction: column; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; }
.menu-btn span { display: block; width: 28px; height: 1.5px; background: var(--navy); transition: transform .35s var(--ease), opacity .25s; }
.menu-btn em { font-family: var(--font-en); font-style: normal; font-size: .56rem; letter-spacing: .2em; color: var(--navy); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 0; background: var(--bg); }
.hero__frame { position: relative; height: 100svh; min-height: 620px; }
.hero__photo { position: absolute; inset: 92px 24px 30px 56px; overflow: hidden; border-radius: 30px 30px clamp(70px, 11vw, 150px) clamp(140px, 24vw, 360px); }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s var(--ease); }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide.is-active img { animation: heroZoom 7s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__copy { position: absolute; left: clamp(40px, 8vw, 120px); top: 46%; transform: translateY(-50%); color: #fff; z-index: 3; }
.hero__pre { font-weight: 500; letter-spacing: .12em; font-size: clamp(.92rem, 1.8vw, 1.15rem); margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.hero__news-date small { font-size: .68rem; font-weight: 600; color: var(--muted); margin-left: 2px; }
.hero__title-jp { display: block; font-weight: 500; font-size: clamp(2rem, 5.6vw, 4rem); letter-spacing: .04em; text-shadow: 0 4px 28px rgba(0,0,0,.3); }
.hero__title-en { display: block; font-family: var(--font-en); font-weight: 300; font-size: clamp(.95rem, 2vw, 1.5rem); letter-spacing: .12em; margin-top: 12px; opacity: .96; text-shadow: 0 2px 18px rgba(0,0,0,.35); }

.hero__news {
  position: absolute; left: clamp(20px, 5vw, 56px); bottom: 40px; z-index: 4;
  background: #fff; padding: 22px 30px 24px; border-radius: 20px; max-width: 380px;
  box-shadow: 0 28px 56px -26px rgba(8,36,54,.45);
}
.hero__news-date { display: block; font-weight: 700; letter-spacing: .02em; color: var(--navy); font-size: 1.3rem; }
.hero__news-date small { font-size: .76rem; color: var(--muted); }
.hero__news-text { font-size: .8rem; color: var(--muted); margin: 6px 0 0; line-height: 1.6; }
.hero__news .view-more { margin-top: 16px; }

.seal--hero { position: absolute; right: 40px; bottom: 40px; z-index: 4; }

/* ---------- decorative thread ---------- */
.thread { position: absolute; pointer-events: none; opacity: .7; }
.thread path { fill: none; stroke: var(--teal); stroke-width: 1.4; stroke-dasharray: 3 9; stroke-linecap: round; animation: dashFlow 1.4s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -120; } }
.thread--about { top: 60px; left: 0; width: 46%; height: 360px; z-index: 0; }

/* ---------- About ---------- */
.about { position: relative; padding: clamp(90px, 12vw, 150px) 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: center; position: relative; z-index: 2; }
.about__lead { margin-top: 28px; font-weight: 700; color: var(--navy); line-height: 2; font-size: 1rem; }
.about__text { margin-top: 18px; color: var(--muted); font-size: .94rem; }
.about__media img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; border-radius: 18px; box-shadow: 0 30px 60px -30px rgba(8,36,54,.4); }

/* ---------- Feature ---------- */
.feature { position: relative; padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px); overflow: hidden; }
.blob--feature { position: absolute; top: 30px; right: clamp(-60px, -2vw, 0px); width: clamp(300px, 34vw, 470px); aspect-ratio: 1.1/1; z-index: 0; opacity: .92; }
.blob__l { position: absolute; inset: 0; margin: auto; }
.blob__l1 { width: 100%; height: 100%; background: #2ea6af; animation: blobMorph 18s ease-in-out infinite, blobSpin 40s linear infinite; }
.blob__l2 { width: 76%; height: 76%; background: #4cb9c0; animation: blobMorph 14s ease-in-out infinite reverse, blobSpin 32s linear infinite reverse; }
.blob__l3 { width: 52%; height: 52%; background: #7fd0d4; animation: blobMorph 11s ease-in-out infinite, blobSpin 26s linear infinite; }
@keyframes blobMorph {
  0%,100% { border-radius: 42% 58% 63% 37% / 45% 38% 62% 55%; }
  34%     { border-radius: 62% 38% 40% 60% / 58% 56% 44% 42%; }
  67%     { border-radius: 38% 62% 56% 44% / 40% 60% 40% 60%; }
}
@keyframes blobSpin { to { transform: rotate(360deg); } }
.blob__fish { position: absolute; width: 30px; height: 12px; color: #0c5b63; }
.blob__fish--1 { top: 42%; left: 34%; animation: swimX 9s ease-in-out infinite, bob 3s ease-in-out infinite; }
.blob__fish--2 { top: 56%; left: 48%; width: 22px; animation: swimX 7s ease-in-out infinite reverse, bob 2.4s ease-in-out infinite; }
.blob__fish--3 { top: 64%; left: 30%; width: 26px; animation: swimX 11s ease-in-out infinite, bob 3.6s ease-in-out infinite .5s; }
@keyframes swimX { 0%,100% { transform: translateX(-18px) scaleX(1); } 49% { transform: translateX(60px) scaleX(1); } 50% { transform: translateX(60px) scaleX(-1); } 99% { transform: translateX(-18px) scaleX(-1); } }
@keyframes bob { 0%,100% { margin-top: 0; } 50% { margin-top: -8px; } }
.feature .wrap { position: relative; z-index: 2; }

.feature__list { display: flex; flex-direction: column; gap: clamp(46px, 6vw, 84px); margin-top: 30px; }
.fitem { display: grid; grid-template-columns: 260px 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; position: relative; }
.fitem:nth-child(even) { grid-template-columns: 1fr 260px; }
.fitem:nth-child(even) .fitem__circle { order: 2; }
.fitem__no {
  position: absolute; font-family: var(--font-en); font-weight: 200; font-size: clamp(4rem, 9vw, 7rem);
  color: var(--teal-l); opacity: .5; bottom: -30px; z-index: -1;
}
.fitem:nth-child(odd) .fitem__no { left: 220px; }
.fitem:nth-child(even) .fitem__no { right: 220px; }
.fitem__circle {
  width: 260px; height: 260px; border-radius: 50%; overflow: hidden; position: relative;
  box-shadow: 0 30px 60px -28px rgba(8,36,54,.45); justify-self: center;
}
.fitem__circle img { width: 100%; height: 100%; object-fit: cover; }
.fitem__circle::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,36,54,.5), transparent 60%); }
.fitem__circle-label {
  position: absolute; left: 0; right: 0; bottom: 26px; text-align: center; z-index: 2;
  color: #fff; font-weight: 700; letter-spacing: .1em; font-size: 1.05rem;
}
.fitem__body h3 { font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--navy); margin-bottom: 16px; letter-spacing: .02em; }
.fitem__body p { color: var(--muted); font-size: .95rem; max-width: 520px; }

.fish-school { width: 100%; max-width: 520px; height: auto; margin: 50px auto 0; display: block; opacity: .85; color: var(--teal); }
.fish--red { color: var(--coral); }
.fish-school use { animation: fishBob 3.2s ease-in-out infinite; }
.fish-school use:nth-child(2) { animation-duration: 3.8s; animation-delay: -.6s; }
.fish-school use:nth-child(3) { animation-duration: 2.9s; animation-delay: -1.2s; }
.fish-school use:nth-child(4) { animation-duration: 3.5s; animation-delay: -.3s; }
.fish-school use:nth-child(5) { animation-duration: 2.6s; animation-delay: -.9s; }
.fish-school use:nth-child(6) { animation-duration: 3.9s; animation-delay: -1.5s; }
.fish-school use:nth-child(7) { animation-duration: 3.1s; animation-delay: -.4s; }
.fish-school use:nth-child(8) { animation-duration: 3.4s; animation-delay: -1.1s; }
@keyframes fishBob { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,-7px); } }

/* ---------- Marquee band ---------- */
.marquee { background: var(--teal); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; will-change: transform; }
.marquee__set { display: flex; align-items: center; gap: 26px; min-width: 100vw; justify-content: space-around; padding-right: 26px; flex-shrink: 0; }
.marquee__set span { font-family: var(--font-en); font-weight: 600; letter-spacing: .14em; font-size: 1rem; color: #fff; white-space: nowrap; }
.marquee__dot { font-size: .5rem !important; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Contact top wave ---------- */
.contact__wave { position: absolute; top: -1px; left: 0; width: 100%; height: clamp(70px, 9vw, 130px); overflow: hidden; line-height: 0; }
.contact__wave svg { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; will-change: transform; }
.contact__wave svg:first-child { fill: var(--teal-l); opacity: .55; animation: waveSlide 9s linear infinite; }
.contact__wave svg:last-child { fill: var(--teal); animation: waveSlideRev 7s linear infinite; }
@keyframes waveSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes waveSlideRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- Plan ---------- */
.plan { padding: clamp(80px, 10vw, 130px) 0; }
.plan__card {
  background: #fff; border-radius: 28px; padding: clamp(34px, 5vw, 60px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: center;
  box-shadow: 0 40px 80px -44px rgba(8,36,54,.5); position: relative; overflow: hidden;
}
.plan__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--teal), var(--coral)); }
.plan__name { font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.plan__desc { color: var(--muted); font-size: .88rem; margin-top: 6px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin: 20px 0 6px; color: var(--navy); }
.plan__yen { font-family: var(--font-en); font-size: 1.6rem; font-weight: 600; }
.plan__num { font-family: var(--font-en); font-size: clamp(3.4rem, 8vw, 5rem); font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.plan__unit { font-weight: 700; color: var(--muted); font-size: .98rem; }
.plan__tax { font-weight: 700; color: var(--muted); font-size: .88rem; margin: -2px 0 12px; }
.plan__min { display: inline-block; background: var(--bg-2); color: var(--teal-d); font-weight: 700; font-size: .82rem; padding: 6px 16px; border-radius: 100px; }
.plan__extra { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.plan__extra li { background: #fff; border-radius: 14px; padding: 16px 20px; font-size: .86rem; color: var(--ink); line-height: 1.7; }
.plan__extra b { display: block; font-size: .72rem; color: var(--teal-d); font-weight: 700; letter-spacing: .06em; margin-bottom: 2px; }
.plan__includes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.plan__includes li { position: relative; padding-left: 30px; font-weight: 500; font-size: .94rem; color: var(--ink); }
.plan__includes li::before { content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--teal); color: #fff; font-size: .68rem; display: grid; place-items: center; }
.plan__note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 24px; }

/* ---------- Car Models ---------- */
.models { position: relative; padding: 0 0 clamp(80px, 10vw, 130px); margin-top: clamp(40px, 6vw, 80px); }
.models__wave { line-height: 0; }
.models__wave svg { width: 100%; height: clamp(120px, 14vw, 220px); display: block; }
.models__bg { position: absolute; left: 0; right: 0; top: clamp(118px, 13.5vw, 215px); bottom: 0; background: var(--teal); z-index: -1; }
.models .wrap { position: relative; z-index: 2; padding-top: 10px; }
.models__intro { color: rgba(255,255,255,.92); max-width: 640px; margin-top: -34px; margin-bottom: 50px; font-weight: 500; }
.eyebrow--light { color: #d4f1f3; }

.models__list { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 50px); }
.model { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: center; }
.model--rev { grid-template-columns: 1fr 1.3fr; }
.model--rev .model__photo { order: 2; }
.model__photo img { width: 100%; filter: drop-shadow(0 28px 26px rgba(0,30,34,.4)); }
.model__info { color: #fff; }
.model--rev .model__info { text-align: right; }
.model__info h3 { font-family: var(--font-en); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: .08em; display: flex; align-items: baseline; gap: 16px; }
.model--rev .model__info h3 { justify-content: flex-end; }
.model__info h3 span { font-family: var(--font-jp); font-weight: 500; font-size: .92rem; letter-spacing: .04em; color: rgba(255,255,255,.9); }
.model__spec { border-top: 1px solid rgba(255,255,255,.4); margin-top: 16px; padding-top: 14px; font-size: .9rem; color: rgba(255,255,255,.92); }

.models__cta { display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: clamp(50px, 6vw, 80px); text-align: center; }
.models__cta .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.models__cta .btn-outline i { color: #fff; }
.models__cta .btn-outline:hover { background: #fff; color: var(--navy); }
.models__cta .btn-outline:hover i { color: var(--navy); }
.models__note { font-size: .78rem; color: rgba(255,255,255,.8); max-width: 600px; }

/* ---------- Flow ---------- */
.flow { padding: clamp(80px, 10vw, 130px) 0; }
.flow__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flow__list li { background: #fff; border-radius: 20px; padding: 38px 26px 30px; position: relative; }
.flow__list li::after { content: ""; position: absolute; right: -14px; top: 50%; width: 10px; height: 10px; border-top: 1.5px solid var(--teal); border-right: 1.5px solid var(--teal); transform: translateY(-50%) rotate(45deg); }
.flow__list li:last-child::after { display: none; }
.flow__no { font-family: var(--font-en); font-weight: 700; font-size: .92rem; color: #fff; background: var(--teal); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; }
.flow__list h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.flow__list p { color: var(--muted); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(60px, 8vw, 110px) 0; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border-radius: 16px; overflow: hidden; transition: box-shadow .3s; }
.faq__item[open] { box-shadow: 0 20px 40px -28px rgba(8,36,54,.4); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 58px 22px 26px; font-weight: 700; color: var(--navy); position: relative; font-size: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before { content: "Q"; font-family: var(--font-en); color: var(--teal); font-weight: 700; margin-right: 14px; }
.faq__item summary::after { content: ""; position: absolute; right: 28px; top: 50%; width: 12px; height: 12px; border-right: 1.5px solid var(--teal); border-bottom: 1.5px solid var(--teal); transform: translateY(-65%) rotate(45deg); transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq__a { padding: 0 26px 24px; }
.faq__a p { color: var(--muted); font-size: .92rem; }

/* ---------- Company ---------- */
.company { padding: clamp(60px, 8vw, 110px) 0; }
.company__table { width: 100%; max-width: 800px; margin-inline: auto; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px -34px rgba(8,36,54,.4); }
.company__table th, .company__table td { text-align: left; padding: 20px 28px; border-bottom: 1px solid var(--bg); font-size: .94rem; }
.company__table tr:last-child th, .company__table tr:last-child td { border-bottom: none; }
.company__table th { width: 32%; background: var(--bg-2); font-weight: 700; color: var(--navy); }
.company__table td { color: var(--ink); font-weight: 500; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: #fff; padding: clamp(80px, 11vw, 130px) 0; text-align: center; position: relative; overflow: hidden; }
.contact::before { content: "CONTACT"; position: absolute; left: 50%; top: 6%; transform: translateX(-50%); font-family: var(--font-en); font-weight: 700; font-size: clamp(4rem, 16vw, 13rem); color: rgba(255,255,255,.04); letter-spacing: .1em; pointer-events: none; }
.contact__inner { position: relative; z-index: 2; }
.contact__title { font-size: clamp(1.7rem, 4.4vw, 2.8rem); font-weight: 700; line-height: 1.5; margin-bottom: 16px; }
.contact__lead { color: rgba(255,255,255,.78); font-size: .92rem; }
.contact__box { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; margin-top: 44px; }
.contact__tel { display: flex; flex-direction: column; line-height: 1.3; }
.contact__tel small { font-size: .72rem; color: rgba(255,255,255,.7); letter-spacing: .05em; }
.contact__tel b { font-family: var(--font-en); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; letter-spacing: .02em; margin: 4px 0; }
.contact__tel span { font-size: .74rem; color: rgba(255,255,255,.7); }
.contact__hours { margin-top: 26px; font-size: .82rem; color: rgba(255,255,255,.72); letter-spacing: .04em; }

/* ---------- Footer ---------- */
.footer { background: #061a27; color: #9fb6c2; padding: 56px 0 0; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: center; padding-bottom: 40px; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__name { font-family: var(--font-serif); font-weight: 600; letter-spacing: .16em; color: #fff; font-size: 1.3rem; }
.footer__op { font-size: .76rem; color: #7f97a4; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__nav a { font-size: .84rem; transition: color .25s; }
.footer__nav a:hover { color: #fff; }
.footer__copy { border-top: 1px solid rgba(255,255,255,.08); text-align: center; padding: 20px 0; font-family: var(--font-en); font-size: .72rem; letter-spacing: .08em; color: #6d8593; }

/* ---------- Float CTA ---------- */
.float-cta { position: fixed; right: 16px; bottom: 16px; z-index: 90; background: var(--coral); color: #fff; font-weight: 700; padding: 14px 26px; border-radius: 100px; box-shadow: 0 16px 30px -12px rgba(236,106,82,.8); display: none; }

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
[data-speed] { will-change: transform; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: grid; place-items: center; transition: opacity .8s var(--ease), visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader__logo { width: 66px; height: 66px; border-radius: 50%; box-shadow: 0 10px 26px -10px rgba(8,36,54,.5); animation: loaderPulse 1.5s var(--ease) infinite; }
.loader__name { font-family: var(--font-serif); font-weight: 600; letter-spacing: .26em; color: var(--navy); font-size: 1.05rem; }
.loader__bar { width: 150px; height: 2px; background: rgba(8,36,54,.12); border-radius: 2px; overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 40%; background: var(--teal); border-radius: 2px; animation: loaderBar 1.3s var(--ease) infinite; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes loaderBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__slide img, .seal__ring, .blob__l, .blob__fish, .fish-school use, .marquee__track, .contact__wave svg, .thread path { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================ Responsive */
@media (max-width: 1180px) {
  .gnav { display: flex; position: fixed; inset: 0; width: 100%; height: 100%; background: #eaf3f6; flex-direction: column; justify-content: center; gap: 0; margin: 0; padding: 96px 36px 48px; z-index: 90; transform: translateX(100%); transition: transform .45s var(--ease); overflow-y: auto; visibility: hidden; }
  .gnav.is-open { transform: none; visibility: visible; }
  .gnav a { width: 100%; max-width: 460px; margin: 0 auto; padding: 20px 6px; border-bottom: 1px solid var(--line); font-size: 1.12rem; font-weight: 700; color: var(--navy); }
  .header__cta { display: none; }
  .plan__extra { grid-template-columns: 1fr; }
  .logo { position: relative; z-index: 101; }
  .menu-btn { display: flex; z-index: 101; margin-left: auto; }
  .fitem, .fitem:nth-child(even) { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .fitem:nth-child(even) .fitem__circle { order: 0; }
  .fitem__no { position: static; opacity: .4; }
  .fitem:nth-child(odd) .fitem__no, .fitem:nth-child(even) .fitem__no { left: auto; right: auto; }
  .fitem__body p { margin-inline: auto; }
  .plan__card { grid-template-columns: 1fr; }
  .model, .model--rev { grid-template-columns: 1fr; text-align: center; }
  .model--rev .model__photo, .model--rev .model__info { order: 0; text-align: center; }
  .model__info h3, .model--rev .model__info h3 { justify-content: center; flex-direction: column; gap: 6px; align-items: center; }
  .flow__list { grid-template-columns: 1fr 1fr; }
  .flow__list li:nth-child(2)::after { display: none; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .hero__photo { inset: 76px 14px 20px 14px; border-radius: 20px 20px clamp(40px, 12vw, 90px) clamp(70px, 24vw, 150px); }
  .hero__copy { left: 24px; right: 24px; }
  .hero__news { left: 14px; right: 14px; bottom: 28px; max-width: none; padding: 18px 22px 20px; }
  .hero__news-date { font-size: 1.18rem; }
  .seal--hero { display: none; }
  .seal { width: 96px; height: 96px; }
  .float-cta { display: block; }
}
@media (max-width: 540px) {
  .plan__includes, .flow__list { grid-template-columns: 1fr; }
  .flow__list li::after { content: ""; right: 50%; top: auto; bottom: -13px; transform: translateX(50%) rotate(135deg); }
  .flow__list li:last-child::after { display: none; }
  .contact__box { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .company__table th { width: 38%; padding: 16px; }
  .company__table td { padding: 16px; }
}

/* ============================================================
   Blog / Pages (WordPress templates)
   ============================================================ */
.page-main { padding: clamp(120px, 16vw, 180px) 0 clamp(70px, 10vw, 120px); min-height: 70vh; }
.page-head { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }
.page-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--navy); margin-top: 10px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px -34px rgba(8,36,54,.4); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(8,36,54,.45); }
.post-card__link { display: block; height: 100%; }
.post-card__thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--sky), #d4eefa); overflow: hidden; display: grid; place-items: center; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__noimg { font-family: var(--font-en); font-weight: 700; letter-spacing: .2em; color: var(--teal); opacity: .5; }
.post-card__body { padding: 20px 22px 26px; }
.post-card__date { font-family: var(--font-en); font-size: .78rem; color: var(--teal-d); font-weight: 600; }
.post-card__title { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin: 8px 0 10px; line-height: 1.5; }
.post-card__excerpt { font-size: .86rem; color: var(--muted); }

.pagination { margin-top: 50px; display: flex; justify-content: center; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; margin: 0 4px; border-radius: 100px; background: #fff; color: var(--navy); font-family: var(--font-en); font-weight: 600; box-shadow: 0 10px 24px -16px rgba(8,36,54,.4); transition: background .25s, color .25s; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--teal); color: #fff; }
.no-posts { text-align: center; color: var(--muted); }

.single__head { text-align: center; margin-bottom: 36px; }
.single__date { font-family: var(--font-en); font-size: .82rem; color: var(--teal-d); font-weight: 600; }
.single__title { font-size: clamp(1.5rem, 3.6vw, 2.2rem); font-weight: 900; color: var(--navy); margin: 12px 0; line-height: 1.5; }
.single__cats a { font-size: .8rem; color: var(--teal-d); }
.single__thumb { border-radius: 18px; overflow: hidden; margin-bottom: 36px; }
.single__body { color: var(--ink); line-height: 2; }
.single__body > * { margin-bottom: 1.3em; }
.single__body h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 1.6em 0 .6em; padding-left: 14px; border-left: 4px solid var(--teal); }
.single__body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 1.4em 0 .5em; }
.single__body a { color: var(--teal-d); text-decoration: underline; }
.single__body img { border-radius: 12px; height: auto; }
.single__body ul, .single__body ol { padding-left: 1.4em; }
.single__body ul li { list-style: disc; }
.single__body ol li { list-style: decimal; }
.single__body blockquote { border-left: 4px solid var(--line); padding: 4px 0 4px 20px; color: var(--muted); }
.single__nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; font-size: .9rem; }
.single__nav a { color: var(--teal-d); font-weight: 600; }
.single__nav-next { margin-left: auto; text-align: right; }
.single__back { text-align: center; margin-top: 40px; }
.single__back a { display: inline-block; padding: 12px 30px; border: 1px solid var(--teal); border-radius: 100px; color: var(--navy); font-weight: 700; transition: background .25s, color .25s; }
.single__back a:hover { background: var(--teal); color: #fff; }

@media (max-width: 880px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }

/* ============================================================
   News section (front page) & Quote form
   ============================================================ */
.news { padding: clamp(70px, 9vw, 120px) 0; }
.news__more { text-align: center; margin-top: 46px; }

/* Quote form */
.quote-main { padding-top: clamp(120px, 16vw, 180px); }
.quote-lead { text-align: center; color: var(--muted); margin-bottom: 36px; }
.quote-lead .req { color: var(--coral); font-weight: 700; }
.quote-errors { background: #fff3f0; border: 1px solid #f6c7bd; border-radius: 14px; padding: 16px 22px; margin-bottom: 26px; }
.quote-errors p { color: #c0432a; font-size: .9rem; font-weight: 600; }
.quote-errors p + p { margin-top: 4px; }

.quote-form { background: #fff; border-radius: 22px; padding: clamp(28px, 5vw, 48px); box-shadow: 0 30px 64px -38px rgba(8,36,54,.45); }
.quote-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { display: block; font-weight: 700; color: var(--navy); font-size: .92rem; margin-bottom: 8px; }
.field .req { color: var(--coral); margin-left: 4px; }
.field .opt { color: var(--muted); font-weight: 500; font-size: .82rem; }
.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form input[type="date"],
.quote-form textarea {
	width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
	font-family: var(--font-jp); font-size: 1rem; color: var(--ink); background: var(--sky-2);
	transition: border-color .25s, box-shadow .25s, background .25s;
}
.quote-form input:focus, .quote-form textarea:focus {
	outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(46,166,175,.15);
}
.quote-form textarea { resize: vertical; min-height: 120px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 8px; cursor: pointer; }
.field-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal); }
.field-check span { font-size: .9rem; color: var(--muted); }
.quote-submit { text-align: center; margin-top: 30px; }
.btn-quote {
	appearance: none; border: none; cursor: pointer; font-family: var(--font-jp);
	background: linear-gradient(135deg, var(--coral), #ef5527); color: #fff; font-weight: 700; font-size: 1.05rem;
	padding: 17px 60px; border-radius: 100px; box-shadow: 0 16px 30px -12px rgba(236,106,82,.8);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-quote:hover { transform: translateY(-3px); box-shadow: 0 22px 38px -14px rgba(236,106,82,.85); }

.quote-done { text-align: center; background: #fff; border-radius: 22px; padding: clamp(40px, 7vw, 70px) 30px; box-shadow: 0 30px 64px -38px rgba(8,36,54,.45); }
.quote-done__icon { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: 2rem; }
.quote-done h2 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.quote-done p { color: var(--muted); margin-bottom: 30px; }

@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }


/* --- hamburger X fix --- */
.menu-btn em { transition: opacity .25s; }
.menu-btn.is-open em { opacity: 0; }
.menu-btn:focus:not(:focus-visible) { outline: none; }

/* mobile nav items: smaller */
@media (max-width: 1180px) {
  .gnav a { padding: 12px 6px; font-size: .95rem; }
}

/* mobile header/hero overlap fix */
@media (max-width: 760px) {
  .header { padding: 14px 18px; }
  .logo__img { width: 40px; height: 40px; }
  .logo__name { font-size: 1.05rem; letter-spacing: .1em; white-space: nowrap; }
  .hero__photo { inset: 86px 14px 20px 14px; }
}

/* price unit note: nice mobile wrap */
.plan__unit-note { font-weight: 700; color: var(--muted); font-size: .98rem; }
@media (max-width: 760px) {
  .plan__price { flex-wrap: wrap; }
  .plan__unit { white-space: nowrap; }
  .plan__unit-note { flex-basis: 100%; width: 100%; font-size: .8rem; margin-top: 2px; }
}

/* plan__min pill: nicer on mobile */
@media (max-width: 760px) {
  .plan__min { font-size: .72rem; padding: 7px 15px; line-height: 1.5; text-align: center; border-radius: 20px; }
}

/* mobile: narrower vertical section padding (top/bottom only) */
@media (max-width: 760px) {
  .about, .plan, .flow, .faq, .company, .contact, .news { padding-top: 36px; padding-bottom: 36px; }
  .feature { padding-top: 32px; padding-bottom: 40px; }
}

/* mobile: flow number beside title, desc full-width below */
@media (max-width: 540px) {
  .flow__list li { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: center; padding: 22px 22px 24px; }
  .flow__no { margin-bottom: 0; }
  .flow__list h3 { margin-bottom: 0; }
  .flow__list p { grid-column: 1 / -1; margin-top: 12px; }
}

/* mobile: feature number to top-left */
@media (max-width: 760px) {
  .fitem__no { justify-self: start; margin-left: 4px; transform: translateY(40px); }
}

/* mobile: smaller hero news card (float CTA untouched) */
@media (max-width: 760px) {
  .hero__news { padding: 13px 18px 14px; border-radius: 16px; }
  .hero__news-date { font-size: 1rem; }
  .hero__news-date small { font-size: .66rem; }
  .hero__news-text { font-size: .72rem; margin-top: 4px; }
  .hero__news .view-more { margin-top: 10px; gap: 10px; font-size: .74rem; }
  .hero__news .view-more .circ { width: 34px; height: 34px; }
}
