/* カクテルドリル サイト共通スタイル — バー由来のダーク × アンバー/ゴールド */
:root {
  --bg: #0f121a;
  --bg-2: #0c0e15;
  --surface: #1b1d26;
  --surface-2: #23262f;
  --stroke: rgba(255, 255, 255, 0.09);
  --accent: #e8b354;
  --accent-deep: #cc8533;
  --hero-from: #edb85c;
  --hero-to: #c97338;
  --success: #57cc8c;
  --text: rgba(255, 255, 255, 0.95);
  --text-2: rgba(255, 255, 255, 0.62);
  --text-3: rgba(255, 255, 255, 0.40);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 760px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(232, 179, 84, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- ヘッダー / ナビ ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav__brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.nav__links { display: flex; gap: 20px; }
.nav__links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.92rem;
}
.nav__links a:hover { color: var(--accent); }

/* ---------- ヒーロー ---------- */
.hero {
  text-align: center;
  padding: 40px 0 56px;
}
.hero__icon {
  width: 108px;
  height: 108px;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(201, 115, 56, 0.35), 0 0 0 1px var(--stroke);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 2.9rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.grad {
  background: linear-gradient(135deg, var(--hero-from), var(--hero-to));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__tagline {
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
  color: var(--text);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero__lead {
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 30px;
}

/* バッジ / ボタン */
.badge-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: linear-gradient(135deg, var(--hero-from), var(--hero-to));
  color: #1a1206;
  box-shadow: 0 10px 26px rgba(201, 115, 56, 0.4);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--stroke);
}

/* ---------- 数値ストリップ ---------- */
.stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 8px 0 64px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px 26px;
  min-width: 130px;
  text-align: center;
}
.stat__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.stat__label { color: var(--text-2); font-size: 0.85rem; margin-top: 4px; }

/* ---------- セクション ---------- */
section { padding: 8px 0; }
.section-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-2);
  margin-bottom: 34px;
}

/* 機能グリッド */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 24px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { color: var(--text-2); font-size: 0.92rem; line-height: 1.65; }

/* 称号セクション */
.titles {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 72px;
}
.title-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.chip {
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ---------- 文書ページ（privacy / terms / support） ---------- */
.doc { padding: 16px 0 40px; }
.doc h1 {
  font-size: 1.9rem;
  margin-bottom: 6px;
}
.doc__app { color: var(--text-2); margin-bottom: 36px; }
.doc h2 {
  font-size: 1.15rem;
  margin: 34px 0 12px;
  padding-top: 6px;
}
.doc p, .doc li { color: var(--text-2); margin-bottom: 14px; }
.doc ul, .doc ol { padding-left: 22px; }
.doc strong { color: var(--text); }
.doc a { color: var(--accent); text-decoration: none; }
.doc a:hover { text-decoration: underline; }

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋";
  float: right;
  color: var(--accent);
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  padding-bottom: 16px;
  margin-bottom: 0;
  color: var(--text-2);
}

/* CTA カード（お問い合わせ） */
.cta-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin: 8px 0 16px;
}
.cta-card p { color: var(--text-2); margin-bottom: 18px; }

/* ---------- フッター ---------- */
.footer {
  border-top: 1px solid var(--stroke);
  margin-top: 40px;
  padding: 34px 0 50px;
  text-align: center;
}
.footer__links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer__links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__links a:hover { color: var(--accent); }
.footer__copy { color: var(--text-3); font-size: 0.82rem; }

a.back {
  display: inline-block;
  margin-top: 28px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
}
a.back:hover { color: var(--accent); }

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .nav__links { gap: 14px; }
  .nav__links a:first-child { display: none; }
}
