/* ============================================================
   style.css — 全ページ共通スタイル
   
   ⚠️ このファイルはデザイン担当者が変更するファイルです。
   　 店舗スタッフは通常このファイルを触る必要はありません。
   ============================================================ */

/* ============================================================
   【変更可能】カラーパレット
   色を変えたい場合はここの値だけ書き換えてください。
   他の箇所は触らなくてOKです。
   ============================================================ */
:root {
  --color-bg:        #fff8f1;   /* ページ全体の背景色 */
  --color-surface:   #fffdf9;   /* カード・パネルの背景色 */
  --color-surface-2: #fff1e4;   /* サブ背景色 */
  --color-text:      #2f2340;   /* 本文テキストの色 */
  --color-muted:     #6f6580;   /* 補足テキストの色 */
  --color-line:      #e8d8d2;   /* 罫線・枠線の色 */
  --color-primary:   #ff6b6b;   /* メインアクセントカラー（ボタン等） */
  --color-secondary: #5c7cfa;   /* サブアクセントカラー */
  --color-accent:    #f4b400;   /* 強調カラー */
  --color-mint:      #34c6a3;   /* ミントカラー */
  --radius:          18px;      /* カードの角丸 */
  --shadow:          0 8px 24px rgba(64, 36, 77, 0.08);
  --max-width:       1100px;
}

/* ============================================================
   基本リセットと共通設定（変更不要）
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: none; text-size-adjust: none; }
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Meiryo", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  min-height: 100dvh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
input, button, textarea { font: inherit; }

.container { width: min(calc(100% - 32px), var(--max-width)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }

/* ============================================================
   ヘッダー・ナビゲーション（変更不要）
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 241, 0.9);
  border-bottom: 1px solid var(--color-line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.brand-logo::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0, rgba(255,255,255,.12) 4px, transparent 4px, transparent 10px);
}
.brand-name { font-size: 1rem; font-weight: 800; display: block; }
.brand-catch { font-size: .82rem; color: var(--color-muted); display: block; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; text-decoration: none; font-weight: 600; color: var(--color-muted);
  padding: 9px 13px; border-radius: 999px;
  transition: background .18s, color .18s;
}
.main-nav a:hover { background: var(--color-surface-2); color: var(--color-text); }
.main-nav a[aria-current="page"] { color: var(--color-primary); background: rgba(255,107,107,.1); }
.nav-cta {
  display: inline-block; text-decoration: none; background: var(--color-text); color: #fff;
  padding: 11px 18px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  white-space: nowrap; transition: opacity .18s;
}
.nav-cta:hover { opacity: .82; }

/* ============================================================
   フッター（変更不要）
   ============================================================ */
.site-footer {
  padding: 40px 0 60px; color: var(--color-muted); font-size: .9rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 20px;
  background: rgba(255,255,255,.6); border: 1px solid var(--color-line);
  border-radius: 18px; padding: 20px 24px;
}
.footer-name { font-weight: 800; color: var(--color-text); font-size: 1rem; margin-bottom: 4px; }
.footer-copy { margin-top: 8px; font-size: .78rem; }

/* ============================================================
   セクション共通（変更不要）
   ============================================================ */
.section { padding: 48px 0; }
.section + .section { padding-top: 0; }
.section-label {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 10px;
  background: rgba(52,198,163,.15); color: #1f6f5b;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.1; margin-bottom: 10px; }
.section-desc { color: var(--color-muted); margin-bottom: 28px; max-width: 54ch; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.card {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.badge {
  display: inline-block; font-size: .78rem; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 10px;
  background: rgba(244,180,0,.18); color: #7a5800;
}
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  border-radius: 999px; padding: 12px 20px; transition: opacity .18s;
}
.btn:hover { opacity: .82; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-sub { background: var(--color-surface); border: 1px solid var(--color-line); color: var(--color-text); }

/* ============================================================
   店舗情報・問い合わせパーツ
   ============================================================ */
.info-table { display: grid; gap: 10px; }
.info-row {
  display: grid; grid-template-columns: 7em 1fr;
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: 14px; padding: 12px 16px; gap: 8px;
}
.info-row dt { font-weight: 800; }
.info-row dd { color: var(--color-muted); margin: 0; }
.contact-panel {
  background: var(--color-text); color: #fff; border-radius: 26px; padding: 28px;
  display: grid; gap: 18px;
}
.contact-panel p { color: rgba(255,255,255,.78); margin: 0; }
.contact-mail {
  display: inline-block; background: rgba(255,255,255,.14); padding: 14px 18px;
  border-radius: 14px; text-decoration: none; font-weight: 700; color: #fff;
  word-break: break-all; transition: background .18s;
}
.contact-mail:hover { background: rgba(255,255,255,.22); }
.faq { display: grid; gap: 10px; }
details {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: 16px; padding: 14px 18px;
}
summary { cursor: pointer; font-weight: 700; }
summary::-webkit-details-marker { color: var(--color-primary); }
details p { margin: 10px 0 0; color: var(--color-muted); }
.notice {
  margin-top: 14px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,.7); border: 1px dashed var(--color-line);
  color: var(--color-muted); font-size: .9rem;
}
.map-frame {
  border: 0; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
  background: #eee;
}
.hero-eyebrow {
  display: inline-block; background: rgba(52,198,163,.16); color: #1f6f5b;
  padding: 7px 14px; border-radius: 999px; font-size: .84rem; font-weight: 700;
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 4.4rem); line-height: 1.06;
  margin-bottom: 18px; letter-spacing: -.02em;
}
.hero-lead { font-size: 1.06rem; color: var(--color-muted); max-width: 52ch; margin-bottom: 22px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero {
  padding: 40px 0 30px;
  background: linear-gradient(135deg, rgba(255,107,107,.07), rgba(92,124,250,.07));
  border-bottom: 1px solid var(--color-line); margin-bottom: 40px;
}

/* ============================================================
   レスポンシブ（変更不要）
   ============================================================ */
@media (max-width: 900px) {
  .card-grid, .two-col { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 560px) {
  .info-row { grid-template-columns: 1fr; }
  .nav-inner { flex-wrap: wrap; gap: 10px; }
}
