@charset "UTF-8";
/* ==========================================================================
   美園軽音サークル 共通スタイル
   - 色・サイズは :root の変数で一元管理（ここを変えると全ページに反映）
   - クラス名は役割が分かるように命名しています
   ========================================================================== */

:root {
  /* 配色（warm paper × terracotta accent / 1C MINIMAL） */
  --bg:        #f4f1ea;   /* 基本背景 */
  --bg-alt:    #ece7dc;   /* 帯・別セクション背景 */
  --surface:   #ffffff;   /* カード背景 */
  --ink:       #1b1a17;   /* 見出し・濃い文字 */
  --ink-2:     #3d3a35;   /* 本文 */
  --muted:     #54504a;   /* 補足文字 */
  --muted-2:   #7a746b;   /* さらに薄い補足 */
  --accent:    #b06a45;   /* アクセント（テラコッタ） */
  --accent-soft:#f6ebdf;  /* アクセントの淡い面 */
  --line:      rgba(27, 26, 23, .12); /* 罫線 */

  /* レイアウト */
  --maxw:      1200px;
  --maxw-narrow: 1000px;
  --gutter:    clamp(20px, 5vw, 80px);   /* 左右余白（ガター） */
  --radius:    14px;

  /* フォント */
  --font-jp:   'Zen Kaku Gothic New', system-ui, sans-serif;
  --font-en:   'Archivo', sans-serif;
  --font-serif:'Instrument Serif', serif;

  /* ブレークポイント（メニューが折り返す手前でハンバーガーに切替） */
  /* ※実値は @media (max-width: 940px) を参照 */
}

/* ----- リセット・ベース ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3 { line-height: 1.3; margin: 0; }

/* ----- 共通レイアウト ----- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(48px, 7vw, 90px); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(28px, 4vw, 44px); }
.divider-top { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .22em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.lead { font-size: 17px; line-height: 2.05; color: var(--ink-2); margin: 0; }

.h1 { font-weight: 900; font-size: clamp(34px, 5.4vw, 62px); line-height: 1.2; }
.h2 { font-weight: 900; font-size: clamp(26px, 3.4vw, 42px); }
.h3 { font-weight: 900; font-size: clamp(20px, 2.6vw, 26px); }

/* ----- ボタン・リンク ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 15px 28px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: opacity .15s ease, background .15s ease;
}
.btn:hover { opacity: .88; }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--ghost  { background: transparent; color: var(--ink); border-color: rgba(27,26,23,.28); }
.btn--ghost-light { background: transparent; color: var(--bg); border-color: rgba(244,241,234,.4); }
.btn--sm { padding: 12px 22px; font-size: 14px; }
.btn--block { justify-content: center; width: 100%; }

.link-underline {
  display: inline-flex; align-items: center;
  font-weight: 600; color: var(--ink);
  border-bottom: 2px solid var(--accent); padding-bottom: 4px;
}
.link-quiet { color: var(--muted); font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--accent); padding-bottom: 3px; }

/* ==========================================================================
   ヘッダー / ナビ
   ========================================================================== */
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__logo { width: 42px; height: 42px; border-radius: 8px; }
.brand__name { font-weight: 700; font-size: 16px; letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; gap: 26px; list-style: none; font-size: 14px; font-weight: 500; }
.nav__link { color: var(--muted); }
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"], .mobile-menu__link[aria-current="page"] { color: var(--ink); font-weight: 700; }

/* ハンバーガーボタン（デスクトップでは非表示） */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0;
  background: var(--ink); border: none; border-radius: 10px; cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--bg); margin: 0 auto; }

/* モバイルメニュー（オーバーレイ。既定は非表示） */
.mobile-menu { display: none; }
.mobile-menu.is-open {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  padding: 18px clamp(20px, 6vw, 40px) 40px;
  overflow-y: auto;
}
.mobile-menu__bar { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__close {
  width: 46px; height: 46px; background: none;
  border: 1px solid rgba(27,26,23,.25); border-radius: 10px;
  font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink);
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; list-style: none; }
.mobile-menu__link {
  color: var(--ink); font-weight: 700; font-size: 26px;
  padding: 16px 0; border-bottom: 1px solid var(--line); display: block;
}
.mobile-menu__sns { display: flex; gap: 24px; margin-top: 28px; font-size: 15px; font-weight: 600; color: var(--muted); list-style: none; }

/* ==========================================================================
   ヒーロー（トップ）
   ========================================================================== */
.hero { padding: clamp(44px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 70px); }
.hero__label { font-weight: 700; font-size: clamp(15px, 1.8vw, 18px); letter-spacing: .14em; color: var(--accent); margin: 0 0 18px; }
.hero__label .x { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.hero__title { font-weight: 500; font-size: clamp(30px, 5.3vw, 68px); line-height: 1.28; letter-spacing: .01em; margin: 0; }
.hero__title b { font-weight: 900; color: var(--accent); }
.hero__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 70px); margin-top: clamp(30px, 4vw, 52px); align-items: center;
}
.hero__body { font-size: 17px; line-height: 2.05; color: var(--ink-2); margin: 0 0 28px; }
.hero__body b { color: var(--ink); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__scroll { display: inline-flex; align-items: center; color: var(--ink); font-weight: 600; font-size: 16px; padding: 15px 6px; border-bottom: 2px solid var(--ink); }

/* 次回イベントカード */
.event-card { background: var(--ink); color: var(--bg); border-radius: var(--radius); overflow: hidden; }
.event-card__body { padding: 26px 28px 22px; }
.event-card__kicker { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 12px; letter-spacing: .16em; color: #d9a07e; }
.event-card__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulseDot 1.6s infinite; }
.event-card__date { font-family: var(--font-serif); font-size: clamp(42px, 5.4vw, 62px); line-height: 1; margin: 16px 0 0; }
.event-card__date small { font-family: var(--font-jp); font-size: 16px; font-weight: 500; color: #cdc8bf; }
.event-card__title { font-weight: 700; font-size: 18px; margin: 14px 0 0; }
.event-card__rule { height: 1px; background: rgba(244,241,234,.18); margin: 20px 0; }
.event-card__meta { display: grid; gap: 8px; font-size: 14px; color: #cdc8bf; margin: 0; }
.event-card__meta b { color: var(--bg); font-weight: 500; }
.event-card__photo { width: 100%; height: 150px; object-fit: cover; }

@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .event-card__dot { animation: none; } html { scroll-behavior: auto; } }

/* ==========================================================================
   抜粋（about / gallery のトップ用 2カラム）
   ========================================================================== */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(30px, 5vw, 70px); align-items: center; }
.split__text p { font-size: 16px; line-height: 2; color: var(--ink-2); }
.split__img { width: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius); }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 30px; }

/* ==========================================================================
   スケジュール
   ========================================================================== */
.schedule__item {
  display: grid; grid-template-columns: 150px 1fr; gap: clamp(16px, 3vw, 40px);
  padding: 26px 4px; border-top: 1px solid rgba(27,26,23,.16); align-items: baseline;
}
.schedule__item:last-child { border-bottom: 1px solid rgba(27,26,23,.16); }
.schedule__date { font-family: var(--font-serif); font-size: 30px; margin: 0; }
.schedule__date small { font-family: var(--font-jp); font-size: 13px; color: var(--muted-2); }
.schedule__title { margin: 0; font-weight: 700; font-size: 17px; }
.schedule__title span { font-weight: 400; font-size: 13px; color: var(--muted-2); }
.schedule__note { margin: 8px 0 0; font-size: 14px; color: var(--muted); line-height: 1.85; }
.schedule__songs { margin: 10px 0 0; font-size: 14px; color: var(--muted); line-height: 2; }
.schedule a { color: var(--muted); text-decoration: underline; }

/* 大型イベント（強調枠） */
.schedule__item--event {
  border: 1px solid var(--accent); border-radius: var(--radius);
  margin: 14px 0; padding: 30px 24px; background: var(--bg);
}
.schedule__item--event:last-child { border-bottom: 1px solid var(--accent); }
.schedule__item--event .schedule__date { font-size: 34px; }
.schedule__item--event .schedule__title { font-size: 19px; }
.schedule__item--event .schedule__note { color: var(--ink-2); }
.schedule__item--event a { color: var(--ink-2); }
.badge {
  display: inline-block; font-family: var(--font-en); font-weight: 700; font-size: 10px;
  letter-spacing: .14em; color: #fff; background: var(--accent);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}

/* ==========================================================================
   ギャラリー
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.gallery-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 10px; }
.gallery-grid--mini { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.gallery-grid--mini img { aspect-ratio: 4 / 3; border-radius: 10px; }
.gallery-block + .gallery-block { margin-top: clamp(32px, 4vw, 52px); }
.gallery-block h2 { margin: 0 0 8px; }
.gallery-block p { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0 0 22px; }

/* ==========================================================================
   汎用カード・リスト
   ========================================================================== */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 34px); }
.feature {
  background: var(--accent-soft); border: 1px solid rgba(176,106,69,.4);
  border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
}
.feature p { font-size: 16px; line-height: 2; color: var(--ink-2); margin: 0 0 22px; }
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(24px, 4vw, 44px); }

.bullet { list-style: none; display: grid; gap: 12px; }
.bullet li { font-size: 15px; line-height: 1.7; color: var(--ink-2); padding-left: 22px; position: relative; }
.bullet li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* メンバー */
.member-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.member__head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.member__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.member__name { margin: 0; font-weight: 900; font-size: 19px; }
.member__handle { font-size: 13px; color: var(--accent); font-weight: 600; }
.member__inst { margin: 0 0 12px; font-size: 13px; font-weight: 600; color: var(--muted); }
.member__quote { margin: 0; font-size: 14px; line-height: 1.9; color: var(--ink-2); }

/* ==========================================================================
   FAQ（アコーディオン）
   ========================================================================== */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { display: flex; align-items: center; gap: 16px; padding: 22px 24px; cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .qmark { font-family: var(--font-en); font-weight: 800; color: var(--accent); font-size: 15px; }
.faq__q .qtext { flex: 1; font-weight: 700; font-size: 17px; }
.faq__q .plus { font-size: 24px; color: var(--accent); line-height: 1; transition: transform .2s ease; }
.faq__item[open] .plus { transform: rotate(45deg); }
.faq__a { padding: 0 24px 24px 56px; font-size: 15px; line-height: 2; color: var(--ink-2); }
.faq__a a { color: var(--accent); font-weight: 600; border-bottom: 1px solid var(--accent); }
.faq__a b { color: var(--ink); }

/* ==========================================================================
   サポート
   ========================================================================== */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.support-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.support-card__no { font-family: var(--font-en); font-weight: 700; color: var(--accent); font-size: 13px; letter-spacing: .1em; }
.support-card h3 { font-weight: 900; font-size: 19px; margin: 0 0 12px; }
.support-card p { font-size: 14px; line-height: 1.95; color: var(--ink-2); margin: 0; }
/* 抽象マーク（演奏写真の代わり） */
.mark { width: 36px; height: 36px; display: block; }
.mark--square { background: var(--accent); border-radius: 9px; }
.mark--circle { background: var(--accent); border-radius: 50%; }
.mark--diamond { width: 30px; height: 30px; background: var(--accent); transform: rotate(45deg); margin: 3px; }
.mark--ring { border-radius: 50%; border: 6px solid var(--accent); }

.cta-band {
  background: var(--ink); color: var(--bg); border-radius: 18px;
  padding: clamp(32px, 4vw, 52px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; align-items: center;
}
.cta-band h2 { font-weight: 900; font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 14px; }
.cta-band p { font-size: 15px; line-height: 1.95; color: #cdc8bf; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.sponsor {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; color: var(--ink); font-weight: 700; font-size: 17px;
}
.sponsor span.arrow { color: var(--accent); font-size: 18px; }

/* ==========================================================================
   参加 + サポート CTA（共通）
   ========================================================================== */
.cta { padding-block: clamp(40px, 6vw, 80px); }
.cta__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.cta-card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 4vw, 50px); }
.cta-card--join { background: var(--accent-soft); border-color: rgba(176,106,69,.4); }
.cta-card h2 { font-weight: 900; font-size: clamp(24px, 3vw, 34px); margin: 0 0 14px; }
.cta-card p { font-size: 15px; line-height: 1.9; margin: 0 0 24px; }
.cta-card--join p { color: var(--muted); }
.cta-card--support p { color: var(--ink-2); }

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); padding: clamp(40px, 6vw, 64px) var(--gutter); }
.site-footer__top { max-width: var(--maxw); margin-inline: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer__sns { display: flex; gap: 22px; font-size: 14px; font-weight: 600; color: var(--muted); list-style: none; flex-wrap: wrap; }
.site-footer__legal { max-width: var(--maxw); margin: 24px auto 0; font-size: 12px; color: #86807a; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.site-footer__legal a { color: #6f695f; text-decoration: underline; }

/* ==========================================================================
   レスポンシブ：940px 以下でナビをハンバーガーへ
   ========================================================================== */
@media (max-width: 940px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* 小さめ画面でスケジュールの日付を上に積む */
@media (max-width: 560px) {
  .schedule__item, .schedule__item--event { grid-template-columns: 1fr; gap: 10px; }
}

/* ==========================================================================
   インタラクション（hover / focus-visible / active）
   - 1C MINIMAL のトーンに合わせ控えめに。transition で滑らかに。
   - 動きは prefers-reduced-motion に配慮（末尾参照）。
   ========================================================================== */

/* キーボード操作時のフォーカスリング（共通） */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.faq__q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ボタン：わずかに浮き上がる */
.btn { transition: opacity .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.btn:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(27,26,23,.16); }
.btn:active { transform: translateY(0); box-shadow: 0 3px 8px rgba(27,26,23,.16); }
.btn--solid:hover { background: #000; }
.btn--accent:hover { background: #9a5a39; }
.btn--ghost:hover { background: rgba(27,26,23,.06); }
.btn--ghost-light:hover { background: rgba(244,241,234,.12); }

/* グローバルナビ：下線がスッと伸びる */
.nav__link { position: relative; transition: color .18s ease; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ブランド（ロゴ） */
.brand { transition: opacity .18s ease; }
.brand:hover { opacity: .7; }

/* テキストリンク */
.link-underline { transition: color .18s ease, border-color .18s ease; }
.link-underline:hover { color: var(--accent); }
.link-quiet { transition: color .18s ease; }
.link-quiet:hover { color: var(--ink); }
.hero__scroll { transition: opacity .18s ease; }
.hero__scroll:hover { opacity: .65; }

/* フッター・メニューの SNS リンク */
.site-footer__sns a, .mobile-menu__sns a { transition: color .18s ease; }
.site-footer__sns a:hover, .mobile-menu__sns a:hover { color: var(--accent); }

/* モバイルメニュー */
.mobile-menu__link { transition: color .18s ease, padding-left .18s ease; }
.mobile-menu__link:hover, .mobile-menu__link:active { color: var(--accent); padding-left: 8px; }
.mobile-menu__close { transition: background .18s ease, border-color .18s ease; }
.mobile-menu__close:hover { background: rgba(27,26,23,.06); }

/* ハンバーガー */
.menu-toggle { transition: opacity .18s ease, transform .18s ease; }
.menu-toggle:hover { opacity: .85; }
.menu-toggle:active { transform: scale(.96); }

/* FAQ 見出し */
.faq__q { transition: background .18s ease; }
.faq__item { transition: border-color .18s ease; }
.faq__item:hover { border-color: rgba(176,106,69,.5); }
.faq__q:hover { background: var(--accent-soft); }
.faq__a a { transition: color .18s ease, border-color .18s ease; }
.faq__a a:hover { color: var(--ink); border-color: var(--ink); }

/* クリック可能カード（協賛） */
.sponsor { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.sponsor:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(27,26,23,.1); border-color: rgba(176,106,69,.5); }
.sponsor .arrow { transition: transform .18s ease; }
.sponsor:hover .arrow { transform: translate(3px,-3px); }

/* メンバーのアバター・ハンドル */
.member__avatar { transition: transform .18s ease; }
.member__head a:hover .member__avatar { transform: scale(1.05); }
.member__handle { transition: opacity .18s ease; }
.member__handle:hover { opacity: .65; }

/* 動きを抑える設定のユーザーには transform を無効化 */
@media (prefers-reduced-motion: reduce) {
  .btn, .sponsor, .menu-toggle, .member__avatar, .mobile-menu__link, .sponsor .arrow, .nav__link::after { transition: color .18s ease, background-color .18s ease; }
  .btn:hover, .sponsor:hover, .menu-toggle:active, .member__head a:hover .member__avatar, .sponsor:hover .arrow { transform: none; box-shadow: none; }
}
