/* =========================================================
  LivePocket LP（整理済み・完全版）
  最優先：Pontaロゴ / poster / bn_logo のサイズ制御
========================================================= */
/* ----- Base reset (軽め) ----- */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  background: #f2f2f2; /* 背景は薄い灰色に固定 */
  color: #222;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  color: #0d00ff;
}
a:hover {
  opacity: .75;
}
/* ----- Background (fixed) ----- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #f2f2f2; /* グラデ禁止：ベタ固定 */
}
/* =========================================================
  Layout（重要：#top だけに適用）
========================================================= */
body.page-front > main#top {
  width: min(980px, calc(100% - 24px));
  margin: 0 auto;
  padding: 0 0 40px;
}
/* 外枠カード */
.frame_line {
  margin-top: 14px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .12);
}
/* コンテンツ余白 */
.contentWrap {
  padding: min(7vw, 56px) min(5vw, 56px);
}
/* =========================================================
  HEADER（ロゴのみ）
========================================================= */
/* ヘッダー：白枠を消してロゴだけにする */
.header {
  padding: 14px 0 0; /* ここは必要なら 0 にしてもOK */
}
.header__inner {
  width: 100%;
  background: transparent; /* 白背景を消す */
  border: none; /* 枠線を消す */
  border-radius: 0; /* 角丸を消す */
  padding: 0; /* 内側余白を消す */
  display: flex;
  justify-content: center; /* 現状：センター寄せ */
  align-items: center;
  box-shadow: none; /* 影を消す */
}
.header__logo {
  display: inline-flex;
  align-items: center;
}
/* ロゴサイズ */
img.pontaLogo {
  width: auto !important;
  height: 42px !important;
  max-height: 42px !important;
  max-width: 260px !important;
  display: block !important;
}
/* =========================================================
  HERO / section01（poster & bn_logo）
========================================================= */
.section01 {
  padding: 22px 18px 18px;
  text-align: center;
  background: #fff;
}
.hero {
  width: min(860px, 100%);
  margin: 0 auto;
}
/* poster（ツアーロゴ） */
.hero__logoWrap {
  display: flex;
  justify-content: center;
  margin: 10px 0 14px;
}
img.hero__logo {
  width: 100% !important;
  max-width: 760px !important;
  max-height: 520px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}
@media (max-width: 720px) {
  img.hero__logo {
    max-width: 420px !important;
    max-height: 320px !important;
  }
}
/* bn_logo（SVG） */
.hero__bnLogo {
  display: flex;
  justify-content: center;
  margin: 8px 0 10px;
}
img.bnLogo {
  width: 100% !important;
  max-width: 280px !important;
  height: auto !important;
  display: block !important;
}
@media (max-width: 720px) {
  img.bnLogo {
    max-width: 240px !important;
  }
}
/* タイトル */
.hero__title {
  margin: 0;
}
.hero__logoLine {
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(22px, 5.2vw, 34px);
  line-height: 1.25;
  letter-spacing: .01em;
  margin-top: 4px;
}
.hero__titleEm {
  display: block;
  font-weight: 800;
  font-size: clamp(20px, 4.8vw, 32px);
  line-height: 1.25;
  margin-top: 10px;
}
/* リード */
.hero__lead {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: #222;
}
/* CTA */
.hero__cta {
  margin-top: 16px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  padding: 18px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .14);
}
.hero__btn--disabled {
  background: #bdbdbd;
  color: #fff;
  cursor: not-allowed;
}
/* 注記 */
.hero__noteList {
  margin: 14px auto 0;
  padding: 10px 0 0;
  list-style: none;
  width: min(820px, 100%);
  text-align: left;
  font-size: 12px;
  line-height: 1.75;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, .10);
}
.hero__noteList li {
  margin: 7px 0;
}
/* =========================================================
  section02：共通
========================================================= */
.section02 {
  padding: 18px 18px 22px;
}
/* 白箱 */
.whiteBox {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
/* =========================================================
  splitタイトル（ENTRY / SCHEDULE / TICKET）
========================================================= */
.period_title--split, .schedule_title--split {
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
/* 大見出し（ENTRY/TICKET） */
.period_logo {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111;
  white-space: nowrap;
}
.period_sub {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}
.period_sub strong {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 900;
}
/* SCHEDULE */
.schedule_logo {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111;
  white-space: nowrap;
}
.schedule_sub {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}
.schedule_sub strong {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 900;
}
/* タイトル間スペース */
.section02 .schedule_title--split {
  margin-top: 56px;
}
.section02 .whiteBox + .period_title--split {
  margin-top: 56px;
}
@media (max-width: 720px) {
  .period_title--split, .schedule_title--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .period_logo, .schedule_logo {
    font-size: 44px;
  }
  .period_sub, .schedule_sub {
    font-size: 14px;
  }
  .section02 .schedule_title--split {
    margin-top: 38px;
  }
  .section02 .whiteBox + .period_title--split {
    margin-top: 38px;
  }
}
/* =========================================================
  ENTRY（受付期間）
========================================================= */
.whiteBox .reception, .whiteBox .result {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  letter-spacing: .02em;
}
/* 日付 */
.whiteBox .date {
  margin: 8px 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.55;
  letter-spacing: .01em;
  text-align: center;
}
.whiteBox .date--range {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.whiteBox .date--range span {
  white-space: nowrap;
}
.whiteBox .date__sep {
  opacity: .45;
  font-weight: 600;
  display: inline;
}
/* 罫線：当落・入金の前 */
.whiteBox .result {
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, .10);
  margin-top: 6px;
}
/* 注記リスト */
.noteList {
  margin: 12px 0 0;
  padding: 10px 0 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, .10);
  color: #666;
  font-size: 13px;
  line-height: 1.75;
}
.noteList li {
  margin: 8px 0;
}
.noteLabel {
  font-weight: 700;
  color: #333;
}
@media (max-width: 720px) {
  .whiteBox .reception, .whiteBox .result {
    font-size: 15px;
  }
  .whiteBox .date {
    font-size: 18px;
  }
}
/* =========================================================
  SCHEDULE
========================================================= */
.scheduleList {
  display: grid;
  gap: 12px;
}
.show {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 14px;
  background: #fff;
}
.show--twodays {
  grid-template-columns: 110px 110px 1fr;
}
.show__date {
  border-radius: 12px;
  padding: 10px 10px 8px;
  background-color: #4a4a4a;
  border: 1px solid rgba(0, 0, 0, .12);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.show__md {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: rgba(255, 255, 255, .92);
  line-height: 1.05;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.md_slash {
  font-size: .78em;
  opacity: .78;
  display: inline-block;
  transform: translateY(-.02em);
  font-weight: 400;
}
.show__dow {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .10em;
  color: rgba(255, 255, 255, .78);
}
.show__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.show__area {
  font-weight: 700;
  color: #333;
  font-size: 13px;
  letter-spacing: .06em;
}
.show__venue {
  font-weight: 800;
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}
.show__time {
  font-weight: 600;
  color: #444;
  font-size: 14px;
}
@media (max-width: 720px) {
  .show {
    grid-template-columns: 96px 1fr;
  }
  .show--twodays {
    grid-template-columns: 96px 96px 1fr;
  }
  .show__md {
    font-size: 18px;
  }
}
/* =========================================================
  TICKET
========================================================= */
.whiteBox .ticketCard {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 16px 18px;
  margin: 12px 0;
}
.whiteBox .ticketCard:first-child {
  margin-top: 0;
}
.price {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.note {
  margin: 4px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
/* 名称の先頭に色バー */
.ticketCard .price::before {
  content: "";
  width: 10px;
  height: 22px;
  border-radius: 3px;
  margin-top: 2px;
  flex: 0 0 auto;
  background: #2B2B2B;
}
.ticketCard:nth-of-type(1) .price::before {
  background: #2B2B2B;
}
.ticketCard:nth-of-type(2) .price::before {
  background: #3F4A56;
}
.ticketCard:nth-of-type(3) .price::before {
  background: #5A4A3B;
}
@media (max-width: 720px) {
  .whiteBox .ticketCard {
    padding: 14px 14px;
    border-radius: 16px;
  }
  .ticketCard .price::before {
    width: 9px;
    height: 20px;
  }
}
/* =========================================================
  Ponta紹介リンク＋注意事項（白枠）
========================================================= */
.pontaIntro {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 18px 18px 16px;
  margin: 14px 0 0;
  overflow: hidden;
}
/* リンク */
.pontaIntro__link {
  display: block;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #2b79b9;
  text-decoration: underline;
  text-underline-offset: 6px;
}
/* コメント */
.pontaIntro__note {
  margin: 14px 0 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #111;
  text-align: left;
}
/* =========================================================
  注意事項 Accordion（黒）
========================================================= */
.noticeAccordion {
  border: 0;
  margin: 10px 0 0;
}
.noticeAccordion > summary {
  list-style: none;
  cursor: pointer;
}
.noticeAccordion > summary::-webkit-details-marker {
  display: none;
}
.noticeAccordion > summary {
  background: #4a4a4a;
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.noticeAccordion__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
}
.noticeAccordion__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  opacity: .95;
}
.noticeAccordion__icon::before {
  content: "＋";
}
.noticeAccordion[open] .noticeAccordion__icon::before {
  content: "－";
}
.noticeAccordion__body {
  background: #4a4a4a;
  color: #fff;
  padding: 18px 22px 22px;
  border-radius: 0 0 16px 16px;
}
.noticeAccordion__body, .noticeAccordion__body * {
  text-align: left;
}
.noticeList {
  margin: 0;
  padding-left: 1.2em;
}
.noticeList li {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.noticeList li:last-child {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .pontaIntro {
    padding: 16px 14px 14px;
    border-radius: 16px;
  }
  .pontaIntro__link {
    font-size: 22px;
  }
  .pontaIntro__note {
    font-size: 16px;
  }
  .noticeAccordion > summary {
    padding: 14px 14px;
    border-radius: 14px 14px 0 0;
  }
  .noticeAccordion__title {
    font-size: 20px;
  }
  .noticeAccordion__body {
    padding: 16px 16px 18px;
    border-radius: 0 0 14px 14px;
  }
  .noticeList li {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
/* =========================================================
  Ponta特典紹介（角丸オレンジ＋同幅）
========================================================= */
.pontaBenefits {
  margin-top: 28px;
}
.pontaBenefits__panel {
  background: #F68B1F;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 56px 16px 64px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
}
.pontaBenefits__inner {
  max-width: 980px;
  margin: 0 auto;
}
.pontaBenefits__title {
  margin: 0 0 22px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
  font-size: clamp(22px, 2.4vw, 34px);
}
.whiteBox.pontaBenefits__box {
  padding: 26px;
}
.pontaBenefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pontaBenefits__item {
  margin: 0;
}
.pontaBenefits__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
}
.pontaBenefits__notes {
  margin-top: 18px;
  color: #111;
  font-size: 13px;
  line-height: 1.6;
}
.pontaBenefits__notes p {
  margin: 6px 0 0;
}
@media (max-width: 720px) {
  .pontaBenefits {
    margin-top: 22px;
  }
  .pontaBenefits__panel {
    border-radius: 18px;
    padding: 44px 14px 52px;
  }
  .whiteBox.pontaBenefits__box {
    padding: 18px 16px;
  }
  .pontaBenefits__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pontaBenefits__notes {
    font-size: 12px;
  }
}
/* =========================================================
  section03（#ponta）は最低限だけ
========================================================= */
.section03 {
  margin-top: 18px;
}
.section03 img {
  max-width: 100%;
  height: auto;
}
/* =========================================================
  Ponta詳細（table代替 / 詳細ボックス / カード化）
========================================================= */
.p-caution-kv {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.p-caution-kv__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
}
.p-caution-kv__row + .p-caution-kv__row {
  border-top: 1px solid #eee;
}
.p-caution-kv__key {
  font-weight: 700;
  color: #1f2a44;
}
.p-caution-kv__val {
  color: #1f2a44;
}
@media (max-width: 768px) {
  .p-caution-kv__row {
    grid-template-columns: 120px 1fr;
    padding: 12px 14px;
  }
}
/* 特典（4枚画像）→その下の詳細ボックス */
.pontaBenefits__detailBox {
  margin-top: 16px;
  padding: 18px 18px;
}
.pontaBenefits__detailBox .lp_body {
  padding: 0;
}
.pontaBenefits__detailBox h2 {
  margin: 0 0 14px;
  text-align: center;
}
/* 特典の白Boxの下に余白 → 詳細タイトルを下げる */
.pontaBenefits__box + .pontaBenefits__title {
  margin-top: 26px;
}
/* 詳細タイトル と 詳細白Box の間 */
.pontaBenefits__title + .pontaBenefits__detailBox {
  margin-top: 14px;
}
/* 詳細：各セクションをカード化（灰枠＋角丸） */
.pontaBenefits__detailBox .caution > .u-pvm_pc, .pontaBenefits__detailBox .caution .u-phm_pc > .u-pvm_pc {
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: #f7f7f7;
  padding: 16px 16px;
  margin: 14px 0;
}
.pontaBenefits__detailBox .caution h3 {
  margin: 0 0 10px;
  font-weight: 800;
}
.pontaBenefits__detailBox .lp_caution_list {
  margin: 8px 0 0;
  padding-left: 1.2em;
}
.pontaBenefits__detailBox .caution p {
  margin: 8px 0 0;
}
.pontaBenefits__detailBox .caution p:first-child {
  margin-top: 0;
}
@media (max-width: 720px) {
  .pontaBenefits__detailBox .caution > .u-pvm_pc, .pontaBenefits__detailBox .caution .u-phm_pc > .u-pvm_pc {
    padding: 14px 14px;
    border-radius: 12px;
  }
}
.pontaBenefits__detailBox .caution a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* =========================================================
  お問い合わせ（黒カード）
========================================================= */
/* 上の空白は最終指定（!important）に合わせて統合 */
.contactBlock {
  padding-top: 10px;
  padding-bottom: 32px;
}
.contactBlock__panel {
  background: #000;
  border-radius: 22px;
  padding: 34px 18px 28px;
  text-align: center;
}
.contactBlock__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.contactBlock__sub {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.contactBlock__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px 6px;
  font-size: 22px;
  font-weight: 800;
  color: #33c7c9;
  text-decoration: none;
  border-bottom: 3px solid rgba(51, 199, 201, .8);
}
.contactBlock__link:hover {
  opacity: .85;
}
.contactBlock__arrow {
  font-size: 18px;
  transform: translateY(1px);
}
.contactBlock__note {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 720px) {
  .contactBlock {
    padding-top: 10px;
    padding-bottom: 32px;
  }
  .contactBlock__panel {
    border-radius: 18px;
    padding: 26px 16px 22px;
  }
  .contactBlock__title {
    font-size: 20px;
  }
  .contactBlock__sub {
    font-size: 18px;
  }
  .contactBlock__link {
    font-size: 18px;
    border-bottom-width: 2px;
  }
  .contactBlock__note {
    font-size: 13px;
  }
}
/* =========================================================
  固定ボタン
========================================================= */
/* 固定ボタン：下段に常時表示（中央寄せ） */
.fixbtn_wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0 14px;
}
/* ★ここがポイント：ボタン枠を作って overflow で “透明余白” を切り捨て */
.fix_button {
  position: relative;
  display: block;
  width: min(560px, 100%);
  aspect-ratio: 560 / 127; /* ←画像の比率（ほぼこの値） */
  border-radius: 999px;
  overflow: hidden; /* ←透明余白を見せない */
  text-decoration: none;
  line-height: 0;
  background: transparent;
  /* 影・枠線は「枠側」に付ける（画像側のborderは使わない） */
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
  border: 1px solid rgba(0, 0, 0, .10);
}
/* 画像は absolute で敷き詰め（cover） */
.fix_button_image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ←透明余白があっても埋まる */
  display: block;
  border: 0; /* ←白っぽい縁の原因になりがち */
  border-radius: 0;
  box-shadow: none; /* ←影は枠側で持つ */
  background: transparent;
  transition: transform .18s ease, opacity .18s ease;
}
/* ホバーで浮かす（枠ごと浮かす方が自然） */
.fix_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .30);
  transition: transform .18s ease, box-shadow .18s ease;
}
/* 販売前/終了：クリック不可 */
.fix_button.is-disabled {
  cursor: default;
  pointer-events: none;
  opacity: .75;
}
/* =========================================================
  ストリーミングサービス バナー（追加）
========================================================= */
/* ストリーミングバナー */
.pontaBenefits__streaming{
  overflow: hidden; /* 角丸に合わせて画像をクリップ */
}

.pontaBenefits__streamingImg{
  width: min(420px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 10px; /* カード内で少し角丸 */
}

/* URL未設定時は無効化（後で is-disabled を外すだけ） */
.pontaBenefits__streaming.is-disabled{
  pointer-events: none;
  cursor: default;
  opacity: .92;
}

/* =========================================================
  エンタメぽんぽんBOX
========================================================= */
/* entamepon */
.pontaBenefits__entamepon {
  display: block;
  text-decoration: none;
  text-align: center;
  margin: 0 0 16px;
  padding-bottom: 16px; /* 線の下の余白 */
  border-bottom: 5px solid #F68B1F; /* オレンジ太線 */
}
.pontaBenefits__entameponImg{
  width: min(420px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.pontaBenefits__entameponText {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
  color: #111;
}
.pontaBenefits__entamepon:hover {
  opacity: .85;
}
@media (max-width: 720px) {
  .pontaBenefits__entamepon {
	  padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .pontaBenefits__entameponText {
    font-size: 14px;
  }
}
/* =========================================================
  バナー共通（白罫線＋余白）
========================================================= */
.pontaBenefits__bannerCard{
  display: block;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  margin: 0 0 12px;
}

.pontaBenefits__bannerCard:last-child{
  margin-bottom: 0;
}

/* =========================================================
  スマホ用公演日表示の修正
========================================================= */
/* スマホ：日付→上、本文→下（1日/2日とも対応） */
@media (max-width: 520px){

  /* 1日公演：上に日付、下に本文 */
  .show{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ★日付は“帯”にしない：適度な幅で中央寄せ */
  .show__date{
    width: 100%;
    max-width: 320px;   /* ←好みで 280〜360 で調整 */
    margin: 0 auto;
    padding: 12px 10px 10px;
    border-radius: 14px;
  }

  .show__body{
    width: 100%;
  }

  /* 2日公演：上段に日付2つ、下段に本文 */
  .show--twodays{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "d1 d2"
      "body body";
    gap: 10px;
  }

  /* 2日公演の日付は2カラムいっぱいに（max-width解除） */
  .show--twodays .show__date{
    max-width: none;
    width: 100%;
    margin: 0;
  }

  /* 日付の割当（HTMLが 日付→日付→本文 の順の前提） */
  .show--twodays .show__date:first-of-type{ grid-area: d1; }
  .show--twodays .show__date:nth-of-type(2){ grid-area: d2; }
  .show--twodays .show__body{ grid-area: body; }

  /* 文字の微調整（必要なら） */
  .show__venue{ font-size: 16px; line-height: 1.45; }
  .show__time{ font-size: 14px; }
}
