@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* =========================================================================
   佐々木ひろ子 オフィシャルサイト  —  共通スタイル
   Design system: Art Nouveau × Contemporary
   温かいアイボリー × 孔雀のティール × アンティークゴールド／優雅な曲線装飾
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* color — アイボリー基調＋ティール（メイン）＋アンティークゴールド（サブ） */
  --ink:        #2a322f;   /* 深いチャコールグリーン（本文） */
  --ink-soft:   #5c6a64;   /* やわらかいグリーングレー（補足） */
  --paper:      #faf7f0;   /* 温かいアイボリー（背景） */
  --paper-2:    #eef2ec;   /* ごく淡いセージ（帯背景） */
  --card:       #fffdf8;   /* カード背景 */
  --line:       #e5ddcc;   /* 温かい罫線 */
  --gold:       #2f8f86;   /* 孔雀のティール（メインアクセント）※変数名は互換のため踏襲 */
  --gold-deep:  #1f746b;   /* 濃いティール（テキスト用アクセント） */
  --rose:       #b0863a;   /* アンティークゴールド（サブアクセント） */
  --shadow:     0 18px 44px rgba(42, 50, 47, .12);
  --shadow-sm:  0 6px 18px rgba(42, 50, 47, .09);

  /* type */
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho",
           "Times New Roman", serif;
  --display: "Cormorant Garamond", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans:  "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
           "Yu Gothic", "Meiryo", system-ui, sans-serif;

  /* layout */
  --wrap: 1120px;
  --radius: 14px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

/* ---- Reset-ish -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* 日本語に即した改行（文節単位での折り返し） */
p, .lead, h1, h2, h3, .section-title, li, figcaption, .history__body p {
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
h1, h2, .section-title { text-wrap: balance; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.35; letter-spacing: .04em; }
p { margin: 0 0 1.2em; }

/* ---- Utility layout --------------------------------------------------- */
.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.wrap-narrow { width: min(760px, 92%); margin-inline: auto; }
.section { padding: clamp(3.5rem, 9vw, 7rem) 0; }
.section--tint { background: var(--paper-2); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* section heading */
.eyebrow {
  font-family: var(--display);
  font-size: .96rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 1rem;
}
/* 中央寄せ見出しは両脇に細い金の罫（アール・ヌーヴォー装飾） */
.center .eyebrow, .wrap-narrow.center .eyebrow { display: inline-flex; align-items: center; gap: .85em; }
.center .eyebrow::before, .center .eyebrow::after,
.wrap-narrow.center .eyebrow::before, .wrap-narrow.center .eyebrow::after {
  content: ""; width: 32px; height: 1px; background: var(--rose); opacity: .55;
}
.section-title {
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  margin: 0 0 1.4rem;
}
.section-title small {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .16em;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: .6rem;
  text-transform: none;
}
/* 中央寄せ見出しの下に、控えめな花飾り */
.center .section-title::after {
  content: "❦";
  display: block;
  color: var(--rose);
  font-size: 1.05rem;
  line-height: 1;
  margin: 1rem auto 0;
  opacity: .85;
}
.lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 42em; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .85em 1.9em;
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  letter-spacing: .08em;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Header / nav ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand__ja { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; letter-spacing: .12em; }
.brand__en { font-family: var(--display); font-style: italic; font-size: .74rem; letter-spacing: .26em; color: var(--gold-deep); text-transform: uppercase; margin-top: .28rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: .86rem; letter-spacing: .06em; color: var(--ink-soft);
  position: relative; padding: .2em 0; transition: color .18s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .22s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 62px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 6% 1.4rem;
    transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: .9rem 0; width: 100%; border-bottom: 1px solid var(--line); font-size: .98rem; }
  .nav__links a::after { display: none; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---- Hero (top page) -------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  /* トップはモダン・シンプル：中性的で静かな背景（写真をなじませる） */
  background:
    radial-gradient(110% 72% at 88% -10%, rgba(47,143,134,.07), transparent 60%),
    linear-gradient(180deg, #f1f2ef, var(--paper));
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--gap);
  align-items: center; padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5.5rem);
}
.hero__kicker { font-size: .78rem; letter-spacing: .32em; color: var(--gold-deep); font-weight: 700; text-transform: uppercase; margin-bottom: 1.3rem; }
.hero h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); margin: 0 0 1.2rem; letter-spacing: .06em; }
.hero h1 .en { display: block; font-family: var(--display); font-style: italic; font-size: 1.15rem; letter-spacing: .16em; color: var(--ink-soft); font-weight: 500; margin-top: 1.1rem; }
.hero__roles { font-family: var(--serif); color: var(--rose); font-size: 1.05rem; letter-spacing: .1em; margin-bottom: 1.4rem; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero__portrait {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--paper-2), #e7e9e4);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__portrait .placeholder,
.img-placeholder {
  width: 100%; height: 100%; display: grid; place-content: center; text-align: center;
  color: var(--gold-deep); font-family: var(--serif); letter-spacing: .1em;
  gap: .4rem; padding: 1rem; min-height: 180px;
}
.img-placeholder small { font-family: var(--sans); font-size: .72rem; letter-spacing: .08em; color: var(--ink-soft); }

/* 写真準備中のスロットを上品に見せる装飾パネル */
.img-placeholder--motif {
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(47,143,134,.10), transparent 60%),
    linear-gradient(160deg, var(--card), var(--paper-2));
  color: var(--gold-deep);
}
.img-placeholder--motif span { font-family: var(--display); font-size: 1.5rem; letter-spacing: .06em; }
.img-placeholder--motif::before {
  content: "❦"; display: block; color: var(--rose); font-size: 1.4rem; margin-bottom: .3rem; opacity: .8;
}

/* 画像スロット：写真ファイルがあれば表示、無ければプレースホルダーに自動フォールバック */
.media-fallback { position: relative; }
.media-fallback > .img-placeholder { position: absolute; inset: 0; }
.media-fallback > img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 380px; margin-inline: auto; order: -1; }
}

/* ---- Page hero (sub pages) ------------------------------------------- */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(100% 90% at 90% -20%, rgba(47,143,134,.12), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); margin: 0 0 1rem; }
.breadcrumb { font-size: .78rem; color: var(--ink-soft); letter-spacing: .06em; margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span { color: var(--line); margin: 0 .5em; }

/* 画像つきのページヘッダー（下層ページ上部に写真を配置） */
.page-hero--split .page-hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--gap); align-items: center;
}
.page-hero__media {
  aspect-ratio: 4 / 5; border-radius: 170px 170px var(--radius) var(--radius); overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(176, 134, 58, .30); background: var(--paper-2); max-width: 420px; margin-left: auto;
}
@media (max-width: 820px) {
  .page-hero--split .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__media { max-width: 340px; margin: 0 auto; order: -1; }
}

/* ---- Portal cards (top page: multiple faces) ------------------------- */
.portals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.portal {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.portal::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose)); opacity: .0; transition: opacity .2s ease;
}
.portal:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d8ccb6; }
.portal:hover::before { opacity: 1; }
.portal__no { font-family: var(--serif); color: var(--gold); font-size: .95rem; letter-spacing: .2em; }
.portal h3 { font-size: 1.28rem; margin: .5rem 0 .3rem; }
.portal__en { font-size: .68rem; letter-spacing: .24em; color: var(--ink-soft); text-transform: uppercase; margin-bottom: .9rem; }
.portal p { font-size: .92rem; color: var(--ink-soft); flex-grow: 1; }
.portal__more { font-size: .85rem; font-weight: 600; color: var(--gold-deep); margin-top: 1rem; display: inline-flex; align-items: center; gap: .4em; }
.portal:hover .portal__more .arrow { transform: translateX(3px); }
.portal__more .arrow { transition: transform .18s ease; }

@media (max-width: 820px) { .portals { grid-template-columns: 1fr; } }

/* ---- Generic card grid ----------------------------------------------- */
.grid { display: grid; gap: 1.3rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.15rem; margin: 0 0 .6rem; }
.card p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 0; }
.card__icon { font-size: 1.5rem; margin-bottom: .8rem; display: block; }

/* ---- Feature row (image + text) -------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; background: var(--paper-2); }
.feature + .feature { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: -1; }
}

/* ---- Profile ---------------------------------------------------------- */
.profile-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--gap); align-items: start; }
.profile-photo { border-radius: 170px 170px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow), 0 0 0 1px rgba(176, 134, 58, .30); aspect-ratio: 4/5; background: var(--paper-2); position: sticky; top: 90px; }
@media (max-width: 820px) { .profile-grid { grid-template-columns: 1fr; } .profile-photo { position: static; max-width: 360px; } }

.facts { list-style: none; margin: 1.5rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.facts li { display: grid; grid-template-columns: 8.5em 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.facts dt, .facts .k { color: var(--gold-deep); font-weight: 600; letter-spacing: .06em; }
@media (max-width: 560px) { .facts li { grid-template-columns: 1fr; gap: .2rem; } }

/* ---- Timeline (出演歴) ------------------------------------------------ */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: .5rem; bottom: .5rem; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 1.8rem 2.4rem; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: .45rem; width: 16px; height: 16px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--gold);
}
.timeline .ev { display: block; font-weight: 600; font-size: 1rem; line-height: 1.55; }
.timeline .yr { display: block; font-family: var(--serif); color: var(--gold-deep); font-weight: 600; letter-spacing: .06em; font-size: .86rem; margin-top: .25rem; }
.timeline .meta { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: .15rem; line-height: 1.6; }
.timeline .ev--link { color: var(--ink); text-decoration: none; }
.timeline .ev--link:hover { color: var(--gold-deep); }
.timeline .ev__flyer {
  display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  color: var(--gold-deep); background: var(--surface-2, var(--paper-2)); border: 1px solid var(--line);
  border-radius: 999px; padding: .05em .6em; margin-left: .4em; vertical-align: middle; white-space: nowrap;
}
.timeline li.has-flyer::before { background: var(--gold); }

/* 主催公演カードのチラシリンク */
a.recital-card__flyer { display: block; position: relative; text-decoration: none; }
a.recital-card__flyer .flyer-badge {
  position: absolute; right: .6rem; bottom: .6rem; font-size: .7rem; font-weight: 600; letter-spacing: .03em;
  color: #fff; background: rgba(31,116,107,.86); border-radius: 999px; padding: .25em .8em;
  opacity: 0; transform: translateY(4px); transition: opacity .25s ease, transform .25s ease;
}
a.recital-card__flyer:hover .flyer-badge { opacity: 1; transform: none; }
a.recital-card__flyer:hover img { filter: brightness(.94); }

/* ---- Event cards (今後の予定) ---------------------------------------- */
.event { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); }
.event + .event { margin-top: 1rem; }
.event__date { text-align: center; min-width: 4.5em; padding-right: 1.4rem; border-right: 1px solid var(--line); }
.event__date .m { font-size: .78rem; letter-spacing: .1em; color: var(--rose); font-weight: 600; }
.event__date .d { font-family: var(--serif); font-size: 1.9rem; line-height: 1; }
.event__date .y { font-size: .72rem; color: var(--ink-soft); }
.event__date--tbd { display: flex; align-items: center; justify-content: center; }
.event__date--tbd .m { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-deep); font-weight: 600; letter-spacing: .06em; }
.event h3 { font-size: 1.08rem; margin: 0 0 .3rem; }
.event p { font-size: .86rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 560px) { .event { grid-template-columns: 1fr; } .event__date { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 .8rem; display: flex; gap: .5em; align-items: baseline; justify-content: center; } }

/* ---- Flyer archive (チラシ) ------------------------------------------ */
.flyer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.flyer-grid figure { margin: 0; }
.flyer-grid img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: block; transition: transform .2s ease; background: var(--card); }
.flyer-grid figure:hover img { transform: translateY(-3px); }
.flyer-grid figcaption { font-size: .76rem; color: var(--ink-soft); margin-top: .5rem; line-height: 1.5; }
@media (max-width: 820px) { .flyer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Recital cards (主催公演) ---------------------------------------- */
.recitals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.recital-card {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--rose);
  border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.recital-card--has-flyer { padding: 0; border-left-width: 4px; }
.recital-card__flyer { background: var(--paper-2); }
.recital-card__flyer img { width: 100%; height: auto; max-height: 300px; object-fit: contain; background: var(--paper-2); display: block; }
.recital-card--has-flyer .recital-card__text { padding: 1.3rem 1.6rem 1.5rem; }
.recital-card__no { font-family: var(--serif); color: var(--rose); font-size: .9rem; letter-spacing: .16em; font-weight: 600; }
.recital-card h3 { font-size: 1.14rem; margin: .35rem 0 .5rem; line-height: 1.5; }
.recital-card__meta { font-size: .84rem; color: var(--ink-soft); margin: 0 0 .5rem; }
.recital-card__date { font-family: var(--serif); color: var(--gold-deep); font-size: .95rem; margin: 0; letter-spacing: .06em; }
.recital-card__detail { font-size: .82rem; color: var(--ink-soft); margin: .5rem 0 0; line-height: 1.7; }
@media (max-width: 640px) { .recitals { grid-template-columns: 1fr; } }

/* ---- Pricing / menu table -------------------------------------------- */
.menu-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  position: relative;
}
.menu-card--feature { border-color: var(--gold); box-shadow: var(--shadow); }
.menu-card__badge { position: absolute; top: -12px; left: 1.8rem; background: var(--gold); color: #fff; font-size: .68rem; letter-spacing: .12em; font-weight: 700; padding: .35em 1em; border-radius: 999px; }
.menu-card h3 { font-size: 1.2rem; margin: 0 0 .3rem; }
.menu-card__tag { font-size: .72rem; letter-spacing: .2em; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 1rem; }
.menu-card__price { font-family: var(--serif); font-size: 1.7rem; margin: .3rem 0 .2rem; }
.menu-card__price small { font-size: .8rem; color: var(--ink-soft); font-family: var(--sans); }
.menu-card ul { list-style: none; margin: 1.1rem 0 1.4rem; padding: 0; flex-grow: 1; }
.menu-card li { position: relative; padding: .45rem 0 .45rem 1.5em; font-size: .9rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.menu-card li::before { content: "♪"; position: absolute; left: 0; color: var(--gold); }

.note { font-size: .82rem; color: var(--ink-soft); }

/* フォトギャラリー（ポートレート） */
.portrait-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.portrait-gallery figure { margin: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--paper-2); }
.portrait-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform .5s ease; }
.portrait-gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 640px) { .portrait-gallery { grid-template-columns: repeat(2, 1fr); gap: .7rem; } }

/* 注目の講座パネル */
.signature-course {
  margin-top: 2.4rem; background: linear-gradient(160deg, var(--card), var(--paper-2));
  border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius);
  padding: 1.8rem 2rem; box-shadow: var(--shadow-sm); position: relative;
}
.signature-course__badge { display: inline-block; background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; padding: .3em 1em; border-radius: 999px; margin-bottom: .8rem; }
.signature-course h3 { font-size: 1.2rem; margin: 0 0 .7rem; line-height: 1.5; }
.signature-course p { margin: 0; }

/* チェックリスト（旧HPメッセージ等） */
.checklist { list-style: none; margin: 0 auto; padding: 0; max-width: 40em; display: grid; gap: .55rem; }
.checklist li { position: relative; padding: .55rem .9rem .55rem 2.4rem; background: var(--card); border: 1px solid var(--line); border-radius: 10px; font-size: .92rem; }
.checklist li::before { content: "✓"; position: absolute; left: .9rem; top: .55rem; color: var(--gold-deep); font-weight: 700; }

/* ---- 小さな近影（プロフィール） ------------------------------------ */
.profile-current {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: center 35%;
  display: block; margin: 0 auto 1.2rem; box-shadow: var(--shadow-sm);
  border: 3px solid var(--card); outline: 1px solid var(--line);
}

/* ---- 年表（プロフィール History） ---------------------------------- */
.history { list-style: none; margin: 0; padding: 0; position: relative; }
.history::before {
  content: ""; position: absolute; left: 8.5rem; top: .4rem; bottom: .4rem; width: 1px;
  background: var(--line);
}
.history__item { position: relative; display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.6rem; padding: 0 0 1.9rem; }
.history__item:last-child { padding-bottom: 0; }
.history__year { font-family: var(--display); font-size: 1.1rem; color: var(--gold-deep); text-align: right; padding-top: .05rem; letter-spacing: .03em; }
.history__body { position: relative; padding-left: 1.6rem; }
.history__body::before {
  content: ""; position: absolute; left: -5px; top: .45rem; width: 11px; height: 11px;
  border-radius: 50%; background: var(--card); border: 2px solid var(--gold);
}
.history__body h3 { font-size: 1.02rem; margin: 0 0 .35rem; line-height: 1.5; }
.history__body p { margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.85; }
@media (max-width: 620px) {
  .history::before { left: 5px; }
  .history__item { grid-template-columns: 1fr; gap: .3rem; }
  .history__year { text-align: left; padding-left: 1.6rem; font-size: 1rem; }
  .history__body { padding-left: 1.6rem; }
}

/* ---- その他のお仕事：制作例・料金 ---------------------------------- */
.works-examples__label {
  font-family: var(--display); font-size: 1.15rem; letter-spacing: .1em; color: var(--gold-deep);
  margin: 0 0 1rem;
}
.design-samples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 720px; margin: 0 auto; }
.design-samples figure { margin: 0; }
.design-samples img {
  width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: block; background: var(--card);
}
.design-samples figcaption { margin-top: .6rem; font-size: .82rem; color: var(--ink-soft); text-align: center; }
.design-samples--small { grid-template-columns: repeat(3, 1fr); max-width: 640px; gap: 1rem; }
.design-samples--small figcaption { font-size: .74rem; margin-top: .4rem; }
@media (max-width: 560px) { .design-samples { grid-template-columns: 1fr; } .design-samples--small { grid-template-columns: repeat(3, 1fr); gap: .6rem; } }

/* 制作例：全て同じサイズの小さめサムネイル */
.design-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem .8rem; }
.design-grid figure { margin: 0; }
.design-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 6px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: block; background: var(--card); }
.design-grid figcaption { font-size: .7rem; color: var(--ink-soft); text-align: center; margin-top: .35rem; line-height: 1.4; }
@media (max-width: 720px) { .design-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 440px) { .design-grid { grid-template-columns: repeat(2, 1fr); } }

.design-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.2rem; }
.design-work__imgs { display: flex; gap: .5rem; }
.design-work__imgs a { flex: 1 1 0; min-width: 0; }
.design-work__imgs img { width: 100%; height: auto; border-radius: 6px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: block; background: var(--card); transition: transform .2s ease; }
.design-work__imgs a:hover img { transform: translateY(-3px); }
.design-work__cap { margin: .55rem 0 0; font-size: .78rem; color: var(--ink-soft); text-align: center; line-height: 1.5; }
@media (max-width: 720px) { .design-works { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .design-works { grid-template-columns: 1fr; } }

.design-notes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.design-note-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); }
.design-note-card h4 { margin: 0 0 .7rem; font-size: 1rem; color: var(--gold-deep); }
.design-note-card ul { margin: 0; padding-left: 1.2em; }
.design-note-card li { font-size: .86rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: .3rem; }
@media (max-width: 640px) { .design-notes { grid-template-columns: 1fr; } }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.price-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.3rem 1.4rem; border-top: 3px solid var(--gold);
}
.price-item h4 { font-size: 1rem; margin: 0 0 .5rem; }
.price-item__price { margin: 0; font-size: .95rem; color: var(--ink); }
.price-item__price b { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-deep); }
.price-item__note { margin: .5rem 0 0; font-size: .8rem; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* ---- お問い合わせフォームへの導線 ---------------------------------- */
.contact-form-cta {
  background: linear-gradient(160deg, var(--card), var(--paper-2));
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.8rem 1.8rem; box-shadow: var(--shadow-sm);
}
.contact-form-cta p { margin: 0; line-height: 1.9; }

/* ---- Discography（ディスコグラフィ） -------------------------------- */
.disc-list { display: grid; gap: 1.1rem; }
.disc-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.6rem 1.8rem; position: relative;
  border-left: 3px solid var(--gold);
}
.disc-item h3 { font-size: 1.12rem; margin: 0 0 .45rem; line-height: 1.5; }
.disc-item__meta { font-size: .84rem; color: var(--gold-deep); margin: 0 0 .6rem; letter-spacing: .02em; }
.disc-item__tracks { list-style: none; margin: .5rem 0 .7rem; padding: 0; }
.disc-item__tracks li { position: relative; padding: .25rem 0 .25rem 1.4em; font-size: .9rem; color: var(--ink); }
.disc-item__tracks li::before { content: "♪"; position: absolute; left: 0; color: var(--rose); }
.disc-item__note { font-size: .84rem; color: var(--ink-soft); margin: .4rem 0 0; }
@media (max-width: 640px) { .disc-item { padding: 1.3rem 1.3rem; } }

/* ---- Gallery（活動の記録） ------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.gallery figure { margin: 0; border-radius: 10px; overflow: hidden; background: var(--paper-2); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem .8rem .6rem; font-size: .74rem; color: #fff; background: linear-gradient(transparent, rgba(30,25,20,.72)); opacity: 0; transition: opacity .3s ease; }
.gallery figure:hover figcaption { opacity: 1; }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---- Testimonials / interviews --------------------------------------- */
.quote {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.8rem 2rem; box-shadow: var(--shadow-sm);
}
.quote p { font-size: .98rem; }
.quote__who { font-size: .85rem; color: var(--gold-deep); font-weight: 600; margin-top: 1rem; }
.quote--long { display: grid; gap: 1.2rem; }
.quote--long .quote__body { columns: 1; }

.interview { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem,4vw,2.6rem); box-shadow: var(--shadow-sm); }
.interview__head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.interview__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--paper-2); flex-shrink: 0; overflow: hidden; display: grid; place-content: center; color: var(--gold-deep); font-family: var(--serif); }
.interview__q { font-family: var(--serif); color: var(--rose); font-weight: 600; margin: 1.4rem 0 .4rem; }
.interview__q:first-child { margin-top: 0; }

/* ---- Tag / chips ------------------------------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.chip { font-size: .78rem; letter-spacing: .04em; padding: .4em 1em; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-soft); }

/* ---- CTA band --------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--ink), #143a45);
  color: var(--paper); border-radius: var(--radius); padding: clamp(2.4rem, 6vw, 3.6rem);
  text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { color: var(--paper); font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 0 0 .8rem; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 34em; margin-inline: auto; }
.cta-band .btn { margin-top: 1.4rem; }
.cta-band .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,.6); }
.cta-band .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* ---- Contact ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; letter-spacing: .04em; margin-bottom: .5rem; }
.form-field label .req { color: var(--rose); font-size: .72rem; margin-left: .4em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .8em 1em; font-family: var(--sans); font-size: .95rem;
  border: 1px solid var(--line); border-radius: 10px; background: var(--card); color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.form-field textarea { min-height: 150px; resize: vertical; }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1.6em 1fr; gap: .8rem; align-items: start; }
.contact-list .ic { color: var(--gold); }
.contact-list a { color: var(--gold-deep); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

/* ---- SNS row ---------------------------------------------------------- */
.sns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.2rem; }
.sns a {
  display: inline-flex; align-items: center; gap: .5em; font-size: .85rem; font-weight: 600;
  padding: .6em 1.2em; border: 1px solid var(--line); border-radius: 999px; background: var(--card);
  transition: border-color .18s ease, transform .18s ease;
}
.sns a:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ---- News list -------------------------------------------------------- */
.news { list-style: none; margin: 0; padding: 0; }
.news li { display: grid; grid-template-columns: 8em 6.5em 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; font-size: .93rem; }
.news time { color: var(--ink-soft); font-size: .84rem; letter-spacing: .06em; }
.news .tag { font-size: .7rem; letter-spacing: .08em; text-align: center; padding: .25em .6em; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); color: var(--gold-deep); white-space: nowrap; }
@media (max-width: 640px) { .news li { grid-template-columns: 5.5em 1fr; } .news .tag { grid-row: 1; grid-column: 2; justify-self: start; } .news p { grid-column: 1 / -1; margin: 0; } }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(2.5rem, 6vw, 4rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--gap); margin-bottom: 2.5rem; }
.site-footer .brand__ja { color: var(--paper); }
.site-footer h4 { color: var(--paper); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 1rem; font-family: var(--sans); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { font-size: .88rem; transition: color .18s ease; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.6rem; font-size: .78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; color: rgba(255,255,255,.55); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Editorial note (公開前の下書きメモ) ----------------------------- */
.editor-note {
  background: #f6efdd; border: 1px dashed var(--rose); border-radius: 10px;
  padding: .9rem 1.1rem; font-size: .82rem; color: var(--gold-deep); margin: 1rem 0;
}
.editor-note strong { color: var(--rose); }

/* ---- Reveal on scroll ------------------------------------------------- */
/* JavaScript がある時だけ非表示から開始。JS無効時は最初から見える（SEO・堅牢性） */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── でゅお・まかろん 紹介ページ ─────────────────── */
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.text-link { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.text-link:hover { color: var(--rose); }
.text-link .arrow { transition: transform .18s ease; display: inline-block; }
.text-link:hover .arrow { transform: translateX(3px); }

.duo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.duo-gallery figure { margin: 0; }
.duo-gallery img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow-sm); display: block;
}
.duo-gallery figcaption {
  margin-top: .6rem; text-align: center;
  font-size: .84rem; color: var(--ink-soft); font-family: var(--serif);
}
@media (max-width: 720px) { .duo-gallery { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

.member-list { display: grid; gap: 1.4rem; max-width: 780px; margin-inline: auto; }
.member {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
}
.member__role {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: .35rem;
}
.member__name { font-family: var(--serif); font-size: 1.4rem; margin: 0 0 .8rem; }
.member__yomi { font-size: .82rem; color: var(--ink-soft); font-weight: 400; margin-left: .5em; }

.duo-feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.4rem; align-items: center; }
.duo-feature__media { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/2; }
.duo-feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) { .duo-feature { grid-template-columns: 1fr; gap: 1.4rem; } }

.signature-course--media { display: grid; grid-template-columns: 200px 1fr; gap: 1.8rem; align-items: center; }
.signature-course__poster img { width: 100%; border-radius: 10px; box-shadow: var(--shadow-sm); display: block; }
.signature-course__body { min-width: 0; }
@media (max-width: 640px) { .signature-course--media { grid-template-columns: 1fr; } .signature-course__poster { max-width: 240px; margin-inline: auto; } }

.history__photos { display: flex; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; }
.history__photos figure { margin: 0; width: 200px; max-width: 46%; }
.history__photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); display: block; }
.history__photos figcaption { margin-top: .35rem; font-size: .76rem; color: var(--ink-soft); }
@media (max-width: 520px) { .history__photos figure { max-width: 100%; width: 100%; } }

.lecture-photo { margin: 1.8rem auto 0; max-width: 560px; }
.lecture-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-md); display: block; }
.lecture-photo figcaption { margin-top: .5rem; text-align: center; font-size: .82rem; color: var(--ink-soft); font-family: var(--serif); }

/* リサイタル 全曲プログラム */
.recital-card__program { margin-top: .8rem; border-top: 1px dashed var(--line); padding-top: .6rem; }
.recital-card__program summary { cursor: pointer; font-size: .82rem; font-weight: 600; color: var(--gold-deep); list-style: none; }
.recital-card__program summary::-webkit-details-marker { display: none; }
.recital-card__program summary::before { content: "▶ "; font-size: .7em; }
.recital-card__program[open] summary::before { content: "▼ "; }
.recital-card__program .pg { margin-top: .6rem; }
.recital-card__program .pg-h { font-weight: 700; color: var(--ink); font-size: .82rem; margin: .7rem 0 .25rem; font-family: var(--serif); }
.recital-card__program .pg-h:first-child { margin-top: 0; }
.recital-card__program .pg-i { font-size: .8rem; color: var(--ink-soft); line-height: 1.7; padding-left: .6em; }

/* ボイトレ：お悩みチェックリスト */
.worry-list { list-style: none; margin: 1.6rem auto 0; padding: 0; max-width: 34em; display: grid; gap: .7rem; }
.worry-list li { position: relative; padding: .7rem 1rem .7rem 2.6rem; background: var(--card); border: 1px solid var(--line); border-radius: 10px; font-size: .95rem; }
.worry-list li::before { content: "✓"; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gold); font-weight: 700; }

/* ボイトレ：グループ会 */
.group-lesson { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--gap); align-items: center; }
.group-lesson__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; background: var(--paper-2); }
.group-lesson__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.facts { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .55rem; }
.facts li { display: grid; grid-template-columns: 5.5em 1fr; gap: .8rem; align-items: baseline; font-size: .95rem; }
.facts li span { font-size: .8rem; font-weight: 700; color: var(--gold-deep); background: var(--paper-2); border-radius: 6px; padding: .15em .4em; text-align: center; }
@media (max-width: 760px) { .group-lesson { grid-template-columns: 1fr; } .group-lesson__media { order: -1; } }

/* プロフィール：ブランドストーリー＆実績サマリー */
.profile-story {
  font-family: var(--serif); font-size: 1.05rem; line-height: 2;
  color: var(--ink); border-left: 3px solid var(--gold);
  padding: .2rem 0 .2rem 1.1rem; margin-bottom: 1.3rem;
}
.highlights { list-style: none; margin: 0 0 2.2rem; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.highlights li { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 1rem .9rem; text-align: center; font-size: .84rem; line-height: 1.55; box-shadow: var(--shadow-sm); }
.highlights__num { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--gold-deep); margin-bottom: .3rem; letter-spacing: .04em; }
@media (max-width: 720px) { .highlights { grid-template-columns: repeat(2, 1fr); } }

/* 出演歴：役割の凡例 */
.role-legend { margin-top: 1rem; font-size: .82rem; color: var(--ink-soft); background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: .7rem 1rem; line-height: 1.9; }
.role-legend b { color: var(--gold-deep); font-weight: 700; }

/* プロフィール：関わっている活動 */
.activity-card { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 14px; padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); }
.activity-card h3 { font-size: 1.2rem; margin: 0 0 .7rem; }
.activity-card__links { display: flex; flex-wrap: wrap; gap: 1.1rem; margin: 1rem 0 0; font-size: .88rem; }
.activity-card__links a { color: var(--gold-deep); font-weight: 600; }
.activity-card__links a:hover { color: var(--rose); }

/* 改行制御：句を途中で折らない */
.nb { white-space: nowrap; }
