@charset "UTF-8";

/* ============================================
   ASOVIVA!!! 特設サイト
   石原夏織 LIVE 2026
   ============================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body,
h1, h2, h3, p, dl, dt, dd, ul, li, figure {
  margin: 0;
  padding: 0;
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a { color: inherit; text-decoration: none; }

/* ---------- Color tokens ---------- */
:root {
  --c-text: #333;
  --c-text-sub: #6b6b6b;

  /* PINK */
  --c-pink: #f4a8bb;
  --c-pink-dk: #e8859f;
  --c-pink-bg: #fce6ed;            /* バッジ背景（淡） */
  --c-pink-on-bg: #de7b94;
  --c-pink-soft: rgba(231, 123, 155, 0.18); /* リード帯 */

  /* MINT */
  --c-mint: #8cd9c9;
  --c-mint-dk: #3fc4b0;
  --c-mint-bg: #d8efe9;            /* バッジ背景（淡） */
  --c-mint-on-bg: #34b09e;

  /* YELLOW */
  --c-yellow: #ffe066;
  --c-yellow-dk: #e8b942;
  --c-yellow-bg: #fdf2cf;          /* バッジ背景（淡） */
  --c-yellow-on-bg: #c89a1c;

  --ff-jp: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-jp);
  font-size: 17px;                  /* 14 * 1.2 ≒ 17 */
  line-height: 1.45;                /* 1.8 * 0.8 */
  color: var(--c-text);
  background-color: #fff8e7;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 0;                   /* SP: Gナビ帯なし */
}

@media (min-width: 768px) {
  body { font-size: 18px; padding-top: 76px; }   /* PC: 固定Gナビ分 */
}

/* セクションアンカー時に固定Gナビと被らないように */
.hero,
.section,
.lead {
  scroll-margin-top: 70px;
}
@media (min-width: 768px) {
  .hero, .section, .lead { scroll-margin-top: 90px; }
}

/* ---------- Gナビ ---------- */
.gnavi {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(253, 228, 236, 0.95);   /* 薄ピンク 95%不透明 */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.gnavi__inner {
  max-width: 1200px;                /* 本文コンテンツと幅を揃える */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;          /* メニュー中央寄せ */
  gap: 16px;
}
.gnavi__menu {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;          /* 中央寄せ */
}
.gnavi__item {
  display: flex;
  align-items: center;
}
.gnavi__item img {
  height: 22px;
  width: auto;
  display: block;
}
.gnavi__link {
  display: inline-block;
  transition: transform .2s ease, filter .2s ease;
}
.gnavi__link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.gnavi__item--disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: not-allowed;
}

/* ---- ハンバーガーボタン（SPのみ表示） ---- */
.gnavi__toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  z-index: 110;                    /* メニューパネルより前面に */
}
.gnavi__toggle-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background-color: var(--c-pink-dk);
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease, top .3s ease;
}
.gnavi__toggle-bar:nth-child(1) { top: 12px; }
.gnavi__toggle-bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.gnavi__toggle-bar:nth-child(3) { top: 25px; }

/* 開いた時：X字に */
.gnavi.is-open .gnavi__toggle-bar:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.gnavi.is-open .gnavi__toggle-bar:nth-child(2) { opacity: 0; }
.gnavi.is-open .gnavi__toggle-bar:nth-child(3) {
  top: 50%; transform: translateY(-50%) rotate(-45deg);
}

/* オーバーレイ（メニュー外をタップで閉じる） */
.gnavi__overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 90;                     /* Gナビ(100)より下。本文より上 */
  pointer-events: none;
}
.gnavi.is-open ~ .gnavi__overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .gnavi { padding: 12px 28px; }
  .gnavi__inner { gap: 24px; }
  .gnavi__item img { height: 30px; }
  .gnavi__menu { gap: 26px; }
}

/* ===== SP（767px以下）でハンバーガーに切替 ===== */
@media (max-width: 767px) {
  /* Gナビの帯を非表示。ハンバーガーボタンのみ可視 */
  .gnavi {
    padding: 10px 14px;
    background-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    pointer-events: none;            /* 帯部分のクリックは下に通す */
  }
  .gnavi__inner { justify-content: flex-end; }   /* ハンバーガーを右に */
  .gnavi__toggle {
    display: inline-block;
    pointer-events: auto;            /* ボタンはクリック可 */
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  }

  /* メニューパネル：右上スライドダウン */
  .gnavi__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    padding: 76px 24px 32px;
    background: rgba(216, 239, 233, 0.95);  /* 薄ミント 95%透過 */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow-y: auto;
  }
  .gnavi.is-open .gnavi__menu {
    transform: translateX(0);
  }
  .gnavi__item {
    width: 100%;
    padding: 8px 0;
  }
  .gnavi__item img { height: 28px; }
  /* メニュー展開中はbodyスクロールを抑止 */
  body.is-gnavi-open {
    overflow: hidden;
  }
}

/* ---------- Wrapper ---------- */
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

@media (min-width: 768px) {
  .wrapper { padding: 0 32px 80px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 0 0 4px;                 /* SP: 上マージン無し */
  text-align: center;
}
.hero__logo img {
  width: 100%;
  max-width: 100%;                  /* SP: 横100%フィット */
  animation: logoPopIn 1.05s cubic-bezier(0.22, 0.9, 0.36, 1) both;
  transform-origin: 50% 60%;
  will-change: transform, opacity;
}
@media (min-width: 768px) {
  .hero { padding: 24px 0 8px; }              /* PC: 48 → 24（50%）*/
  .hero__logo img { max-width: 864px; }       /* PC: 1080 → 864（80%）*/
}

/* ---------- Logo Pop-in animation ---------- */
@keyframes logoPopIn {
  0%   { transform: scale(0.3)  rotate(-12deg); opacity: 0; }
  55%  { transform: scale(1.12) rotate(4deg);   opacity: 1; }
  72%  { transform: scale(0.94) rotate(-2deg); }
  85%  { transform: scale(1.03) rotate(1deg); }
  100% { transform: scale(1)    rotate(0);     opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo img { animation: none; }
}

/* ---------- Lead (薄ピンク帯 + 袋文字タイトル) ---------- */
.lead {
  position: relative;
  text-align: center;
  padding: 30px 20px 36px;
  margin: 16px calc(50% - 50vw) 60px;
  background-color: var(--c-pink-soft);
}
.lead__title {
  color: var(--c-pink-dk);
  font-weight: 800;
  font-size: 18px;                  /* 15 * 1.2 */
  line-height: 1.4;                 /* 1.75 * 0.8 */
  margin: 0 auto 16px;
  letter-spacing: 0.02em;
  text-shadow:
    -2px -2px 0 #fff, 2px -2px 0 #fff,
    -2px  2px 0 #fff, 2px  2px 0 #fff,
     0   -2px 0 #fff, 0    2px 0 #fff,
    -2px  0   0 #fff, 2px  0   0 #fff,
    -3px  0   0 #fff, 3px  0   0 #fff,
     0   -3px 0 #fff, 0    3px 0 #fff;
}
.lead__title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transform-origin: 50% 80%;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter .25s ease;
  will-change: transform;
}
.lead__title-link:hover {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 6px 0 rgba(232, 133, 159, 0.25));
}
.lead__title-link:active {
  transform: translateY(-1px) scale(0.99);
  transition-duration: .12s;
}
.lead__text {
  color: var(--c-text);
  font-size: 15px;                  /* 12.5 * 1.2 */
  line-height: 1.6;                 /* 2 * 0.8 */
  max-width: 960px;
  margin: 0 auto;
  /* 袋文字（白縁取り） */
  text-shadow:
    -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff,
    -1.5px  1.5px 0 #fff, 1.5px  1.5px 0 #fff,
     0    -1.5px 0 #fff, 0     1.5px 0 #fff,
    -1.5px  0    0 #fff, 1.5px  0    0 #fff;
}
@media (min-width: 768px) {
  .lead {
    padding: 40px 24px 46px;
    margin: 24px calc(50% - 50vw) 80px;
  }
  .lead__title {
    font-size: 26px;                /* 22 * 1.2 */
    margin-bottom: 18px;
    text-shadow:
      -3px -3px 0 #fff, 3px -3px 0 #fff,
      -3px  3px 0 #fff, 3px  3px 0 #fff,
       0   -3px 0 #fff, 0    3px 0 #fff,
      -3px  0   0 #fff, 3px  0   0 #fff,
      -4px  0   0 #fff, 4px  0   0 #fff,
       0   -4px 0 #fff, 0    4px 0 #fff;
  }
  .lead__text {
    font-size: 17px;
    line-height: 1.6;               /* 2 * 0.8 */
    text-shadow:
      -2px -2px 0 #fff, 2px -2px 0 #fff,
      -2px  2px 0 #fff, 2px  2px 0 #fff,
       0   -2px 0 #fff, 0    2px 0 #fff,
      -2px  0   0 #fff, 2px  0   0 #fff;
  }
}

/* ---------- Section ---------- */
.section { margin-bottom: 60px; }
.section:last-of-type { margin-bottom: 0; }

.section__head {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: -20px;
  line-height: 0;
}
.section__head img {
  width: auto;
  height: 43px;                     /* 54 * 0.8 */
  max-width: 100%;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.05));

  /* 初期は非表示（IntersectionObserverで .is-in を付与すると発火） */
  opacity: 0;
  transform: scale(0.3) rotate(12deg);  /* ロゴと逆向き */
  transform-origin: 50% 60%;
  will-change: transform, opacity;
}
.section__head.is-in img {
  animation: headPopIn 1.05s cubic-bezier(0.22, 0.9, 0.36, 1) both;
}

/* ロゴと左右逆の回転をする見出し用ポップイン */
@keyframes headPopIn {
  0%   { transform: scale(0.3)  rotate(12deg);  opacity: 0; }
  55%  { transform: scale(1.12) rotate(-4deg);  opacity: 1; }
  72%  { transform: scale(0.94) rotate(2deg); }
  85%  { transform: scale(1.03) rotate(-1deg); }
  100% { transform: scale(1)    rotate(0);      opacity: 1; }
}
@media (min-width: 768px) {
  .section { margin-bottom: 88px; }
  .section__head { margin-bottom: -28px; }
  .section__head img { height: 68px; }    /* 85 * 0.8 */
}
@media (prefers-reduced-motion: reduce) {
  .section__head img {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ---------- Card ---------- */
.card {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 48px 22px 32px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .card {
    padding: 76px 88px 56px;
    border-radius: 26px;
  }
}

.card__title {
  text-align: center;
  color: var(--c-mint-dk);
  font-size: 24px;                  /* 20 * 1.2 */
  font-weight: 800;
  line-height: 1.2;                 /* 1.5 * 0.8 */
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.card__sub {
  text-align: center;
  color: var(--c-pink-dk);
  font-size: 16px;                  /* 13 * 1.2 */
  font-weight: 700;
  margin-bottom: 30px;
}
.card__title--ticket { margin-bottom: 24px; }
@media (min-width: 768px) {
  .card__title { font-size: 38px; margin-bottom: 10px; }
  .card__title--ticket { margin-bottom: 30px; }
  .card__sub { font-size: 22px; margin-bottom: 40px; }
}

/* ---------- Info (dl) ---------- */
.info { margin: 0 0 24px; }

.info dt {
  text-align: center;
  font-weight: 800;
  color: var(--c-mint-dk);
  font-size: 18px;                  /* 15 * 1.2 */
  margin-top: 22px;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.info dt:first-of-type { margin-top: 0; }
.info dd {
  text-align: center;
  color: var(--c-text);
  font-size: 16px;                  /* 13.5 * 1.2 */
  line-height: 1.45;                /* 1.8 * 0.8 */
}
@media (min-width: 768px) {
  .info dt { font-size: 24px; margin-top: 30px; }   /* 20 * 1.2 */
  .info dd { font-size: 19px; }                     /* 16 * 1.2 */
}

/* ===== TICKETセクション 左寄せ 2カラム ===== */
.info--ticket {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.4em;
  row-gap: 0.4em;
  text-align: left;
  max-width: 760px;
  margin: 0 auto 28px;
}
.info--ticket dt,
.info--ticket dd {
  margin: 0;
  text-align: left;
  white-space: nowrap;
}
/* プライマリ（申込受付期間） */
.info--ticket dt {
  color: var(--c-pink-dk);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.info--ticket dd {
  color: var(--c-mint-dk);
  font-weight: 800;
  font-size: 17px;
}
/* セカンダリ（抽選結果発表 / 支払手続期間 / 枚数制限） */
.info--ticket dt.info__sub {
  color: var(--c-text-sub);
  font-weight: 700;
  font-size: 13.5px !important;
}
.info--ticket dd.info__sub {
  color: var(--c-text);
  font-size: 13.5px !important;
  font-weight: 500;
}
@media (min-width: 768px) {
  .info--ticket {
    column-gap: 1.8em;
    row-gap: 0.5em;
    max-width: 900px;
  }
  .info--ticket dt { font-size: 22px; }
  .info--ticket dd { font-size: 22px; }
  .info--ticket dt.info__sub { font-size: 16px !important; }
  .info--ticket dd.info__sub { font-size: 16px !important; }
}
/* 横幅が狭いときは折り返し */
@media (max-width: 520px) {
  .info--ticket dd { white-space: normal; }
}

/* ---------- Price ---------- */
.info__price { margin-top: 18px; }
.price + .price { margin-top: 26px; }

.price__name {
  text-align: center;
  font-weight: 800;
  font-size: 23px;                  /* 19 * 1.2 */
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  -webkit-text-stroke: 0;
}
.price__yen {
  display: inline-block;
  margin-left: 8px;
  color: var(--c-text);
  font-size: 19px;                  /* 16 * 1.2 */
  font-weight: 700;
  -webkit-text-stroke: 0;
}
.price__tags {
  text-align: center;
  line-height: 1.3;                 /* 1.6 * 0.8 */
}
.price__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;                  /* 12 * 1.2 */
  padding: 5px 18px;
  border-radius: 999px;
  line-height: 1.35;                /* 1.7 * 0.8 */
  letter-spacing: 0.02em;
  max-width: 100%;
}
.price__tag strong { font-weight: 800; }

@media (min-width: 768px) {
  .price + .price { margin-top: 34px; }
  .price__name { font-size: 34px; }
  .price__yen { font-size: 26px; }
  .price__tag { font-size: 16px; padding: 7px 22px; }
}

/* ----- Tier: PINK (ASOBI-TSUKUSHI) ----- */
.price--pink .price__name { color: var(--c-pink-dk); }
.price--pink .price__tag {
  background: var(--c-pink-bg);
  color: var(--c-pink-on-bg);
}

/* ----- Tier: MINT (ASOBO-YO) ----- */
.price--mint .price__name { color: var(--c-mint-dk); }
.price--mint .price__tag {
  background: var(--c-mint-bg);     /* 淡いミントへ変更 */
  color: var(--c-mint-on-bg);
}

/* ----- Tier: YELLOW (ASOBO) ----- */
.price--yellow .price__name { color: var(--c-yellow-dk); }
.price--yellow .price__tag {
  background: var(--c-yellow-bg);
  color: var(--c-yellow-on-bg);
}

/* ---------- 会場 住所サブテキスト ---------- */
.info__address {
  display: inline-block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--c-text-sub);
  font-weight: 500;
}
@media (min-width: 768px) {
  .info__address { font-size: 16px; }
}

/* ---------- 出演 ---------- */
.info--cast {
  margin-top: 36px;
}
.cast {
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-size: 16px;
}
.cast--pink   { color: var(--c-pink-dk); }
.cast--mint   { color: var(--c-mint-dk); }
.cast--yellow { color: var(--c-yellow-dk); }
@media (min-width: 768px) {
  .info--cast { margin-top: 44px; }
  .cast { font-size: 20px; }
}

/* ---------- イベントに関するお問い合わせ ---------- */
.inquiry {
  margin-top: 44px;
}
.inquiry__title {
  text-align: center;
  color: var(--c-mint-dk);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.inquiry__body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0 0 22px;
  text-align: left;
}
.inquiry__body a {
  color: var(--c-mint-dk);
  text-decoration: underline;
  word-break: break-all;
}
.inquiry__notes {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
  color: var(--c-text-sub);
  line-height: 1.65;
}
.inquiry__notes li { margin-bottom: 4px; }
@media (min-width: 768px) {
  .inquiry { margin-top: 56px; }
  .inquiry__title { font-size: 26px; margin-bottom: 30px; }
  .inquiry__body { font-size: 15px; margin-bottom: 26px; }
  .inquiry__notes { font-size: 15px; }
}

/* ---------- Notes ---------- */
.notes {
  text-align: center;
  margin-top: 32px;
  color: var(--c-text-sub);
  font-size: 14px;                  /* 11.5 * 1.2 */
  line-height: 1.5;                 /* 1.85 * 0.8 */
}
.notes li { margin-bottom: 2px; }
.notes--small { font-size: 13px; }
.notes--mark { margin-top: 14px; }
.notes--mini {
  margin-top: 12px;
  /* font-size・color は .notes を継承 */
}
@media (min-width: 768px) {
  .notes { font-size: 16px; }
  .notes--small { font-size: 15px; }
}

/* ---------- Button ---------- */
.btn-wrap {
  text-align: center;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 300px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--c-mint-dk);
  color: #fff;
  font-weight: 800;
  font-size: 18px;                  /* 15 * 1.2 */
  line-height: 1;
  box-shadow: 0 4px 0 #2ba291, 0 8px 16px rgba(63, 196, 176, 0.25);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover {
  background: #4cd1bd;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #2ba291, 0 4px 8px rgba(63, 196, 176, 0.2);
}
.btn__icon {
  display: inline-flex;
  align-items: center;
}
.btn-note {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-sub);
  margin-top: 14px;
  line-height: 1.35;                /* 1.7 * 0.8 */
}
.btn-note--pink {
  color: var(--c-pink-dk);
  font-weight: 700;
  text-align: left;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .btn { min-width: 420px; font-size: 20px; padding: 20px 44px; gap: 14px; }
  .btn-note { font-size: 15px; }
}

/* ----- ボタン ティア色バリエーション ----- */
.btn--pink {
  background: var(--c-pink-dk);
  box-shadow: 0 4px 0 #c46378, 0 8px 16px rgba(232, 133, 159, 0.25);
}
.btn--pink:hover { background: #ee98ae; }
.btn--pink:active { box-shadow: 0 2px 0 #c46378, 0 4px 8px rgba(232, 133, 159, 0.2); }

.btn--mint {
  background: var(--c-mint-dk);
  box-shadow: 0 4px 0 #2ba291, 0 8px 16px rgba(63, 196, 176, 0.25);
}
.btn--mint:hover { background: #4cd1bd; }
.btn--mint:active { box-shadow: 0 2px 0 #2ba291, 0 4px 8px rgba(63, 196, 176, 0.2); }

.btn--yellow {
  background: var(--c-yellow-dk);
  box-shadow: 0 4px 0 #b8901a, 0 8px 16px rgba(232, 185, 66, 0.25);
}
.btn--yellow:hover { background: #f0c558; }
.btn--yellow:active { box-shadow: 0 2px 0 #b8901a, 0 4px 8px rgba(232, 185, 66, 0.2); }

/* ---------- TICKET: 各先行販売ブロック ---------- */
.ticket-block {
  padding-bottom: 56px;
  text-align: left;
}
.ticket-block + .ticket-block {
  padding-top: 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.ticket-block:last-of-type { padding-bottom: 0; }

.ticket-block__title {
  text-align: left;
  color: var(--c-mint-dk);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}

/* TICKETブロック内の info--ticket は左寄せ */
.ticket-block .info--ticket {
  margin: 0 0 32px;
  max-width: none;
  row-gap: 0.55em;
}

/* TICKETブロック内のボタン用 */
.btn-wrap--left {
  text-align: left;
  margin-top: 0;
}
.btn--sm {
  min-width: 280px;
  padding: 14px 28px;
  font-size: 15px;
  gap: 10px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
}
.btn--sm:active {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.ticket-block__notes {
  list-style: none;
  text-align: left;
  margin: 22px 0 0;
  padding: 0;
  font-size: 13.5px;
  color: var(--c-text-sub);
  line-height: 1.65;
}
.ticket-block__notes li { margin-bottom: 4px; }
.ticket-block__notes a {
  color: var(--c-mint-dk);
  text-decoration: underline;
  word-break: break-all;
}
.ticket-block__notes--bullet { margin-top: 22px; }

/* ご注意：背景無し・プレーンテキスト */
.ticket-block__caution {
  margin: 26px 0 26px;
  font-size: 13.5px;
  text-align: left;
  line-height: 1.65;
  color: var(--c-text);
}
.ticket-block__caution p { margin: 0; }
.ticket-block__caution p + p { margin-top: 4px; }

.ticket-block__contact {
  margin: 26px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-text);
}
.ticket-block__contact a {
  color: var(--c-mint-dk);
  text-decoration: underline;
  word-break: break-all;
}

@media (min-width: 768px) {
  .ticket-block { padding-bottom: 72px; }
  .ticket-block + .ticket-block { padding-top: 72px; }
  .ticket-block__title { font-size: 28px; margin-bottom: 36px; }
  .ticket-block .info--ticket { margin-bottom: 40px; }
  .ticket-block__notes { font-size: 15px; margin-top: 28px; }
  .ticket-block__notes--bullet { margin-top: 28px; }
  .ticket-block__caution { font-size: 15px; margin: 32px 0; }
  .ticket-block__contact { font-size: 15px; margin-top: 32px; }
  .btn--sm { font-size: 16px; padding: 16px 32px; min-width: 320px; }
}

/* カードトップパディング調整（カードタイトル削除に伴い） */
.card--ticket { padding-top: 56px; }
@media (min-width: 768px) {
  .card--ticket { padding-top: 80px; }
}

/* ポニキャン共通ブロック：上部マージンを80%に縮小 */
.ticket-block + .ticket-block.ticket-block--bottom { padding-top: 45px; }
@media (min-width: 768px) {
  .ticket-block + .ticket-block.ticket-block--bottom { padding-top: 58px; }
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  margin-top: 42px;                 /* 60 * 0.7 */
  padding: 14px 0;                  /* 20 * 0.7 */
}
.footer__copy {
  font-size: 13px;
  color: var(--c-text-sub);
  letter-spacing: 0.08em;
}
