@charset "UTF-8";
/* ==========================================================================
   Mayuko Kamio Official Web Site — 共通スタイル
   design-reference.html のインラインCSSを移植・整理し、
   スケジュールページ用スタイルをシルバー配色で統合したもの。
   色は必ず :root の変数経由で参照すること（直書き禁止）。
   ========================================================================== */

:root {
  --white:       #FFFFFF;
  --paper:       #F6F7F8;   /* 淡いクールグレー（セクション背景） */
  --ink:         #1D1F23;   /* 文字色 */
  --garnet:      #6E7681;   /* アクセント＝シルバーグレー（変数名は歴史的事情） */
  --muted:       #8A9099;
  --line:        #E3E6E9;   /* 淡いシルバーの罫線 */
  --line-strong: #C9CED4;   /* やや濃い罫線（チップ・区切り線） */
  --hero-bg:     #E8EAEC;   /* ヒーロー画像読み込み前の下地 */
  --footer-fg:   #A9AFB6;   /* フッター本文（黒背景上） */
  --nav-bg:      rgba(255, 255, 255, 0.92);
  --veil:        rgba(255, 255, 255, 0.06);
  --dot:         rgba(255, 255, 255, 0.65);
  --frame:       rgba(110, 118, 129, 0.35);
  --highlight:   rgba(110, 118, 129, 0.10);   /* アクセント色の淡い面（到達した公演カード） */
  --nav-h:       60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* 投稿が無いときの INSTAGRAM セクションなど、hidden を付けた要素は必ず隠す */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  /* アニメーションで現れる要素は、アニメーションを止めると初期状態
     （opacity:0）のまま見えなくなるため、明示的に表示しておく */
  .reveal, .entry { opacity: 1 !important; transform: none !important; }
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 28px; }
:focus-visible { outline: 2px solid var(--garnet); outline-offset: 3px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Nav ---------- */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
/* ロゴを置かず、メニューのみを中央に配置する。
   サイト全体（ヒーローの名前・セクション見出し・フッター）が中央揃えなので、
   ヘッダーもその軸に合わせる。 */
.nav-inner {
  max-width: 980px; margin: 0 auto; padding: 0 28px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
}
/* 開閉ボタン（720px以下でのみ表示。ロゴが無いため右端に置く） */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 40px; height: 40px;
  margin-right: -8px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
/* 3本線。バーは1pxのヘアラインで、サイトの罫線と同じ細さに揃えている */
.nav-toggle .bar {
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  transition: transform .3s ease, opacity .2s ease;
}
/* 開いている間は上下のバーを中央（各バーの中心は 0.5 / 7.5 / 14.5px）へ寄せてXにする */
body.menu-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 4項目（TOP / SCHEDULE / PROFILE / CONTACT）で中央にまとまる間隔 */
.nav-links { display: flex; gap: 56px; list-style: none; }
.nav-links a {
  display: block;
  font-family: 'Marcellus', serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-indent: 0.22em;          /* letter-spacing の右余白ぶんを補正して光学的に中央に置く */
  text-decoration: none;
  color: var(--muted);
  padding: 4px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--garnet); }
/* 現在地は色＋細い罫線で示す（ロゴが無いぶん、居場所の手がかりを強めに） */
.nav-links a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--garnet);
}

/* ---------- Hero ---------- */
.hero { padding-top: var(--nav-h); }
.hero-photo {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  height: min(80vh, 760px);
  background: var(--hero-bg);
  overflow: hidden;
}
.hero-photo img.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-photo img.hero-img.active { opacity: 1; }
/* 初回表示：ふわっと現れる（ごくわずかなズームアウトを伴う） */
.hero-photo img.hero-img.boot { animation: heroFade 2.4s ease both; }
@keyframes heroFade {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}
/* 全体にかかるごく薄い紗（ヴェール） */
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--veil);
  pointer-events: none;
  z-index: 1;
}
.hero-dots {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 2;
}
.hero-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--dot);
  cursor: pointer;
  padding: 0;
  transition: background .3s;
}
.hero-dots .dot.active { background: var(--garnet); }

.hero-name { text-align: center; padding: 64px 24px 72px; }
.hero-name .eyebrow {
  font-family: 'Marcellus', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--garnet);
  margin-bottom: 20px;
}
.hero-name h1 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  animation: heroRise 1.2s ease .9s both;
}
.hero-name .hero-ja {
  margin-top: 14px;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--muted);
  animation: heroRise 1.2s ease .9s both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.alt { background: var(--paper); }
section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .en {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  letter-spacing: 0.3em;
}
.sec-head .ja {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.sec-head::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--garnet);
  margin: 26px auto 0;
}

/* ---------- 下層ページの見出し ---------- */
.page-head {
  padding: calc(var(--nav-h) + 84px) 0 0;
  text-align: center;
}
.page-head .en {
  font-family: 'Marcellus', serif;
  font-size: clamp(28px, 5vw, 36px);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  line-height: 1.3;
}
.page-head .ja {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--muted);
}
.page-head::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--garnet);
  margin: 28px auto 0;
}

/* ---------- Instagram（トップページ） ---------- */
/* アカウントへの導線。見出し直下の .ja の位置に置く */
.sec-head .ja a.ig-account {
  color: var(--garnet);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.sec-head .ja a.ig-account:hover { color: var(--ink); border-color: var(--garnet); }

/* 3投稿を上端揃えで並べる。高さが不揃いでも崩れない */
.ig-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.ig-item { min-width: 0; }   /* グリッド項目の既定 min-width:auto によるはみ出しを防ぐ */

/* embed.js は blockquote を iframe に差し替え、min-width:326px などの
   インラインスタイルを直接書き込む。320px幅の端末でははみ出すため、
   ここで打ち消す（インライン指定が相手なので !important が要る）。 */
.ig-item .instagram-media,
.ig-item iframe.instagram-media {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}
/* 埋め込みが描画されるまでの見え方（公式CSSが当たる前の素の blockquote） */
.ig-item blockquote.instagram-media {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  text-align: center;
}
/* 淡いグレーのセクションに置くときは、下地と同じ色にならないよう白で抜く */
section.alt .ig-item blockquote.instagram-media { background: var(--white); }
.ig-fallback {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--garnet);
  text-decoration: none;
}
.ig-fallback:hover { color: var(--ink); }

/* ---------- Schedule（トップ内の簡易カード） ---------- */
.concert {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
}
.concert:first-of-type { border-top: 1px solid var(--line); }
.datebox { text-align: center; }
.datebox .ym { font-family: 'Marcellus', serif; font-size: 12.5px; letter-spacing: 0.12em; color: var(--muted); }
.datebox .day { font-family: 'Marcellus', serif; font-size: 44px; line-height: 1.15; }
.datebox .wd { font-size: 11px; letter-spacing: 0.3em; color: var(--garnet); font-weight: 500; margin-top: 2px; }
.c-place { font-size: 12.5px; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 4px; }
.c-place b { color: var(--ink); font-weight: 500; }
.c-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.c-desc { margin-top: 4px; font-size: 13.5px; color: var(--muted); }
/* カードごと /schedule/ の該当公演へのリンク。押せることが分かるようにする */
a.concert {
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
a.concert:hover { background: var(--paper); }
section.alt a.concert:hover { background: var(--white); }
a.concert:hover .c-title { color: var(--garnet); }
a.concert .c-title { transition: color .2s; }
.more { text-align: center; margin-top: 48px; }

/* ---------- Button ---------- */
.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--garnet);
  text-decoration: none;
  border: 1px solid var(--garnet);
  padding: 13px 44px;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--garnet); color: var(--white); }

/* ---------- Profile ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.profile-photo {
  aspect-ratio: 3 / 4;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.profile-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.profile-photo .ph-frame { position: absolute; inset: 12px; border: 1px solid var(--frame); }
.profile-text p { margin-bottom: 1.6em; font-size: 14.5px; }
.profile-text p:last-child { margin-bottom: 0; }

/* ---------- Footer / contact ---------- */
footer { background: var(--ink); color: var(--footer-fg); padding: 72px 0 48px; text-align: center; }
footer .f-name {
  font-family: 'Marcellus', serif;
  font-size: 19px;
  letter-spacing: 0.28em;
  color: var(--white);
}
/* サイト名はトップページへのリンク（下線は付けず、ホバーで淡くする） */
footer .f-name a {
  display: inline-block;
  text-decoration: none;
  text-indent: 0.28em;   /* 字送りの右余白ぶんを補正して中央に見せる */
  transition: color .2s;
}
footer .f-name a:hover { color: var(--footer-fg); }
footer .f-mgmt { margin-top: 22px; font-size: 12.5px; letter-spacing: 0.1em; line-height: 2.2; }
footer .f-mgmt a, footer .f-more a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--garnet);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
footer .f-mgmt a:hover, footer .f-more a:hover { color: var(--footer-fg); border-color: var(--footer-fg); }
footer .f-more { margin-top: 14px; font-size: 12px; letter-spacing: 0.1em; }
footer .f-rule { width: 34px; height: 1px; background: var(--garnet); margin: 30px auto; }
footer .f-updated { font-size: 11.5px; letter-spacing: 0.12em; margin-bottom: 8px; }
footer .f-copy { font-size: 11px; letter-spacing: 0.14em; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   /schedule/ 専用
   ========================================================================== */
.schedule-main { padding-bottom: 24px; }
.schedule-main .wrap { max-width: 860px; padding: 0 24px; }
/* セクションの共通余白（96px）はスケジュール一覧では使わない */
.schedule-main section { padding: 0; }

/* 絞り込みチップ */
.filter {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 56px 0 8px;
}
.filter.visible { display: flex; }
.chip {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip[aria-pressed="true"] {
  color: var(--white);
  background: var(--garnet);
  border-color: var(--garnet);
}

/* セクション見出し */
.section-label {
  display: flex; align-items: center; gap: 16px;
  margin: 56px 0 8px;
}
.section-label span {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--line-strong); }

/* 公演カード（詳細版） */
.entry {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(10px);
  animation: rise .5s ease forwards;
}
.entry:last-child { border-bottom: none; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* トップページのカードから名指しで飛んできた公演。
   固定ヘッダーに隠れないよう、その分だけ手前で止める */
.entry[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* ハイライトは transition で行う。animation で書くと .entry 本来の
   フェードイン（rise）を打ち消してしまい、対象カードだけが
   opacity:0 のまま残ってしまうため。
   reduced-motion では共通指定で transition が切れるので、点滅せず静かに出て消える。 */
.entry { transition: background-color .8s ease, box-shadow .8s ease; }
.entry.is-target {
  background-color: var(--highlight);
  box-shadow: inset 3px 0 0 var(--garnet);
}

/* 公演を名指しで開いたときは、順番待ちのフェードイン自体をやめて即座に見せる */
body.hash-landing .entry { animation: none; opacity: 1; transform: none; }

.entry .datebox { text-align: center; padding-top: 4px; }
.entry .datebox .ym {
  font-family: 'Marcellus', serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.entry .datebox .day {
  font-family: 'Marcellus', serif;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.entry .datebox .wd {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--garnet);
  font-weight: 700;
  margin-top: 2px;
}
.entry .datebox .time {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.entry .datebox .time small { display: block; font-size: 10px; letter-spacing: 0.2em; color: var(--muted); }

.info .place {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 6px;
}
.info .place b { color: var(--ink); font-weight: 500; }
.info h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.info .desc { margin-top: 8px; font-size: 14.5px; line-height: 1.9; }

.meta { margin-top: 14px; display: grid; gap: 3px; }
.meta .row { font-size: 13px; color: var(--muted); display: flex; gap: 10px; line-height: 1.9; }
.meta .row dt { flex: none; width: 6.5em; letter-spacing: 0.08em; color: var(--muted); white-space: nowrap; }
.meta .row dd { color: var(--ink); }
.entry .note { margin-top: 10px; font-size: 12.5px; color: var(--muted); }

.ticket-btn {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--garnet);
  text-decoration: none;
  border: 1px solid var(--garnet);
  padding: 9px 26px;
  transition: background .2s, color .2s;
}
.ticket-btn:hover { background: var(--garnet); color: var(--white); }

/* 曲目・チケット取扱い */
.program { margin-top: 14px; }
.program .program-label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--garnet);
  margin-bottom: 8px;
}
.program .lines {
  padding: 2px 0 2px 14px;
  border-left: 2px solid var(--line);
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink);
}
.outlet-block { margin-top: 12px; }
.outlet-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 7px;
}
.outlets { display: flex; flex-wrap: wrap; gap: 8px; }
.outlet {
  display: inline-flex; align-items: baseline;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 14px;
  color: var(--ink);
}
.outlet small { color: var(--muted); margin-left: 7px; font-size: 11px; }
a.outlet {
  color: var(--garnet);
  border-color: var(--garnet);
  text-decoration: none;
  transition: background .2s, color .2s;
}
a.outlet:hover { background: var(--garnet); color: var(--white); }
a.outlet:hover small { color: inherit; opacity: .8; }

/* これまでの公演 */
.past-block { margin-top: 56px; }
.past-toggle {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 8px 0;
}
.past-toggle::after { content: ''; flex: 1; height: 1px; background: var(--line-strong); }
.past-toggle .arrow { font-size: 11px; transition: transform .25s; }
.past-block.open .past-toggle .arrow { transform: rotate(90deg); }
.past-list { display: none; }
.past-block.open .past-list { display: block; }
.past-list .entry { opacity: 0.62; padding: 26px 0; animation: none; transform: none; }
.past-list .datebox .day { font-size: 36px; }
.past-list .info h3 { font-size: 17px; }

/* 空・エラー表示 */
.empty {
  text-align: center;
  color: var(--muted);
  padding: 64px 0;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.12em;
}
.schedule-foot { padding: 40px 0 88px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: calc(var(--nav-h) + 120px) 0 140px; }
.notfound .code {
  font-family: 'Marcellus', serif;
  font-size: clamp(52px, 12vw, 84px);
  letter-spacing: 0.12em;
  line-height: 1.1;
  color: var(--garnet);
}
.notfound .lead {
  margin: 20px 0 40px;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ==========================================================================
   /contact/ 専用
   ========================================================================== */
.contact-block { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-block .lead { font-size: 14.5px; }
.contact-block .office {
  margin-top: 44px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.08em;
}
/* 狭い画面で「株式会社」と「KAJIMOTO」の間で折り返さないようにする */
.contact-block .office-sub { display: inline-block; }
.btn-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 16px;
  margin-top: 32px;
}

/* ==========================================================================
   Mobile
   ========================================================================== */
/* Instagramの埋め込みは横に3つ並べると1枚が狭くなりすぎるため、
   他のレイアウトより早い段階（タブレット縦）で1カラムに切り替える */
@media (max-width: 767px) {
  .ig-list { grid-template-columns: minmax(0, 1fr); gap: 32px; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 720px) {
  /* メニューは開閉式にし、開いたときは全画面に広げて字送りを本来の広さに戻す。
     backdrop-filter を持つ要素は position:fixed の子の含みブロックになり、
     オーバーレイがヘッダー内に閉じ込められてしまうため、この幅では無効にする。 */
  /* blur が無いと半透明の背景は濁って見えるため、この幅では不透明にする */
  nav.site-nav { backdrop-filter: none; background: var(--white); }
  .nav-inner { justify-content: flex-end; padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 34px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;   /* 閉じている間はタブ移動の対象から外す */
    transition: opacity .3s ease, visibility .3s;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-links { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 14px; letter-spacing: 0.28em; text-indent: 0.28em; padding: 10px 4px; }
  .hero-photo { height: 62vh; }
  .hero-name { padding: 44px 24px 52px; }
  section { padding: 64px 0; }
  .page-head { padding-top: calc(var(--nav-h) + 56px); }
  .concert { grid-template-columns: 84px 1fr; gap: 18px; }
  .datebox .day { font-size: 34px; }
  .profile-grid { grid-template-columns: 1fr; gap: 36px; }
  .profile-photo { max-width: 280px; margin: 0 auto; }
  .btn-row { flex-direction: column; align-items: center; gap: 14px; }
  .btn-row .btn { width: 100%; max-width: 320px; padding: 13px 20px; }
}

@media (max-width: 560px) {
  .entry { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .entry .datebox {
    display: flex; align-items: baseline; gap: 12px;
    text-align: left; padding-top: 0;
    border-bottom: 1px dotted var(--line);
    padding-bottom: 8px;
  }
  .entry .datebox .day { font-size: 34px; }
  .entry .datebox .time { margin: 0 0 0 auto; border: none; padding: 0; }
  .entry .datebox .time small { display: inline; margin-right: 4px; }
  .meta .row { display: grid; grid-template-columns: 6.5em 1fr; gap: 10px; }
}
