/* ================= Base ================= */
:root {
  --navy: #0b1740;
  --navy-deep: #081133;
  --ink: #101429;
  --sky: #47D1FF;
  --line: #1f2b64;
  --bd: #dfe5ff;
  --paper: #ffffff;
  --muted: #f7f9ff;
  --yellow: #FFE34A;
  /* 画像に近い明るい黄 */
  --yellow-deep: #ffd800;
  --black: #0b0b0b;
  --shadow: 0 8px 22px rgba(11, 23, 64, .12);
  --radius: 14px;
}


html,
body {
  height: 100%;
  margin: 0;
  background: transparent;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}

body {
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Meiryo, Arial, sans-serif;
  line-height: 1.7;
  background: transparent;
  /* 背景は別要素 */
}

html {
  overflow-x: clip;
}

/* 近代ブラウザ */
@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== 固定背景（スクロールしない） ===== */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/bg.webp") center / cover no-repeat;

}

.page {
  position: relative;
  z-index: 1;
}

.bg-sp {
  display: none;
}

@media (max-width:1000px) and (min-width:451px) {
  .bg-fixed {
    /* どちらか一方でOK */
    /* 1) ショートハンドで上書き */
    background: url("../img/bg.webp") center / contain no-repeat;
  }
}



@media (max-width:450px) {
  .bg-sp {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    background: url("../img/sp_bg.webp") center / cover no-repeat;
    /* こちらも cover */
    pointer-events: none;
  }

  .bg-fixed {
    display: none;
  }

}

/* ===== ページラッパ（ここだけスクロール） ===== */
.page {
  grid-template-rows: auto 1fr auto;
}

/* 共通 */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}




/* ================= KV ================= */

.kv {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}

.hero_img {
  width: 100%;
  height: auto;
}

.sp_header {
  display: none;
}

@media (max-width:450px) {
  .hero_img {
    display: none;
  }

  .sp_header {
    display: block;
  }

}

/* 下端に重ねる帯 */
.hero__bar-on {
  background: rgba(11, 23, 64, .96);
  border-top: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
}

.hero__bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  height: clamp(96px, 9.0215vw, 160px);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;


}

.hero__lead {
  margin: 0;
  font-size: clamp(18px, 2.77585vw, 56px);
  font-weight: 800;
  text-align: center;
}

.header_text {
  font-weight: 800;
  font-size: clamp(16px, 2.77585vw, 56px);
  padding: 30px 0 0;
  font-style: bold;
}

.subsc {
  width: min(92vw, 652px);
  max-width: 652px;
  margin: 24px auto 0 auto;
  padding: clamp(16px, 4vw, 28px);
  border-radius: 14px;
  background: #0b1740;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.subsc p {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 32px);
  color: #fff;
}

@media (max-width:450px) {

  .subsc {
    font-size: 16px;
  }

}


/* ================= NEWS ================= */
/* レイアウト（中央寄せ） */
.news-area {
  display: grid;
  place-items: center;
  gap: 14px;
  margin-bottom: 50px;
  padding: 0 20px;
}



/* 下：黄色ボックス */
.news-box {
  position: relative;
  background: #FFE84A;
  border: 4px solid #0B1740;
  /* 濃紺の枠 */
  border-radius: 0;
  padding: 18px 40px 50px;
  /* 下を少し厚め：▼用 */
}

/* リスト */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  justify-content: center;
}

/* 1行の並び：左=日付 右=本文 */
.news-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 6px 0;
}

/* NEW 行（見出し行） */
.news-row--new {
  grid-template-columns: 1fr;
  padding: 2px 0 10px;
}

.news-badge {
  color: #ff2e6e;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(12px, 1.6655vw, 28px);
}

/* テキスト */
.news-date {
  color: #0B1740;
  margin: 0;
  font-weight: 700;
  font-size: clamp(14px, 1.38793vw, 24px);
}

.news-text {
  margin: 0;
  font-weight: 700;
  font-size: clamp(14px, 1.38793vw, 24px);
}

.news-text a {
  color: #ff2e6e;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* 下中央の▼（ボーダーだけで描画） */
.news-caret {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #0B1740;
}

/* ================= CATCHCOPY ================= */

.section--catch {
  width: min(880px, 92vw);
  /* 好きな最大幅に。既存値に合わせてOK */
  margin: 0 auto;
  /* 中央寄せ */
  text-align: center;
  margin-bottom: 50px;
}

.catch {
  display: block;
  padding: 30px;
}

.catch img {
  width: 90%;
  height: auto;
  display: block;
  margin: 14px auto 40px;
  /* 中央寄せ＆余白 */
}

.catch__text {
  font-size: clamp(16px, 1.6655vw, 28px);
  font-weight: 800;
}

/* 見出し画像の統一スタイル */
.news-img, .dg-img, .songs-head, .store-head, .event-head, .streaming-head {
  text-align: center;
  margin: 60px 0 20px 0;
}

.news-img img, .dg-img img, .songs-head img, .store-head img, .event-head img, .streaming-head img {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* SP(〜450px) 調整 */
@media (max-width:450px) {
  .news-img img, .dg-img img, .songs-head img, .store-head img, .event-head img, .streaming-head img {
    width: 100% !important;
    max-width: none !important;
  }

  .news-box {
    padding: 16px 16px 28px;
    font-size: 12px;
    width: min(303px, 90vw);
  }

  .news-row {
    grid-template-columns: 90px 1fr;
    gap: 1px;
    padding: 0%;
  }

  .news-text {
    font-size: 12px;
    line-height: 1.2rem;
  }

  .news-area {
    margin-bottom: 0;
    padding: 0 10px;
  }

  .catch__text {
    margin: auto;
  }

  .subsc {
    width: 81.4vw;
    height: 106px;
  }

  .news-row--new {
    padding: 0;
  }

  .news-list {
    gap: 8px;
  }
}


/* ================= DISCOGRAPHY ================= */


/* セクション配置（中央寄せ） */
.dg {
  display: grid;
  /* 追加：block → grid */
  place-items: center;
  padding: 12px 0 28px;
  margin-bottom: 50px;
}

.r-pricewrap {
  margin-top: 15px;
  margin-bottom: 15px;
}

.r-price {
  line-height: 1.2;
  font-weight: 900;
  font-size: 32px;
  margin: 10px 0 0;
}

.r-price p {
  font-size: 16px;
  font-weight: 200;
}

/* --- 画面幅が768px以下のスマホ用のスタイルを追加 --- */
@media (max-width: 768px) {
  .r-price {
    font-size: 20px;
    /* ← スマホ用に小さくする */
  }
}

.tax {
  font-size: 20px;
}

.r-code {
  font-size: 16px;
}

/* ネイビーボックス */
.dg-box {
  width: 100%;
  /* ← まずは100% */
  max-width: 856px;
  /* ← 上限で制御（Safariのvw差を回避） */
  margin-inline: auto;
  /* 中央寄せの保険 */
  background: #0b1740;
  color: #fff;
  border-radius: 22px;
  padding: clamp(18px, 4vw, 40px) clamp(22px, 5vw, 60px);
}

/* 856px以下でマージンを適用 */
@media (max-width: 856px) {
  .dg {
    width: 81.4vw;
    margin-inline: auto;
  }
}

/* 856px以下でマージンを適用 */
@media (max-width: 856px) {
  .regular-store {
    margin-inline: auto;
  }
}

/* 箇条書き */
.dg-list {
  list-style: disc;
  /* ●バレット */
  margin: 0;
  padding-left: 1.4em;
  /* バレットぶんの字下げ */
  display: grid;
  gap: clamp(8px, 1.2vw, 12px);
  /* 行間の間隔 */
  line-height: 1.9;
  font-weight: 800;
  /* 太め（画像に近い） */
  font-size: clamp(14px, 1.25vw, 18px);
  /* レスポンシブ文字サイズ */
}

.dg-list li {
  line-height: 1.8;
  font-weight: 700;
}

/* スマホ（〜450px） */
@media (max-width: 450px) {

  .dg-img {
    width: 100%;
  }
  .dg,
  .regular-store {
    width: 81.4vw;
    /* 黄色いセクションと同じマージンを適用 */
    max-width: 856px;
    margin-inline: auto;
  }

  .dg-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pwide__jacket {
    margin-bottom: 0;
  }

  .pwide__right {
    margin-top: 0;
  }
}

:root {
  --navy: #0b1740;
  --navy-line: #081133;
  --yellow: #ffe84a;
  --radius: 0px;
  /* 角を直角にしたい場合は 0 に */
}

/* ベース */
.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.store {
  padding: 10px 0 30px;
}


@media (max-width: 450px) {
  .lp-wide {
    width: 81.4vw;
    margin: auto;
  }
}

/* 共通：黄色い箱＋濃紺ボーダー */
.product {
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 16px;
}

.product+.product {
  margin-top: 16px;
}

:root {
  --navy: #0b1740;
  --yellow: #ffe84a;
  --ink: #101429;
  --radius: 0;
}


/* リセット最小限 */

.lp-wide {
  padding: 8px 0;
  margin: auto;
}

.pwide {
  margin: 0 auto;
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(11, 23, 64, .08);
  align-items: start;
}

/* 見出しラベル（左上） */
.pwide__label {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(18px, 1.9vw, 24px);
}

.pwide__jacket {
  justify-content: center;
  margin: 40px;
}

.pwide__jacket img {
  display: block;
  width: 100%;
  /* 2枚目の大きさ感 */
  height: auto;
}

@media (max-width: 820px) {
  .pwide__jacket img {
    display: block;
    width: 100%;
    /* 2枚目の大きさ感 */
    height: auto;
  }
}

/* 2カラム：左=画像 / 右=テキスト群 */
.pwide__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  /* 画像：テキストの比率 */
  text-align: center;
}


/* 右：上→中→下→ボタン を縦に並べる（“位置がズレない”肝） */
.pwide__right {
  grid-template-rows: auto auto auto auto;
  gap: 12px;
  margin: 40px;
  display: block;
}

.pwide__spec {
  margin: 0;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.6;
}

/* ===== 白いボックス（ノッチ＋右角カット風） ===== */
.pwide__callout {
  line-height: 0.9;
  margin-top: 20px;
  --cut: 20px;
  /* 斜めカットの大きさ */
  --border: 3px;
  /* 枠の太さ */
  --edge: #0B1740;
  /* 枠の色 */

  position: relative;
  isolation: isolate;
  /* 自前のスタッキング文脈を作る*/
  padding: 14px 16px;
  color: #0B1740;
  text-align: center;

  justify-self: center;
  /* 右カラム内で中央に配置（左に寄せたいなら start） */
  gap: 12px;
}

/* ===== 白いボックス（ノッチ＋右角カット風） ===== */
.pwide__callout4 {
  line-height: 0.9;
  margin-top: 20px;
  --cut: 20px;
  /* 斜めカットの大きさ */
  --border: 3px;
  /* 枠の太さ */
  --edge: #0B1740;
  /* 枠の色 */

  position: relative;
  isolation: isolate;
  /* 自前のスタッキング文脈を作る*/
  padding: 14px 16px;
  color: #0B1740;
  text-align: center;

  justify-self: center;
  /* 右カラム内で中央に配置（左に寄せたいなら start） */
  gap: 12px;
}

.min_p {
  font-size: 14px;
}

.pwide__callout li {
  list-style: none;
}

.pwide__pricewrap {
  justify-content: center;
}

.pwide__pricewrap .btn {
  display: grid;
  /* テキスト中央寄せの最短手 */
  place-items: center;
  height: 52px;
  /* ボタン高さ（任意） */
  border-radius: 999px;
  background: #0b1740;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  width: 400px;
}

.pwide__callout>* {
  position: relative;
  z-index: 1;
  margin: 0;
}


/* 外周（濃紺）を ::before で描く */
.pwide__callout::before {
  content: "";
  position: absolute;
  inset: 0;
  /* はみ出さない */
  background: var(--edge);
  /* 左上＆右下だけ斜めカット */
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

/* 内側（白）を ::after で描いて“枠”にする */
.pwide__callout::after {
  content: "";
  position: absolute;
  inset: var(--border);
  /* ← ここがミソ。外へはみ出さない */
  background: #fff;
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.pwide__callout-ttl {
  margin: 0 0 6px;
  font-weight: 900;
}

.pwide__callout-list {
  margin: 0;
  padding-left: 1.1em;
  padding-right: 1.1em;
  font-weight: 700;
}

/* 価格＆品番 */
.pwide__pricewrap {
  display: grid;
  gap: 2px;
}

.pwide__price {
  font-weight: 900;
  font-size: 20px;
}

.pwide__price span {
  font-weight: 700;
}

.pwide__code {
  font-size: 12px;
  color: #666;
}


/* 820px以下で通常盤と同じ構成に */
@media (max-width: 820px) {

  .pwide {
    justify-content: center;
  }

  .lp-wide {
    justify-content: center;
    grid-template-columns: 1fr;
  }

  .pwide__grid {
    display: block;
    justify-content: center;
    text-align: center;
  }

  .pwide__grid img {
    grid-template-columns: 1fr;
  }

  .pwide__jacket {
    margin-bottom: 20px;
  }

  .pwide__jacket img {
    display: inline-flex;
    justify-self: center;
  }

  .r-jacket img {
    display: inline-flex;
  }

  .bottom-card {
    margin: 40px;
  }


}

@media (max-width: 450px) {
  .pwide__callout-ttl {
    font-size: 14px;
  }

  .pwide__jacket {
    margin-bottom: 0;
  }

  .pwide__right {
    margin-top: 0;
  }

  .pwide__spec {
    font-size: 14px;
  }

  .min_p {
    font-size: 11px;
  }

  .pwide__callout-list {
    margin: 1rem 0 .6rem;
    padding-left: 1em;
    padding-right: 1em;
  }

  .pwide__callout {
    line-height: 1;
  }
}

/* —— 2カラム（通常盤A/B） —— */
:root {
  --navy: #0b1740;
  --yellow: #ffe84a;
  --ink: #11131d;
  --radius: 0;
  --border: 3px;
  --cut: 20px;
  /* 角カットの大きさ（白ボックス） */
  --edge: 3px;
  /* 白ボックスの枠の太さ */
  --rail: 86%;
  /* 白ボックス/ボタンの共通幅（カードに対する％） */
}

/* リセット最小限 */
img {
  display: block;
  max-width: 100%;
  height: auto
}

/* レイアウト */
.regular-store {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
  padding: 10px 0 30px;
}

.r-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
}

/* カード（黄色い箱） */
.r-card {
  min-width: 0;
  /* ← これが無いと列に収まらず崩れます */
  width: auto;
  flex-direction: column;
  background: var(--yellow);
  border: 3px solid var(--navy);
  color: var(--navy);
  text-align: center;
  height: 100%;
}

.r-label {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(18px, 1.9vw, 24px);
}

/* ジャケット枠 */
.r-jacket {
  border-radius: var(--radius);
  margin-bottom: 0px;

}

.r-jacket img {
  margin: auto;
}

.bottom-card {
  margin: 40px 0;
}

.r-desc {
  margin: 0 0 20px;
  font-weight: 700;
}

.r-callout>* {
  position: relative;
  z-index: 1;
}

:root {
  --border: 3px;
  --edge: 3px;
  /* 枠の太さ */
  --cut: 30px;
  /* 角カット量 */
  --navy: #0b1740;
}

/* 枠をSVGで描く版（他CSSの影響をほぼ受けません） */
.r-callout-svg {
  position: relative;
  width: var(--rail);
  /* ← 既存と同じ幅指定を継承 */
  margin: 12px auto 0;
}

.r-callout-svg__shape {
  display: block;
  width: 100%;
  height: auto;
}

.r-callout-svg__inner {
  position: absolute;
  /* 内側余白：数字を変えると上下左右のテキスト余白が調整できます */
  inset: 16px 18px 18px 18px;
  color: #0b1740;
  text-align: center;
}

.r-callout__ttl {
  margin: 0 0 6px;
  font-weight: 900;
}

.r-callout__list {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 4px;
  text-align: center;
  list-style: none;
}


/* 丸ボタン（白ボックスと同じ幅＆中央） */
.r-btn {
  display: grid;
  place-items: center;
  width: 338px;
  /* 固定幅で統一 */
  max-width: 90%;
  /* 親要素からはみ出さない */
  height: 80px;
  margin: auto;
  font-size: 24px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.r-box {
  margin: 55px;
}

/* スマホ（縦並び） */
@media (max-width: 450px) {
  .r-wrap {
    grid-template-columns: 1fr;
  }

  .r-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .r-callout,
  .r-btn {
    width: 300px;
    font-size: 16px;
    height: 44px;
  }

  .pwide__label img {
    justify-self: center;
  }

  .r-jacket img {
    justify-self: center;
  }

  .regular-store {
    width: 81.4vw;
    margin: auto;
    display: block;
  }

  .r-wrap {
    margin-bottom: 20px;
  }

  .r-box {
    justify-self: center;
    margin: 0 40px;
  }
}

/* ================= SONG　CONTENTS ================= */

.songs-row+.songs-row {
  border-top: 2px solid var(--navy);
}

.songlist-bt {
  border-top: none;
}

.songs {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 30px 0;
}

/* ボックスは親幅いっぱいに */
.songs-board {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 970px;
  margin-inline: auto;
  background: #fff;

  /* clip-pathで角カット */
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.songs-board::before {
  content: "";
  position: absolute;
  inset: calc(var(--border) * -1);
  background: var(--edge);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  z-index: -1;
}

/* ===== 白いボックス（ノッチ＋右角カット風） ===== */
.pwide__callout2 {
  --cut: 40px;
  /* 斜めカットの大きさ */
  --border: 6px;
  /* 枠の太さ */
  --edge: #0B1740;
  /* 枠の色 */

  position: relative;
  isolation: isolate;
  padding: 20px;
  max-width: 1100px;
  width: 100%;
  color: #0B1740;
  text-align: center;
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
  background: #fff;
  margin-inline: auto;

  /* clip-pathで角カット */
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.pwide__callout2 li {
  list-style: none;
}

.pwide__pricewrap {
  justify-content: center;
}

.pwide__pricewrap .btn {
  display: grid;
  /* テキスト中央寄せの最短手 */
  place-items: center;
  height: 52px;
  /* ボタン高さ（任意） */
  border-radius: 999px;
  background: #0b1740;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  width: 400px;
}

.pwide__callout2>* {
  position: relative;
  z-index: 1;
  margin: 0;
}


/* 外周（濃紺）を ::before で描く */
.pwide__callout2::before {
  content: "";
  position: absolute;
  inset: 0;
  /* はみ出さない */
  background: var(--edge);
  /* 左上＆右下だけ斜めカット */
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

/* 内側（白）を ::after で描いて“枠”にする */
.pwide__callout2::after {
  content: "";
  position: absolute;
  inset: var(--border);
  /* ← ここがミソ。外へはみ出さない */
  background: #fff;
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.pwide__callout2-ttl {
  margin: 0 0 6px;
  font-weight: 900;
}

.pwide__callout2-list {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 4px;
}

/* ちょいリセット */
img {
  display: block;
  max-width: 100%;
  height: auto
}

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0
}

/* セクション全体を中央に */
.songs {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 30px 0;
}

/* 枠をSVGで描く版（他CSSの影響をほぼ受けません） */
.r-callout-svg {
  position: relative;
  width: var(--rail);
  /* ← 既存と同じ幅指定を継承 */
  margin: 12px auto 0;
}

.r-callout-svg__shape {
  display: block;
  width: 100%;
  height: auto;
}

.r-callout-svg__inner {
  position: absolute;
  /* 内側余白：数字を変えると上下左右のテキスト余白が調整できます */
  inset: 16px 18px 18px 18px;
  color: #0b1740;
  text-align: center;
}

.r-callout__ttl {
  margin: 0 0 6px;
  font-weight: 900;
}

.r-callout__list {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 4px;
  text-align: left;
}


/* 曲グリッド：2カラムレイアウト */
.songs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.song-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 23, 64, .2);
}

.song-item:last-child:nth-child(odd) {
  border-bottom: none;
}

.song-item .title {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 24px;
  margin: 0 0 8px 0;
  text-align: left;
}

.song-item .meta {
  color: #0b1740;
  opacity: .8;
  font-size: 20px;
  font-weight: 700;
  font-style: Bold;
  text-align: left;
  margin: 0;
}

.songs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.right,
.left {
  padding: 14px clamp(16px, 6vw, 60px);
}

/* レスポンシブ：768px以下で1列に */
@media (max-width: 768px) {
  .songs-grid {
    grid-template-columns: 1fr;
  }

  .songs-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .songlist-bt {
    border-top: 2px solid var(--navy) !important;
  }

  .etc-grid {
    grid-template-columns: 1fr !important;
  }
}

.songs-row:first-child::before {
  display: none;
}

/* 左右の中身 */
.songs-row .title {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 24px;
  margin: 0;
  text-align: left;
}

.songs-row .meta {
  color: #0b1740;
  opacity: .8;
  font-size: 20px;
  font-weight: 700;
  font-style: Bold;
  text-align: left;
}

.songs-row .title,
.songs-row .meta {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 560px) {
  .pwide__callout2 {
    padding: 14px clamp(16px, 6vw, 60px);
  }

  /* 余裕がなければ内側も少し縮める */
  .songs-row {
    row-gap: 6px;
  }

  .songs-row .title {
    font-size: 16px !important;
  }

  .songs-row .meta {
    font-size: 12px !important;
  }

  .pwide__callout2 {
    width: 95%;
    padding: 14px clamp(16px, 6vw, 60px);
  }
}


/* スマホ（〜450px）は1カラム落ちで読みやすく */
@media (max-width: 450px) {
  .pwide__callout2 {
    --cut: 20px;
    /* 斜めカットの大きさ */
    --border: 3px;
  }

  .songs-head img {
    width: 100%;
  }

  .songs-row .title {
    font-size: 10px;
  }

  .songs-row .meta {
    font-size: 8px;
    font-weight: 700;
  }
}

.song-discription {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
  text-align: left;
  /* ← これで頭が揃います */
}


@media (max-width: 560px) {
  .song-discription {
    font-size: 8px;
  }
}


/* ================= STORE ================= */

:root {
  --navy: #0b1740;
  /* 枠と文字色 */
  --yellow: #ffe84a;
  --edge: 3px;
  /* 枠の太さ */
  --cut: 10px;
  /* 斜めカット量（角の落とし方） */
}

/* リセット最小限 */
img {
  display: block;
  max-width: 100%;
  height: auto
}

h1,
h2,
h3,
p {
  margin: 0;
  margin: 0 0 .6rem;
}

a {
  color: inherit
}

/* セクション */
.store-sec {
  padding: 10px 0 40px;
  margin: auto;
}

.store-head {
  margin: 40px auto 0;
  justify-content: center;
  height: auto;
  display: flex;
}

/* グリッド（PC:2列 / SP:1列） */
.store-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px;
  align-items: stretch;
  width: min(453px, 82%);
  justify-content: center;
}

@media (max-width: 450px) {
  .store-head img {
    width: 100%;
  }

  .store-grid {
    margin: 0 auto;
    display: block;
  }

  .shop-card {
    display: block;
  }

  .store-sec {
    width: 81.4vw;
  }

}

/* カード */
.shop-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  grid-template-rows: auto auto auto auto auto auto;
  gap: 10px;
  padding: 6px 8px 50px;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  /* 透明。外側の大枠っぽさを出すための線のみ */
}

.bt-rail {
  margin-top: auto;
}

/* ロゴとテキスト */



.shop-name {
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1.2rem;
}

.shop-logo {
  display: grid;
  place-items: center;
  height: 50px;
  justify-content: center;
  margin-top: 6px;
  margin-bottom: clamp(16px, calc(100vw * 35 / 1441), 35px);
}

.shop-logo img {
  height: 77px;
}

.shops {
  line-height: 1.3;
  margin-bottom: 5px;
}

.s-t {
  font-weight: 900;
  font-size: 20px;
}

.s-s {
  font-size: 15px;
  font-weight: 700;
}

.shop-status {
  font-size: 12px;
  color: #222;
  opacity: .8;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* ボタンのレール（共通幅） */
.cutbtn-rail {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0px 0;
}

.cutbtn-rail--row--two {
  flex-wrap: wrap;
}

/* 黄色ボタン（角丸＋濃紺アウトライン＋ドロップ影風） */
.cutbtn {
  all: unset;
  /* ← 他のCSSをリセット */
  position: relative;
  display: inline-block;
  width: 219px;
  /* 好みで調整 */
  cursor: pointer;
  color: var(--navy);
  font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle;
  isolation: isolate;
  /* z-index競合回避 */
}

.cut-button {
  all: unset;
  /* ← 他のCSSをリセット */
  position: relative;
  display: inline-block;
  width: 219px;
  /* 好みで調整 */
  cursor: pointer;
  color: var(--navy);
  font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle;
  isolation: isolate;
}

.cut-button2 {
  all: unset;
  /* ← 他のCSSをリセット */
  position: relative;
  display: inline-block;
  width: 219px;
  /* 好みで調整 */
  cursor: pointer;
  color: var(--navy);
  font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle;
  isolation: isolate;
}

/* 画面幅が480px以下の場合に適用 */
@media (max-width: 480px) {

  .cut-button {
    width: 150px;
    /* ボタンの幅を狭くする */
    font-size: 14px;
    /* 文字サイズを少し小さくする */
    /* その他、モバイルで変更したいスタイルをここに追加 */
  }
}

@media (max-width: 480px) {

  .cut-button2 {
    width: 130px;
    /* ボタンの幅を狭くする */
    font-size: 10px;
    /* 文字サイズを少し小さくする */
    /* その他、モバイルで変更したいスタイルをここに追加 */
  }
}

.cut-button-box {
  width: 100%;
  max-width: 220px;
  /* 中身に合わせて調整 */
  margin-inline: auto;
  /* これだけでも中央に来る */
}

.cut-button-out-line {
  --cut: 10px;
  /* 斜めカットの大きさ */
  --border: 2.5px;
  /* 枠の太さ */
  --edge: #0B1740;
  /* 枠の色 */
  position: relative;
  isolation: isolate;
  /* 自前のスタッキング文脈を作る → 擬似要素が消えにくい */
  padding: 14px;
  width: 100%;
  color: #0B1740;
  text-align: center;
  justify-self: start;
  /* 右カラム内で中央に配置（左に寄せたいなら start） */
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}

.cut-button li {
  list-style: none;
}

.cut-button-out-line>* {
  position: relative;
  z-index: 1;
  margin: 0;
}


/* 外周（濃紺）を ::before で描く */
.cut-button-out-line::before {
  content: "";
  position: absolute;
  inset: 0;
  /* はみ出さない */
  background: var(--edge);
  /* 左上＆右下だけ斜めカット */
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

/* 内側（白）を ::after で描いて"枠"にする */
.cut-button-out-line::after {
  content: "";
  position: absolute;
  inset: var(--border);
  /* ← ここがミソ。外へはみ出さない */
  background: #FFED28;
  /* 斜めボーダーの太さを均一にするため内側のカット位置を調整 */
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(calc(var(--cut) - var(--border)) 0, 100% 0, 100% calc(100% - var(--cut) + var(--border)),
      calc(100% - var(--cut) + var(--border)) 100%, 0 100%, 0 calc(var(--cut) - var(--border)));
}

.cut-button-out-line-ttl {
  margin: 0 0 6px;
  font-weight: 900;
}

.cut-button-out-line-list {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 4px;
}

.cut-button-box:hover {
  transform: translate(-1px, -1px);
}

/* SVGボタンスタイル */
.svg-button-container {
  position: relative;
  display: inline-block;
  width: 378px;
  height: 50px;
}

.svg-button-container svg {
  width: 100%;
  height: 100%;
}

.svg-button-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #05093B;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.svg-button-link {
  display: block;
  text-decoration: none;
  text-align: center;
}

.svg-button-link:hover .svg-button-container {
  transform: translate(-1px, -1px);
}

.svg-button-link:hover .store-svg-button-container {
  transform: translate(-1px, -1px);
}

.cutbtn-yellow>span {
  position: relative;
  z-index: 1;
}

.cutbtn__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  /* クリックはaに通す */
}

/* 線をシャープに（拡大縮小しても線幅一定） */
.cutbtn__shape path {
  vector-effect: non-scaling-stroke;
  shape-rendering: crispEdges;
}



.cutbtn:hover {
  transform: translate(-1px, -1px);
}

/* スマホ（〜450px） */
@media (max-width: 1000px) {
  .store-grid {
    grid-template-columns: 1fr;
    gap: 128px !important;
  }

  .cutbtn-rail {
    padding: 0 20px;
  }
}

@media (max-width: 450px) {
  .cutbtn {
    all: unset;
    /* ← 他のCSSをリセット */
    position: relative;
    display: inline-block;
    width: 144px;
    /* 好みで調整 */
    cursor: pointer;
    color: var(--navy);
    font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif;
    vertical-align: middle;
    isolation: isolate;
    /* z-index競合回避 */
  }

  .svg-button-text {
    font-size: 14px;
  }
}

/* サムネ（商品画像） */
.shop-thumb {
  /* 端末に合わせて上下限を持たせて可変にする */
  width: clamp(200px, 82%, 520px);
  /* ← max 520px まで広がる例（好みで調整） */
  aspect-ratio: 1 / 1;
  /* 正方形のまま保持（画像タグなら不要） */
  margin: 6px auto 0;
  background: #ccd3df;
  border: 2px solid var(--navy);
  border-radius: 4px;
}


/* 画像タグを入れている場合は必ずこれを付ける */
.shop-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* 背景の余白を残して収めたい場合 */
}

/* 店舗ロゴは高さ固定をやめて横幅で可変に */
.shop-logo img {
  height: auto;
  /* ← これが重要 */
  max-width: clamp(120px, 60%, 220px);
  width: clamp(350px, 28vw, 360px);
  display: block;
}

/* SP 時の余白で横幅が押し出されないように */
@media (max-width: 1000px) {
  .store-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cutbtn-rail {
    padding: 0 20px;
  }

  /* .shop-thumb には padding を付けない（画像が縮む＆はみ出しの原因） */
}

@media (max-width: 450px) {
  .shop-logo img {
    width: 650px;
  }

}


:root {
  --navy: #0b1740;
  /* 濃紺 */
  --navy-soft: #0a133a;
  /* 少し柔らかい紺（背景用） */
}

/* セクション全体（中央に配置） */
.note-sec {
  display: grid;
  place-items: center;
  padding: 12px 0 40px;
}

/* 濃紺の角丸ボックス */
.note-box {
  background: var(--navy-soft);
  color: #fff;
  border-radius: 16px;
  padding: 40px 60px;
  box-shadow: 0 6px 18px rgba(11, 23, 64, .15);
  align-items: center;
  /* 縦中央 */
  justify-content: center;
  /* 横中央 */

}

/* 「※」付きの行 */
.note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 20x;
  line-height: 1.8;
  font-weight: 700;
  font-size: 20px;
  font-style: bold;
}

.note-list li {
  position: relative;
  padding-left: 1.4em;
  /* 「※」ぶんの字下げ */
}

.note-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 900;
}

.cutbtn-rail2 {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.cutbtn2 {
  all: unset;
  /* ← 他のCSSをリセット */
  position: relative;
  display: inline-block;
  width: clamp(144px, 24vw, 219px);
  /* 最小180px〜最大340px、通常は画面幅の24% */
  /* 好みで調整 */
  cursor: pointer;
  color: var(--navy);
  font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle;
  isolation: isolate;
  /* z-index競合回避 */
  padding: 0 3.5rem;
}

/* スマホ（〜450px）微調整 */
@media (max-width: 450px) {
  .note-box {
    width: 350px;
    height: 244px;
    padding: 14px 16px;
    border-radius: 14px;
    /* 縦横中央揃え（複数行対応） */
    display: grid;
    place-items: center;
  }

  .note-list {
    font-size: 12px;
    gap: 8px;
    line-height: 1.7;
    font-weight: 400;
    font-style: Regular;
    width: 290px;
  }

  .event-note {
    font-size: 0.8rem;
    width: min(720px, 81.4vw);
  }
}

@media (max-width: 1000px) {
  .cutbtn2 {
    all: unset;
    /* ← 他のCSSをリセット */
    position: relative;
    display: inline-block;
    width: 144px;
    /* 好みで調整 */
    cursor: pointer;
    color: var(--navy);
    font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif;
    vertical-align: middle;
    isolation: isolate;
    /* z-index競合回避 */
    padding: 0 10px;
  }
}

@media (max-width: 450px) {
  .cutbtn2 {
    all: unset;
    /* ← 他のCSSをリセット */
    position: relative;
    display: inline-block;
    width: 101px;
    /* 好みで調整 */
    cursor: pointer;
    color: var(--navy);
    font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif;
    vertical-align: middle;
    isolation: isolate;
    /* z-index競合回避 */
    padding: 0 5px;
  }
}

/* ================= EVENT ================= */

:root {
  --navy: #0b1740;
}

/* セクション全体を中央にレイアウト */
.event-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 28px;
}


/* 本文ボックス（中央寄せ・適度な行間） */
.event-body {
  width: min(720px, 81.4vw);
  color: var(--navy);
  text-align: center;
  line-height: 1.9;
  letter-spacing: .02em;
  font-size: 20px;
  font-weight: 700;
  /* 画像に近い少し太め */
  margin-bottom: 1.5rem;
}

.event-body p {
  margin: 0 0 16px;
}

.event-body p:last-child {
  margin-bottom: 0;
}

/* 注意文 */
.event-note {
  margin: 40px 0 0px;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 24px;
}

.etc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 0;
}

.event-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

.event-media {
  padding: 0 20px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.event-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* 背景の余白を残して収めたい場合 */
}

/* SP微調整（〜450px） */
@media (max-width: 450px) {
  .event-body p {
    font-size: 16px;
    width: 290px;
    margin: auto;
  }

  .event-note {
    font-size: 16px;
  }
}


/* ================= CAMPAIGN ================= */

:root {
  --navy: #0b1740;
  /* 枠/文字の紺 */
  --edge: 3px;
  /* 枠の太さ */
  --cut: 14px;
  /* 斜めカット量 */
}


.campaign-head {
  margin: 40px 0 0;
}

@media (max-width: 450px) {
  .campaign-head {
    width: 250px;
  }

  .campaign {
    width: 81.4vw;
    margin: auto;
  }
}

.campaign-board {
  max-width: 900px;
  /* 好きな最大幅に */
  width: 100%;
  /* 画面に対してはここまで広がる */
  padding: 0 30px;
}

.pwide__callout3 {
  --cut: 60px;
  /* 斜めカットの大きさ */
  --border: 9px;
  /* 枠の太さ */
  --edge: #0B1740;
  /* 枠の色 */
  max-width: 910px;
  width: 100%;
  position: relative;
  isolation: isolate;
  /* 自前のスタッキング文脈を作る → 擬似要素が消えにくい */
  padding: 40px;
  color: #0B1740;
  text-align: center;
  justify-self: center;
  /* 右カラム内で中央に配置（左に寄せたいなら start） */
  display: grid;
  gap: 12px;


}

.pwide__callout3>* {
  position: relative;
  z-index: 1;
  margin: 0;
}


/* 外周（濃紺）を ::before で描く */
.pwide__callout3::before {
  content: "";
  position: absolute;
  inset: 0;
  /* はみ出さない */
  background: var(--edge);
  /* 左上＆右下だけ斜めカット */
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

/* 内側（白）を ::after で描いて“枠”にする */
.pwide__callout3::after {
  content: "";
  position: absolute;
  inset: var(--border);
  /* ← ここがミソ。外へはみ出さない */
  background: #fff;
  -webkit-clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.pwide__callout3-ttl {
  margin: 0 0 6px;
  font-weight: 900;
}

.pwide__callout3-list {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 4px;
}

/* セクション全体を中央に */
.campaign {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 8px 0 28px;
}


/* 本文 */
.campaign-inner {
  background: #fff;
  color: var(--navy);
  padding: 22px 24px;
  line-height: 1.9;
  letter-spacing: .02em;
  font-weight: 700;
}

.campaign-inner p {
  margin: 0 0 14px;
}

.campaign-inner p:last-child {
  margin-bottom: 0;
}

/* 上部の赤い強調（画像に近い雰囲気） */
.cap-em {
  color: #d92c2c;
  text-align: center;
  font-weight: 900;
  margin-bottom: 4px;
}

.cap-em-sub {
  text-align: center;
  font-weight: 900;
}

/* [aaa] ラベル風の小見出し */
.cap-label {
  margin: 16px 0 6px;
  color: #d92c2c;
  /* 赤寄りの色に */
  font-weight: 900;
  text-align: left;
}

.cap-inner {
  margin: 16px 0 6px;
  text-align: left;
}

/* スマホ微調整 */
@media (max-width: 450px) {
  .pwide__callout3 {
    --cut: 20px;
    /* 斜めカットの大きさ */
    --border: 3px;
  }

  .campaign-board {
    padding: 14px;
  }

  .campaign-inner {
    padding: 16px;
    line-height: 1.8;
    font-size: 13px;
  }
}


/* ================= STREAMING ================= */

:root {
  --navy: #0b1740;
  --yellow: #ffe84a;
}

.streaming-head {
  margin: 40px 0 0;
  text-align: center;
}

@media (max-width: 450px) {
  .event-grid {
    padding: 0 10px;
  }

  .event-media {
    margin: 10px 0;
  }
}

.st_row {
  margin: 10px 0 30px 0;
}

/* セクション全体を中央に */
.streaming-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 28px;
}

/* 本文 */
.streaming-body {
  margin-top: 20px;
  text-align: center;
  color: var(--navy);
  letter-spacing: .02em;
  font-weight: 700;
  font-size: 20px;
}

.streaming-body p:last-child {
  margin-bottom: 0;
}

/* 黄色ボタン（角丸＋濃紺アウトライン＋ドロップ影風） */
.cutbtn3 {
  all: unset;
  /* ← 他のCSSをリセット */
  position: relative;
  display: inline-block;
  width: 371px;
  /* 好みで調整 */
  cursor: pointer;
  color: var(--navy);
  font: 900 16px/1 "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle;
  isolation: isolate;
  /* z-index競合回避 */
  padding: 40px 0;
}


/* hover（任意） */
.cutbtn__label:hover {
  transform: translateY(-1px);
}

/* スマホ微調整（〜450px） */
@media (max-width: 450px) {
  .dg-img img {
    width: 100%;
  }

  .streaming-body {
    font-size: 13px;
    line-height: 1.8;
  }

  .cutbtn__label {
    padding: 10px 20px;
  }

  .cutbtn3 {
    width: 195px;
    padding: 10px;
  }

  .streaming-sec {
    font-size: 16px;
    font-weight: 700;
    margin: auto;
  }

  .streaming-body {
    width: min(720px, 81.4vw);
    line-height: 1.3;
    font-size: 16px;
    font-weight: 700;
  }
}




/* ================= FOOTER ================= */
:root {
  --navy: #0b1740;
  --ink: #0b1740;
  --soft: #9aa3b2;
}

/* セクション全体 */
.collab {
  display: grid;
  gap: 12px;
  padding: 60px 0 18px;
  background-color: #fff;
}

.x-icon {
  width: fit-content;
  margin: 0 auto;
}

/* 画像はレスポンシブ */
.collab-hero img {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

/* × 区切り */
.collab-x {
  margin: auto;
  justify-content: center;
  align-self: center;
}

/* ロゴ2つ */
.collab-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 10vw, 140px);
  padding: 20px 0 0px;
}

.collab-logos img {
  width: auto;
  display: block;
}

.logo-right {
  width: 246px;
}

.logo-left {
  width: 229px;
}

@media (max-width: 550px) {
  .collab {
    gap: 8px;
  }

  .collab-x {
    width: 30px;
  }

  .logo-left {
    width: 200px;
  }

  .logo-right {
    width: 200px;
  }
}

@media (max-width: 450px) {
  .collab {
    gap: 8px;
  }

  .collab-logos {
    align-items: normal;
  }

  .collab-x {
    width: 21px;
  }

  .logo-left {
    width: 68px;
  }

  .logo-right {
    width: 89px;
  }
}

/* フッター（濃紺バー） */
.lp-footer {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 30px 12px 30px;
  position: relative;
  z-index: 2;
}

.lp-footer p {
  margin: 0;
  padding: 10px 0;
}

.foot-contact {
  font-weight: 900;
  margin-bottom: 6px;
}

.foot-note {
  opacity: .95;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: clamp(10px, 1.38793vw, 24px);
}

.foot-copy {
  opacity: .8;
  font-size: 12px;
}

/* SP微調整 */
@media (max-width: 450px) {
  .collab {
    gap: 8px;
  }

  .collab-logos {
    gap: 28px;
  }

  .lp-footer {
    padding: 14px 10px 18px;
  }
}

/* 1) 端末幅に合わせてボタン幅を可変に（固定 400px をやめる） */
.pwide__pricewrap .btn {
  width: min(400px, 92%);
}

/* 2) コラボロゴは狭い幅で折り返す＋画像は縮む */
.collab-logos {
  flex-wrap: wrap;
  min-width: 0;
}

.collab-logos img {
  max-width: 100%;
  height: auto;
}

.collab-hero {
  max-width: 100%;
}



/* 4) SP の細かい押し出し対策 */
@media (max-width: 450px) {

  /* 余白で横に押し出さないように */
  .cutbtn-rail {
    padding: 0;
  }
}

/* ===== KVフルブリード＋横スクロールを出さない最小パッチ ===== */
/* 念のためルート側でも横をクリップ */
html,
body {
  overflow-x: clip;
}

@supports not (overflow: clip) {

  html,
  body {
    overflow-x: hidden;
  }
}

/* KV自体は幅はそのまま、はみ出す中身をクリップ */
.kv {
  overflow-x: clip;
}

/* PC/タブレット：画像だけをフルブリードに拡張（親はクリップ） */
@media (min-width: 451px) {
  .kv .hero_img {
    display: block;
    max-width: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    /* 画像だけを左右に広げる */
    margin-right: -50vw;
  }
}

/* SP（～450px）：通常幅に戻す（SP用KVは既存の切替が有効ならそのままでOK） */
@media (max-width: 450px) {
  .kv .hero_img {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    margin: 0;
  }
}