/* ==========================================================
   Okinawa Lovers EN — design.css
   Claude Designで作られた許田ページのデザインをシステム化したもの。
   タイポ: Bricolage Grotesque(見出し) × Zen Kaku Gothic New(本文)
   色: 紙#FBF6EC / 墨#0E1B22 / 黄#F2C94C / 朱#E24E33 / 深緑#14563F
   ========================================================== */

:root {
  --paper: #FBF6EC;
  --ink: #0E1B22;
  --ink-2: #3C4C52;
  --ink-3: #55666C;
  --ink-4: #4A5A60;
  --sand: #B9A88A;
  --yellow: #F2C94C;
  --red: #E24E33;
  --green: #14563F;
  --teal: #17958F;
  --hair: rgba(14, 27, 34, 0.07);
  --hair-2: rgba(14, 27, 34, 0.08);

  --display: "Bricolage Grotesque", sans-serif;
  --body: "Zen Kaku Gothic New", sans-serif;

  --gut: clamp(16px, 4vw, 48px);
  --wide: 1240px;
  --narrow: 900px;
  --r-lg: clamp(24px, 4vw, 44px);
  --r-md: 22px;
  --r-sm: 18px;
  --r-xs: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--red); }
::selection { background: var(--yellow); color: var(--ink); }
img { max-width: 100%; display: block; }

/* ---------- タイポ基本 ---------- */

.d1, .d2, .d3 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 300;
}
.d1 { font-size: clamp(54px, 11.4vw, 152px); line-height: 0.88; }
.d2 { font-size: clamp(32px, 5.6vw, 66px); }
.d3 { font-size: clamp(30px, 4.6vw, 54px); }
.d1 em, .d2 em, .d3 em { font-weight: 800; font-style: italic; color: var(--red); }
.d2 em.y, .d3 em.y, .d1 em.y { color: var(--yellow); }
.d2 em.g, .d3 em.g { color: var(--green); }
.d2 em.t, .d3 em.t { color: var(--teal); }

.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.eyebrow.g { color: var(--green); }
.eyebrow.y { color: var(--yellow); }

.body-txt { font-size: 14.5px; line-height: 1.8; color: var(--ink-2); margin: 0; }
.lede {
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.62;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.lede strong { font-family: var(--display); font-style: italic; font-weight: 800; color: var(--red); }

/* ---------- レイアウト ---------- */

.wrap { max-width: var(--wide); margin: 0 auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: var(--narrow); margin: 0 auto; padding-inline: var(--gut); }
.sec { padding-block: clamp(56px, 9vw, 130px); }
.sec-sm { padding-block: clamp(30px, 5vw, 70px); }
.grid { display: grid; gap: clamp(12px, 2vw, 20px); }
.g2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* ---------- ヘッダー ---------- */

.hdr {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px var(--gut);
  background: #FBF6EC;
  border-bottom: 1px solid var(--hair);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; font-size: 15px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--red); color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 13px;
}
.hdr nav { display: flex; align-items: center; gap: clamp(10px, 2vw, 26px); font-size: 13.5px; font-weight: 500; }
.hdr nav a { color: var(--ink-3); }
.lang { display: flex; align-items: center; gap: 2px; background: rgba(14,27,34,.06); border-radius: 999px; padding: 3px; }
.lang a { padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--ink-3); }
.lang a[aria-current] { background: var(--ink); color: var(--paper); }

/* ---------- ヒーロー ---------- */

.hero { position: relative; margin-top: calc(-1 * clamp(54px, 6vw, 62px)); }
.hero-media { position: relative; height: clamp(560px, 92vh, 900px); overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,27,34,.82) 0%, rgba(14,27,34,.34) 45%, rgba(14,27,34,.12) 100%);
}
.hero-body {
  position: absolute; left: 0; right: 0; bottom: clamp(40px, 7vw, 96px);
  padding-inline: var(--gut); color: var(--paper); z-index: 2;
}
.badge {
  display: inline-block; background: var(--yellow); color: var(--ink);
  font-family: var(--display); font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero .d1 { color: var(--paper); }
.hero .d1 em { color: var(--yellow); }
.hero-sub {
  margin: 20px 0 0; max-width: 34ch;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.65;
  color: rgba(251, 246, 236, 0.86);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip {
  border: 1px solid rgba(251,246,236,.35); border-radius: 999px;
  padding: 7px 14px; font-size: 12.5px; color: rgba(251,246,236,.9);
}
.chip.on { background: var(--teal); border-color: var(--teal); color: #fff; font-weight: 700; }

.hero-cta {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -32px; z-index: 3;
  display: flex; align-items: center; gap: 20px;
  background: var(--ink); color: var(--paper);
  padding: 14px 14px 14px 26px; border-radius: 999px;
  box-shadow: 0 18px 40px rgba(14,27,34,.28);
  max-width: calc(100% - 2 * var(--gut));
}
.hero-cta b { font-size: 15px; }
.hero-cta small { display: block; font-size: 12px; color: rgba(251,246,236,.6); }

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 999px; white-space: nowrap;
}
.btn:hover { background: #ffd75e; color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #1b2f39; color: var(--paper); }

/* ---------- カード ---------- */

.card { background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r-sm); padding: clamp(18px, 2.2vw, 26px); }
.card h3 { margin: 0 0 8px; font-size: 17.5px; font-weight: 700; letter-spacing: -0.01em; }
.card p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--ink-2); }
.card .num { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--sand); letter-spacing: .08em; display: block; margin-bottom: 10px; }

.card-fill { border: 0; color: var(--paper); }
.card-fill h3 { color: #fff; }
.card-fill p { color: rgba(251,246,236,.78); }
.card-fill .num { color: var(--yellow); font-size: 26px; }
.c-green { background: var(--green); }
.c-red { background: var(--red); }
.c-ink { background: var(--ink); }
.c-teal { background: var(--teal); }

/* ---------- 濃色セクション ---------- */

.slab {
  background: var(--ink); color: var(--paper);
  padding: clamp(48px, 8vw, 120px) var(--gut);
  border-radius: var(--r-lg);
  margin-inline: clamp(8px, 2vw, 20px);
}
.slab .d2 { color: var(--paper); }
.slab .body-txt { color: rgba(251,246,236,.6); }
.slab-inner { max-width: var(--wide); margin: 0 auto; }

.price-hero { background: var(--yellow); color: var(--ink); border-radius: var(--r-md); padding: clamp(22px, 3vw, 34px); }
.price-hero .lbl { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.price-hero .now { font-family: var(--display); font-size: clamp(40px, 6vw, 64px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price-hero .was { text-decoration: line-through; opacity: .45; font-size: 18px; font-weight: 700; }
.price-hero .note { font-size: 12.5px; font-weight: 700; color: #8a6a00; }

.price-card { background: rgba(251,246,236,.06); border: 1px solid rgba(251,246,236,.1); border-radius: var(--r-xs); padding: 16px 18px; }
.price-card .nm { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.price-card .amt { font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--yellow); }
.price-card .old { text-decoration: line-through; opacity: .45; font-size: 13px; margin-right: 6px; }
.price-card .sub { display: block; margin-top: 6px; font-size: 12px; color: rgba(251,246,236,.45); line-height: 1.6; }

.alert {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--red); color: #fff; border-radius: var(--r-xs);
  padding: 16px 20px; font-size: 13.5px; line-height: 1.7;
}
.alert .ico {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: var(--red); display: grid; place-items: center;
  font-family: var(--display); font-weight: 800;
}

/* ---------- 図版 ---------- */

.fig { position: relative; border-radius: var(--r-md); overflow: hidden; }
.fig img { width: 100%; height: 100%; object-fit: cover; }
.fig figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(14,27,34,.88), rgba(14,27,34,0));
  color: rgba(251,246,236,.92); font-size: 12.5px; line-height: 1.6;
  padding: 34px 18px 14px;
}
.fig-tall { aspect-ratio: 4 / 5; }
.fig-wide { aspect-ratio: 16 / 9; }

/* ---------- 情報テーブル ---------- */

.info { background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r-md); overflow: hidden; }
.info .row {
  display: grid; grid-template-columns: minmax(120px, .32fr) 1fr;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2.2vw, 26px);
  border-bottom: 1px solid var(--hair);
}
.info .row:last-child { border-bottom: 0; }
.info .k { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.info .v { font-size: 14.5px; line-height: 1.7; color: var(--ink-2); }

/* ---------- FAQ ---------- */

details.faq { border-radius: var(--r-sm); background: #fff; border: 1px solid var(--hair-2); overflow: hidden; }
details.faq + details.faq { margin-top: 8px; }
details.faq summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 20px; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
.faq-ico {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--yellow);
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 16px;
}
details.faq[open] .faq-ico { font-size: 0; }
details.faq[open] .faq-ico::after { content: "\2013"; font-size: 16px; }
details.faq p { margin: 0; padding: 0 20px 20px; font-size: 14.5px; line-height: 1.8; color: var(--ink-4); }
details.faq summary:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }

/* ---------- タクシー ---------- */

.taxi { background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r-md); padding: clamp(22px, 3vw, 34px); }
.taxi h2 { margin: 0 0 6px; font-size: 19px; font-weight: 700; }
.phrase {
  background: var(--ink); color: #fff; border-radius: 14px;
  padding: 14px 16px; margin: 10px 0 6px;
  font-size: clamp(17px, 2vw, 21px); font-weight: 700; letter-spacing: .06em;
}
.romaji { font-size: 12px; color: var(--ink-3); font-style: italic; }

/* ---------- 地図 ---------- */

.map { width: 100%; min-height: 300px; border: 0; border-radius: var(--r-md); }
.addr { background: var(--yellow); border-radius: var(--r-md); padding: clamp(22px, 3vw, 34px); }
.addr .a { font-family: var(--display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -.02em; margin: 0 0 8px; line-height: 1.15; }
.addr .m { font-size: 13px; color: #6b5400; margin: 0 0 16px; }

/* ---------- ホッピング行 ---------- */

.hop { background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r-xs); padding: 16px 20px; display: grid; grid-template-columns: minmax(110px, .3fr) 1fr; gap: 16px; }
.hop + .hop { margin-top: 10px; }
.hop .when { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: .04em; }
.hop .what { font-size: 14px; line-height: 1.7; color: var(--ink-2); }

/* ---------- フッター ---------- */

.ftr { background: var(--ink); color: var(--paper); padding: clamp(48px, 8vw, 110px) var(--gut) clamp(28px, 4vw, 48px); }
.ftr-inner { max-width: var(--wide); margin: 0 auto; display: flex; flex-direction: column; gap: clamp(34px, 5vw, 70px); }
.ftr .d3 { color: var(--paper); }
.ftr .d3 em { color: var(--yellow); }
.author { display: flex; gap: 18px; align-items: flex-start; max-width: 620px; }
.author .mark { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; }
.author p { margin: 6px 0 0; font-size: 14px; line-height: 1.75; color: rgba(251,246,236,.6); }
.author b { font-size: 15px; }
.next { background: rgba(251,246,236,.06); border: 1px solid rgba(251,246,236,.1); border-radius: var(--r-sm); padding: 22px; display: block; }
.next:hover { background: rgba(251,246,236,.1); color: var(--paper); }
.next .k { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); }
.next .t { display: block; margin: 8px 0 14px; font-size: 18px; font-weight: 700; color: #fff; }
.next .go { font-size: 13px; color: rgba(251,246,236,.6); }
.ftr-base { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(251,246,236,.1); font-size: 13px; color: rgba(251,246,236,.45); }
.ftr-base a { color: rgba(251,246,236,.6); }
.ftr-base a:hover { color: var(--yellow); }

/* ---------- モバイル ---------- */

@media (max-width: 640px) {
  .hdr nav a.hide-sm { display: none; }
  .hero-cta { position: static; transform: none; margin: 18px var(--gut) 0; max-width: none; justify-content: space-between; }
  .info .row, .hop { grid-template-columns: 1fr; gap: 6px; }
}

/* ==========================================================
   v2 — オリジナル(Claude Design版 許田)の実測値に合わせる
   ========================================================== */

/* リード文: 本文フォントではなくディスプレイ体の細字 */
.lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(21px, 3.1vw, 38px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.lede strong { font-family: var(--display); font-weight: 700; font-style: italic; color: var(--red); }

/* セクション見出し（大きな見出し＋横に補足） */
.sec-head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}
.sec-head h2 {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 4vw, 46px); letter-spacing: -0.03em;
}
.sec-head .sub { font-size: 13px; color: #6C7B80; }

/* カード: 余白・角丸・縦リズムをオリジナルどおりに */
.card {
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.card h3 { margin: 0; font-size: 19px; font-weight: 700; line-height: 1.35; letter-spacing: 0; }
.card p { margin: 0; font-size: 14.5px; line-height: 1.7; }

/* 数字カード: 40px の大きな数字 */
.card .num {
  font-family: var(--display);
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--yellow); margin: 0;
}
.card-fill { min-height: 230px; }
.card-fill .num { font-size: 40px; }
.card:not(.card-fill) .num { color: var(--red); }
.card-fill p { color: rgba(251, 246, 236, 0.84); }

/* グリッド間隔もオリジナルに合わせる */
.grid { gap: clamp(14px, 2vw, 26px); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
