:root {
  --primary: #7a4a2a;
  --accent: #a06040;
  --gold: #9a7040;
  --text: #1a1a1a;
  --text-sub: #666;
  --bg: #ffffff;
  --bg-muted: #faf5ef;
  --bg-dark: #2a1a0a;
  --white: #fff;
  --border: #ddd0c0;
  --ink: #2a1a0a;
  --radius: 4px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* Header */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--primary); letter-spacing: 0.05em; }
.nav-logo span { font-weight: 400; font-size: 0.85rem; margin-left: 4px; color: var(--text-sub); font-family: 'Noto Sans JP', sans-serif; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.82rem; color: var(--text-sub); letter-spacing: 0.05em; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: var(--white) !important; padding: 8px 18px; border-radius: 2px; font-weight: 600; font-size: 0.8rem !important; letter-spacing: 0.05em; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); }

/* Hero */
#hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); min-height: 100vh; padding: 0; margin-top: 64px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 60px 80px 80px; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--text-sub); margin-bottom: 24px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 600; line-height: 1.2; color: var(--text); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--primary); }
.hero-desc { font-size: 1rem; color: var(--text-sub); line-height: 2; margin-bottom: 40px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-bottom: 48px; }
.btn-primary { background: var(--primary); color: var(--white); padding: 15px 28px; border-radius: 2px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; display: inline-block; transition: background .2s; }
.btn-primary:hover { background: #5c3820; }
.btn-outline { background: transparent; color: var(--primary); padding: 13px 28px; border-radius: 2px; font-weight: 600; font-size: 0.9rem; border: 1.5px solid var(--primary); display: inline-block; transition: .2s; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.hero-proof { display: flex; align-items: center; gap: 24px; }
.proof-item { display: flex; flex-direction: column; }
.proof-item strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--primary); line-height: 1; }
.proof-item span { font-size: 0.72rem; color: var(--text-sub); margin-top: 4px; }
.proof-sep { width: 1px; height: 32px; background: var(--border); }
.hero-right { overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Section header */
.section-header { text-align: center; margin-bottom: 56px; }
.section-en { font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; letter-spacing: 0.4em; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--text); }
.section-lead { font-size: 0.9rem; color: var(--text-sub); margin-top: 12px; }

/* こんな方へ */
.whom-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.whom-item { display: flex; align-items: baseline; gap: 20px; padding: 28px 32px; border-bottom: 1px solid var(--border); }
.whom-item:nth-child(odd) { border-right: 1px solid var(--border); }
.whom-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--accent); font-weight: 600; line-height: 1; flex-shrink: 0; }
.whom-item p { font-size: 0.92rem; line-height: 1.8; }
.whom-item strong { color: var(--primary); }

/* 体験の流れ */
.section-muted { background: var(--bg-muted); }
.flow-stepper { display: flex; align-items: flex-start; gap: 0; }
.step-item { flex: 1; text-align: center; padding: 0 16px; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin: 0 auto 16px; }
.step-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 0.82rem; color: var(--text-sub); }
.step-arrow { font-size: 1.2rem; color: var(--border); align-self: center; flex-shrink: 0; }

/* カテゴリグリッド */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card { background: var(--bg-muted); border: 1px solid var(--border); padding: 36px 28px; border-radius: 4px; border-top: 3px solid var(--primary); }
.category-icon { font-size: 2.4rem; margin-bottom: 16px; }
.category-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.category-card p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.9; }

/* 口コミ */
.reviews-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-block { background: var(--bg-muted); border-left: 3px solid var(--primary); padding: 28px; border-radius: 0 4px 4px 0; }
.review-stars { color: #c9a227; font-size: 0.9rem; margin-bottom: 12px; }
.review-block p { font-size: 0.9rem; color: var(--text); line-height: 1.9; margin-bottom: 12px; }
.review-block cite { font-size: 0.78rem; color: var(--text-sub); }

/* タブ */
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 40px; }
.tab-btn { padding: 12px 28px; font-size: 0.88rem; font-weight: 600; color: var(--text-sub); background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: .2s; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* 料金表 */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { background: var(--primary); color: var(--white); padding: 14px 20px; font-size: 0.85rem; text-align: left; }
.price-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg-muted); }

/* 先生紹介 */
.teacher-strip { display: grid; grid-template-columns: 380px 1fr; gap: 0; background: var(--bg-muted); }
.teacher-photo { overflow: hidden; }
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.teacher-body { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.teacher-name { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.teacher-role { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--text-sub); margin-bottom: 24px; }
.teacher-body p { font-size: 0.92rem; color: var(--text-sub); line-height: 2; }
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.policy-card { padding: 32px 28px; border: 1px solid var(--border); border-top: 3px solid var(--primary); }
.policy-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.policy-card p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.9; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }
.timeline-item .year { font-size: 0.75rem; color: var(--text-sub); letter-spacing: 0.1em; }
.timeline-item p { font-size: 0.9rem; margin-top: 2px; }

/* ギャラリー */
.gallery-masonry { columns: 3; gap: 12px; }
.gallery-masonry img { width: 100%; display: block; margin-bottom: 12px; border-radius: 2px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 4px; cursor: pointer; font-weight: 600; font-size: 0.92rem; gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 4px 20px; font-size: 0.88rem; color: var(--text-sub); line-height: 2; }

/* アクセス */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.access-dl { display: grid; grid-template-columns: 80px 1fr; gap: 12px 16px; margin-top: 20px; }
.access-dl dt { font-size: 0.78rem; color: var(--text-sub); padding-top: 2px; }
.access-dl dd { font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field label { display: block; font-size: 0.78rem; color: var(--text-sub); margin-bottom: 6px; font-weight: 600; letter-spacing: 0.05em; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid var(--border); padding: 12px 14px; font-size: 0.88rem; font-family: inherit; border-radius: 2px; background: var(--bg-muted); color: var(--text); transition: border-color .2s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.req { color: #c0392b; font-size: 0.7rem; margin-left: 4px; }
.btn-submit { background: var(--primary); color: var(--white); border: none; padding: 16px; font-size: 0.95rem; font-weight: 700; cursor: pointer; border-radius: 2px; transition: background .2s; }
.btn-submit:hover { background: #5c3820; }

/* CTA dark */
.section-dark { background: var(--bg-dark); padding: 80px 0; }

/* Footer */
#footer { background: var(--ink); color: rgba(255,255,255,0.5); text-align: center; padding: 48px 32px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.footer-copy { font-size: 0.75rem; margin-top: 8px; }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 20px 48px; }
  .hero-right { height: 280px; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 20px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .whom-list { grid-template-columns: 1fr; }
  .whom-item:nth-child(odd) { border-right: none; }
  .flow-stepper { flex-direction: column; align-items: center; gap: 8px; }
  .step-arrow { transform: rotate(90deg); }
  .reviews-list { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .teacher-strip { grid-template-columns: 1fr; }
  .teacher-photo { height: 280px; }
  .teacher-body { padding: 36px 24px; }
  .policy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-masonry { columns: 2; }
}
