/* =========================================================
  B’z黒テーマ（前回CSSをベースに黒寄せ）
========================================================= */
/* ----- Base reset ----- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: #eaeaea;
  background: #ff6a00;
  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: #9bb7ff; }
a:hover { opacity: .78; }

/* ----- Background (fixed) ----- */
.bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../images/bg_pc.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px){
  .bg{ background-image: url("../images/bg_sp.jpg"); }
}
body.theme-bz .bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

/* =========================================================
  Layout
========================================================= */
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: rgba(10, 10, 10, .72);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
}
.contentWrap{
  padding: min(7vw, 56px) min(5vw, 56px);
}

/* =========================================================
  HEADER
========================================================= */
.header{ padding: 14px 0 0; }
.header__inner{
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
img.pontaLogo{
  width: auto !important;
  height: 42px !important;
  max-height: 42px !important;
  max-width: 260px !important;
  display: block !important;
}

/* =========================================================
  HERO
========================================================= */
.section01{
  padding: 22px 18px 18px;
  text-align: center;
  background: transparent;
}
.hero{
  width: min(860px, 100%);
  margin: 0 auto;
}
.hero__logoWrap{
  display: flex;
  justify-content: center;
  margin: 0 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;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .55));
}
@media (max-width: 720px){
  img.hero__logo{
    max-width: 420px !important;
    max-height: 320px !important;
  }
}
.heroLogo{
  width: clamp(48px, 10vw, 96px);
  height: auto;
  max-width: 100%;
  display: block;
}
.hero__title{ margin: 0; }
.hero__logoLine{
  display: block;
  font-family: "Poppins", "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 5.2vw, 34px);
  line-height: 1.25;
  letter-spacing: .01em;
  margin-top: 4px;
  color: #f2f2f2;
}
.hero__titleEm{
  display: block;
  font-weight: 900;
  font-size: clamp(20px, 4.8vw, 32px);
  line-height: 1.25;
  margin-top: 10px;
  color: #ffffff;
}
.hero__lead{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .86);
}
.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: rgba(255, 255, 255, .62);
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__noteList li{ margin: 7px 0; }

/* =========================================================
  section02 共通
========================================================= */
.section02{ padding: 18px 18px 22px; }

/* =========================================================
  【可変】ツアー情報エリア（色変更はここだけ）
========================================================= */
.tourBox{
  background: rgba(20, 20, 20, .88);
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* =========================================================
  splitタイトル
========================================================= */
.period_title--split, .schedule_title--split{
  margin: 64px 0 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.period_logo, .schedule_logo{
  font-family: "Poppins", "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
}
.period_sub, .schedule_sub{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
}
.period_sub strong, .schedule_sub strong{
  font-family: "Poppins", "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 900;
}
.section02 .schedule_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; }
}

/* =========================================================
  ENTRY（ツアー情報：tourBox専用）
========================================================= */
.tourBox .reception, .tourBox .result{
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .02em;
}
.tourBox .date{
  margin: 10px 0 18px;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: .01em;
  text-align: center;
}
@media (max-width: 720px){
  .tourBox .date{ font-size: 22px; }
}
.tourBox .date--range{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.tourBox .date--range span{ white-space: nowrap; }
.tourBox .date__sep{ opacity: .55; font-weight: 700; }
.tourBox .result{
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, .14);
  margin-top: 6px;
}
.tourBox .noteList{
  margin: 12px 0 0;
  padding: 10px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .70);
  font-size: 13px;
  line-height: 1.75;
}
.tourBox .noteList li{ margin: 8px 0; }
.tourBox .noteLabel{
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
}

/* =========================================================
  SCHEDULE
========================================================= */
.scheduleList{ display: grid; gap: 12px; }
.show{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(90deg,
      rgba(120, 50, 180, .72) 0%,
      rgba(205, 45, 95,  .68) 45%,
      rgba(255, 110, 0,  .70) 100%
    );
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(255, 120, 70, .10) inset,
    0 0 22px rgba(255, 70, 40, .22),
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -1px 0 rgba(0, 0, 0, .55);
}
.show::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(120% 90% at 18% 12%, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 55%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0px, rgba(255, 255, 255, .05) 1px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 6px);
  opacity: .30;
  mix-blend-mode: overlay;
}
.show::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .28) 70%, rgba(0, 0, 0, .48) 100%),
    radial-gradient(120% 100% at 50% 120%, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, 0) 60%);
}
.show__date, .show__body{ position: relative; z-index: 1; }
.show--twodays{ grid-template-columns: 110px 110px 1fr; }
.show__date{
  border-radius: 12px;
  padding: 10px 10px 8px;
  background: linear-gradient(180deg, #222 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), inset 0 -1px 0 rgba(0, 0, 0, .55);
}
.show__md{
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(255, 255, 255, .92);
  line-height: 1.05;
}
.md_slash{ font-size: .78em; opacity: .78; font-weight: 400; }
.show__dow{
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  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: 800;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  letter-spacing: .06em;
}
.show__venue{
  font-weight: 900;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
}
.show__time{
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
  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（ツアー情報：tourBox専用）
========================================================= */
.tourBox .ticketCard{
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 16px 18px;
  margin: 12px 0;
}
.tourBox .ticketCard:first-child{ margin-top: 0; }
.tourBox .price{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tourBox .ticketCard .price::before{
  content: "";
  width: 10px;
  height: 22px;
  border-radius: 3px;
  margin-top: 2px;
  flex: 0 0 auto;
  background: #e60012;
}
@media (max-width: 720px){
  .tourBox .ticketCard{ padding: 14px 14px; border-radius: 16px; }
  .tourBox .ticketCard .price::before{ width: 9px; height: 20px; }
}

/* =========================================================
  注意事項 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){
  .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; }
}

/* =========================================================
  固定ボタン
========================================================= */
.fixbtn_wrap{
  position: fixed;
  left: 0; right: 0;
  bottom: 14px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0 14px;
}
.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;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
  border: 1px solid rgba(0, 0, 0, .10);
}
.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;
}

/* =========================================================
  スマホ用公演日表示の修正
========================================================= */
@media (max-width: 520px){
  .show{ grid-template-columns: 1fr; gap: 10px; }
  .show__date{
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 12px 10px 10px;
    border-radius: 14px;
  }
  .show__body{ width: 100%; }
  .show--twodays{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "d1 d2"
      "body body";
    gap: 10px;
  }
  .show--twodays .show__date{
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .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; }
}

/* =========================================================
  鼓動のアニメーション
========================================================= */
.hero .hero__logo.hero__logo--beat{
  transform-origin: center;
  animation: tourHeartbeat 3.3s ease-in-out infinite;
  will-change: transform;
}
@keyframes tourHeartbeat{
  0%{ transform: scale(1); }
  6%{ transform: scale(1.045); }
  10%{ transform: scale(1); }
  12%{ transform: scale(1.08); }
  16%{ transform: scale(1); }
  100%{ transform: scale(1); }
}

/* =========================================================
  余白調整用
========================================================= */
.sectionSpacer{ height: 56px; }
@media (max-width: 720px){
  .sectionSpacer{ height: 36px; }
}

/* =========================================================
  HERO：アーティスト写真を背景に（ロゴは左 25%）
========================================================= */
.hero__visual{
	position: relative;
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
	background: url("../images/poster_ats.jpg") center/cover no-repeat;
	aspect-ratio: 16 / 9;
	box-shadow: 0 18px 60px rgba(0,0,0,.45);
	background-image: url(assets/images/poster.jpg);
}
.hero__visual::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}
.hero__logoWrap--artist{
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 1;
  justify-content: flex-start;
  margin: 0;
}
.hero__visual img.hero__logo{
  width: clamp(130px, 28%, 260px) !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.55));
}
@media (max-width: 720px){
  .hero__visual{
    background: none !important;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
  }
  .hero__visual::before{
    content:"";
    width: 100%;
    height: min(62vw, 340px);
    background: url("../images/poster_ats.jpg") center/cover no-repeat;
    display: block;
  }
  .hero__visual::after{ display: none; }
  .hero__logoWrap--artist{
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 16px 14px;
    justify-content: center;
    background: rgba(0,0,0,.85);
  }
  .hero__visual img.hero__logo{
    width: clamp(170px, 72%, 360px) !important;
    max-width: none !important;
    max-height: none !important;
    height: auto !important;
  }
}
.hero__bnLogo{ margin-bottom: 18px; }
@media (max-width: 720px){
  .hero__bnLogo{ margin-bottom: 12px; }
}
/* =========================================================
  Mrs風：注意事項アコーディオン（白背景＋オレンジ＋＋）
========================================================= */
.mrsNoticeBox{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 10px 0;
  overflow: hidden;
}

.mrsNotice{
  border-top: 1px solid rgba(0,0,0,.10);
}
.mrsNotice:first-child{ border-top: none; }

.mrsNotice__summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
}
.mrsNotice__summary::-webkit-details-marker{ display:none; }

.mrsNotice__title{
  color: #e95816;
  font-weight: 900;
  letter-spacing: .02em;
}

/* 右の＋（オレンジ） */
.mrsNotice__icon{
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 20px;
}
.mrsNotice__icon::before,
.mrsNotice__icon::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #e95816;
  transform: translate(-50%, -50%);
}
.mrsNotice__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.mrsNotice[open] .mrsNotice__icon::after{
  opacity: 0; /* ＝横棒だけ残る */
}

/* 本文 */
.mrsNotice__body{
  padding: 0 18px 18px;
  color: #111;
  line-height: 1.7;
  font-size: 14px;
}

/* noteList（B’zの既存noteListは使わず、専用に） */
.mrsNoteList{
  margin: 10px 0 0;
  padding-left: 1.2em;
}
.mrsNoteList li{
  margin: 8px 0;
}

.mrsNoteLabel{
  font-weight: 900;
}

/* 見出し/締めの黒丸を消す */
.mrsNoteList > li.mrsNoteHead,
.mrsNoteList > li.mrsNoteTail{
  list-style: none;
  padding-left: 0;
}

/* 入れ子リストの見た目調整 */
.mrsNoteSubList{
  margin: 8px 0 8px;
  padding-left: 1.2em;
}

.mrsNoteHead{
  margin: 0 0 6px;
  font-weight: 800;
}

.mrsNoteSubList li{ margin-top: 4px; }
/* 〈 諸事項 〉みたいな見出し */
.mrsBodyHeading{
  margin: 14px 0 6px;
  font-weight: 900;
}

/* SP */
@media (max-width: 720px){
  .mrsNotice__summary{ padding: 16px 14px; }
  .mrsNotice__body{ padding: 0 14px 16px; font-size: 13px; }
}
/* ===== ナオト用：HEROを poster.jpg のみ表示にする ===== */
.hero__visual{
  background: none !important;
  aspect-ratio: auto !important;
  box-shadow: none; /* 影が不要なら。残したいならこの行は削除OK */
}

.hero__visual::before,
.hero__visual::after{
  content: none !important;
  display: none !important;
}

/* 画像を中央に1枚で出す */
.hero__logoWrap--artist{
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
  margin: 0 !important;
  justify-content: center !important;
}

/* poster.jpg を枠いっぱいに（縦横比は維持） */
.hero__visual img.hero__logo{
  width: 100% !important;
  max-width: none !important;
  max-height: none !important;
  filter: none; /* 不要なら */
  object-fit: contain !important;
}

/* 1枚KVなので心拍アニメも止める（不要なら削除OK） */
.hero__logo--beat{ animation: none !important; }
/* frame_line を完全な黒に固定 */
.frame_line{
  background: #0a0a0a !important;   /* or #000 */
  backdrop-filter: none !important; /* ガラス効果不要なら切る */
}
/* 2DAYSの時間を2行表示にする */
.show__timeRow{
  display: block;
}

.mrsLayoutImgs{
  width: 80%;
  margin: 16px auto 0; /* センター寄せ */
  display: grid;
  gap: 12px;
}

.mrsLayoutImgs img{
  width: 100%;
  height: auto;
  display: block;
}
/* 2ブロック化（区切り線＋余白） */
.tourBox__section{
  padding: 18px 0;
}

.tourBox__section + .tourBox__section{
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

/* 見出しを整える */
.tourBox__head{
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
}

/* 長い見出しだけ少し小さく（任意） */
@media (max-width: 640px){
  .tourBox__head{ font-size: 14px; }
}
.tourBox__head{
  text-indent: -0.6em;
  padding-left: 0.6em;
}
/* 次セクション（ENTRY）の上余白が大きい場合はここも */
.section02{
  padding-top: 24px !important;    /* お好みで 16〜40px */
  margin-top: 0 !important;
}
/* ENTRY見出しの“上余白”を詰める（ここが一番効く） */
.period_title--split,
.schedule_title--split{
  margin: 18px 0 12px !important; /* 64px → 18px（お好みで 12〜24） */
}
/* section02内だけ、contentWrapの上paddingを詰める */
.section02 > .contentWrap{
  padding-top: 18px !important;  /* 最大56px → 18px（お好みで 12〜24） */
}
/* 共通仕様ヘッダー背景：画面横幅100%で白 */
.header{
  width: 100vw;                 /* 画面幅に固定 */
  margin-left: calc(50% - 50vw);/* 親が幅制限されてても全幅に戻す */
  margin-right: calc(50% - 50vw);
  background: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* ロゴ：上下に余白 */
.header__inner{
  max-width: 1100px;            /* 既存に合わせてOK */
  margin: 0 auto;
  padding: 5px 10px 16px 10px;           /* ←上下余白ここ */
  background: transparent !important;
}

/* 画像が下に隙間できるのを防ぐ */
.pontaLogo{
  display: block;
  height: 28px;                 /* 任意：不要なら削除 */
  width: auto;
}
/* ===== サブタイトル画像の右端（たぬき側）に ©Ponta を固定 ===== */

/* 画像 + ©Ponta を横並びにして、全体をセンター寄せ（戻す版） */
.pontaSubtitleRow{
  display: inline-flex;
  align-items: center;     /* 文字位置が気になるなら baseline に */
  gap: 8px;
}

/* 行全体をセンターに置く */
.pontaBenefits__subtitle,
.pontaBenefits__subTitle{
  text-align: center;
}

/* ©Pontaの見た目 */
.pontaCopyright{
  font-size: 10px;
  line-height: 1;
  color: rgba(0,0,0,.55);
  white-space: nowrap;
}

/* スマホだけ少し詰める */
@media (max-width: 640px){
  .pontaSubtitleRow{ gap: 6px; }
  .pontaCopyright{ font-size: 9px; }
}