/* ============================================================
   ceremony.css — 開志創造大学 情報デザイン学部 入学式LP
   ZEN大学CSS実数値準拠 / 開志既存ページ トンマナ
   ============================================================ */

/* ============================================================
   Variables — 開志実測カラー + ZEN大学数値
   ============================================================ */
:root {
  /* カラー（開志実測値） */
  --navy:      #01267f;
  --navy-dark: #001562;
  --sky:       #0089cf;
  --pink:      #db64a8;
  --white:     #ffffff;
  --gray-lt:   #E1E1EB;   /* ZEN大学ボタン背景色そのまま */
  --ink:       #222222;   /* ZEN大学 body color そのまま */
  --ink-mid:   #555555;

  /* フォント — 開志: Noto Sans JP */
  --font-sans:   'Noto Sans JP', sans-serif;

  /* ZEN大学実測スペーシング */
  --section-pc:  120px;   /* top-movie: padding 120px 0 */
  --section-sp:  80px;    /* SP: padding 80px */
  --inner-max:   1440px;
  --inner-pad:   16px;

  /* ZEN大学実測ボタン */
  --btn-radius:  100px;   /* border-radius: 100px（完全pill） */

  --ease: 0.3s;
}

/* ============================================================
   Reset / Base
   ============================================================ */
.p-ceremony * { box-sizing: border-box; }
.p-ceremony img { max-width: 100%; height: auto; display: block; }
.p-ceremony a { color: inherit; text-decoration: none; }
.p-ceremony ul, .p-ceremony ol { list-style: none; padding: 0; margin: 0; }

/* ZEN: body { font-size:16px; line-height:1.15; } */
.p-ceremony {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

/* ============================================================
   Layout
   ============================================================ */
.c-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-pad);
}
.c-inner--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--inner-pad);
}

/* ============================================================
   Section 共通
   — ZEN: padding 120px〜150px（PC）/ 80px（SP）
   ============================================================ */
.c-section {
  padding: var(--section-pc) 0;
}
@media (max-width: 767px) {
  .c-section { padding: var(--section-sp) 0; }
  .p-ceremony__highlight-items {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.c-section--off  { background: #f8f8fb; }
.c-section--navy { background: var(--navy); color: var(--white); }

/* ============================================================
   見出し共通
   — ZEN: .top-album__heading { font-size:35px; color:#000066; }
          line-height は本文 2.0〜2.22
   ============================================================ */
/* セクション英字ラベル */
.c-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 16px;
  text-align: center;
}
/* ピンク＋水色の2本線（中央揃え） */
.c-label::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--pink) 0%, var(--pink) 46%,
    transparent 46%, transparent 54%,
    var(--sky) 54%, var(--sky) 100%
  );
}
.c-section--navy .c-label { color: rgba(255,255,255,0.55); }
.c-section--navy .c-label::after { background: rgba(255,255,255,0.3); }

/* セクション見出し — ZEN: 35px / color:#000066 */
.c-heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.43;
  color: var(--navy);
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .c-heading { font-size: clamp(25px, 7vw, 32px); }
}
.c-section--navy .c-heading { color: var(--white); }

/* リード文 — ZEN: font-size:18px; line-height:1.8; margin-top:30px */
.c-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-lead { font-size: 15px; }
}
.c-section--navy .c-lead { color: rgba(255,255,255,0.8); }

/* ============================================================
   Buttons
   — ZEN: border-radius:100px / background:#E1E1EB / box-shadow
   ============================================================ */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--btn-radius);   /* ZEN: 100px */
  box-shadow: 3px 3px 5px rgba(34,34,34,0.3);  /* ZEN: --shadow */
  padding: 0 60px 0 30px;
  min-height: 60px;
  cursor: pointer;
  border: none;
  transition: background var(--ease);
  letter-spacing: 0.02em;
  position: relative;
  white-space: nowrap;
}
.c-btn:active { transform: scale(0.97); }

/* ZEN: .c-button.--gray { background-color: #E1E1EB } */
.c-btn--gray {
  background: var(--gray-lt);
  color: var(--ink);
}
.c-btn--gray:hover { background: #ccccd8; }

/* navy背景上のボタン（白） */
.c-btn--white {
  background: var(--white);
  color: var(--navy);
}
.c-btn--white:hover { background: rgba(255,255,255,0.88); }

/* ============================================================
   Fade in
   — ZEN: animation: fadeUp（translateY 25px, opacity 0→1）
   ============================================================ */
@keyframes fadeUp {
  from { transform: translateY(25px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   01. KV
   — ZEN: .top-ceremony__name { font-size:54px; notoSerifJp600; color:#000066 }
          .top-ceremony__comment { font-size:28px; notoSansJp500; margin:30px auto 80px }
   ============================================================ */
.p-ceremony__kv {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--inner-pad) 80px;
  background: var(--navy);
  overflow: hidden;
}
.p-ceremony__kv::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 30% 40%, rgba(0,137,207,0.15) 0%, transparent 65%),
    linear-gradient(155deg, #002f6e 0%, var(--navy) 60%, var(--navy-dark) 100%);
  z-index: 0;
}

.p-ceremony__kv-inner {
  position: relative; z-index: 2;
  max-width: 780px;
}

/* ZEN: .top-ceremony__name { font-size:54px; line-height:1.43 } */
.p-ceremony__kv-date {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 22px;
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease both;
}

.p-ceremony__kv-title {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  animation: fadeUp 0.9s 0.15s ease both;
}
.p-ceremony__kv-title span {
  color: rgba(255,255,255,0.88);
}

/* ZEN: .top-ceremony__comment { font-size:28px; line-height:1.57; margin:30px auto 80px } */
.p-ceremony__kv-sub {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 30px auto 60px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.p-ceremony__kv-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  animation: fadeUp 0.9s 0.45s ease both;
}
.p-ceremony__kv-tags span {
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ZEN: ナビボタン — .top-ceremony__button { min-height:70px; border-radius:100px; } */
.p-ceremony__kv-nav {
  display: flex;
  flex-wrap: nowrap;           /* 1列固定 */
  justify-content: center;
  gap: 12px;
  animation: fadeUp 0.9s 0.6s ease both;
}
.p-ceremony__kv-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 44px 0 22px;
  min-height: 56px;
  border-radius: 100px;
  background: var(--gray-lt);
  color: var(--ink);
  box-shadow: 3px 3px 5px rgba(34,34,34,0.3);
  transition: background var(--ease);
  letter-spacing: 0.02em;
  position: relative;
  white-space: nowrap;
}
.p-ceremony__kv-nav a::after {
  content: '';
  position: absolute;
  right: 11px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 100px;
  background: var(--ink);
}
.p-ceremony__kv-nav a::before {
  content: '↓';
  font-size: 12px;
  color: var(--white);
  position: absolute;
  right: 19px; top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.p-ceremony__kv-nav a:hover { background: #ccccd8; }

@media (max-width: 767px) {
  .p-ceremony__kv { min-height: 70vh; padding: 80px var(--inner-pad) 60px; }
  .p-ceremony__kv-nav { flex-direction: column; align-items: center; }
  .p-ceremony__kv-nav a { max-width: 280px; width: 100%; }
}

/* ============================================================
   02. リード
   — ZEN: .top-concept__read { font-size:18px; line-height:2.22; }
   ============================================================ */
.p-ceremony__lead {
  padding: var(--section-pc) 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-ceremony__lead { padding: var(--section-sp) 0; }
}

/* ZEN: .top-ceremony__comment { font-size:28px } */
.p-ceremony__lead-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 40px;
}

/* ZEN: .top-concept__read { line-height:2.22 } */
.p-ceremony__lead-body {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 2.22;
  margin-bottom: 0;
  text-align: left;
  display: inline-block;
  max-width: 820px;
}
@media (max-width: 767px) {
  .p-ceremony__lead-body { font-size: 16px; line-height: 2; }
}

.p-ceremony__lead-em {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.85;
  border-left: 3px solid var(--pink);
  padding-left: 18px;
  text-align: left;
  margin: 36px auto 0;
  max-width: 820px;
}

/* ============================================================
   03. ダイジェスト動画
   — ZEN: .top-movie { padding:120px 0 100px; background:#fff; }
          .top-digest__youtube { aspect-ratio:16/9 }
   ============================================================ */
.p-ceremony__movie {
  padding: var(--section-pc) 0;
  background: var(--navy);
}
/* 動画セクション内テキストを白に */
.p-ceremony__movie .c-label { color: rgba(255,255,255,0.55); }
.p-ceremony__movie .c-label::after { background: rgba(255,255,255,0.3); }
.p-ceremony__movie .c-heading { color: var(--white); }
.p-ceremony__movie .c-lead { color: rgba(255,255,255,0.85); font-size: 18px; }
@media (max-width: 767px) {
  .p-ceremony__movie { padding: var(--section-sp) 0; }
}

.p-ceremony__movie-frame {
  position: relative;
  max-width: 642px;   /* ZEN: .top-movie__inner { max-width:642px } */
  margin: 60px auto 0;
  aspect-ratio: 16/9;
  background: var(--navy-dark);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.p-ceremony__movie-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  padding: 24px;
}
.p-ceremony__movie-placeholder::before {
  content: '▶';
  font-size: 40px;
  color: rgba(255,255,255,0.5);
}
.p-ceremony__movie iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
@media (max-width: 767px) {
  .p-ceremony__movie-frame { margin-top: 40px; }
}

/* ============================================================
   04. 開催概要
   ============================================================ */
.p-ceremony__overview-table {
  max-width: 640px;
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.p-ceremony__overview-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.p-ceremony__overview-table tr:first-child {
  border-top: 1px solid #e0e0e0;
}
.p-ceremony__overview-table th,
.p-ceremony__overview-table td {
  padding: 20px 0;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}
.p-ceremony__overview-table th {
  width: 130px;
  color: var(--navy);
  font-weight: 700;
  padding-right: 24px;
  white-space: nowrap;
}
.p-ceremony__overview-table td { color: var(--ink-mid); }

/* ============================================================
   05. ハイライト
   — PC: 2列×2行グリッド / SP: 1列
   ============================================================ */
.p-ceremony__highlight-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px) clamp(40px, 5vw, 80px);
  margin-top: 64px;
}

/* ZEN: 左ボーダー＋テキストのシンプル構成 */
.p-ceremony__highlight-item {
  border-left: 4px solid var(--sky);
  padding-left: clamp(20px, 2.5vw, 28px);
}

.p-ceremony__highlight-num {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--sky);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ZEN: .top-ceremony-report__title { font-size:24px; notoSerifJp600 } */
.p-ceremony__highlight-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* ZEN: .top-concept__read { font-size:18px; line-height:2.22 } */
.p-ceremony__highlight-body {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 2.22;
  max-width: 700px;
}
@media (max-width: 767px) {
  .p-ceremony__highlight-body { font-size: 16px; line-height: 2; }
}

/* ============================================================
   06. 新入生代表メッセージ
   — ZEN: .top-ceremony-report__box { box-shadow; border-radius:8px; padding:50px }
   ============================================================ */
.p-ceremony__message-quote {
  max-width: 900px;
  margin: 0 auto 36px;
  position: relative;
  padding: 50px 60px;
  background: #f8f8fb;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(34,34,34,0.12);
}
.p-ceremony__message-quote::before {
  content: '\201C';
  font-size: 96px;
  color: var(--sky);
  opacity: 0.15;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

/* ZEN: .top-ceremony-report__name { font-size:29px; notoSerifJp600 } */
.p-ceremony__message-quote p {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.75;
  position: relative; z-index: 1;
}

.p-ceremony__message-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 2.22;
  text-align: left;
}
.p-ceremony__message-body p + p { margin-top: 16px; }
@media (max-width: 767px) {
  .p-ceremony__message-body { font-size: 15px; line-height: 1.8; }
  .p-ceremony__message-quote { padding: 30px 24px; }
}

.p-ceremony__message-note {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  border-left: 3px solid var(--pink);
  padding-left: 16px;
  display: inline-block;
  text-align: left;
}

/* ============================================================
   07. 教員メッセージ（名前カードなし・動画のみ）
   ============================================================ */
.p-ceremony__teacher-movie-head {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}

/* ============================================================
   08. 数字で見る
   — ZEN: 数字部分は大きく / 白背景にネイビー背景を使用
   ============================================================ */
.p-ceremony__number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 56px;
}
.p-ceremony__number-item {
  padding: clamp(28px, 4vw, 48px) 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}
.p-ceremony__number-item:last-child { border-right: none; }

/* ZEN: roboto700 / 大きな数字 */
.p-ceremony__number-val {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.p-ceremony__number-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ZEN: .top-concept__read { line-height:2.22 } */
.p-ceremony__numbers-note {
  text-align: center;
  margin-top: 56px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 2.22;
}
@media (max-width: 767px) {
  .p-ceremony__numbers-note { font-size: 15px; line-height: 2; }
}

/* ============================================================
   09. フォトギャラリー
   — ZEN: .top-album__imageGroup（flex wrap / 大小混在）
   ============================================================ */
.p-ceremony__gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  margin-top: 56px;
}
.p-ceremony__gallery-item {
  background: #cdd8ec;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-ceremony__gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-ceremony__gallery-item:hover img { transform: scale(1.03); }

.p-ceremony__gallery-item--placeholder {
  font-size: 13px;
  color: #7a8fb8;
  text-align: center;
  line-height: 1.6;
  padding: 12px;
}

/* ZEN: --large:60% / --short:38% / --mini:24% */
.p-ceremony__gallery-item:nth-child(1) { width: 60%; aspect-ratio: 16/9; }
.p-ceremony__gallery-item:nth-child(2) { width: 38%; aspect-ratio: 4/3; }
.p-ceremony__gallery-item:nth-child(3) { width: 38%; aspect-ratio: 4/3; }
.p-ceremony__gallery-item:nth-child(4) { width: 60%; aspect-ratio: 16/9; }
.p-ceremony__gallery-item:nth-child(5) { width: 49%; aspect-ratio: 4/3; }
.p-ceremony__gallery-item:nth-child(6) { width: 49%; aspect-ratio: 4/3; }

@media (max-width: 767px) {
  .p-ceremony__gallery-grid { gap: 8px; }
  .p-ceremony__gallery-item:nth-child(n) {
    width: 100%; aspect-ratio: 16/9;
  }
}

/* ============================================================
   10. これから始まる学び
   ============================================================ */
.p-ceremony__next { text-align: center; }

.p-ceremony__next-body {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 2.22;
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .p-ceremony__next-body { font-size: 16px; line-height: 2; }
}

.p-ceremony__next-em {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px auto 0;
  max-width: 560px;
  line-height: 1.85;
}
@media (max-width: 767px) {
  .p-ceremony__next-em { font-size: 17px; }
}

.p-ceremony__next-note {
  margin-top: 36px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  border-left: 3px solid var(--pink);
  padding: 2px 0 2px 16px;
  text-align: left;
  display: inline-block;
}

/* ============================================================
   11. CTA
   ============================================================ */
.p-ceremony__cta {
  background: var(--navy);
  text-align: center;
  padding: var(--section-pc) var(--inner-pad);
}
@media (max-width: 767px) {
  .p-ceremony__cta { padding: var(--section-sp) var(--inner-pad); }
}

/* ZEN: .top-ceremony__name { font-size:54px } → CTAは小さめ */
.p-ceremony__cta-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ZEN: line-height:2.22 */
.p-ceremony__cta-body {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 2.22;
  max-width: 900px;
  margin: 0 auto 48px;
}
@media (max-width: 767px) {
  .p-ceremony__cta-body { font-size: 15px; line-height: 2; }
}

.p-ceremony__cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-ceremony__cta-btns { flex-direction: column; align-items: center; }
  .c-btn { max-width: 300px; width: 100%; }
}

/* CTAボタンは矢印なし・テキスト中央の白pill */
.p-ceremony__cta .c-btn {
  background: var(--white) !important;
  color: var(--navy) !important;
  justify-content: center !important;
  padding: 0 36px !important;
}
.p-ceremony__cta .c-btn::before,
.p-ceremony__cta .c-btn::after { display: none !important; }
.p-ceremony__cta .c-btn:hover { background: rgba(255,255,255,0.88) !important; }

/* ============================================================
   12. FAQ
   — ZEN: .top-ceremony-report__box { border-radius:8px; box-shadow }
   ============================================================ */
.p-ceremony__faq-list {
  max-width: 740px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-ceremony__faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(34,34,34,0.12);
  overflow: hidden;
}
.p-ceremony__faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  transition: background var(--ease);
  font-family: var(--font-sans);
}
.p-ceremony__faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.p-ceremony__faq-q:hover { background: #f0f0f6; }

.p-ceremony__faq-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 22px;
  color: var(--sky);
  line-height: 1;
  transition: transform var(--ease);
}
.p-ceremony__faq-item.is-open .p-ceremony__faq-icon {
  transform: rotate(45deg);
}
.p-ceremony__faq-a {
  display: none;
  padding: 16px 28px 22px 70px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  line-height: 1.9;
  border-top: 1px solid #e8e8e8;
}
.p-ceremony__faq-item.is-open .p-ceremony__faq-a { display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 767px) {
  .p-ceremony__number-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-ceremony__number-item:nth-child(2) { border-right: none; }
  .p-ceremony__number-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.15);
  }
}
@media (max-width: 480px) {
  .p-ceremony__kv-tags { flex-wrap: wrap; }
}
