/* ============================================================
   超ぴゅあ娘 オーディションページ専用CSS v2
   配色：本サイト共通のエモカワ系（ピンク×パープル）に統一
   すべて .audition-v2 配下に限定（common.css・他ページへ影響なし）
   ============================================================ */

/* 見出し用フォント（Mochiy Pop One）はaudition.htmlの<link>で読み込み */

.audition-v2 {
  /* サイト共通パレット（common.cssの:rootと同値）＋濃色はコントラスト確保用 */
  --av2-pink:        #ff5fa2;
  --av2-pink-d:      #d6006e;
  --av2-pink-light:  #ffe3f1;
  --av2-pink-pale:   #fff4fa;
  --av2-purple:      #9d6bff;
  --av2-purple-d:    #6322d4;
  --av2-purple-light:#efe6ff;
  --av2-cream:       #fff8fc;
  --av2-text:        #1a0726;
  --av2-muted:       #6b2f6b;
  --av2-dark:        #2a0a3e;   /* フッターと同系の濃紫 */
  --av2-radius: 1.1rem;
  --av2-radius-lg: 1.6rem;
  --av2-fixedbar-h: 56px;

  display: block;
  background: #fff;
  color: var(--av2-text);
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  line-height: 1.85;
  overflow-x: clip;
  /* スマホ固定CTAと本文が重ならない余白（PCはmedia queryで解除） */
  padding-bottom: calc(var(--av2-fixedbar-h) + env(safe-area-inset-bottom, 0px) + 12px);
}

/* ---------- 汎用 ---------- */
.audition-v2 .av2-inner { max-width: 1120px; margin: 0 auto; padding: 0 1.3rem; }
.audition-v2 .av2-inner-sm { max-width: 820px; }
.audition-v2 .av2-section { padding: 3.6rem 0; background: #fff; }
.audition-v2 .av2-alt { background: linear-gradient(180deg, var(--av2-pink-pale), #f6ecff); }
.audition-v2 a { color: var(--av2-pink-d); text-decoration: underline; }
.audition-v2 a:focus-visible,
.audition-v2 button:focus-visible { outline: 3px solid var(--av2-purple-d); outline-offset: 2px; }

.audition-v2 .av2-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--av2-pink-d), var(--av2-purple-d));
  color: #fff;
  font-size: .72rem; font-weight: 900; letter-spacing: .2em;
  padding: .35rem 1.2rem; border-radius: 999px;
  margin-bottom: .9rem;
  box-shadow: 0 4px 14px rgba(255,95,162,.3);
}
.audition-v2 .av2-title {
  font-family: 'Mochiy Pop One', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  font-size: clamp(1.65rem, 4.8vw, 2.5rem);
  line-height: 1.4;
  color: var(--av2-text);
  margin-bottom: 1.2rem;
}
.audition-v2 .av2-title-sub { font-size: .6em; font-weight: 700; }
.audition-v2 .av2-lead { font-size: 1rem; margin-bottom: 1rem; }
.audition-v2 .av2-lead:last-child { margin-bottom: 0; }
.audition-v2 .av2-small { font-size: .95rem; }
.audition-v2 .av2-note {
  font-size: .82rem; font-weight: 700; color: var(--av2-muted); margin-top: 1.1rem; line-height: 1.9;
}
.audition-v2 .av2-note a { color: inherit; }
.audition-v2 .av2-sp-br { display: none; }

/* ---------- ボタン ---------- */
.audition-v2 .av2-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .1rem;
  min-height: 60px;
  padding: .85rem 1.6rem;
  border: none; border-radius: 999px;
  font-family: inherit; font-weight: 900; font-size: 1.05rem; line-height: 1.35;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.audition-v2 .av2-btn small { font-size: .72rem; font-weight: 700; opacity: .92; }
.audition-v2 .av2-btn:active { transform: scale(.97); }
.audition-v2 .av2-btn-apply {
  background: linear-gradient(135deg, var(--av2-pink-d), var(--av2-purple-d));
  color: #fff;
  box-shadow: 0 8px 24px rgba(214,0,110,.35);
}
.audition-v2 .av2-btn-apply:hover { filter: brightness(1.08); transform: translateY(-2px); }
.audition-v2 .av2-btn-question {
  background: var(--av2-purple-d); color: #fff;
  box-shadow: 0 8px 22px rgba(99,34,212,.32);
}
.audition-v2 .av2-btn-question:hover { background: #521cb0; transform: translateY(-2px); }
.audition-v2 .av2-btn-sns {
  background: var(--av2-dark); color: #fff;
  box-shadow: 0 8px 22px rgba(42,10,62,.3);
}
.audition-v2 .av2-btn-sns:hover { background: #3d1259; transform: translateY(-2px); }
.audition-v2 .av2-btn-block { width: 100%; }

/* ---------- 1. ファーストビュー ---------- */
.audition-v2 .av2-hero {
  /* 他ページの page-hero と同系グラデーション */
  background:
    radial-gradient(circle at 85% 12%, rgba(212,247,247,.7) 0, transparent 40%),
    linear-gradient(150deg, var(--av2-pink-light), var(--av2-cream) 45%, var(--av2-purple-light) 100%);
  padding: 3rem 0 3.2rem;
}
.audition-v2 .av2-hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.4rem; align-items: center;
}
.audition-v2 .av2-hero-label {
  font-size: .82rem; font-weight: 800; letter-spacing: .08em;
  color: var(--av2-pink-d); margin-bottom: 1rem; line-height: 1.7;
}
.audition-v2 .av2-hero-subtitle {
  font-family: 'Mochiy Pop One', 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .18em;
  margin-bottom: .5rem;
  color: var(--av2-pink-d);
  width: fit-content;
}
.audition-v2 .av2-hero-title {
  font-family: 'Mochiy Pop One', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 6.2vw, 3.8rem);
  line-height: 1.35;
  color: var(--av2-text);
  margin-bottom: 1rem;
}
.audition-v2 .av2-hero-sub { font-size: 1.02rem; margin-bottom: 1.2rem; }
.audition-v2 .av2-hero-period {
  display: inline-block;
  background: var(--av2-dark); color: #fff;
  font-size: .9rem; font-weight: 800;
  padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.audition-v2 .av2-hero-period span {
  font-size: .72rem; font-weight: 700; margin-right: .6em; opacity: .85;
}
.audition-v2 .av2-hero-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0 0 1.5rem; padding: 0;
}
.audition-v2 .av2-hero-chips li {
  background: rgba(255,255,255,.92);
  border: 1.5px solid rgba(214,0,110,.35);
  color: var(--av2-text);
  font-size: .8rem; font-weight: 800;
  padding: .32rem .85rem; border-radius: 999px;
}
.audition-v2 .av2-hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.audition-v2 .av2-hero-cta .av2-btn { min-width: 250px; }

/* 画像プレースホルダー */
.audition-v2 .av2-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem;
  background:
    repeating-linear-gradient(45deg, rgba(214,0,110,.05) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--av2-pink-light), var(--av2-purple-light));
  border: 2px dashed rgba(157,107,255,.55);
  color: var(--av2-muted);
  border-radius: var(--av2-radius-lg);
}
.audition-v2 .av2-ph-text {
  font-size: .78rem; font-weight: 900; letter-spacing: .2em; text-align: center; line-height: 1.6;
}
.audition-v2 .av2-ph-mark { font-size: 2rem; color: var(--av2-purple); }
.audition-v2 .av2-ph-hero { aspect-ratio: 4 / 5; width: 100%; max-width: 440px; margin: 0 auto; }
.audition-v2 .av2-hero-img {
  display: block; width: 100%; max-width: 420px; height: auto;
  margin: 0 auto;
  border-radius: var(--av2-radius-lg);
  box-shadow: 0 16px 44px rgba(99,34,212,.28);
}

/* ---------- 2. 実績帯 ---------- */
.audition-v2 .av2-band {
  background: linear-gradient(135deg, var(--av2-dark), #4d1a6e 60%, var(--av2-purple-d));
  color: #fff; padding: 1.1rem 0 1rem;
}
.audition-v2 .av2-band-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem .6rem;
}
.audition-v2 .av2-band-list li {
  font-size: .82rem; font-weight: 800;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  padding: .28rem .9rem; border-radius: 999px;
}
.audition-v2 .av2-band-note {
  text-align: center; font-size: .72rem; color: rgba(255,255,255,.8); margin-top: .55rem;
}

/* ---------- 章アイキャッチ（ボビンちゃん） ---------- */
.audition-v2 .av2-chapter-eyecatch {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 300px;
  margin: 0 0 2rem;
  padding: 2rem clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--av2-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(99, 34, 212, .15);
  background: #f7f3ff;
}
.audition-v2 .av2-chapter-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.audition-v2 .av2-chapter-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 人物が右側：文字は左側 */
.audition-v2 .av2-chapter-person-right { justify-content: flex-start; }
.audition-v2 .av2-chapter-person-right .av2-chapter-media img { object-position: 68% center; }
.audition-v2 .av2-chapter-person-right::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.94) 34%,
    rgba(255,255,255,.68) 50%,
    rgba(255,255,255,.08) 76%);
}
/* 人物が左側：文字は右側 */
.audition-v2 .av2-chapter-person-left { justify-content: flex-end; }
.audition-v2 .av2-chapter-person-left .av2-chapter-media img { object-position: 32% center; }
.audition-v2 .av2-chapter-person-left::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(270deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.94) 34%,
    rgba(255,255,255,.68) 50%,
    rgba(255,255,255,.08) 76%);
}
.audition-v2 .av2-chapter-copy { width: min(50%, 520px); text-align: left; }
.audition-v2 .av2-chapter-copy .av2-eyebrow { margin-bottom: .75rem; }
.audition-v2 .av2-chapter-copy .av2-title {
  margin-bottom: .7rem;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.audition-v2 .av2-chapter-lead {
  margin: 0;
  color: var(--av2-muted);
  font-size: .96rem; font-weight: 800; line-height: 1.8;
}

/* ---------- 読み方ショートカット ---------- */
.audition-v2 .av2-quicknav { padding: 1.7rem 0 1.5rem; background: #fff; }
.audition-v2 .av2-quicknav-title {
  text-align: center; font-weight: 900; font-size: .92rem;
  color: var(--av2-muted); margin-bottom: .8rem;
}
.audition-v2 .av2-quicknav-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; max-width: 880px; margin: 0 auto;
}
.audition-v2 .av2-quicknav a {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  padding: .95rem .8rem;
  background: var(--av2-pink-pale);
  border: 2px solid var(--av2-pink-light);
  border-radius: var(--av2-radius);
  text-decoration: none; color: var(--av2-text);
  font-weight: 900; font-size: .95rem; text-align: center;
  transition: transform .15s ease, border-color .15s ease;
}
.audition-v2 .av2-quicknav a:hover { transform: translateY(-3px); border-color: var(--av2-pink); }
.audition-v2 .av2-quicknav a span { font-size: 1.3rem; }
.audition-v2 .av2-quicknav a small { font-size: .72rem; color: var(--av2-muted); font-weight: 700; }

/* ---------- 「くわしく見る」開閉（JS無効時は開いたまま） ---------- */
.audition-v2 .av2-more-toggle {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1.1rem; padding: .55rem 1.3rem; min-height: 44px;
  background: #fff; border: 2px solid var(--av2-purple);
  border-radius: 999px; cursor: pointer;
  font-family: inherit; font-weight: 900; font-size: .9rem; color: var(--av2-purple-d);
  -webkit-tap-highlight-color: transparent;
}
.audition-v2 .av2-more-toggle::after { content: "＋"; font-weight: 900; }
.audition-v2 .av2-more-toggle[aria-expanded="true"]::after { content: "－"; }
.audition-v2 .av2-more-toggle:hover { background: var(--av2-purple-light); }
.audition-v2 .av2-more-panel.av2-collapsed { display: none; }
.audition-v2 .av2-points-outro { margin-top: 1.5rem; text-align: center; font-weight: 700; }

/* ---------- 4. 運営実績（濃紫） ---------- */
.audition-v2 .av2-dark {
  background: linear-gradient(160deg, var(--av2-dark), #3d1259 55%, #4d1a6e);
}
.audition-v2 .av2-eyebrow-dark { box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.audition-v2 .av2-title-dark { color: #fff; }
.audition-v2 .av2-lead-dark { color: rgba(255,255,255,.92); max-width: 820px; }
.audition-v2 .av2-ach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.8rem;
}
.audition-v2 .av2-ach-card {
  margin: 0; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,158,207,.25);
  border-radius: var(--av2-radius); overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.audition-v2 .av2-ach-card:hover { transform: translateY(-4px); border-color: rgba(255,158,207,.55); }
.audition-v2 .av2-ach-card img { width: 100%; height: auto; display: block; }
.audition-v2 .av2-ph-ach {
  aspect-ratio: 4 / 3; border-radius: 0; border: none;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #4d1a6e, #35104f);
  color: rgba(255,255,255,.6);
}
.audition-v2 .av2-ach-card figcaption {
  font-size: .82rem; font-weight: 800; color: rgba(255,255,255,.94);
  padding: .7rem .9rem .8rem; line-height: 1.6;
}
.audition-v2 .av2-note-dark { color: rgba(255,255,255,.8); }
.audition-v2 .av2-company-line {
  margin-top: .8rem; font-size: .8rem; color: rgba(255,255,255,.68);
}

/* ---------- 5. 5つのポイント ---------- */
.audition-v2 .av2-points {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
  counter-reset: av2point;
}
.audition-v2 .av2-points li {
  counter-increment: av2point;
  background: #fff;
  border-radius: var(--av2-radius);
  border: 2px solid var(--av2-pink-light);
  box-shadow: 0 4px 18px rgba(255,95,162,.1);
  padding: 1.3rem 1.4rem 1.2rem;
  position: relative;
}
.audition-v2 .av2-points li::before {
  content: counter(av2point, decimal-leading-zero);
  display: inline-block;
  font-family: 'Mochiy Pop One', 'M PLUS Rounded 1c', sans-serif;
  font-size: 1rem;
  color: var(--av2-pink-d);
  margin-bottom: .3rem;
}
.audition-v2 .av2-points h3 { font-size: 1.02rem; color: var(--av2-text); margin-bottom: .4rem; }
.audition-v2 .av2-points p { font-size: .9rem; }

/* ---------- 7. 未経験／経験者・費用カード ---------- */
.audition-v2 .av2-two-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.4rem;
}
.audition-v2 .av2-path-card,
.audition-v2 .av2-cost-card {
  background: #fff;
  border-radius: var(--av2-radius);
  border: 2px solid var(--av2-pink-light);
  box-shadow: 0 4px 18px rgba(255,95,162,.1);
  padding: 1.5rem 1.5rem 1.4rem;
}
.audition-v2 .av2-path-card h3,
.audition-v2 .av2-cost-card h3 {
  font-size: 1.08rem; color: var(--av2-text); margin-bottom: .8rem; line-height: 1.5;
}
.audition-v2 .av2-path-tag {
  display: block; width: fit-content;
  background: linear-gradient(135deg, var(--av2-pink-d), var(--av2-purple-d));
  color: #fff;
  font-size: .72rem; font-weight: 900; letter-spacing: .08em;
  padding: .2rem .8rem; border-radius: 999px; margin-bottom: .5rem;
}
.audition-v2 .av2-path-tag-b { background: linear-gradient(135deg, var(--av2-purple-d), #4a17a5); }
.audition-v2 .av2-path-card ul { margin: 0 0 .8rem; padding: 0; list-style: none; }
.audition-v2 .av2-path-card li {
  font-size: .92rem; padding-left: 1.3em; position: relative; margin-bottom: .45rem;
}
.audition-v2 .av2-path-card li::before {
  content: "♡"; position: absolute; left: 0; color: var(--av2-pink); font-weight: 900;
}
.audition-v2 .av2-path-card p { font-size: .9rem; }
.audition-v2 .av2-cost-lead { font-weight: 800; font-size: .95rem; margin-bottom: .7rem; }

/* ---------- 8. ロードマップ・条件リスト ---------- */
.audition-v2 .av2-roadmap {
  list-style: none; margin: .4rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
}
.audition-v2 .av2-roadmap li {
  background: var(--av2-pink-pale);
  border: 1.5px solid rgba(214,0,110,.35);
  color: var(--av2-text);
  font-size: .88rem; font-weight: 800;
  padding: .5rem 1.05rem; border-radius: 999px;
}
.audition-v2 .av2-roadmap li:not(:last-child)::after {
  content: "→"; margin-left: .55rem; color: var(--av2-pink-d);
}
.audition-v2 .av2-roadmap li:last-child {
  background: linear-gradient(135deg, var(--av2-pink-d), var(--av2-purple-d));
  border-color: transparent; color: #fff;
}
.audition-v2 .av2-fact-list { list-style: none; margin: 1.3rem 0 0; padding: 0; }
.audition-v2 .av2-fact-list li {
  display: flex; gap: .9rem; align-items: flex-start;
  font-size: .93rem; padding: .65rem 0;
  border-bottom: 1px solid var(--av2-pink-light);
}
.audition-v2 .av2-fact-list li span {
  flex-shrink: 0; min-width: 6.2em;
  background: var(--av2-pink-light); color: var(--av2-pink-d);
  font-size: .78rem; font-weight: 900; text-align: center;
  padding: .22rem .5rem; border-radius: .5rem; margin-top: .15rem;
}
.audition-v2 .av2-check-list { list-style: none; margin: .5rem 0 0; padding: 0; }
.audition-v2 .av2-check-list li {
  font-size: .93rem; padding: .3rem 0 .3rem 1.5em; position: relative;
}
.audition-v2 .av2-check-list li::before {
  content: "✓"; position: absolute; left: .1em; color: var(--av2-pink-d); font-weight: 900;
}
.audition-v2 .av2-req-box {
  background: #fff;
  border-radius: var(--av2-radius);
  border: 2px solid var(--av2-pink-light);
  box-shadow: 0 4px 18px rgba(255,95,162,.1);
  padding: 1.5rem 1.5rem 1.4rem;
}
.audition-v2 .av2-req-box h3 { font-size: 1.08rem; color: var(--av2-text); margin-bottom: .3rem; }
.audition-v2 .av2-req-box h4 { font-size: .95rem; color: var(--av2-purple-d); margin: 1.2rem 0 .2rem; }
.audition-v2 .av2-req-box .av2-fact-list { margin-top: .5rem; }

/* ---------- 10. 応募3ステップ ---------- */
.audition-v2 .av2-steps {
  list-style: none; margin: 1.4rem 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.audition-v2 .av2-steps li {
  background: linear-gradient(160deg, var(--av2-pink-pale), var(--av2-purple-light));
  border-radius: var(--av2-radius);
  padding: 1.2rem 1.2rem 1.1rem;
  text-align: center;
}
.audition-v2 .av2-step-num {
  display: inline-block;
  font-family: 'Mochiy Pop One', 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.25rem;
  color: var(--av2-pink-d);
  margin-bottom: .3rem;
}
.audition-v2 .av2-steps h3 { font-size: 1rem; color: var(--av2-text); margin-bottom: .3rem; }
.audition-v2 .av2-steps p { font-size: .85rem; }
.audition-v2 .av2-three-items { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.audition-v2 .av2-three-items li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .98rem; font-weight: 700;
  padding: .6rem .9rem; margin-bottom: .5rem;
  background: var(--av2-pink-pale);
  border: 2px solid var(--av2-pink-light);
  border-radius: var(--av2-radius);
}
.audition-v2 .av2-three-items li span {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--av2-pink-d); color: #fff;
  font-size: .82rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.audition-v2 .av2-example {
  background: var(--av2-pink-light);
  border-radius: var(--av2-radius);
  padding: 1.1rem 1.4rem; margin-bottom: 1.6rem;
}
.audition-v2 .av2-example h3 { font-size: .9rem; color: var(--av2-pink-d); margin-bottom: .4rem; }
.audition-v2 .av2-example p { font-size: .92rem; line-height: 2; }
.audition-v2 .av2-apply-btns { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.4rem; }
.audition-v2 .av2-sns-panel { display: flex; flex-direction: column; gap: .6rem; padding: .2rem 0 .3rem; }
.audition-v2 .av2-sns-panel.av2-collapsed { display: none; }
.audition-v2 .av2-sns-panel a {
  display: flex; align-items: center; justify-content: center;
  min-height: 52px;
  background: #fff;
  border: 2.5px solid var(--av2-purple);
  border-radius: 999px;
  color: var(--av2-purple-d);
  font-weight: 900; font-size: .95rem; text-decoration: none;
  transition: background-color .15s ease;
}
.audition-v2 .av2-sns-panel a:hover { background: var(--av2-purple-light); }
.audition-v2 .av2-mail-link { font-size: .95rem; text-align: center; line-height: 1.8; }
.audition-v2 .av2-mail-link small { font-size: .78rem; color: var(--av2-muted); }

/* ---------- 11. 質問窓口 ---------- */
.audition-v2 .av2-q-box {
  background: #fff;
  border-radius: var(--av2-radius);
  border: 2px solid rgba(157,107,255,.4);
  padding: 1.4rem 1.5rem;
}
.audition-v2 .av2-q-important {
  font-size: .95rem; font-weight: 800; color: var(--av2-purple-d);
  margin-bottom: 1rem; line-height: 2;
}
.audition-v2 .av2-q-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.audition-v2 .av2-q-links a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: .5rem 1.2rem;
  background: var(--av2-pink-light);
  border: 1.5px solid rgba(214,0,110,.3);
  border-radius: 999px;
  color: var(--av2-text); font-weight: 800; font-size: .88rem;
  text-decoration: none;
  transition: background-color .15s ease;
}
.audition-v2 .av2-q-links a:hover { background: #ffd1e8; }

/* ---------- 12. 選考の流れ（縦タイムライン） ---------- */
.audition-v2 .av2-flow { list-style: none; margin: 1.6rem 0 0; padding: 0; position: relative; }
.audition-v2 .av2-flow::before {
  content: ""; position: absolute; left: 11px; top: 10px; bottom: 10px; width: 3px;
  background: linear-gradient(var(--av2-pink), var(--av2-purple));
  border-radius: 3px;
}
.audition-v2 .av2-flow li { position: relative; padding: 0 0 1.6rem 2.4rem; }
.audition-v2 .av2-flow li:last-child { padding-bottom: 0; }
.audition-v2 .av2-flow li::before {
  content: ""; position: absolute; left: 3px; top: .35rem;
  width: 19px; height: 19px; border-radius: 50%;
  background: #fff;
  border: 4px solid var(--av2-pink-d);
}
.audition-v2 .av2-flow h3 { font-size: 1.02rem; color: var(--av2-text); margin-bottom: .3rem; }
.audition-v2 .av2-flow h3 span {
  display: inline-block;
  background: linear-gradient(135deg, var(--av2-pink-d), var(--av2-purple-d));
  color: #fff;
  font-size: .72rem; font-weight: 900; letter-spacing: .06em;
  padding: .16rem .7rem; border-radius: 999px;
  margin-right: .6rem; vertical-align: .12em;
}
.audition-v2 .av2-flow p { font-size: .92rem; }

/* ---------- 13. 面談リスト ---------- */
.audition-v2 .av2-interview-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; margin-top: .8rem;
}

/* ---------- 14. 会社情報 ---------- */
.audition-v2 .av2-company-box {
  background: linear-gradient(160deg, var(--av2-pink-pale), var(--av2-purple-light));
  border-radius: var(--av2-radius);
  padding: 1.4rem 1.5rem;
}
.audition-v2 .av2-company-box p { font-size: .95rem; margin-bottom: 1rem; line-height: 1.9; }

/* ---------- 15. FAQ ---------- */
.audition-v2 .av2-faq { margin-top: .4rem; }
.audition-v2 .av2-faq-item {
  background: #fff;
  border: 2px solid var(--av2-pink-light);
  border-radius: var(--av2-radius);
  margin-bottom: .7rem; overflow: hidden;
}
.audition-v2 .av2-faq-item h3 { margin: 0; font-size: 1rem; }
.audition-v2 .av2-faq-q {
  display: block; width: 100%;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .98rem; font-weight: 800; color: var(--av2-text);
  text-align: left; line-height: 1.6;
  padding: 1rem 2.8rem 1rem 1.2rem;
  min-height: 44px; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.audition-v2 .av2-faq-q::after {
  content: "＋"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  color: var(--av2-pink-d); font-weight: 900; font-size: 1.05rem;
}
.audition-v2 .av2-faq-q[aria-expanded="true"]::after { content: "－"; }
.audition-v2 .av2-faq-a { padding: 0 1.2rem 1rem; }
.audition-v2 .av2-faq-a.av2-collapsed { display: none; }
.audition-v2 .av2-faq-a p { font-size: .92rem; }

/* ---------- 16. 最終CTA ---------- */
.audition-v2 .av2-final {
  background:
    radial-gradient(circle at 15% 85%, rgba(239,230,255,.9) 0, transparent 45%),
    linear-gradient(200deg, var(--av2-pink-light), var(--av2-cream));
  text-align: center;
}
.audition-v2 .av2-final-title { margin-bottom: 1rem; }
.audition-v2 .av2-final .av2-lead { max-width: 620px; margin-left: auto; margin-right: auto; }
.audition-v2 .av2-final .av2-hero-cta { justify-content: center; margin-top: 1.6rem; }
.audition-v2 .av2-deadline {
  margin-top: 1.5rem; font-size: 1rem; font-weight: 900; color: var(--av2-pink-d);
}

/* ---------- 効果音オン/オフボタン ---------- */
.audition-v2 .av2-soundtoggle {
  position: fixed; right: 14px;
  bottom: calc(var(--av2-fixedbar-h) + env(safe-area-inset-bottom, 0px) + 14px);
  z-index: 310;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 2px solid var(--av2-purple);
  color: var(--av2-purple-d);
  font-size: 1.15rem; line-height: 1; cursor: pointer;
  box-shadow: 0 4px 14px rgba(42,10,62,.22);
  -webkit-tap-highlight-color: transparent;
}
.audition-v2 .av2-soundtoggle[aria-pressed="true"] { opacity: .7; border-color: var(--av2-muted); color: var(--av2-muted); }
@media (min-width: 769px) {
  .audition-v2 .av2-soundtoggle { bottom: 18px; right: 18px; }
}

/* ---------- スマホ固定CTA ---------- */
.audition-v2 .av2-fixedbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: none;
  padding: 0 0 env(safe-area-inset-bottom, 0px);
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 18px rgba(42,10,62,.16);
  transition: transform .25s ease, opacity .25s ease;
}
.audition-v2 .av2-fixedbar.av2-hidden {
  transform: translateY(110%); opacity: 0; pointer-events: none;
}
.audition-v2 .av2-fixedbar a {
  flex: 1 1 50%;
  display: flex; align-items: center; justify-content: center;
  height: var(--av2-fixedbar-h);
  font-weight: 900; font-size: 1.02rem; color: #fff; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.audition-v2 .av2-fixedbar-apply { background: linear-gradient(135deg, var(--av2-pink-d), #a3179c); }
.audition-v2 .av2-fixedbar-question { background: var(--av2-purple-d); }

/* ============================================================
   エモカワ演出（音なし・強い点滅なし・reduced-motionで全停止）
   ============================================================ */

/* ヒーローに漂うきらめき */
.audition-v2 .av2-hero { position: relative; overflow: hidden; }
.audition-v2 .av2-hero .av2-inner { position: relative; z-index: 1; }
.audition-v2 .av2-deco {
  position: absolute; z-index: 0;
  font-size: 1.3rem; opacity: .55; pointer-events: none;
  animation: av2Float 7s ease-in-out infinite alternate;
}
.audition-v2 .av2-deco-star { color: var(--av2-purple); font-size: 1.1rem; }
@keyframes av2Float {
  from { transform: translateY(0) rotate(-8deg); }
  to   { transform: translateY(-18px) rotate(10deg); }
}

/* 応募ボタンを走る光（ゆっくり・4.5秒周期） */
.audition-v2 .av2-btn-apply { position: relative; overflow: hidden; }
.audition-v2 .av2-btn-apply::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  animation: av2Shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes av2Shine {
  0% { left: -80%; } 55% { left: 130%; } 100% { left: 130%; }
}

/* 実績セクションの星（ゆっくり瞬く） */
.audition-v2 .av2-dark { position: relative; overflow: hidden; }
.audition-v2 .av2-dark .av2-inner { position: relative; z-index: 1; }
.audition-v2 .av2-star {
  position: absolute; z-index: 0;
  color: #ff9ecf; font-size: 1rem; pointer-events: none;
  animation: av2Twinkle 3.8s ease-in-out infinite;
}
@keyframes av2Twinkle {
  0%, 100% { opacity: .2; transform: scale(.9); }
  50% { opacity: .85; transform: scale(1.1); }
}

/* カードのふわっとホバー */
.audition-v2 .av2-points li,
.audition-v2 .av2-path-card,
.audition-v2 .av2-cost-card,
.audition-v2 .av2-faq-item {
  transition: transform .25s ease, box-shadow .25s ease;
}
.audition-v2 .av2-points li:hover,
.audition-v2 .av2-path-card:hover,
.audition-v2 .av2-cost-card:hover {
  transform: translateY(-6px) rotate(-.4deg);
  box-shadow: 0 14px 32px rgba(255,95,162,.22);
}

/* タップで生まれるスパークル（JS生成・音なし） */
.audition-v2 .av2-sparkle {
  position: fixed; z-index: 9999; pointer-events: none;
  font-size: 1.3rem; color: var(--av2-pink);
  animation: av2SparkleUp 1.2s ease-out forwards;
}
@keyframes av2SparkleUp {
  0% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
  100% { opacity: 0; transform: translateY(-90px) scale(.3) rotate(35deg); }
}

/* ---------- フェードイン演出（JS付与・非対応時も表示保証） ---------- */
.audition-v2 .av2-fade {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.audition-v2 .av2-fade.av2-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .audition-v2 *,
  .audition-v2 *::before,
  .audition-v2 *::after {
    transition: none !important;
    animation: none !important;
  }
  .audition-v2 .av2-fade { opacity: 1; transform: none; }
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (min-width: 769px) {
  .audition-v2 { padding-bottom: 0; }
  .audition-v2 .av2-fixedbar { display: none !important; }
}

@media (max-width: 768px) {
  .audition-v2 .av2-fixedbar { display: flex; }
  .audition-v2 .av2-sp-br { display: inline; }
  .audition-v2 .av2-section { padding: 2.7rem 0; }
  .audition-v2 .av2-hero { padding: 2rem 0 2.4rem; }
  .audition-v2 .av2-hero-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .audition-v2 .av2-hero-visual { order: -1; }
  .audition-v2 .av2-ph-hero { max-width: 320px; aspect-ratio: 4 / 3.2; }
  .audition-v2 .av2-hero-img { max-width: 300px; }
  .audition-v2 .av2-hero-cta { flex-direction: column; }
  .audition-v2 .av2-hero-cta .av2-btn { width: 100%; min-width: 0; }
  .audition-v2 .av2-ach-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .audition-v2 .av2-points { grid-template-columns: 1fr; }
  .audition-v2 .av2-two-cards { grid-template-columns: 1fr; }
  .audition-v2 .av2-steps { grid-template-columns: 1fr; }
  .audition-v2 .av2-interview-list { grid-template-columns: 1fr; }
  .audition-v2 .av2-fact-list li { flex-direction: column; gap: .25rem; }
  .audition-v2 .av2-fact-list li span { min-width: 0; width: fit-content; }

  /* 章アイキャッチ：スマホは画像と文字を上下に分離（文字が人物・小道具を隠さない） */
  .audition-v2 .av2-chapter-eyecatch {
    display: block;
    min-height: 0;
    margin-bottom: 1.5rem;
    padding: 0;
    background: #fff;
  }
  /* スマホは4:3にトリミングし、文字用に空けたPC向けの余白をカットする */
  .audition-v2 .av2-chapter-media {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .audition-v2 .av2-chapter-media img { width: 100%; height: 100%; object-fit: cover; }
  .audition-v2 .av2-chapter-person-right .av2-chapter-media img { object-position: 72% center; }
  .audition-v2 .av2-chapter-person-left .av2-chapter-media img { object-position: 28% center; }
  /* 画像ごとの微調整（小道具が切れないように） */
  .audition-v2 .av2-chapter-apply .av2-chapter-media img { object-position: 74% center; }
  .audition-v2 .av2-chapter-flow .av2-chapter-media img { object-position: 26% center; }
  .audition-v2 .av2-chapter-final .av2-chapter-media img { object-position: 70% center; }
  .audition-v2 .av2-chapter-person-right::before,
  .audition-v2 .av2-chapter-person-left::before { display: none; }
  .audition-v2 .av2-chapter-copy {
    width: 100%;
    padding: 1.25rem 1.1rem 1.35rem;
    background: linear-gradient(160deg, var(--av2-pink-pale), var(--av2-purple-light));
  }
  .audition-v2 .av2-chapter-copy .av2-eyebrow { margin-bottom: .65rem; }
  .audition-v2 .av2-chapter-copy .av2-title {
    margin-bottom: .65rem;
    font-size: clamp(1.4rem, 6.5vw, 1.85rem);
    line-height: 1.45;
    text-shadow: none;
  }
  .audition-v2 .av2-chapter-lead { font-size: .9rem; line-height: 1.75; }
  /* 応募方法の補足（最短1分・履歴書不要）を別行にして半端な折返しを防ぐ */
  .audition-v2 .av2-chapter-apply .av2-title-sub {
    display: block;
    margin-top: .35rem;
    font-size: .56em;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .audition-v2 .av2-inner { padding: 0 1rem; }
  .audition-v2 .av2-ach-grid { grid-template-columns: 1fr; }
  .audition-v2 .av2-hero-chips li { font-size: .76rem; }
}

@media (max-width: 340px) {
  .audition-v2 { font-size: 15px; }
  .audition-v2 .av2-hero-title { font-size: 2rem; }
  .audition-v2 .av2-btn { font-size: .98rem; padding: .8rem 1rem; }
}
