/* ============================================================
   AI伴走者 — site styles
   Bright, friendly, approachable (kintone-inspired) B2B
   Palette: warm cream / terracotta-orange / soft navy + accents
   ============================================================ */

:root {
  /* base — white background, 3-color brand system (teal / amber / deep-teal) */
  --cream: #F7FAF9;        /* near-white page base */
  --cream-2: #EAF3F1;      /* faint teal-tinted surface */
  --paper: #FFFFFF;
  --ink: #22343B;          /* text */
  --ink-2: #3C4D54;
  --body: #51616A;
  --muted: #8A969B;
  --hairline: #E4EDEA;
  --hairline-2: #E1EAE7;

  /* brand accents — amber(warm) / teal(brand) / deep-teal(accent), harmonized */
  --orange: #E9A23B;       /* amber — warm accent / CTA */
  --orange-deep: #C5811F;  /* darker amber for links / hover / active */
  --orange-soft: #FBEFD6;
  --teal: #2A9D8F;         /* teal — primary brand */
  --teal-soft: #D6EDE9;
  --sky: #1D6F7A;          /* deep teal — secondary accent */
  --sky-soft: #D7E7E9;
  --yellow: #E9A23B;       /* folded into amber */
  --yellow-soft: #FBEFD6;
  --pink: #1D6F7A;         /* folded into deep teal */
  --pink-soft: #D7E7E9;
  --navy: #16454D;         /* deep-teal ink for dark bands (footer / voice) */

  --shadow-sm: 0 4px 14px rgba(42,51,70,0.06);
  --shadow: 0 12px 34px rgba(42,51,70,0.09);
  --shadow-lg: 0 24px 60px rgba(42,51,70,0.14);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-round: "M PLUS Rounded 1c", system-ui, sans-serif;
  --font-body: "Noto Sans JP", system-ui, sans-serif;
  --font-latin: "Poppins", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------------------------------------------------------- nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,248,238,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.logo .mark {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(240,130,58,0.36);
  transform: rotate(-4deg);
}
.logo .mark span { transform: rotate(4deg); }
.logo b { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--orange-soft); color: var(--orange-deep); }
.nav-links a.active { color: var(--orange-deep); }
.nav-cta {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  color: #fff !important;
  background: var(--orange);
  padding: 11px 22px !important;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px rgba(240,130,58,0.34);
  transition: transform .18s, box-shadow .18s;
}
.nav-cta:hover { background: var(--orange) !important; color:#fff !important; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(240,130,58,0.42); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .22s;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 16px; font-size: 17px; }
  .nav-cta { text-align: center; margin-top: 6px; }
}

/* ---------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 800;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: transform .18s, box-shadow .18s, background .18s;
  line-height: 1;
}
.btn svg { width: 1.25em; height: 1.25em; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  font-size: 19px;
  padding: 18px 34px;
  box-shadow: 0 12px 26px rgba(240,130,58,0.36);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(240,130,58,0.46); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  padding: 16px 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--hairline-2);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-white {
  background: #fff;
  color: var(--orange-deep);
  font-size: 19px;
  padding: 18px 36px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.btn-white:hover { transform: translateY(-3px); }

/* ---------------------------------------------------------- section scaffolding */
section { position: relative; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-tight { padding-block: clamp(48px, 7vw, 84px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--orange); }
.eyebrow.center { justify-content: center; }

.h-sec {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 16px 0 0;
}
.h-sec .hl { color: var(--orange); }
.lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--body);
  margin-top: 16px;
  line-height: 1.95;
}
.head-center { text-align: center; max-width: 760px; margin-inline: auto; }

/* ---------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 88% 0%, var(--yellow-soft), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, var(--teal-soft), transparent 55%),
    var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero-copy .badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.hero h1 {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.28;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.hero h1 .nb { white-space: nowrap; }
.hero h1 .hl {
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 6%;
  height: 30%;
  background: var(--yellow);
  opacity: .42;
  border-radius: 6px;
  z-index: -1;
}
.hero .sub {
  font-size: clamp(15px, 1.6vw, 18.5px);
  color: var(--body);
  margin: 22px 0 30px;
  line-height: 2;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 13px; color: var(--muted); margin-top: 16px; display:flex; align-items:center; gap:7px;}

/* hero visual */
.hero-visual { position: relative; }
.hero-photo-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  margin-inline: auto;
  transform: rotate(1.5deg);
}
.hero-photo-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4/4.4;
  object-fit: cover;
  object-position: 50% 16%;
  background: #f0eee9;
}
.hero-photo-card .cap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 6px 4px;
}
.hero-photo-card .cap .nm { font-family: var(--font-round); font-weight: 800; font-size: 17px; }
.hero-photo-card .cap .ro { font-size: 12.5px; color: var(--muted); }
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-family: var(--font-round);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.float-chip .ic { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: #fff; }
.float-chip .big { font-family: var(--font-latin); font-size: 22px; line-height: 1; }
.float-chip.c1 { top: 6%; left: -6%; }
.float-chip.c2 { bottom: 10%; right: -8%; }
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero .sub { max-width: none; }
  .float-chip.c1 { left: 2%; }
  .float-chip.c2 { right: 2%; }
}

/* wave divider */
.wave { display: block; width: 100%; height: auto; }

/* ---------------------------------------------------------- pains (お悩み) */
.pains { background: var(--paper); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.pain-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  border: 1.5px solid var(--hairline);
}
.pain-card .qic {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: #fff;
}
.pain-card p { margin: 0; font-size: 16.5px; font-weight: 500; color: var(--ink); line-height: 1.7; word-break: keep-all; }
.pain-card p b { color: var(--orange-deep); font-weight: 700; }
.pains-arrow { text-align: center; margin-top: 44px; }
.pains-arrow .a {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-round); font-weight: 800; color: var(--orange-deep); font-size: 18px;
}
.pains-arrow svg { width: 38px; height: 38px; color: var(--orange); }
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------------------------------------------------------- steps / service */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.scard {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px 32px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--hairline-2);
  overflow: hidden;
}
.scard .stripe { position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.scard .snum {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.scard .sic {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid; place-items: center;
  color: #fff;
}
.scard .sic svg { width: 32px; height: 32px; }
.scard h3 { font-family: var(--font-round); font-weight: 800; font-size: 22px; margin: 4px 0 0; color: var(--ink); line-height:1.4;}
.scard .price {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.scard p { margin: 0; font-size: 15px; color: var(--body); line-height: 1.9; }
.scard p b { color: var(--ink); font-weight: 700; }
.scard .ex { font-size: 13.5px; color: var(--muted); border-top: 1px dashed var(--hairline); padding-top: 14px; margin-top: auto; line-height:1.8;}
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; gap: 18px; } }

/* color helpers */
.bg-orange { background: var(--orange); }
.bg-teal { background: var(--teal); }
.bg-sky { background: var(--sky); }
.bg-yellow { background: var(--yellow); }
.bg-pink { background: var(--pink); }
.soft-orange { background: var(--orange-soft); color: var(--orange-deep); }
.soft-teal { background: var(--teal-soft); color: #1d8275; }
.soft-sky { background: var(--sky-soft); color: #155a64; }

/* ---------------------------------------------------------- before / after */
.results { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.ba-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--hairline-2);
}
.ba-nums { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.ba-nums .before {
  font-family: var(--font-latin);
  font-weight: 700; font-size: 26px; color: var(--muted);
  text-align: center; line-height: 1.1;
}
.ba-nums .before small { display:block; font-family: var(--font-body); font-size: 12px; font-weight:500; }
.ba-nums .ar { color: var(--orange); }
.ba-nums .ar svg { width: 30px; height: 30px; }
.ba-nums .after {
  font-family: var(--font-latin); font-weight: 800; font-size: 50px;
  color: var(--orange); line-height: 1; text-align:center;
}
.ba-nums .after .u { font-size: 24px; }
.ba-nums .after small { display:block; font-family: var(--font-body); font-size: 12px; font-weight:600; color: var(--orange-deep); }
.ba-card .txt { font-size: 15px; color: var(--body); line-height: 1.85; word-break: keep-all; border-left: 1.5px solid var(--hairline); padding-left: 22px; }
@media (max-width: 820px) { .ba-grid { grid-template-columns: 1fr; gap: 16px; } .ba-card { padding: 24px; gap:18px;} }

/* ---------------------------------------------------------- customers / who */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; }
.who-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 32px;
  box-shadow: var(--shadow-sm); display: flex; gap: 22px; align-items: center;
  border: 1px solid var(--hairline-2);
}
.who-card .wic { flex: 0 0 70px; height: 70px; border-radius: 22px; display: grid; place-items: center; }
.who-card .wic svg { width: 36px; height: 36px; color: #fff; }
.who-card h4 { font-family: var(--font-round); font-weight: 800; font-size: 19px; margin: 0 0 6px; text-wrap: balance; }
.who-card p { margin: 0; font-size: 14.5px; color: var(--body); line-height: 1.8; word-break: keep-all; }
@media (max-width: 820px) { .who-grid { grid-template-columns: 1fr; gap:16px;} }

/* ---------------------------------------------------------- testimonials */
.voice { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.voice::before { content:""; position:absolute; width: 520px; height:520px; border-radius:50%; background: rgba(240,130,58,.16); top:-200px; right:-160px; }
.voice::after { content:""; position:absolute; width: 420px; height:420px; border-radius:50%; background: rgba(47,182,164,.14); bottom:-180px; left:-140px; }
.voice .eyebrow { color: #FFC98B; }
.voice .eyebrow::before { background: var(--orange); }
.voice .h-sec { color: #fff; }
.voice .lead { color: rgba(255,255,255,0.76); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; position: relative; }
.vcard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  backdrop-filter: blur(4px);
}
.vcard .stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.vcard .q { font-size: 15.5px; line-height: 1.95; color: #fff; margin: 0 0 20px; font-weight: 500; }
.vcard .who { display: flex; align-items: center; gap: 13px; }
.vcard .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-round); font-weight: 800; color: #fff; font-size: 18px; }
.vcard .who .nm { font-family: var(--font-round); font-weight: 700; font-size: 14.5px; }
.vcard .who .ro { font-size: 12px; color: rgba(255,255,255,0.6); }
.voice .demo-note { text-align:center; margin-top: 34px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
@media (max-width: 880px) { .voice-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------------------------------------------------------- pricing */
.pricing { background: var(--paper); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.plan {
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.plan.feature {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 22px 50px rgba(240,130,58,0.20);
  transform: translateY(-10px);
}
.plan .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-family: var(--font-round); font-weight: 800; font-size: 12.5px;
  padding: 6px 18px; border-radius: var(--radius-pill);
  box-shadow: 0 8px 16px rgba(240,130,58,0.4); white-space: nowrap;
}
.plan .pstep { font-family: var(--font-latin); font-weight: 700; font-size: 12.5px; letter-spacing: 0.16em; color: var(--muted); }
.plan h3 { font-family: var(--font-round); font-weight: 800; font-size: 22px; margin: 0; color: var(--ink); }
.plan .amt { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-latin); }
.plan .amt .num { font-weight: 800; font-size: 44px; color: var(--orange); line-height: 1; }
.plan .amt .unit { font-family: var(--font-round); font-weight: 700; font-size: 16px; color: var(--ink-2); }
.plan .amt.free .num { color: var(--teal); }
.plan .pdesc { font-size: 14px; color: var(--body); line-height: 1.8; margin: 0; min-height: 48px; }
.plan ul { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.plan ul li svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--teal); margin-top: 2px; }
.plan .plan-cta { margin-top: auto; }
.plan .plan-cta .btn { width: 100%; justify-content: center; }
.plan-note { text-align: center; margin-top: 30px; font-size: 13.5px; color: var(--muted); }
.plan .pwho {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-round); font-weight: 700; font-size: 12.5px;
  color: var(--ink-2); background: var(--cream-2); border-radius: var(--radius-pill);
  padding: 5px 13px; margin-bottom: 2px;
}
.plan.feature .pwho { background: var(--orange-soft); color: var(--orange-deep); }
.plan .pnote {
  font-size: 12.5px; color: var(--muted); line-height: 1.7;
  border-top: 1px dashed var(--hairline); padding-top: 13px; margin: 4px 0 0;
}
.plan .pnote b { color: var(--ink-2); font-weight: 700; }
@media (max-width: 920px) {
  .plan-grid { grid-template-columns: 1fr; gap: 30px; }
  .plan.feature { transform: none; }
}

/* ---------------------------------------------------------- big CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before { content:""; position:absolute; width:300px;height:300px;border-radius:50%; background: rgba(255,255,255,0.12); top:-120px; left:-60px;}
.cta-band::after { content:""; position:absolute; width:240px;height:240px;border-radius:50%; background: rgba(255,255,255,0.10); bottom:-110px; right:-50px;}
.cta-band h2 { font-family: var(--font-round); font-weight: 800; font-size: clamp(26px, 4vw, 42px); margin: 0 0 14px; position: relative; line-height:1.4;}
.cta-band p { font-size: clamp(15px,1.6vw,18px); color: rgba(255,255,255,0.92); margin: 0 auto 32px; max-width: 640px; position: relative; line-height:1.9;}
.cta-band .hero-actions { justify-content: center; position: relative; }
.cta-band .cta-sub { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.82); position: relative; }

/* ---------------------------------------------------------- footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding-block: 56px 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer .logo b { color: var(--orange); }
.footer .fdesc { font-size: 14px; line-height: 1.9; max-width: 360px; }
.footer .fsite { margin-top: 16px; font-family: var(--font-latin); font-size: 16px; font-weight: 700; letter-spacing: 0.02em; }
.footer .fsite a { color: #fff; transition: color .18s; }
.footer .fsite a:hover { color: var(--orange); }
.footer h5 { font-family: var(--font-round); font-weight: 800; color: #fff; font-size: 15px; margin: 0 0 16px; letter-spacing: 0.04em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul li a { font-size: 14px; transition: color .18s; }
.footer ul li a:hover { color: var(--orange); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }

/* ---------------------------------------------------------- page hero (sub pages) */
.page-hero { background: radial-gradient(70% 100% at 80% 0%, var(--orange-soft), transparent 60%), var(--cream); padding-block: clamp(48px, 7vw, 88px) clamp(40px, 6vw, 64px); text-align: center; }
.page-hero .crumb { font-family: var(--font-latin); font-size: 13px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-round); font-weight: 800; font-size: clamp(30px, 5vw, 50px); margin: 0; color: var(--ink); line-height: 1.3; }
.page-hero h1 .hl { color: var(--orange); }
.page-hero p { margin: 18px auto 0; max-width: 620px; color: var(--body); font-size: clamp(15px,1.5vw,17px); line-height: 1.95; }

/* ---------------------------------------------------------- forms */
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow); border: 1px solid var(--hairline-2); max-width: 640px; margin: 0 auto;
}
/* 埋め込みGoogleフォームは高さを通知できないため、幅ごとに実測した自然高さ＋エラー表示余白で固定する */
#contact-form-wrap iframe { display: block; width: 100%; height: 1840px; border: 0; }
@media (max-width: 760px) { #contact-form-wrap iframe { height: 1940px; } }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-round); font-weight: 700; font-size: 14.5px; margin-bottom: 9px; color: var(--ink); }
.field label .req { color: var(--orange-deep); font-size: 12px; margin-left: 6px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--hairline-2); border-radius: 14px; background: var(--cream);
  transition: border-color .18s, box-shadow .18s; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.8; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none; text-align: center; padding: 30px;
  background: var(--teal-soft); color: #1d8275; border-radius: 16px;
  font-family: var(--font-round); font-weight: 700; font-size: 16px; line-height: 1.8;
}
.form-success.show { display: block; }

/* reserve box */
.reserve {
  background: var(--cream); border: 2px dashed var(--orange); border-radius: var(--radius-lg);
  padding: 34px; text-align: center; max-width: 640px; margin: 0 auto 36px;
}
.reserve .ic { width: 60px; height: 60px; border-radius: 20px; background: var(--orange); display:grid; place-items:center; margin: 0 auto 16px; color:#fff;}
.reserve h3 { font-family: var(--font-round); font-weight: 800; font-size: 22px; margin: 0 0 10px; }
.reserve p { font-size: 14.5px; color: var(--body); margin: 0 0 22px; line-height: 1.9; }

/* ---------------------------------------------------------- FAQ */
.faq-list { max-width: 760px; margin: 46px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq {
  background: #fff; border: 1px solid var(--hairline-2); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; gap: 16px;
  font-family: var(--font-round); font-weight: 700; font-size: 16.5px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 10px; background: var(--orange-soft); color: var(--orange-deep); display: grid; place-items: center; font-family: var(--font-latin); font-weight: 800; }
.faq summary .chev { margin-left: auto; transition: transform .25s; color: var(--muted); }
.faq[open] summary .chev { transform: rotate(180deg); }
.faq .ans { padding: 0 26px 24px 72px; font-size: 14.5px; color: var(--body); line-height: 1.95; }

/* ---------------------------------------------------------- scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------- profile page */
.prof-intro { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.prof-photo {
  background: #fff; border-radius: var(--radius-lg); padding: 16px;
  box-shadow: var(--shadow-lg); transform: rotate(-1.5deg); max-width: 380px; margin-inline: auto;
}
.prof-photo img { width: 100%; border-radius: 18px; aspect-ratio: 4/4.6; object-fit: cover; object-position: 50% 16%; background:#f0eee9;}
.prof-intro .pname { font-family: var(--font-round); font-weight: 800; font-size: clamp(30px, 4.6vw, 46px); margin: 14px 0 4px; color: var(--ink); }
.prof-intro .pname .en { display:block; font-family: var(--font-latin); font-size: 15px; letter-spacing: 0.18em; color: var(--muted); font-weight:700; margin-top: 6px; }
.prof-intro .prole { font-family: var(--font-round); font-weight: 700; font-size: 17px; color: var(--orange-deep); margin: 0 0 18px; }
.prof-intro .pquote { font-size: 16px; color: var(--body); line-height: 2; }
.prof-intro .pquote b { color: var(--ink); }

.story { max-width: 760px; margin: 0 auto; }
.story p { font-size: 16px; line-height: 2.1; color: var(--ink-2); margin: 0 0 22px; }
.story p b { color: var(--orange-deep); }
.story .lead-q {
  font-family: var(--font-round); font-weight: 800; font-size: clamp(20px, 2.6vw, 26px);
  color: var(--ink); line-height: 1.7; border-left: 5px solid var(--orange); padding-left: 22px; margin: 0 0 30px;
}

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.value {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--hairline-2); text-align: center;
}
.value .vic { width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center; margin: 0 auto 18px; color:#fff;}
.value .vic svg { width: 32px; height: 32px; }
.value h4 { font-family: var(--font-round); font-weight: 800; font-size: 19px; margin: 0 0 10px; }
.value p { margin: 0; font-size: 14.5px; color: var(--body); line-height: 1.85; word-break: keep-all; }

.facts { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 46px; }
.fact { background: var(--cream); border: 1.5px solid var(--hairline); border-radius: var(--radius); padding: 22px 30px; text-align: center; min-width: 180px; }
.fact .num { font-family: var(--font-latin); font-weight: 800; font-size: 38px; color: var(--orange); line-height: 1; }
.fact .lbl { font-family: var(--font-round); font-weight: 700; font-size: 13.5px; color: var(--ink-2); margin-top: 8px; }

@media (max-width: 880px) {
  .prof-intro { grid-template-columns: 1fr; text-align: center; }
  .prof-intro .prole, .prof-intro .pquote { text-align: left; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* small helpers */
.center { text-align: center; }
.mt-cta { margin-top: clamp(48px, 7vw, 84px); }
