* {
  box-sizing: border-box;
}

html {
  background-color: #fff;
}

body {
  position: relative;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
.sp{
  display: none;
}
@media (max-width: 768px) {
  .sp{
    display: block;
  }

}


.page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  isolation: isolate;
  pointer-events: none;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-bg {
    overflow-x: hidden;
    overflow-y: visible;
  }
}

.page-bg-base {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.55;
}

.page-bg-orbs {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: max(100%, 1920px);
  height: auto;
  transform: translateX(-50%);
  opacity: 0.9;
}

/* SP のみ：Figma エクスポート SVG（375×13856）を背景装飾として表示 */
.page-bg-sp-artboard {
  display: none;
}

@media (max-width: 767px) {
  .page-bg-orbs {
    display: none;
  }

  .page-bg-sp-artboard {
    display: block;
    position: absolute;
    /* left: 50%; */
    top: 0;
    z-index: 1;
    width: 100%;
    min-height: max(100%, 13856px);
    /* height: max(100%, 13856px); */
    transform: translateX(-50%) scale(min(1, 100vw / 375));
    transform-origin: top center;
    pointer-events: none;
    line-height: 0;
  }

  .page-bg-sp-svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    mix-blend-mode: screen;
    opacity: 0.92;
  }
}

/* PC のみ：Figma エクスポート SVG（1920×9942）を背景装飾として表示 */
.page-bg-pc-artboard {
  display: none;
}

@media (min-width: 768px) {
  .page-bg-orbs {
    display: none;
  }

  /* 黒地が透けるようベースを薄くし、その上に SVG を重ねる */
  .page-bg-base {
    opacity: 1;
  }

  .page-bg-pc-artboard {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    width: 1920px;
    min-height: max(100%, 9942px);
    height: max(100%, 9942px);
    transform: translateX(-50%) scale(min(1, 100vw / 1920));
    transform-origin: top center;
    pointer-events: none;
    line-height: 0;
  }

  .page-bg-pc-svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    mix-blend-mode: screen;
    opacity: 0.92;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 70px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}



.site-header-inner {
  display: flex;
  height: 100%;
  min-width: 0;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-right: 60px;
}

.logo-link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 12px 0 12px 12px;
}

.logo-link img {
  flex-shrink: 0;
  width: 96px;
  height: 21px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  min-width: 0;
  flex: 1 1 0;
  justify-content: flex-end;
  margin-left: auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

.header-nav-list,
.mobile-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav-list {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
}

.header-nav-list > li {
  flex-shrink: 0;
}

.header-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
}

.header-nav-link::after {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 1px;
  background: linear-gradient(90deg, #ff0051 0%, #0099ff 100%);
}

.header-nav-link img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-menu-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 60;
  display: flex;
  width: 60px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 10px;
  background: #0099ff;
  color: #fff;
  cursor: pointer;
}

.menu-toggle-visual {
  position: relative;
  display: flex;
  width: 28px;
  height: 26px;
  align-items: center;
  justify-content: center;
}

.menu-bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.menu-bars span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.menu-close svg {
  width: 28px;
  height: 28px;
}

.header-menu-button.is-open .menu-bars {
  opacity: 0;
  transform: scale(0.9);
}

.header-menu-button.is-open .menu-close {
  opacity: 1;
  transform: scale(1);
}

.mobile-nav-root {
  display: block;
}

.mobile-nav-overlay {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 50;
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0.5s ease-out;
}

.mobile-nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  width: 100%;
  justify-content: space-between;
}

/* Figma Frame 28 — main とフッター間・全幅（SP: 327 相当カラム / 背景ジャンル行は VDL 30px系） */
.hero-strap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero-strap {
    padding: 22.66vw 2vw;
    margin: 22.6vw 0;
  }
}

.hero-strap-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.hero-strap-bg-line {
  display: block;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  max-width: none;
  overflow: hidden;
  font-family: "vdl-linegr", "VDL-LineGR", sans-serif;
  font-size: 70px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.1);
  text-overflow: clip;
  user-select: none;
}

.hero-strap-bg-track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
}

.hero-strap-bg-text {
  display: inline-block;
  padding-right: clamp(24px, 3vw, 48px);
}

@keyframes hero-strap-marquee-rtl {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes hero-strap-marquee-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.hero-strap-bg-line--top {
  align-self: stretch;
}

.hero-strap-bg-line--top .hero-strap-bg-track {
  animation: hero-strap-marquee-ltr 50s linear infinite;
}

.hero-strap-bg-line--bottom {
  align-self: stretch;
}

.hero-strap-bg-line--bottom .hero-strap-bg-track {
  animation: hero-strap-marquee-rtl 50s linear infinite;
}

/* SP: 背景テキストのサイズ・流速を調整 */
@media (max-width: 767px) {
  .hero-strap-bg-line {
    font-size: 8vw;
  }

  .hero-strap-bg-line--top .hero-strap-bg-track {
    animation-duration: 38s;
  }

  .hero-strap-bg-line--bottom .hero-strap-bg-track {
    animation-duration: 42s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-strap-bg-line--top .hero-strap-bg-track,
  .hero-strap-bg-line--bottom .hero-strap-bg-track {
    animation: none;
    transform: none;
  }
}

.hero-strap-inner {
  position: relative;
  z-index: 1;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: 327px;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.hero-strap-tit {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-strap-lead {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-strap-text {
  display: block;
}

.hero-strap-text--pc {
  display: none;
}

.hero-strap-text--sp {
  display: block;
}

.hero-strap-headline {
  margin: 0;
  width: 100%;
  max-width: 327px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(26px, 6vw, 40px);
  line-height: 1.5;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 0, 81, 0.8) 0%, rgba(0, 153, 255, 0.8) 100%), #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-strap-sub {
  margin: 0;
  width: 100%;
  max-width: 327px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 2;
  text-align: left;
  color: #fff;
  margin: 0 auto;
}

.hero-strap-logo {
  display: block;
  width: 100%;
  max-width: 254px;
  height: auto;
  object-fit: contain;
}

.hero-strap-cta {
  display: flex;
  width: 100%;
  /* max-width: 327px; */
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 24px;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-strap {
    padding: 145px 24px;
    margin: 160px 0 60px;
  }

  .hero-strap-inner {
    max-width: min(1200px, 100%);
    align-items: center;
  }

  .hero-strap-tit {
    align-items: center;
  }

  .hero-strap-lead {
    align-items: center;
  }

  .hero-strap-text--pc {
    display: block;
  }

  .hero-strap-text--sp {
    display: none;
  }

  .hero-strap-headline {
    max-width: 1200px;
    font-size: clamp(1.75rem, 5vw + 0.5rem, 50px);
    text-align: center;
  }

  .hero-strap-sub {
    max-width: 1200px;
    font-size: clamp(1.125rem, 2.2vw + 0.5rem, 28px);
    text-align: center;
  }

  .hero-strap-logo {
    max-width: 343px;
  }

  .hero-strap-cta {
    flex-direction: row;
    max-width: 570px;
    margin: 10px auto 0;
  }

  .hero-strap-bg-line {
    font-size: 70px;
  }
}

.container {
  position: relative;
  z-index: 10;
  width: min(1200px, 100% - 32px);
  margin: 0 auto;
}

.hero-strap,
.pagefooter {
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
}
@media (max-width: 767px) {
  .section {
    padding: 11.33vw 0;
  }
}

.section.kv-section {
  padding: 0;
}

@media (min-width: 768px) {
  .section.kv-section {
    padding: 32px 24px 0;
  }
}
@media (max-width: 767px) {
  .section.kv-section {
    padding-top: 10.66vw;
  }
}

.kv-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .kv-stack {
    gap: 64px;
  }
}

/* SP: Figma Frame 53 — 縦並び / PC: グリッドで左列＋ヒーロー */
.kv-row {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.kv-title-block {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

@media (min-width: 768px) {
  .kv-title-block {
    max-width: none;
    gap: 8px;
    align-items: center;
  }
}

.kv-heading {
  margin: 0;
  width: 100%;
  font-family: "A P-OTF UD ShinGoCon90 Pr6N", "UD Shin Go Con", "UD ShinGo", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 10vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
}

@media (min-width: 768px) {
  .kv-heading {
    font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 45px;
  }
}

.kv-heading-line1 {
  display: block;
}

.kv-heading-line1 > span {
  font-size: 1.125em;
}

.kv-track-tight2 {
  letter-spacing: -0.2em;
}

.kv-track-tight25 {
  letter-spacing: -0.25em;
}

.kv-heading-line2 {
  display: block;
  margin-top: 4px;
}

.kv-title-block picture {
  display: block;
}

.kv-logo-img {
  display: block;
  height: auto;
  /* 375px幅で約231pxになる比率。狭い画面では vw に追従して徐々に縮小 */
  width: clamp(120px, 61.6vw, 231px);
  max-width: 100%;
  object-fit: contain;
  object-position: left;
}

@media (min-width: 768px) {
  .kv-logo-img {
    width: 100%;
    max-width: 250px;
  }
}

/* SP 専用ロゴ（kv-logo-sp.png）を PC ロゴより大きく表示 */
@media (max-width: 767px) {
  .kv-title-block .kv-logo-img {
    width: clamp(160px, 86vw, 340px);
    max-width: 100%;
  }
}

.kv-sp-lower {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* SP: リード文を kv-hero より上に（DOM 順は維持し PC の display:contents グリッドを壊さない） */
@media (max-width: 767px) {
  .kv-sp-lower > .kv-lead {
    order: -1;
  }
}

.kv-hero-column {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.kv-hero-credit {
  margin: 0;
  width: 100%;
  max-width: none;
  text-align: right;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.kv-lead {
  margin: 0;
  width: 100%;
  max-width: none;
  text-align: left;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
}

@media (min-width: 768px) {
  .kv-lead {
    order: 0;
    max-width: none;
    text-align: left;
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .kv-lead {
    font-size: 19px;
  }
}

.kv-lead-line {
  display: block;
  font-size: 18px;
}

.kv-lead-version--pc {
  display: none;
}

@media (min-width: 768px) {
  .kv-lead-version--sp {
    display: none;
  }

  .kv-lead-version--pc {
    display: block;
  }
}

.kv-cta-row {
  display: flex;
  width: 100%;
  max-width: 327px;
  flex-direction: column;
  gap: 24px;
}

/* KV ヒーロー: SP は 2 ボタンを 1 列（横並び）・幅は vw 基準で縮小 */
.kv-section .kv-cta-row {
  max-width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: clamp(6px, 2.13vw, 12px);
}

@media (min-width: 768px) {
  .kv-cta-row {
    max-width: none;
  }

  .kv-section .kv-cta-row {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}

.kv-btn {
  position: relative;
  display: flex;
  height: 60px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: 335px;
  /* margin: 0 auto; */
}

.kv-btn:hover {
  opacity: 0.95;
}

.kv-btn:active {
  transform: scale(0.99);
}

.kv-btn-primary {
  position: relative;
  isolation: isolate;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0);
}

.kv-btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(30px + 2px);
  background: linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  z-index: -1;
}

.kv-btn-secondary {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 2px #fff;
}

.kv-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.3);
}

.kv-btn-label--pc {
  display: none;
}
.kv-btn-label--sp{
  text-align: center;
}

@media (min-width: 768px) {
  .kv-btn-label--sp {
    display: none;
  }

  .kv-btn-label--pc {
    display: inline;
  }
}


/* KV ヒーロー内ボタンのみ SP で vw サイズ（他セクションの .kv-btn は従来どおり） */
.kv-section .kv-cta-row .kv-btn {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
  height: clamp(46px, 12.8vw, 58px);
  padding-inline: clamp(6px, 2.13vw, 12px);
  padding-right: clamp(28px, 9.6vw, 40px);
  border-radius: 999px;
  font-size: clamp(10px, 3.47vw, 14px);
  line-height: 1.35;
}

.kv-section .kv-cta-row .kv-btn-primary::before {
  border-radius: 999px;
}

.kv-section .kv-cta-row .kv-icon-chevron {
  right: clamp(6px, 2.67vw, 14px);
  width: clamp(11px, 3.73vw, 15px);
  height: auto;
}

.kv-section .kv-cta-row .kv-icon-external {
  right: clamp(5px, 2.4vw, 12px);
  width: clamp(14px, 4.27vw, 20px);
  height: clamp(14px, 4.27vw, 20px);
}

@media (min-width: 768px) {
  .kv-section .kv-cta-row .kv-btn {
    flex: none;
    width: 100%;
    height: 60px;
    max-width: 335px;
    padding-inline: 0;
    padding-right: 0;
    border-radius: 30px;
    font-size: 18px;
    line-height: 1.5;
  }

  .kv-section .kv-cta-row .kv-btn-primary::before {
    border-radius: calc(30px + 2px);
  }

  .kv-section .kv-cta-row .kv-icon-chevron {
    right: 24px;
    width: 15px;
    height: 5px;
  }

  .kv-section .kv-cta-row .kv-icon-external {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

.kv-icon {
  position: absolute;
  color: #fff;
}

.kv-icon-chevron {
  right: 24px;
}

.kv-icon-external {
  right: 20px;
}

.kv-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0;
}

/* SP: 高さ固定なし・幅100%でアスペクト比どおり表示 */
.kv-hero img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  .kv-row {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    gap: 32px;
  }

  .kv-sp-lower {
    display: contents;
  }

  .kv-title-block {
    grid-column: 1;
    grid-row: 1;
  }

  .kv-hero-column {
    display: flex;
    max-width: 948px;
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: stretch;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }

  .kv-hero-credit {
    display: none;
  }

  .kv-lead {
    grid-column: 1;
    grid-row: 2;
  }

  .kv-cta-row {
    grid-column: 1;
    grid-row: 3;
  }

  .kv-hero {
    height: auto;
    min-height: 420px;
    flex: 1 1 auto;
    border-radius: 8px;
  }

  .kv-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }
}

/* detail — Figma: row / gap 10 / align flex-start */
.kv-detail {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  padding: 0;
  gap: 10px;
}

/* txt column — Figma: column / gap 16 */
.kv-detail-inner {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  min-width: 0;
  /* max-width: min(327px, 100%); */
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-inline: auto;
}

/* h5 相当ブロック — Figma: column / gap 10 */
.kv-detail-heading-block {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
}

.kv-detail-title {
  margin: 0;
  width: 100%;
  align-self: stretch;
  flex: none;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  color: #fff;
}

/* day・ch — Figma: column / padding 8 / max 286×66 / bg 10% white */
.kv-info-row {
  box-sizing: border-box;
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 327px;
  min-height: 66px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
}

/* Frame 30 — Figma: row / gap 24 / align center / 50px 高 */
.kv-info-row-inner {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 270px;
  min-height: 50px;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  align-self: center;
  justify-content: space-between;
}

.kv-info-time {
  margin: 0;
  min-width: 0;
  flex: 0 1 auto;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #fff;
}

@media (min-width: 768px) {
  .kv-detail-inner {
    max-width: 100%;
    margin-inline: 0;
  }

  .kv-info-row-inner {
    gap: 24px;
  }
}

.kv-thumb-wrap {
  position: relative;
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

.kv-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-body {
  margin: 0;
  width: 100%;
  align-self: stretch;
  flex: none;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #fff;
}

.section > h2 {
  margin: 0;
  font-size: 38px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff0051 0%, #0099ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jp-heading {
  margin-top: 4px;
  margin-bottom: 18px;
  font-size: 28px;
}

/* セクション英字見出し（flow-en / faq-en と同一トーンで共通化） */
.related-programs-en,
.price-en,
.recommend-en,
.merit-en,
.flow-en,
.uservoice-en,
.faq-en {
  margin: 0;
  /* 親 flex の stretch で幅いっぱいになると、短い英字でもグラデが片側に偏る → 文字ボックス幅に収める */
  box-sizing: border-box;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  background: linear-gradient(135deg, #ff0051 0%, #0099ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "vdl-linegr", sans-serif;
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

.related-programs-en,
.price-en,
.recommend-en,
.merit-en,
.flow-en,
.uservoice-en,
.faq-en {
  text-transform: uppercase;
}

.related-programs-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* SHINee の "ee" 部分だけ、見た目の大きさを調整 */
.shin-ee {
  display: inline-block;
  font-size: 1.3em;
  letter-spacing: -0.02em;
}

.related-programs-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related-programs-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.related-programs-jp {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  /* line-height: 2; */
  color: #fff;
}

.related-programs-carousel {
  width: 100%;
}

.related-programs-slider-wrap {
  position: relative;
  width: 100%;
}

.related-programs-slider {
  width: 100%;
  margin: 0;
}

/* Slick 未初期化時（JS 失敗時）のフォールバック */
.related-programs-slider:not(.slick-initialized) {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (min-width: 768px) {
  .related-programs-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    /* 行内で最も高いカードに合わせて伸ばし、タイトル行数が違っても show more を同じ高さに */
    align-items: stretch;
  }
}

.related-programs-section .program-card {
  cursor: pointer;
  gap: 18px;
}

/* メディア＋クレジット＋タイトルをまとめ、SP では JS で最大高に揃えて show more の位置を統一 */
.program-card-stack {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.related-programs-section .program-card > .program-card-stack {
  flex: 1 1 auto;
  min-height: 0;
}

/* スタックが余白を吸収し、アクション行をカード下端に配置（PC グリッドの stretch と両立） */
.related-programs-section .program-card > .program-card-actions {
  flex-shrink: 0;
  align-self: stretch;
}

.related-programs-slider.slick-initialized .slick-slide {
  box-sizing: border-box;
  display: flex;
  /* リスト高さ（Slick が最も高いスライドに合わせて設定）に合わせて伸ばし、カード内 flex で show more を下端へ */
  height: 100%;
  align-items: stretch;
  padding-inline: 1%;
}

.related-programs-slider.slick-initialized .slick-slide > .program-card {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: 100%;
}

.related-programs-slider-wrap .slick-arrow {
  display: none !important;
}

.related-programs-slider-wrap .slick-dots {
  display: none !important;
}

.program-card {
  display: flex;
  min-width: 0;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.program-media-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.program-image-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  aspect-ratio: 321 / 200;
}

.program-image-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  object-position: center; */
}

.related-programs-section .program-card-actions {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-top: 20px;
  align-items: center;
  justify-content: end;
  gap: 16px;
}

.related-programs-section .program-card-actions-start {
  flex: 0 1 auto;
  min-width: 0;
  line-height: 0;
}

.related-programs-section .program-card-actions .program-plan-badge {
  display: inline-block;
  line-height: 0;
}

.related-programs-section .program-card-actions .program-plan-badge img {
  display: block;
  width: auto;
  height: 28px;
  max-width: 56px;
  object-fit: contain;
}

.related-programs-section .program-card-actions .program-show-more {
  margin-top: 0;
  align-self: center;
}

.program-credit {
  margin: 0;
  text-align: left;
  font-size: 10px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

/* クレジット有無でタイトル・show more の位置がずれないよう、空行も同じ高さで確保 */
.related-programs-section .program-media-group > .program-credit {
  box-sizing: border-box;
  min-height: 30px;
}

.related-programs-section .program-media-group > .program-credit:empty {
  display: block;
  visibility: hidden;
  overflow: hidden;
  padding: 0;
  color: transparent;
}

.program-title {
  margin: 0;
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

.related-programs-section .program-title {
  font-size: 20px;
}

.program-show-more {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
  align-items: center;
  gap: 4px;
  align-self: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 10px 10px;
  background: linear-gradient(135deg, #ff0051 0%, #0099ff 100%);
  color: #fff;
  font-family: "vdl-linegr", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.program-show-more:hover {
  opacity: 0.9;
}

/* オススメ番組カード内の「show more」（リンク内なので見た目のみ） */
.recommend-osusume-show-more {
  margin-top: 0;
  flex-shrink: 0;
}

.recommend-osusume-show-more-icon {
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 5px;
  margin-left: 6px;
}

/* Related programs — 詳細モーダル（SP 327×618 / PC 900×843 相当） */
.program-modal {
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  width: min(327px, calc(100vw - 48px));
  max-width: calc(100vw - 32px);
  max-height: min(618px, 90dvh);
  padding: 0;
  border: 0;
  overflow: visible;
  overscroll-behavior: contain;
  background: transparent;
  color: #fff;
}

.program-modal::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  z-index: -1;
}

.program-modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.program-modal-panel {
  box-sizing: border-box;
  position: relative;
  display: flex;
  width: 100%;
  max-height: min(618px, 90dvh);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 16px 0;
  gap: 0;
  overflow: visible;
  background: #000;
}

/* 閉じるはパネル右上・パネル内に収める。縦スクロールは内側へ */
.program-modal-scroll {
  box-sizing: border-box;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* close — Figma: 40×40 / #000 / 1px #fff / radius 20。パネル右上に全体を収めクリップしない */
.program-modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  left: auto;
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 20px;
  background: #000;
  cursor: pointer;
}

.program-modal-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.program-modal-close:hover {
  opacity: 0.92;
}

/* × — 20×20 相当・白 2px 棒を ±45° */
.program-modal-close-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.program-modal-close-icon::before,
.program-modal-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 0;
  background: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.program-modal-close-icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.program-modal-frame {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 16px 16px;
}

.program-modal-media {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.program-modal-img-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 820 / 464;
  overflow: hidden;
  background: #fff;
}

.program-modal-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-modal-img-wrap.is-empty {
  aspect-ratio: auto;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.08);
}

.program-modal-img-wrap.is-empty img {
  display: none;
}

.program-modal-credit {
  display: none;
  width: 100%;
  margin: 0;
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.program-modal-credit.is-visible {
  display: block;
  padding-right: 8px;
}

.program-modal-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.program-modal-title {
  margin: 0;
  width: 100%;
  max-width: 820px;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

.program-modal-meta {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.program-modal-meta-text {
  margin: 0;
  max-width: 166px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.program-modal-meta-thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
}

.program-modal-meta-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-modal-body {
  margin: 0;
  width: 100%;
  max-width: 820px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

@media (min-width: 768px) {
  .program-modal {
    width: min(900px, calc(100vw - 32px));
    max-height: min(843px, 92dvh);
  }

  .program-modal-panel {
    max-height: min(843px, 92dvh);
    padding: 40px;
  }

  .program-modal-close {
    top: -20px;
    right: -20px;
  }

  .program-modal-frame {
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
  }
}


.price-wrap {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  gap: 24px;
}

.price-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 21px;
}

.price-jp {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

.price-frame {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-copy {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

@media (max-width: 767px) {
  .price-copy {
    text-align: left;
    font-size: 14px;
  }
}

.price-copy-highlight {
  color: #ffee00;
}

.price-copy-promo-icon {
  display: inline-block;
  width: auto;
  height: 1.35em;
  margin: 0 0.12em;
  vertical-align: -0.2em;
  object-fit: contain;
}

.price-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #0099ff;
}

.price-banner-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.price-banner-img {
  display: block;
  width: 100%;
  height: auto;
}

.price-banner-link {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: flex;
  width: 130px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0099ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.price-sim-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
}

.price-sim-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px 0;
}

.price-sim-title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

.price-sim-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-sim-steps {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.price-sim-step-1 {
  width: 100%;
  max-width: 596px;
}

.price-sim-step-2 {
  width: 100%;
  align-items: flex-start;
}

.price-sim-step-text {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.price-choice-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.price-choice-row-step1 {
  width: 100%;
  max-width: 596px;
  gap: 16px;
}

.price-choice-row-step2 {
  width: 100%;
  gap: 15px;
}

.price-choice {
  box-sizing: border-box;
  display: flex;
  height: 60px;
  width: 290px;
  max-width: 100%;
  align-items: flex-start;
  justify-content: center;
  padding: 15px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.price-choice-inner {
  display: flex;
  width: 230px;
  height: 30px;
  align-items: center;
  gap: 10px;
}

.price-radio {
  box-sizing: border-box;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 15px;
}

.price-radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: transparent;
}

.price-choice-label {
  width: 190px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

/* SP: 料金シミュレーション文言は左寄せ・やや大きく、選択ボタンは縦並び */
@media (max-width: 767px) {
  .price-sim-inner {
    align-items: stretch;
  }

  .price-sim-title {
    text-align: left;
    font-size: 24px;
  }

  .price-sim-steps {
    align-items: stretch;
  }

  .price-sim-step {
    align-items: flex-start;
  }

  .price-sim-step-1 {
    max-width: none;
  }

  .price-sim-step-text {
    text-align: left;
    font-size: 18px;
  }

  .price-choice-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }

  .price-choice-row-step1 {
    max-width: none;
  }

  .price-choice {
    min-height: 60px;
    height: auto;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .price-choice-inner {
    width: 100%;
    height: auto;
    min-height: 30px;
  }

  .price-choice-label {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    text-align: left;
    font-size: 17px;
  }
}

.price-choice.selected {
  background: rgba(0, 153, 255, 0.4);
  border: 4px solid #0099ff;
}

.price-choice.selected .price-radio-dot {
  background: #0099ff;
}

.price-sim-arrow {
  width: 60px;
  height: 45px;
}

.price-sim-table {
  width: 100%;
  max-width: max-content;
}

.price-sim-table-img {
  width: 100%;
  height: auto;
}

.price-sim-table-img--pc {
  display: none;
}

.price-sim-table-img--sp {
  display: block;
}
.price-cta-row {
  display: flex;
  width: 100%;
  max-width: 327px;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .price-sim-table-img--pc {
    display: block;
  }

  .price-sim-table-img--sp {
    display: none;
  }
  .price-cta-row {

    flex-direction: row;
    max-width: 600px;
    justify-content: center;
  }
}



.recommend-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .recommend-section{
    gap: 20px;
  }
}

.recommend-heading-wrap {
  display: flex;
  flex-direction: column;
}

.recommend-title-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recommend-jp {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  display: flex;
  align-items: center;
}


.recommend-sub {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.recommend-program-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.recommend-tabs-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

/* SP: 高さ 94px・横いっぱいに 4 タブ均等（親の align-items:center を打ち消して全幅） */
@media (max-width: 767px) {
  .recommend-jp{
    flex-direction: column;
    align-items: start;
  }
  .recommend-program-wrap .recommend-tabs-wrap {
    align-self: stretch;
    width: 100%;
    max-width: none;
  }

  .recommend-tabs-wrap .tabs {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 5px;
    width: 100%;
    max-width: none;
    height: 74px;
    margin-inline: 0;
    padding: 0;
    overflow-x: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .recommend-tabs-wrap .tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .recommend-tabs-wrap .tab {
    box-sizing: border-box;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
    width: auto;
    height: 74px;
    padding: 10px 4px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .recommend-tabs-wrap .tab.active {
    background: rgba(0, 153, 255, 0.4);
    border: 4px solid #0099ff;
  }

  .recommend-tabs-wrap .tab-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    width: 100%;
    min-width: 0;
    margin: 10px 0 0;
  }

  .recommend-tabs-wrap .tab-icon {
    width: min(30px, 100%);
    height: min(30px, 100%);
    max-width: 30px;
    max-height: 30px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .recommend-tabs-wrap .tab-label {
    width: 100%;
    max-width: none;
    margin: 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(11px, 3.2vw, 16px);
    font-weight: 500;
    line-height: 2;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    overflow-wrap: anywhere;
  }

  .recommend-tab-underline {
    width: 100%;
    max-width: none;
    height: 4px;
    margin-inline: 0;
    background: #0099ff;
  }
}

@media (min-width: 768px) {
  .recommend-tabs-wrap {
    max-width: 1200px;
  }

  /* PC: 1200×69 相当。狭い幅では横スクロールせずタブが均等縮小（最大 294px） */
  .recommend-tabs-wrap .tabs {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 1200px;
    height: 69px;
    margin-inline: 0;
    padding: 0;
    overflow-x: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .recommend-tabs-wrap .tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .recommend-tabs-wrap .tab {
    box-sizing: border-box;
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    max-width: 294px;
    width: auto;
    height: 69px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .recommend-tabs-wrap .tab.active {
    background: rgba(0, 153, 255, 0.4);
    border: 4px solid #0099ff;
  }

  .recommend-tabs-wrap .tab-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 1.2vw, 10px);
    padding: 0 clamp(6px, 2vw, 30px) 0 clamp(4px, 1vw, 8px);
    width: 100%;
    min-width: 0;
  }

  .recommend-tabs-wrap .tab-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .recommend-tabs-wrap .tab-label {
    min-width: 0;
    margin: 0;
    font-size: clamp(12px, 0.9vw + 0.65rem, 16px);
    font-weight: 500;
    line-height: 2;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    overflow-wrap: anywhere;
  }

  .recommend-tab-underline {
    width: 100%;
    max-width: 1200px;
    height: 4px;
    margin-inline: auto;
    background: #0099ff;
  }
}

.tab-panels {
  width: 100%;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.recommend-card-grid {
  display: grid;
  width: 100%;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: start;
  align-items: start;
}

@media (min-width: 768px) {
  .recommend-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .recommend-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Figma: pc_program — 縦積み・右揃え・gap 16 / 画像+credit gap 8 / 本文16px / day欄 / detail */
.recommend-card {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: none;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  gap: 16px;
}

.recommend-card-media {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 8px;
  padding: 0;
}

.recommend-thumb {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 276 / 155;
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
}

.recommend-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend-credit {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #fff;
}

.recommend-card-body {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 8px;
  padding: 0;
}

.recommend-card-title {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #fff;
}

.recommend-date-box {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px 8px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.recommend-date-inner {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 0;
  min-height: 50px;
}

.recommend-date-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #fff;
}

.recommend-date-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
}

.recommend-card .program-show-more.recommend-card-detail {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-end;
  margin-top: 0;
  gap: 4px;
  padding: 10px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  color: #fff;
  font-family: "vdl-linegr", "VDL-LineGR", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.recommend-card .program-show-more.recommend-card-detail:hover {
  opacity: 0.9;
}

.recommend-placeholder {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 20px;
  text-align: center;
  color: #fff;
}

/* ----- おすすめ番組（osusume.json + ファセット 13〜16 韓流LP） ----- */
.recommend-osusume-block {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  margin-inline: auto;
}

.recommend-osusume-status {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

.recommend-osusume-status--error {
  color: #ffb4b4;
}

.recommend-osusume-slider-wrap {
  position: relative;
  width: 100%;
}

.recommend-osusume-slider {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommend-osusume-slide.is-hidden-extra {
  display: none !important;
}

.recommend-osusume-empty {
  grid-column: 1 / -1;
  padding: 24px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
}

@media (min-width: 768px) {
  .recommend-osusume-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 32px);
    align-items: stretch;
  }

  .recommend-osusume-title {
    order: 1;
  }

  .recommend-osusume-date-box {
    order: 2;
  }

  .recommend-osusume-card-detail {
    display: none;
  }

  .recommend-osusume-slider .recommend-osusume-slide {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
  }
}

.recommend-osusume-card {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-height: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.recommend-osusume-media {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.recommend-osusume-card-detail {
  box-sizing: border-box;
  display: none;
  align-items: center;
  align-self: flex-end;
  gap: 4px;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  color: #fff;
  font-family: "vdl-linegr", "VDL-LineGR", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  text-transform: uppercase;
}

.recommend-osusume-card-detail-icon {
  display: block;
  flex-shrink: 0;
}

.recommend-osusume-thumb-wrap {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 276 / 155;
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
}

.recommend-osusume-thumb-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend-osusume-thumb-fallback {
  object-fit: contain !important;
  padding: 8px;
}

.recommend-osusume-credit-slot {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex-shrink: 0;
  align-items: flex-start;
}

.recommend-osusume-credit {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* 1 行のクレジットでも 2 行分の箱を確保（行内で日付・ボタン位置を揃える） */
  min-height: calc(2 * 1.45 * 9px);
}

/* クレジット無し用。min-height は .recommend-osusume-credit と共通（2 行分） */
.recommend-osusume-credit--placeholder {
  display: block;
  padding: 0;
  color: transparent;
  pointer-events: none;
}

.recommend-osusume-card-body {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-height: 0;
}

/* 行内で最も高いカードに合わせ、タイトル〜日付ブロックが伸びて show more の縦位置を揃える */
.recommend-osusume-card-body-main {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-height: 0;
}

.recommend-osusume-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  min-height: calc(2 * 1.45 * 1em);
}

.recommend-osusume-date-box {
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.recommend-osusume-date-row {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-height: 0;
}

.recommend-osusume-date {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
}

.recommend-osusume-ch-logo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 2px;
}

.recommend-osusume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommend-osusume-tag {
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.5;
  color: #fff;
}

.recommend-osusume-actions-row {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.recommend-osusume-actions-row .program-show-more.recommend-osusume-show-more {
  margin-top: 0;
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}

.recommend-osusume-actions-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 0 1 auto;
}

.recommend-osusume-actions-tags {
  flex: 0 1 auto;
  min-width: 0;
}

.recommend-osusume-plan-icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
}

.recommend-osusume-plan-icon {
  display: block;
  height: 28px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
}

.recommend-more-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 0, 81, 0.35) 0%, rgba(0, 153, 255, 0.35) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.recommend-more-btn:hover {
  opacity: 0.9;
}

/* カードグリッド（スライダー）と左位置を揃える（親の align-items:center による中央寄せを打ち消し） */
#recommendOsusumeMore.recommend-more-btn {
  align-self: center;
  width: auto;
  max-width: 100%;
}
.recommend-sub-line{
  font-size: 14px;
  padding-left: 10px;
}

/* SP: 縦幅を詰める（日時＋ロゴ行） */
@media (max-width: 767px) {
  /* 親の align-items:center でも一覧をコンテナ幅いっぱいに */
  .recommend-program-wrap .recommend-osusume-block {
    align-self: stretch;
    max-width: none;
    width: 100%;
  }

  /* container 内で全幅（100vw 打ち出しは 100vw の過大評価で横スクロール・白余白の原因になる） */
  .recommend-osusume-slider-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
  }

  .recommend-osusume-block {
    gap: 46px;
    align-items: stretch;
  }

  /* 375px 幅時は従来どおり約151px。それ以上の SP では vw に比例して拡大（列幅を min で超えない） */
  .recommend-osusume-card {
    gap: 3px;
    width: 100%;
    max-width: min(100%, clamp(151px, 40.2667vw, 280px));
  }

  .recommend-osusume-thumb-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 276 / 155;
  }

  .recommend-osusume-credit {
    font-size: 9px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    min-height: calc(2 * 1.5 * 9px);
  }


  .recommend-osusume-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    /* min-height: calc(3 * 1.8 * 1em); */
  }

  .recommend-osusume-date-box {
    min-height: 56px;
    padding: 5px 8px;
    border-radius: 0;
  }

  .recommend-osusume-date-row {
    gap: 8px;
    align-items: center;
  }

  .recommend-osusume-date {
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
  }

  .recommend-osusume-ch-logo {
    width: 40px;
    height: 40px;
  }

  .recommend-osusume-tag {
    box-sizing: border-box;
    padding: 0 8px;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
    color: #fff;
  }

  .recommend-osusume-plan-icon {
    height: 26px;
    max-width: 36px;
  }

  .recommend-osusume-actions-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 8px;
    margin-bottom: 30px;
  }

  .recommend-osusume-tags {
    gap: 8px;
  }

  .recommend-osusume-card-detail {
    display: inline-flex;
  }

  /* SP: 2 列（等分フレクション＋固定 gap でレイアウトを安定させる） */
  .recommend-osusume-slider {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 20px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .recommend-osusume-slider .recommend-osusume-slide {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 0;
    height: 100%;
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

.merit-section {
  display: flex;
  flex-direction: column;
}

.merit-header {
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
}

.merit-jp,
.flow-jp,
.uservoice-jp,
.faq-jp {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

.flow-step-en {
  margin: 0;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  font-size: 24px;
}

.flow-step h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
}

.flow-step-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.flow-step-head {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.flow-step-en-wrap {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 8px;
}

.flow-step-en-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff0051 0%, #0099ff 100%);
}

.flow-step-link {
  display: block;
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: #0099ff;
}

.flow-step-link:hover {
  color: #4db8ff;
}

.flow-step-panel {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.flow-step-thumb {
  display: block;
  width: 100%;
  max-width: 297px;
  height: auto;
  border-radius: 2px;
  object-fit: contain;
}

.flow-step-thumb--03 {
  max-width: 300px;
}

.flow-step-copy {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #fff;
}



.flow-step-actions {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .flow-step-copy-br-sp {
    display: none;
  }
  .flow-step-actions{
    /* flex-direction: row; */
    align-items: center;
  }
}

.flow-step-note {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #fff;
}

/* Figma merit 1 — rec */
.merit-rec {
  box-sizing: border-box;
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: -1px auto 0;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  margin-top: 48px;
  gap: 24px;
}

.merit-rec::before {
  top: 0;
}

.merit-rec::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.4)
    ),
    linear-gradient(
      135deg,
      rgba(255, 0, 81, 0.6) 0%,
      rgba(255, 0, 81, 0.6) 70%,
      rgba(0, 153, 255, 0.6) 100%
    );
}

.merit-rec-head {
  display: flex;
  width: 100%;
  max-width: 432px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.merit-rec-step-wrap {
  box-sizing: border-box;
  position: relative;
  display: flex;
  min-width: 105px;
  min-height: 51px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 8px;
  gap: 0;
}

.merit-rec-step-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff0051 0%, #0099ff 100%);
}

.merit-rec-step-en {
  margin: 0;
  font-family: "vdl-linegr", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.merit-rec-h3 {
  margin: 0;
  width: 100%;
  max-width: 432px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #fff;
}

.merit-rec-panel {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 900px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
}

.merit-rec-thumb {
  flex-shrink: 0;
  width: 306px;
  max-width: 100%;
  height: 250px;
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.1); */
}

.merit-rec-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.merit-rec-copy {
  display: flex;
  width: 100%;
  max-width: 506px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.merit-rec-lead-block {
  display: flex;
  width: 100%;
  max-width: 506px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.merit-rec-lead {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  color: #ffee00;
}

@media (max-width: 767px) {
  .merit-rec {
    border-top: 0;
    border-bottom: 0;
  }

  .merit-rec::before {
    display: none;
  }

  .merit-rec::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    pointer-events: none;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
      linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  }

  .merit-rec {
    position: relative;
  }

  .merit-rec .merit-rec-head {
    position: relative;
  }

  .merit-rec .merit-rec-head::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -32px;
    height: 1px;
    pointer-events: none;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
      linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  }

  .merit-rec-lead-block {
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .merit-rec-lead {
    white-space: nowrap;
    width: max-content;
    max-width: none;
  }
}

.merit-rec-note {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.merit-rec-legal {
  display: flex;
  width: 100%;
  max-width: 507px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.merit-rec-legal p {
  margin: 0;
  width: 100%;
  max-width: 507px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

/* Figma merit 2 — present */
.merit-present {
  box-sizing: border-box;
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  gap: 24px;
}

.merit-present::before {
  top: 0;
}

.merit-present::before,
.merit-present::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.4)
    ),
    linear-gradient(
      135deg,
      rgba(255, 0, 81, 0.6) 0%,
      rgba(255, 0, 81, 0.6) 70%,
      rgba(0, 153, 255, 0.6) 100%
    );
}

.merit-present::after {
  bottom: 0;
}

.merit-present-head {
  display: flex;
  width: 100%;
  max-width: 360px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.merit-present-step-wrap {
  box-sizing: border-box;
  position: relative;
  display: flex;
  min-width: 109px;
  min-height: 51px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 8px;
  gap: 0;
}

.merit-present-step-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff0051 0%, #0099ff 100%);
}

.merit-present-step-en {
  margin: 0;
  font-family: "vdl-linegr", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.merit-present-h3 {
  margin: 0;
  width: 100%;
  max-width: 360px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #fff;
}

.merit-present-h3-line {
  display: block;
}

.merit-present-h3-line--pc {
  display: none;
}

.merit-present-body {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.merit-present-cards {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}

.merit-present-card {
  box-sizing: border-box;
  display: flex;
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  min-height: 204px;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.merit-present-card-title {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #fff;
}

.merit-present-card-row {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.merit-present-card-row--channels {
  align-items: center;
}

.merit-present-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merit-present-icon--gift {
  width: 62px;
  height: 80px;
}

.merit-present-icon--channels {
  width: 80px;
  height: 66px;
}

.merit-present-icon--points {
  width: 80px;
  height: 80px;
}

.merit-present-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.merit-present-card-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  max-width: 280px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.merit-present-card-text--narrow {
  max-width: 262px;
}

.merit-present-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.merit-present-card-col {
  display: flex;
  min-width: 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.merit-present-card-col .merit-present-card-text {
  max-width: 262px;
  width: 100%;
  text-align: left;
  align-self: stretch;
}

.merit-present-card-note {
  margin: 0;
  width: 100%;
  align-self: stretch;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #fff;
}

.merit-present-footnote {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.flow-section,
.uservoice-section,
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-section {
  padding-bottom: 0;
}

.flow-header,
.uservoice-header,
.faq-header {
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
}

.uservoice-header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.uservoice-card-inner {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.uservoice-quote-icon {
  flex-shrink: 0;
  display: block;
  border-radius: 2px;
  object-fit: contain;
}

.uservoice-quote-icon--a {
  width: 5vw;
  /* height: 80px; */
}

.uservoice-quote-icon--b {
  width: 5vw;
  /* height: 80px; */
}

.uservoice-quote-icon--c {
  width: 5vw;
  /* height: 80px; */
}

.uservoice-quote-body {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.flow-grid,
.uservoice-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.uservoice-grid {
  align-items: center;
}

.flow-step {
  padding: 24px 0;
  text-align: center;
}

/* SP: flow / uservoice / faq — 768px 未満は縦積み・コンテナ幅に追従（お客様の声のみ max-width: 327px でピクセル指定） */
@media (max-width: 767px) {
  .flow-section .flow-grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    margin-inline: 0;
  }

  .flow-section .flow-step {
    box-sizing: border-box;
    width: 100%;
    position: relative;
    justify-content: center;
    padding: 32px 0;
    margin: -1px 0 0;
    gap: 24px;
  }

  /* SP: 上下の区切り線（PCと同じ白＋グラデ） */
  .flow-section .flow-step::before,
  .flow-section .flow-step:last-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
      linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  }

  .flow-section .flow-step::before {
    top: 0;
  }

  .flow-section .flow-step:last-child::after {
    bottom: 0;
  }

  .flow-section .flow-step-inner {
    gap: 24px;
  }

  .flow-section .flow-step-en {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #fff;
    color: #fff;
    font-family: "vdl-linegr", "VDL-LineGR", "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 2;
    text-transform: uppercase;
    text-align: center;
  }

  .flow-section .flow-step h3 {
    width: 100%;
    text-align: center;
  }

  .uservoice-section {
    align-items: center;
  }

  .uservoice-section .uservoice-header {
    box-sizing: border-box;
    width: 100%;
    max-width: 327px;
    margin-inline: 0;
    align-items: flex-start;
    gap: 4px;
  }

  .uservoice-section .uservoice-en {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    margin: 0;
    background: linear-gradient(135deg, rgba(255, 0, 81, 0.8) 0%, rgba(0, 153, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-family: "vdl-linegr", "VDL-LineGR", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: left;
  }

  .uservoice-section .uservoice-header-row {
    align-self: stretch;
  }

  .uservoice-section .uservoice-jp {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    margin: 0;
    font-size: 21px;
    font-weight: 500;
    line-height: 2;
    color: #fff;
  }

  .uservoice-section .uservoice-grid {
    display: flex;
    width: 100%;
    max-width: 327px;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: 0;
    gap: 0;
  }

  .uservoice-section .uservoice-grid blockquote {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    max-width: 327px;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    padding: 16px 0;
    margin: -1px 0 0;
    font-style: normal;
  }

  /* SP: 上下の区切り線（PCと同じ白＋グラデ） */
  .uservoice-section .uservoice-grid blockquote::before,
  .uservoice-section .uservoice-grid blockquote:last-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
      linear-gradient(135deg, rgba(255, 0, 81, 0.6) 0%, rgba(0, 153, 255, 0.6) 100%);
  }

  .uservoice-section .uservoice-grid blockquote::before {
    top: 0;
  }

  .uservoice-section .uservoice-grid blockquote:last-child::after {
    bottom: 0;
  }

  .uservoice-section .uservoice-grid blockquote:first-child {
    margin-top: 0;
  }

  .uservoice-section .uservoice-quote-icon--a,
  .uservoice-section .uservoice-quote-icon--b,
  .uservoice-section .uservoice-quote-icon--c {
    width: 50px;
    height: auto;
  }

  .uservoice-section .uservoice-quote-body {
    font-size: 15px;
  }

  .faq-section {
    align-items: center;
    padding-bottom: 0;
  }

  .faq-section .faq-header {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    align-items: flex-start;
    gap: 4px;
  }

  .faq-section .faq-en {
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    background: linear-gradient(135deg, rgba(255, 0, 81, 0.8) 0%, rgba(0, 153, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-family: "vdl-linegr", "VDL-LineGR", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .faq-section .faq-jp {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
  }

  .faq-section .faq-list {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border: 0;
  }

  .faq-section .faq-item {
    box-sizing: border-box;
    margin: -2px 0 0;
    padding: 16px 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .faq-section .faq-item:first-child {
    margin-top: 0;
  }

  .faq-section .faq-question {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
  }

  .faq-section .faq-q-label,
  .faq-section .faq-a-label {
    font-family: "vdl-linegr", "VDL-LineGR", "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.8;
  }

  .faq-section .faq-toggle-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .faq-section .faq-icon-plus,
  .faq-section .faq-icon-minus {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    font-size: 0;
    color: transparent;
    line-height: 0;
  }

  .faq-section .faq-icon-plus::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 2px;
    background: #fff;
  }

  .faq-section .faq-icon-plus::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    width: 2px;
    height: 14px;
    background: #fff;
  }

  .faq-section .faq-icon-minus::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 2px;
    background: #fff;
  }

  .faq-section .faq-item.open {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-section .faq-item.open .faq-answer {
    margin-top: 0;
  }

  .faq-section .faq-answer {
    color: #fff;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
  }

  .faq-section .faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
  }
}

.uservoice-grid blockquote {
  margin: 0;
  padding: 24px 0;
  font-style: normal;
}

.faq-list {
  border-bottom: 2px solid #fff;
}

.faq-item {
  border-top: 2px solid #fff;
  padding: 16px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: 0;
  padding: 0;
  text-align: left;
  color: #fff;
  background: transparent;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  cursor: pointer;
  line-height: 2;
}

.faq-q-label,
.faq-a-label {
  flex-shrink: 0;
  font-family: "vdl-linegr", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 2;
}

.faq-q-label {
  color: #0099ff;
}

.faq-a-label {
  color: #ff0051;
}

.faq-q-text {
  min-width: 0;
  flex: 1;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.faq-toggle-icon {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.faq-icon-plus,
.faq-icon-minus {
  position: absolute;
  font-size: 26px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.faq-icon-minus {
  opacity: 0;
}

.faq-item.open .faq-icon-plus {
  opacity: 0;
}

.faq-item.open .faq-icon-minus {
  opacity: 1;
}

.faq-answer {
  display: none;
  margin: 12px 0 0;
  color: #d7d7d7;
  gap: 16px;
  align-items: flex-start;
  line-height: 2;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.faq-answer p {
  margin: 0;
  min-width: 0;
  flex: 1;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.faq-item.open .faq-answer {
  display: flex;
}

/* pagefooter — livezokuzoku/css/style.css と同一（header 等は除外・背景画像パスは ./img/） */
.pagefooter,
#pagefooter.pagefooter {
  background: #fff;
}

.pagefooter_nav ul,
.pagefooter_nav li {
  list-style: none;
}

@media (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }

  .pagefooter_totop {
    transition: all 0.5s;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 10px;
    bottom: 53px;
    background: #0099ff;
    height: 45px;
    width: 45px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 100000;
  }

  .pagefooter_totop.show {
    opacity: 1 !important;
  }

  .pagefooter_totop a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -999em;
  }

  .pagefooter_totop img {
    width: 16px;
    height: 9px;
    margin-bottom: 2px;
    vertical-align: baseline;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .pagefooter {
    padding: 11px 20px 11px !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    justify-content: space-between !important;
    -webkit-justify-content: space-between !important;
    flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
  }

  .pagefooter_logo {
    flex-basis: 135px;
    -webkit-flex-basis: 135px;
    max-width: 135px;
    margin: 0 !important;
  }

  .pagefooter_logo img {
    width: 110px;
    height: auto;
  }

  .pagefooter_nav {
    flex: 1;
    font-size: 13px;
  }

  .pagefooter_nav ul {
    padding: 15px 0 0;
    margin: 0 !important;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }

  .pagefooter_nav li {
    margin-top: -2px;
    border-left: 1px solid #333333;
    padding: 0 20px;
    list-style: none;
  }

  .pagefooter_nav li:first-child {
    border: none;
  }

  .pagefooter_nav a {
    color: #333333;
    text-decoration: none;
  }

  .pagefooter small {
    padding-top: 15px;
    font-size: 13px;
    color: #000;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .pagefooter {
    padding-bottom: 18vw;
  }

  .pagefooter_logo {
    display: none;
  }

  .pagefooter_totop a {
    margin-top: 20px;
    background: url("./img/footer_btn01-sp@2x.png?1536157024") center center no-repeat;
    background-size: 58px 35px;
    width: 58px;
    height: 35px;
    text-indent: -9999px;
    display: inline-block;
    width: 100%;
    height: 100px;
  }

  .pagefooter_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .pagefooter_nav li {
    border-top: 1px solid #cccccc;
    list-style: none;
  }

  .pagefooter_nav a {
    display: block;
    text-align: center;
    color: #333333;
    text-decoration: none;
    padding: 23px 0;
  }

  .pagefooter small {
    border-top: 1px solid #cccccc;
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #000;
  }
}

@media (min-width: 768px) {
  .flow-grid,
  .uservoice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .flow-section .flow-grid {
    display: grid;
    max-width: none;
    margin-inline: 0;
  }

  .flow-step,
  .uservoice-grid blockquote {
    border-top: 0;
    padding: 24px;
    margin: 0;
    gap: 0;
    position: relative;
  }

  .flow-step-inner {
    gap: 10px;
  }

  .flow-step-actions {
    gap: 12px;
  }

  .flow-step:first-child,
  .uservoice-grid blockquote:first-child {
    border-left: 0;
  }

  .flow-step::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    pointer-events: none;
    background-image: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.4)
      ),
      linear-gradient(
        135deg,
        rgba(255, 0, 81, 0.6) 0%,
        rgba(0, 153, 255, 0.6) 100%
      );
  }

  .flow-step:first-child::before {
    display: none;
  }

  .uservoice-grid blockquote::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    pointer-events: none;
    background-image: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.4)
      ),
      linear-gradient(
        135deg,
        rgba(255, 0, 81, 0.6) 0%,
        rgba(0, 153, 255, 0.6) 100%
      );
  }

  .uservoice-grid blockquote::before {
    left: 0;
  }

  .uservoice-grid blockquote:first-child::before {
    display: none;
  }

  .flow-step-en {
    font-family: "vdl-linegr", sans-serif;
  }

  /* SP は DOM 順のまま（2 件目は本文の右にアイコン）。PC のみ左アイコンで統一 */
  .uservoice-grid blockquote:nth-child(2) .uservoice-quote-icon {
    order: -1;
  }

  .merit-present-h3-line--pc {
    display: block;
  }

  .merit-present-h3-line--sp {
    display: none;
  }

  .merit-present-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
  }

  .merit-present-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 390px;
    width: auto;
    margin: 0;
  }

  .merit-rec-panel {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .logo-link {
    padding-left: 24px;
  }

  .logo-link img {
    width: 110px;
    height: 24px;
  }
}

@media (min-width: 1024px) {
  .header-nav-list {
    gap: 20px;
  }
}

@media (min-width: 1210px) {
  .site-header-inner {
    padding-right: 24px;
  }

  .desktop-nav {
    display: flex;
  }

  .header-menu-button,
  .mobile-nav-root {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   ご加入はこちら 確認モーダル（#modal2）のみ — 他ページ用 koreancontent CSS は含めない
   -------------------------------------------------------------------------- */

html.scroll_none,
html.scroll_none body {
  overflow: hidden;
}

#modal2.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

#modal2.modal.-show {
  display: flex;
}

#modal2 .modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

#modal2 .modal-window {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 720px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: #1a1a1a;
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
}

#modal2 .modal-window-inner {
  display: none;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  border-radius: inherit;
  overflow: hidden;
}

#modal2 .modal-window-inner.-show {
  display: flex;
}

#modal2 .modal-head {
  flex-shrink: 0;
  padding: 18px 44px 16px 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background: #f3f3f3;
  border-bottom: 1px solid #ddd;
}

#modal2 .modal-window-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 18px 24px;
  -webkit-overflow-scrolling: touch;
}

#modal2 .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#modal2 .modal-close::before,
#modal2 .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

#modal2 .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#modal2 .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#modal2 .c-contract__list {
  margin: 0 0 18px;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.75;
}

#modal2 .c-contract__list li + li {
  margin-top: 0.35em;
}

#modal2 .c-contract-ac.j-contract-ac__wrap {
  margin-bottom: 8px;
}

#modal2 .c-contract-ac__trigger {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  background: #ececec;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

#modal2 .c-contract-ac__trigger p {
  margin: 0;
}

#modal2 .j-contract-ac__content {
  display: none;
}

#modal2 .c-contract-step {
  margin: 12px 0 0;
}

#modal2 .c-contract-step__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

#modal2 .c-contract-step__img {
  flex: 0 0 auto;
  max-width: 38%;
}

#modal2 .c-contract-step__img img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  border-radius: 4px;
}

#modal2 .c-contract-step__txt {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.65;
}

#modal2 .c-contract-step__txt p {
  margin: 0;
}

#modal2 .c-contract-conc {
  margin-top: 8px;
  padding: 14px;
  background: #fafafa;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
}

#modal2 .c-contract-conc__lead {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 14px;
}

#modal2 .c-contract-conc__txt {
  margin: 0 0 12px;
}

#modal2 .c-contract-method {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 480px) {
  #modal2 .c-contract-method {
    flex-direction: row;
    flex-wrap: wrap;
  }

  #modal2 .c-contract-method__item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
}

#modal2 .c-contract-method__lead {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

#modal2 .c-contract-method__txt {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

#modal2 .c-contract-method__txt a {
  color: #0099ff;
  text-decoration: underline;
}

#modal2 .c-btn--blueline a {
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #0099ff;
  border: 1px solid #0099ff;
  border-radius: 6px;
  text-decoration: none;
}

#modal2 .c-btn--blueline a:hover {
  opacity: 0.85;
}

#modal2 .c-contract-cv {
  margin-top: 22px;
}

#modal2 .c-contract-cv__inner + .c-contract-cv__inner {
  margin-top: 12px;
}

#modal2 .c-contract-cv .c-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  box-sizing: border-box;
}

#modal2 .c-btn--red a {
  background: #e60012;
  color: #fff;
}

#modal2 .c-btn--red a:hover {
  opacity: 0.92;
}

#modal2 .c-btn--blue button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  background: #0099ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-sizing: border-box;
}

#modal2 .c-btn--blue button:hover {
  opacity: 0.92;
}

#modal2 .c-contract-cv__lead {
  display: block;
}

#modal2 .c-contract-cv__txt {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 480px) {
  #modal2 .modal-window {
    max-height: 94vh;
  }

  #modal2 .c-contract-step__item {
    flex-direction: column;
  }

  #modal2 .c-contract-step__img {
    max-width: 100%;
  }

  #modal2 .c-contract-step__img img {
    max-width: 200px;
  }
}

/* =========================================
   1. コンテナの修正 (.price-cta-row を検索して以下に差し替え)
========================================= */
.price-cta-row {
  display: flex;
  width: 100%;
  max-width: 100%; /* 327px から 100% に変更 */
  flex-direction: row; /* column から row に変更 */
  align-items: stretch;
  justify-content: center;
  gap: clamp(6px, 2.13vw, 12px); /* 24px から vw指定 に変更 */
  padding-top: 8px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .price-cta-row {
    flex-direction: row;
    max-width: 600px;
    justify-content: center;
    gap: 24px; /* PC時は元の 24px に戻す */
  }
}

/* =========================================
   2. ボタンスタイルとアイコンに .price-cta-row 用のセレクタを追加
   （既存の .kv-section .kv-cta-row ... の箇所にカンマ区切りで追加します）
========================================= */

/* KV ヒーロー内ボタン・priceボタンのみ SP で vw サイズ */
.kv-section .kv-cta-row .kv-btn,
.price-cta-row .kv-btn {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
  height: clamp(46px, 12.8vw, 58px);
  padding-inline: clamp(6px, 2.13vw, 12px);
  padding-right: clamp(28px, 9.6vw, 40px);
  border-radius: 999px;
  font-size: clamp(10px, 3.47vw, 14px);
  line-height: 1.35;
}

.kv-section .kv-cta-row .kv-btn-primary::before,
.price-cta-row .kv-btn-primary::before {
  border-radius: 999px;
}

.kv-section .kv-cta-row .kv-icon-chevron,
.price-cta-row .kv-icon-chevron {
  right: clamp(6px, 2.67vw, 14px);
  width: clamp(11px, 3.73vw, 15px);
  height: auto;
}

.kv-section .kv-cta-row .kv-icon-external,
.price-cta-row .kv-icon-external {
  right: clamp(5px, 2.4vw, 12px);
  width: clamp(14px, 4.27vw, 20px);
  height: clamp(14px, 4.27vw, 20px);
}

/* PCサイズ (768px以上) でボタンのスタイルを元に戻す設定に追加 */
@media (min-width: 768px) {
  .kv-section .kv-cta-row .kv-btn,
  .price-cta-row .kv-btn {
    flex: none;
    width: 100%;
    height: 60px;
    max-width: 335px;
    padding-inline: 0;
    padding-right: 0;
    border-radius: 30px;
    font-size: 18px;
    line-height: 1.5;
  }

  .kv-section .kv-cta-row .kv-btn-primary::before,
  .price-cta-row .kv-btn-primary::before {
    border-radius: calc(30px + 2px);
  }

  .kv-section .kv-cta-row .kv-icon-chevron,
  .price-cta-row .kv-icon-chevron {
    right: 24px;
    width: 15px;
    height: 5px;
  }

  .kv-section .kv-cta-row .kv-icon-external,
  .price-cta-row .kv-icon-external {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 767px) {
  .sp-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90; /* コンテンツより上、オーバーレイメニューより下に配置 */
    background: rgba(0, 0, 0, 1); /* 背景の透け防止（色はお好みで調整してください） */
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); /* 下部のセーフエリア対応 */
    margin: 0;
    box-sizing: border-box;
    /* 親要素の max-width 指定などを上書きして全幅にする */
    max-width: 100% !important;
  }

  /* 追従ボタンがフッターなどの最下部コンテンツを隠してしまわないよう、bodyにボタンの高さ分の余白を設ける */
  body {
    padding-bottom: 90px; 
  }
}
/* 既存の .price-choice に position: relative; を追加するか、以下をそのまま追記してください */
.price-choice {
  position: relative;
}

/* ツールチップ（吹き出し）のスタイル */
.plan-tooltip {
  position: absolute;
  bottom: calc(100% + 8px); /* ボタンの少し上に配置 */
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff0051; /* 注意を引くためのピンクレッド */
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* 吹き出しの尻尾（下向きの三角形） */
.plan-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #ff0051;
}

/* JavaScriptで .show-tooltip クラスが付与されたら表示 */
.price-choice.show-tooltip .plan-tooltip {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   PC固定 吸着ボタン (pc_cv.png)
========================================= */
.pc-fixed-cv {
  display: none;
}

@media (min-width: 768px) {
  .pc-fixed-cv {
    display: block;
    position: fixed;
    bottom: 70px;
    right: 40px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* 非表示時はクリック判定を無効化 */
  }

  /* JSで付与されるクラスで表示 */
  .pc-fixed-cv.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .pc-fixed-cv a {
    display: block;
    transition: transform 0.2s ease;
  }

  /* ホバー時に少し拡大させるアニメーション */
  .pc-fixed-cv a:hover {
    transform: scale(1.05);
  }

  .pc-fixed-cv img {
    width: 140px; /* 必要に応じてサイズを調整してください */
    height: 140px;
    border-radius: 50%;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); */
    object-fit: contain;
    background: #000;
  }
}
@media (max-width: 768px) {
  .site-header{
    height: 50px;
  }
  .header-menu-button{
    width: 40px;
    height: 49px;
  }
  .mobile-nav-panel{
    top: 47px;
  }
}