/* imgix 共通ベース（以降の画像URLは https://penguin-wedding.imgix.net/webpage_assets/... ） */
:root {
  --imgix-assets-base: "https://penguin-wedding.imgix.net/webpage_assets";
  --hero-gold: #bf9f59;
  --hero-text-bg: #ffffff;
  /* 767px 以下の価格ブロック外枠のみ（内側の金枠・リボン色は変更しない） */
  --price-shell-bg: #bef9ff;
  --price-shell-radius: 2.75rem;
  --price-shell-pad: 12px;
  --price-pink: #dc516a;
  /* CTA・強調ピンク（ヒーローボタン・fast CTA・価格まわりなど共通） */
  --cta-pink: #ed4e71;
  /* ピンクCVの縁取り風シャドウ（.pgw-cv-button と同系統） */
  --cv-btn-shadow: 0 4px 0 #be4559, 0 8px 16px rgba(0, 0, 0, 0.2);
  --cv-btn-shadow-sp: 0 2px 0 #be4559, 0 6px 10px rgba(0, 0, 0, 0.2);
  /* 共通フォントスタック（OS標準・ダウンロード0） */
  /* 欧文: Helvetica Neue(mac/iOS) → Arial(Win/Android) */
  /* 日本語: Hiragino(mac/iOS) → Yu Gothic(Win) → Noto(Android) → Meiryo(Win予備) */
  --font-sans:
    "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", YuGothic,
    "Noto Sans CJK JP", "Noto Sans JP",
    Meiryo, sans-serif;
}

/* ------------------------------------------------------------------ */
/* サイト全体の基本タイポグラフィ                                     */
/* - font-family は --font-sans（OS標準フォントスタック）に統一       */
/* - letter-spacing を 0.03em 指定し、継承で全テキストに適用          */
/*   （太字・細字問わず一貫。個別要素で letter-spacing を上書きする   */
/*    箇所は個別指定で対応）                                          */
/* ------------------------------------------------------------------ */
body {
  margin: 0;
  background: #fff;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}

/* ボタンだけは継承された letter-spacing を無効化（詰まった見た目を維持） */
/* BEM 命名の `-btn` / `__btn` / `-button` / `__button` をカバー        */
/* リンクでもボタン見た目のものは同様にリセット                         */
button,
[class*="-btn"],
[class*="__btn"],
[class*="-button"],
[class*="__button"],
.movies-block__all-link,
.movie-lane__more,
.site-header__cta,
.popular-movies__cv {
  letter-spacing: normal;
}

/* Index: グローバルヘッダー（ロゴ・ナビ・編集ページへ） */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* 1440px 幅で 186px を基準にビューポートに比例（上限 186px・直前サイズ比約90%） */
.site-header__logo {
  width: clamp(58px, calc(100vw * 186 / 1440), 186px);
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header__nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}

.site-header__nav a {
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav a:hover {
  text-decoration: underline;
}

.site-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border: 2px solid #222222;
  border-radius: 9999px;
  color: #222222;
  background: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__cta:hover {
  background: #f7f7f7;
}

#about-section,
#theme-section,
#popular-profile-movies,
#price-section,
#voice-section,
#faq-section {
  scroll-margin-top: 88px;
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 10px 16px;
    gap: 10px 12px;
  }

  .site-header__nav-wrap {
    display: none;
  }

  /* SP: ロゴは比例ではなく固定幅（編集ボタンとの並び用） */
  .site-header__logo {
    width: 148px;
    max-width: none;
  }

  .site-header__cta {
    margin-left: auto;
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  #about-section,
  #theme-section,
  #popular-profile-movies,
  #price-section,
  #voice-section,
  #faq-section {
    scroll-margin-top: 88px;
  }
}

.top-wrap { width: 100%; overflow-x: auto; }
/* ヒーロー: 1025px 以上は left を calc(px * 100% / 1440) でスケール。768〜1024px は下記 @media で left:32px 固定。767px 以下は SP */
.top-pc { position: relative; width: 100%; max-width: none; height: 633px; margin: 0; }
.hero-bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; }

.hero-btn {
  position: absolute;
  left: calc(268 * 100% / 1440);
  top: 480px;
  width: max-content;
  display: inline-block;
  text-decoration: none;
  z-index: 3;
}

.hero-btn__inner {
  width: auto;
  min-height: 74px;
  padding: 10px 26px 12px;
  border-radius: 9999px;
  background: var(--cta-pink);
  box-shadow: var(--cv-btn-shadow);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: heroPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
}

.hero-btn__lead {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.hero-btn__divider {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  flex: 0 0 30px;
  gap: 24px;
  transform: translateY(-1px);
}

.hero-btn__divider img {
  display: block;
  width: 30px;
  height: auto;
  margin-left: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.hero-btn__main {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-left: -20px;
}

@keyframes heroPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* PC・タブレット横: ラッパーはレイアウトに出さず、従来どおり .price-card のみ見える（768px 以上を PC サイズ） */
@media (min-width: 768px) {
  .price-card-shell {
    display: contents;
  }
}

.price-card {
  position: absolute;
  left: calc(268 * 100% / 1440);
  top: 254px;
  width: max-content;
  height: auto;
  --card-pad-x: 26px;
  --band-height: 39px;
  padding: 20px 26px 16px;
  border: 6px solid #806e46;
  border-radius: 16px;
  background: linear-gradient(90deg, #fefdfa 0%, #f6f0ca 100%);
  box-shadow:
    0 5px 11px -2px rgba(0, 0, 0, 0.1),
    0 11px 25px 0 rgba(0, 0, 0, 0.06),
    0 22px 43px 0 rgba(0, 0, 0, 0.04),
    0 -2px 11px -4px rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
  transform: none;
  z-index: 2;
}

.price-card__header-band {
  margin: 0 calc(var(--card-pad-x) * -1) 0;
  height: var(--band-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #806e46 0%, #e2cc99 42%, #aa976a 63%, #e2cc99 83%, #aa976a 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.price-card__header {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.price-card__header-pc {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-card__header-text {
  display: none;
  font-size: 20px;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  line-height: 1.15;
}

.price-card__header-main {
  font-size: 24px;
}

.price-card__header-sub {
  font-size: 20px;
}

.price-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-card__label {
  margin: 0;
  min-width: 120px;
  min-height: 48px;
  padding: 0 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #917029;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #917029;
  font: 700 15px/1.2 var(--font-sans);
  box-sizing: border-box;
}

.price-card__label-break {
  display: inline;
}

.price-card__price-area {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
}

.price-card__old-row {
  margin: 0 0 20px 0;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.price-card__old-price {
  color: #0f0f0f;
  font: 500 20px/1 var(--font-sans);
  text-decoration: line-through;
}

.price-card__old-yen {
  color: #0f0f0f;
  font: 700 7px/1 var(--font-sans);
}

.price-card__arrow {
  width: 6px;
  height: 9px;
  margin-left: 2px;
  transform: translateY(1px);
  flex-shrink: 0;
}

.price-card__new-row {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.price-card__new-price {
  color: var(--price-pink);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 93px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.price-card__new-comma {
  font-size: 28px;
  line-height: 28px;
  margin: 0 -0.03em;
  display: inline-block;
  transform: translateY(-0.03em);
}

.price-card__new-yen {
  color: var(--price-pink);
  font: 800 43px/1 var(--font-sans);
}

/* ヒーロー全体を包む H1（SEO 用）。装飾は配下の .hero-copy / .hero-copy-2 側で行い、H1 自体は見た目ゼロにする。 */
.hero-heading {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hero-copy-2 {
  position: absolute;
  left: calc(274 * 100% / 1440);
  top: 153px;
  padding: 9px 22px;
  background: var(--hero-text-bg);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.hero-copy-2-text,
.hero-copy-text {
  color: #0f0f0f;
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 700;
  line-height: 63px;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy {
  position: absolute;
  left: calc(274 * 100% / 1440);
  top: 43px;
  padding: 12px 25px 12px;
  background: var(--hero-text-bg);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  transform: none;
  box-sizing: border-box;
}
.hero-copy-badge {
  min-height: 72px;
  padding: 0 11px;
  background: var(--hero-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-copy-badge-text {
  width: 195px;
  text-align: center;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-btn,
  .price-card,
  .hero-copy-2,
  .hero-copy {
    left: 32px;
  }
}

/* SP ヒーロー: 767px 以下で縦長画像を cover、コピー中央・余白付き（768px 以上は PC サイズ） */
@media (max-width: 767px) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

  /* 価格〜fast まで水色 #bef9ff をつなぐ（画像下に同色帯） */
  .top-wrap {
    overflow-x: hidden;
    overflow-y: visible;
    height: auto;
    min-height: 780px;
    background-color: #bef9ff;
  }
  .top-pc {
    width: 100%;
    max-width: none;
    min-height: 780px;
    height: 780px;
    margin: 0;
    background-color: #bef9ff;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 22%;
    pointer-events: none;
  }
  .hero-copy {
    left: 50%;
    top: 28px;
    width: fit-content;
    max-width: calc(100% - 40px);
    padding: 10px 20px;
    gap: 4px;
    transform: translateX(-50%);
    justify-content: center;
    flex-wrap: nowrap;
    box-sizing: border-box;
    overflow: visible;
  }
  .hero-copy-text {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .hero-copy-badge { min-height: 52px; padding: 0 10px; flex-shrink: 0; }
  .hero-copy-badge-text { width: auto; min-width: 0; font-size: 32px; line-height: 1.1; letter-spacing: 1px; white-space: nowrap; }
  .hero-copy-text,
  .hero-copy-2-text {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: 0;
    white-space: nowrap;
    text-align: center;
  }
  .hero-copy-2 {
    left: 50%;
    top: 118px;
    display: inline-block;
    width: fit-content;
    max-width: calc(100% - 40px);
    padding: 10px 20px;
    transform: translateX(-50%);
    box-sizing: border-box;
    vertical-align: top;
    overflow: visible;
  }
  .hero-copy-2-text {
    display: block;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .price-card-shell {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    transform: none;
    /* 適度な内側余白（大きな padding-top はシェルが上に伸びて写真を覆う原因になる） */
    padding: 16px 16px 12px;
    background: #bef9ff;
    /* 上のみ角丸（下は fast へフラット接続） */
    border-radius: var(--price-shell-radius) var(--price-shell-radius) 0 0;
    box-shadow: none;
    box-sizing: border-box;
  }
  .price-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    --card-pad-x: 19px;
    --band-height: 36px;
    padding: 16px 19px 14px;
    border-width: 3px;
    border-radius: 22px;
    gap: 10px;
  }

  /* SP 専用: 1枚目デザイン（縦並び・一文リボン・ピルラベル） */
  .price-card__header-band {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  }
  .price-card__header-pc {
    display: none;
  }
  .price-card__header-text {
    display: block;
    text-align: center;
    font-size: 21px;
    font-weight: 800;
  }
  .price-card__header {
    align-items: center;
    font-family: var(--font-sans);
    line-height: 1.15;
  }
  .price-card__main {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
  }
  .price-card__label {
    width: fit-content;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    padding: 8px 15px;
    border-radius: 999px;
    font: 700 13px/1.35 var(--font-sans);
    white-space: nowrap;
  }
  .price-card__label-break {
    display: none;
  }
  .price-card__price-area {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: visible;
  }
  .price-card__old-row {
    margin: 0;
    flex-shrink: 0;
  }
  .price-card__old-price { font-size: 21px; }
  .price-card__old-yen { font-size: 9px; }
  .price-card__arrow { width: 7px; height: 10px; }
  .price-card__new-price { font-size: 92px; letter-spacing: -0.03em; }
  .price-card__new-comma {
    font-size: 27px;
    line-height: 27px;
  }
  .price-card__new-yen { font-size: 39px; }
  .price-card__new-row {
    flex-shrink: 0;
  }

  .hero-btn {
    display: none;
  }
}

/* 481px〜767px（タブレット）: price-card は PC と同じレイアウト（横並び・分割リボン・2行ラベル） */
@media (min-width: 481px) and (max-width: 767px) {
  .price-card {
    width: max-content;
    max-width: calc(100% - 8px);
    margin: 0 auto;
    --card-pad-x: 20px;
    --band-height: 33px;
    padding: 16px 20px 12px;
    border-width: 4px;
    border-radius: 14px;
    gap: 10px;
  }

  .price-card__header-band {
    box-shadow: none;
  }

  .price-card__header-pc {
    display: inline-flex;
  }

  .price-card__header-text {
    display: none;
  }

  .price-card__header {
    align-items: baseline;
    font-family: var(--font-sans);
    line-height: 1;
  }

  .price-card__header-main {
    font-size: 20px;
  }

  .price-card__header-sub {
    font-size: 16px;
  }

  .price-card__main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: auto;
  }

  .price-card__label {
    width: auto;
    min-width: 99px;
    min-height: 40px;
    max-width: none;
    padding: 0 10px;
    border-radius: 8px;
    font: 700 13px/1.2 var(--font-sans);
    white-space: normal;
  }

  .price-card__label-break {
    display: inline;
  }

  .price-card__price-area {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .price-card__old-row {
    margin: 0 0 20px 0;
  }

  .price-card__old-price {
    font-size: 16px;
  }

  .price-card__old-yen {
    font-size: 6px;
  }

  .price-card__arrow {
    width: 5px;
    height: 8px;
  }

  .price-card__new-price {
    font-size: 76px;
    letter-spacing: -0.03em;
  }

  .price-card__new-comma {
    font-size: 23px;
    line-height: 23px;
  }

  .price-card__new-yen {
    font-size: 33px;
  }
}

@media (max-width: 480px) {
  .top-wrap { min-height: 720px; }
  .top-pc { min-height: 720px; height: 720px; }
  .hero-copy {
    top: 20px;
    padding: 8px 20px;
    flex-wrap: nowrap;
  }
  .hero-copy-badge { min-height: 46px; padding: 0 8px; }
  .hero-copy-badge-text { min-width: 0; font-size: 26px; }
  .hero-copy-text,
  .hero-copy-2-text { font-size: 24px; line-height: 1.35; white-space: nowrap; }
  .hero-copy-2 { top: 96px; padding: 8px 20px; }
  .hero-bg { object-position: center 18%; }
  .price-card-shell {
    bottom: 0;
    padding: 14px 14px 12px;
  }
  .price-card {
    max-width: 380px;
    --card-pad-x: 17px;
    --band-height: 34px;
    padding: 14px 17px 12px;
    border-width: 3px;
    border-radius: 20px;
    gap: 8px;
  }
  .price-card__header-text { font-size: 19px; }
  .price-card__label { font-size: 13px; padding: 5px 13px; }
  .price-card__old-price { font-size: 18px; }
  .price-card__old-yen { font-size: 8px; }
  .price-card__arrow { width: 7px; height: 9px; }
  .price-card__new-price { font-size: 86px; letter-spacing: -0.03em; }
  .price-card__new-comma {
    font-size: 25px;
    line-height: 25px;
  }
  .price-card__new-yen { font-size: 36px; }
}

.fast-section {
  padding: 24px 0;
  background: #bef9ff;
  font-family: var(--font-sans);
}

/* PC（768px 以上）: 最大 1440px のコンテナ（767px 以下は @media で上書き） */
.fast-section-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* fast-section 下のCTA（768px 未満のみ表示。PC では非表示） */
.fast-section-cta {
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 16px 12px 22px;
  box-sizing: border-box;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: heroPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
}

.fast-section-cta__label {
  margin: 0 0 12px;
  text-align: center;
  color: #1d1d1d;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* ピンクCVボタン共通（3クラスで見た目を完全統一） */
.fast-section-cta__btn,
.popular-movies__cv,
.pgw-cv-button,
.movie-detail-spec-cv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 550px;
  padding: 24px 20px;
  border-radius: 999px;
  background-color: var(--cta-pink);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--cv-btn-shadow);
  box-sizing: border-box;
}

.fast-section-cta__btn:hover,
.popular-movies__cv:hover,
.pgw-cv-button:hover,
.movie-detail-spec-cv__btn:hover {
  filter: brightness(1.03);
}

.fast-section-cta__btn:active,
.popular-movies__cv:active,
.pgw-cv-button:active,
.movie-detail-spec-cv__btn:active {
  filter: brightness(0.97);
}

.fast-card {
  width: min(774px, 100%);
  max-width: 100%;
  height: auto;
  min-height: 199px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  /* 390:325 の比率で縮小し、狭いビューポートで横スクロールを防ぐ */
  grid-template-columns: minmax(0, 390fr) minmax(0, 325fr);
  grid-template-rows: auto auto;
  column-gap: 58px;
  row-gap: 0;
  align-items: start;
  border-radius: 18px;
  outline: 1px solid #28c9d7;
  outline-offset: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 -11px 31px -2px rgba(0, 90, 100, 0.02);
  box-sizing: border-box;
}

.fast-card-left {
  min-width: 0;
  width: 100%;
  grid-column: 1;
  grid-row: 1;
  padding: 30px 0 0 51px;
  box-sizing: border-box;
}

.fast-top-copy {
  margin: 0;
  color: #1d1d1d;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0;
}

.fast-main-copy-row {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
}

.fast-main-badge {
  width: 156px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 17px 5px 17px;
  margin-right: 4px;
  box-sizing: border-box;
  background: #039aa5;
  transform: skewX(-18deg);
}

.fast-main-badge-text {
  display: inline-block;
  transform: skewX(18deg);
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0;
  white-space: nowrap;
}

.fast-main-copy-tail {
  margin-left: 2px;
  margin-top: 17px;
  color: #1d1d1d;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0;
}

.fast-sub-copy {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin: 14px 0 0;
  padding: 0 16px 20px 51px;
  box-sizing: border-box;
  text-align: left;
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.fast-card-right {
  min-width: 0;
  width: 100%;
  min-height: 197px;
  height: auto;
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  margin-top: 1px;
  margin-left: 0;
  padding: 12px 0 0 25px;
  display: flex;
  gap: 12px;
  background: #e5f8f9;
  border-radius: 0 18px 18px 0;
  box-sizing: border-box;
}

.fast-info-panel {
  width: 132px;
  height: 173px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #039aa5;
  border-radius: 7px;
  background: #ffffff;
  box-sizing: border-box;
}

.fast-info-image {
  width: 100%;
  height: 88px;
  aspect-ratio: 132 / 88;
  object-fit: cover;
  object-position: center;
  border-radius: 7px 7px 0 0;
  display: block;
}

.fast-info-title {
  margin: 4px 0 0;
  text-align: center;
  color: #1d1d1d;
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0;
}

.fast-info-value {
  margin: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  color: #039aa5;
  letter-spacing: 0;
  column-gap: 0;
  white-space: nowrap;
  line-height: 1;
}

.fast-info-value > span {
  display: inline-block;
  vertical-align: baseline;
}

.fast-num-main {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.fast-num-unit {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-left: 2px;
  margin-bottom: 4px;
}

.fast-num-small {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #1d1d1d;
  letter-spacing: 0;
  margin-left: 2px;
  margin-bottom: 8px;
  transform: none;
}

.fast-num-short {
  margin-left: 0;
  margin-right: 4px;
}

/* 767px 以下：カードを縦積み（768px 以上は PC レイアウト） */
@media (max-width: 767px) {
  /* fast はヒーロー水色と隙間なく接続 */
  .fast-section {
    margin-top: 0;
    padding: 0 0 16px;
    background: #bef9ff;
  }

  .fast-section-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .fast-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    height: auto;
    border-radius: 14px;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .fast-card-left {
    width: 100%;
    padding: 18px 14px 0;
    text-align: center;
  }

  .fast-top-copy {
    font-size: 18px;
    line-height: 22px;
  }

  .fast-main-copy-row {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 4px;
  }

  .fast-main-badge {
    width: auto;
    max-width: 100%;
    height: 40px;
    padding: 6px 14px 5px;
    margin-right: 0;
    justify-content: center;
  }

  .fast-main-badge-text {
    font-size: 24px;
    line-height: 29px;
  }

  .fast-main-copy-tail {
    margin-top: 0;
    font-size: 18px;
    line-height: 22px;
  }

  .fast-sub-copy {
    order: 3;
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 14px 18px;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
  }

  .fast-card-right {
    order: 2;
    width: 100%;
    max-width: calc(100% - 24px);
    height: auto;
    min-height: 0;
    margin: 12px 12px 0;
    padding: 10px;
    border-radius: 10px;
    justify-content: center;
    align-items: stretch;
    align-self: center;
    flex-wrap: wrap;
    gap: 10px;
    box-sizing: border-box;
  }

  .fast-info-panel {
    width: auto;
    flex: 1 1 140px;
    min-width: 0;
    max-width: 200px;
  }

  .fast-section-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 12px 22px;
    box-sizing: border-box;
    width: calc(98vw / 1.08);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    animation: heroPulse 1.3s ease-in-out infinite;
    transform-origin: center center;
  }

  .fast-section-cta__label {
    margin: 0 0 12px;
    text-align: center;
    color: #1d1d1d;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.02em;
  }

  /* ピンクCVボタン共通（SP） */
  .fast-section-cta__btn,
  .popular-movies__cv,
  .pgw-cv-button,
  .movie-detail-spec-cv__btn {
    padding: 20px 28px;
    /* 412px のとき 22px。画面幅に合わせて線形に拡縮し、最大 26px でキャップ */
    font-size: min(calc(22 / 412 * 100vw), 26px);
    box-shadow: var(--cv-btn-shadow-sp);
  }
}

/* ----- ムービーカード共通（BEM） ----- */
.movie-card {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.movie-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.movie-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 0 12px 24px;
}

.movie-card__head {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.movie-card__title {
  margin: 0;
  color: #0f0f0f;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  min-width: 0;
}

.movie-card__tag {
  flex-shrink: 0;
  border-radius: 10px;
  background: #e6f3ff;
  padding: 2px 10px;
  color: #3f6f9f;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  white-space: nowrap;
}

.movie-card__tag--profile {
  background: #e6f3ff;
  color: #3f6f9f;
}

.movie-card__tag--opening {
  background: #fff4de;
  color: #aa7d1c;
}

.movie-card__tag--rank {
  background: #e6f3ff;
  color: #1e5a8a;
}

.movie-card__description {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.movie-card__button {
  margin-top: auto;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 52px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #666666;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.movie-card__button:hover {
  background: #f5f5f5;
}

/* ----- おすすめの新作ムービー ----- */
.movies-block {
  padding: 40px 0 52px;
  background: #f8f8f8;
  font-family: var(--font-sans);
}

.movies-block__inner {
  width: 1063px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.movies-block__title {
  margin: 0;
  text-align: center;
  color: #0f0f0f;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: 0;
}

.movies-block__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.movies-block__all-link {
  margin: 32px auto 0;
  border: 1px solid #00afbf;
  border-radius: 52px;
  width: fit-content;
  padding: 10px 32px;
  display: block;
  color: #039aa5;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.movies-block__all-link:hover {
  background: #eefcfd;
}

/* ----- 人気のムービー ----- */
.popular-movies {
  padding: 40px 0 48px;
  background: #dff4f6;
  font-family: var(--font-sans);
}

.popular-movies__shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 1063px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.popular-movies__panel {
  width: 100%;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 40px 32px 32px;
  box-sizing: border-box;
}

.popular-movies__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.movie-lane {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.movie-lane__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.movie-lane__kicker {
  margin: 0;
  color: #bfa574;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-transform: uppercase;
}

.movie-lane__title {
  margin: 0;
  color: #0f0f0f;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
}

.movie-lane__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.movie-lane__grid--single {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.movie-lane__grid--single .movie-card {
  width: 100%;
  max-width: 340px;
}

/* ムービーリスト: 768px 以上はラッパーをレイアウトに出さず、.movies-block__grid / .movie-lane__grid の子を従来どおりカード列として配置 */
.lp-rec-carousel,
.lp-rec-slider {
  display: contents;
}

.movie-lane__more {
  margin: 0 auto;
  border: 1px solid #00afbf;
  border-radius: 52px;
  width: fit-content;
  padding: 10px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #039aa5;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.movie-lane__more:hover {
  background: #eefcfd;
}

.popular-movies__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  animation: heroPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
}

.popular-movies__promo {
  margin: 0;
  color: #0f0f0f;
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
}

/* ----- 他のムービー ----- */
.other-movies {
  padding: 48px 0 52px;
  background: #ffffff;
  font-family: var(--font-sans);
}

.other-movies__inner {
  width: 1063px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.other-movie-lane {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.other-movie-lane__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.other-movie-lane__kicker {
  margin: 0;
  color: #bfa574;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.other-movie-lane__title {
  margin: 0;
  color: #0f0f0f;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.other-movie-lane__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px 20px;
}

.other-movie-lane__grid .lp-rec-slide {
  grid-column: span 2;
}

.other-movie-lane--five .other-movie-lane__grid:has(.lp-rec-slide:nth-child(5):last-child) .lp-rec-slide:nth-child(4) {
  grid-column: 2 / span 2;
}

.other-movie-lane--five .other-movie-lane__grid:has(.lp-rec-slide:nth-child(5):last-child) .lp-rec-slide:nth-child(5) {
  grid-column: 4 / span 2;
}

.other-movie-lane__grid .lp-rec-slide:nth-child(3n + 1):last-child {
  grid-column: 3 / span 2;
}

.other-movie-lane__grid--single {
  justify-content: center;
}

.other-movie-lane__grid--single .lp-rec-slide {
  grid-column: 2 / span 4;
}

.other-movie-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.other-movie-card__thumb-link {
  display: block;
  text-decoration: none;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.other-movie-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.other-movie-card__title {
  margin: 0;
  color: #0f0f0f;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.other-movie-card__description {
  margin: 0;
  color: #1e1e1e;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.53;
}

/* タブレット以下: ヒーロー価格枠（.price-card-shell）と同じ横幅に揃える */
@media (max-width: 767px) {
  .movies-block {
    padding: 28px 0 40px;
  }

  .movies-block__title {
    font-size: 28px;
    line-height: 38px;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .movies-block__inner {
    width: 90%;
    max-width: 420px;
    padding: 0;
  }

  .popular-movies {
    padding: 28px 0 36px;
  }

  .popular-movies__shell {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .popular-movies__panel {
    width: 100%;
    padding: 24px 16px 20px;
    box-sizing: border-box;
  }

  .popular-movies__footer {
    padding: 0 12px;
    box-sizing: border-box;
    width: calc(98vw / 1.08);
    max-width: none;
  }

  .popular-movies__promo {
    font-size: 14px;
    line-height: 22px;
    padding: 0 8px;
  }

  .movie-card__head {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
  }

  .movie-card__title {
    flex: 1 1 auto;
    min-width: 0;
  }

  .movie-card__tag {
    margin-left: auto;
  }

  .movie-lane__header {
    gap: 6px;
  }

  .movie-lane__title {
    font-size: 24px;
    line-height: 32px;
  }

  /* ムービーリスト: 横スクロール + scroll-snap（767px 以下のみ） */
  .movies-block__grid,
  .movie-lane__grid {
    display: block;
  }

  .movie-lane__grid--single {
    display: block;
  }

  .lp-rec-carousel {
    display: block;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
  }

  .lp-rec-slider {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8vw;
    gap: 12px;
    padding: 0 8vw;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .lp-rec-slider::-webkit-scrollbar {
    display: none;
  }

  .lp-rec-slide {
    flex: 0 0 82.5vw;
    width: 82.5vw;
    max-width: 82.5vw;
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    box-sizing: border-box;
  }

  .lp-rec-slide .movie-card {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .movies-block__grid .movie-card {
    max-width: 100%;
  }

  .movie-lane__grid .movie-card,
  .movie-lane__grid--single .movie-card {
    max-width: 100%;
  }

  .movies-block__all-link {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .movie-lane__more {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .other-movies {
    padding: 30px 0 36px;
  }

  .other-movies__inner {
    width: 100%;
    padding: 0;
    gap: 36px;
  }

  .other-movie-lane__header {
    gap: 4px;
  }

  .other-movie-lane__kicker {
    font-size: 13px;
    font-weight: 700;
  }

  .other-movie-lane__title {
    font-size: 24px;
    line-height: 1.35;
  }

  .movie-detail .other-movie-lane__title {
    font-size: 22px !important;
  }

  .other-movie-lane__grid {
    display: block;
  }

  .other-movie-lane__grid .lp-rec-slide,
  .other-movie-lane--five .other-movie-lane__grid .lp-rec-slide:nth-child(4),
  .other-movie-lane--five .other-movie-lane__grid .lp-rec-slide:nth-child(5),
  .other-movie-lane__grid--single .lp-rec-slide {
    grid-column: auto;
  }

  /*
   * select-movie/index.html 専用（.select-movie-lane__grid--sp-stack）。
   * 別CSSの読み込み失敗時でも、.lp-rec-slider 相当の横並び・snap が誤って効かないよう確実に縦1列へ。
   * 768px 以上ではこのメディアクエリ自体が無効のため PC レイアウトは変わらない。
   */
  .select-movie-page .select-movie-lane__grid--sp-stack {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 16px !important;
    row-gap: 16px !important;
    column-gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    scroll-padding: 0 !important;
    scroll-padding-inline: 0 !important;
    grid-template-columns: none !important;
  }

  .select-movie-page .select-movie-lane__grid--sp-stack > .lp-rec-slide {
    flex: none !important;
    flex-grow: 0 !important;
    flex-shrink: 1 !important;
    flex-basis: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    scroll-snap-align: unset !important;
  }

  .other-movie-card {
    gap: 8px;
  }

  .other-movie-card__title {
    font-size: 20px;
    line-height: 1.45;
  }

  .other-movie-card__description {
    font-size: 15px;
    line-height: 1.5;
  }

  .voice-section__reviews {
    padding: 28px 0 36px;
  }

  .voice-section__reviews-heading {
    font-size: 20px;
    line-height: 30px;
    padding: 0 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .movies-block__inner {
    max-width: 380px;
  }

  .popular-movies__shell {
    max-width: 100%;
  }

  .movies-block {
    padding: 22px 0 32px;
  }

  .movies-block__title {
    font-size: 24px;
    line-height: 32px;
  }

  .popular-movies {
    padding: 22px 0 28px;
  }

  .other-movies {
    padding: 24px 0 30px;
  }

  .other-movie-lane__kicker {
    font-size: 13px;
    font-weight: 700;
  }

  .other-movie-lane__title {
    font-size: 24px;
    line-height: 1.4;
  }

  .movie-detail .other-movie-lane__title {
    font-size: 22px !important;
  }

  .other-movie-card__title {
    font-size: 19px;
  }

  .other-movie-card__description {
    font-size: 14px;
    line-height: 1.5;
  }

  .movie-lane__title {
    font-size: 21px;
    line-height: 28px;
  }

  .popular-movies__promo {
    font-size: 13px;
    line-height: 20px;
  }

  .voice-section__reviews-heading {
    font-size: 18px;
    line-height: 26px;
  }
}

.pgw-about {
  padding: 40px 0 48px;
  background: #dff4f6;
  font-family: var(--font-sans);
}

.pgw-about-inner {
  width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pgw-about-title {
  margin: 0;
  color: #039aa5;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.pgw-about-intro-card {
  width: 800px;
  border: 1px solid #00afbf;
  border-radius: 7px;
  background: #ffffff;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.pgw-about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pgw-about-line {
  margin: 0;
  color: #0f0f0f;
  font-size: 32px;
  font-weight: 700;
  line-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
}

.pgw-about-line-highlight {
  gap: 6px;
}

.pgw-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 5px 11px;
  background: #039aa5;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.pgw-about-award {
  width: 250px;
  height: 138px;
  object-fit: cover;
  display: block;
}

.pgw-feature-card {
  width: 800px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06), 0 8px 48px rgba(0, 0, 0, 0.04);
  padding: 37px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pgw-feature-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pgw-feature-kicker {
  margin: 0;
  color: #d6b45e;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.04em;
}

.pgw-feature-title {
  margin: 0;
  color: #0f0f0f;
  font-size: 34px;
  font-weight: 700;
  line-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pgw-feature-title-break-sp {
  display: none;
}

.pgw-feature-desc {
  margin: 0;
  color: #0f0f0f;
  text-align: center;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}

.pgw-feature-service-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.pgw-price-panel {
  width: 100%;
  max-width: 680px;
  border-radius: 20px;
  border: 7px solid #806e46;
  background: linear-gradient(90deg, #fefdfa 0%, #f6f0ca 100%);
  box-shadow:
    0 7px 13px -2px rgba(0, 0, 0, 0.1),
    0 13px 31px 0 rgba(0, 0, 0, 0.06),
    0 26px 53px 0 rgba(0, 0, 0, 0.04),
    0 -2px 13px -4px rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.pgw-price-band {
  background: linear-gradient(90deg, #806e46 0%, #e2cc99 42%, #aa976a 63%, #e2cc99 83%, #aa976a 100%);
  color: #ffffff;
  text-align: center;
  font: 800 30px/47px var(--font-sans);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.pgw-price-row {
  display: grid;
  grid-template-columns: 146px 6px 95px 2px 7px 2px 1fr;
  align-items: center;
  column-gap: 0;
  padding: 14px 16px 14px 24px;
}

.pgw-price-arrow {
  grid-column: 5;
  width: 7px;
  height: 11px;
  display: block;
}

.pgw-price-label {
  grid-column: 1;
  border: 1px solid #917029;
  border-radius: 12px;
  color: #917029;
  text-align: center;
  font: 700 15px/18px var(--font-sans);
  background: #ffffff;
  padding: 8px 0px;
}

.pgw-price-old {
  grid-column: 3;
  color: #0f0f0f;
  font: 500 20px/24px var(--font-sans);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #0f0f0f;
}

.pgw-price-old-num {
  font-size: 1.12em;
}

.pgw-price-now {
  grid-column: 7;
  color: var(--price-pink);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 115px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pgw-price-now span {
  margin-left: 2px;
  font: 800 32px/1 var(--font-sans);
}

.pgw-price-now .pgw-price-comma {
  margin: 0 -0.04em;
  font-size: 0.45em;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  transform: translateY(-0.08em);
}

.pgw-cv-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  animation: heroPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
}

.pgw-cv-lead {
  margin: 0;
  color: #0f0f0f;
  font: 700 14px/21px var(--font-sans);
}

.pgw-speed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pgw-speed-item {
  width: 188px;
  border: 2px solid #00afbf;
  border-radius: 13px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pgw-speed-item img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  display: block;
}

/* fast-section の fast-info と同じタイポグラフィ（クラス共有） */
.pgw-speed-item .fast-info-title {
  width: 100%;
  font-size: 17px;
  line-height: 25px;
}

.pgw-speed-item .fast-info-value {
  margin: 4px 0 8px;
}

.pgw-speed-item .fast-num-main {
  font-size: 48px;
}

.pgw-speed-item .fast-num-unit {
  font-size: 30px;
}

.pgw-speed-item .fast-num-small {
  font-size: 12px;
}

.pgw-speed-note {
  margin: 0;
  text-align: center;
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.pgw-secondary-button {
  border: 1px solid #039aa5;
  border-radius: 52px;
  padding: 14px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #039aa5;
  text-decoration: none;
  font: 700 18px/24px var(--font-sans);
  background: #ffffff;
}

.pgw-secondary-button__icon {
  margin-right: 4px;
  line-height: 1;
}

.pgw-secondary-button__icon--right {
  margin-right: 0;
  margin-left: 4px;
}

.pgw-customize-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 592px;
}

.pgw-customize-chip {
  border-radius: 9px;
  background: #eef6f7;
  color: #0f0f0f;
  text-align: center;
  padding: 10px 12px;
  font: 700 20px/30px var(--font-sans);
}

.pgw-customize-chip--accent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #039aa5;
  border: 2px solid #039aa5;
  padding: 8px 12px;
  box-shadow: 0 8px 16px rgba(3, 154, 165, 0.2);
}

.pgw-customize-chip--accent::before {
  content: "♫";
  margin-right: 6px;
  font-size: 0.95em;
  vertical-align: baseline;
}

@media (max-width: 767px) {
  .pgw-about {
    padding: 24px 0 36px;
  }

  .pgw-about-inner {
    width: 100%;
    gap: 16px;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .pgw-about-title {
    font-size: 14px;
    line-height: 18px;
  }

  .pgw-about-intro-card,
  .pgw-feature-card {
    width: 100%;
  }

  .pgw-about-intro-card {
    flex-direction: column;
    align-items: center;
    padding: 12px 12px 14px;
    gap: 12px;
  }

  /* 実績バッジを intro テキストより上に */
  .pgw-about-award {
    order: -1;
    width: 200px;
    height: auto;
    flex-shrink: 0;
  }

  .pgw-about-line {
    font-size: 18px;
    line-height: 30px;
    gap: 6px;
  }

  .pgw-pill {
    font-size: 24px;
    border-radius: 6px;
    padding: 4px 8px;
  }

  .pgw-feature-card {
    padding: 16px 12px;
    border-radius: 8px;
    gap: 16px;
  }

  .pgw-feature-kicker {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
  }

  .pgw-feature-title {
    font-size: 20px;
    line-height: 28px;
    gap: 6px;
  }

  .pgw-feature-title-break-sp {
    display: block;
    flex-basis: 100%;
    height: 0;
  }

  .pgw-feature-title .pgw-pill {
    font-size: 24px;
    line-height: 1.25;
  }

  .pgw-feature-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .pgw-price-panel {
    width: 100%;
    max-width: 400px;
    border-width: 4px;
    border-radius: 11px;
  }

  .pgw-price-band {
    font: 800 17px/27px var(--font-sans);
  }

  .pgw-price-row {
    grid-template-columns: auto auto auto;
    grid-template-areas:
      "label label label"
      "old arrow now";
    justify-content: center;
    row-gap: 6px;
    column-gap: 2px;
    padding: 8px 10px;
  }

  .pgw-price-arrow {
    grid-area: arrow;
    width: 5px;
    height: 8px;
    justify-self: center;
    align-self: center;
  }

  .pgw-price-label {
    grid-area: label;
    border-radius: 999px;
    font: 700 13px/1.3 var(--font-sans);
    padding: 5px 10px;
    width: auto;
    white-space: nowrap;
    justify-self: center;
  }

  .pgw-price-label br {
    display: none;
  }

  .pgw-price-old {
    grid-area: old;
    font: 500 clamp(14px, 3.8vw, 18px) / 1.2 var(--font-sans);
    margin-right: 2px;
    justify-self: center;
    align-self: center;
  }

  .pgw-price-now {
    grid-area: now;
    font-size: clamp(58px, 17vw, 86px);
    justify-self: center;
    align-self: center;
  }

  .pgw-price-now span {
    font: 800 clamp(24px, 7.2vw, 36px) / 1 var(--font-sans);
  }

  .pgw-price-now .pgw-price-comma {
    margin: 0 -0.04em;
    font-size: 0.45em;
    line-height: 1;
    transform: translateY(-0.08em);
  }

  .pgw-cv-lead {
    font-size: 12px;
    font-weight: 700;
  }

  .pgw-cv-wrap {
    /* .pgw-feature-card の左右 padding 12px 分を打ち消してカード全幅まで広げる */
    /* heroPulse のピーク (scale 1.08) でちょうどカード全幅 (100% + 24px) になるよう逆算 */
    width: calc((100% + 24px) / 1.08);
    max-width: calc(100% + 24px);
    box-sizing: border-box;
  }

  .pgw-speed-grid {
    gap: 6px;
  }

  .pgw-speed-item {
    width: 146px;
    border-width: 1px;
    border-radius: 7px;
  }

  .pgw-speed-item img {
    height: 88px;
  }

  .pgw-speed-item .fast-info-value {
    margin: 4px 0 6px;
  }

  .pgw-speed-item .fast-info-title {
    font-size: 16px;
    line-height: 21px;
  }

  .pgw-speed-item .fast-num-main {
    font-size: 47px;
  }

  .pgw-speed-item .fast-num-unit {
    font-size: 29px;
  }

  .pgw-speed-item .fast-num-small {
    font-size: 12px;
  }

  .pgw-speed-note {
    font-size: 11px;
    line-height: 17px;
  }

  .pgw-secondary-button {
    border-radius: 35px;
    padding: 10px 16px;
    font: 700 14px/1.45 var(--font-sans);
  }

  .pgw-customize-grid {
    width: 333px;
    gap: 6px;
  }

  .pgw-customize-chip {
    border-radius: 6px;
    padding: 12px 6px;
    font: 700 14px/17px var(--font-sans);
  }

  .pgw-customize-chip--accent {
    padding: 4px 6px;
    border-width: 1.5px;
    box-shadow: 0 6px 10px rgba(3, 154, 165, 0.2);
  }

  .pgw-customize-chip--accent::before {
    margin-right: 4px;
  }
}

/* pgw-about: PC（小）768〜1024px — 内側コンテナとカード幅を 750px に統一 */
@media (min-width: 768px) and (max-width: 1024px) {
  .pgw-about-inner {
    width: 750px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pgw-about-intro-card,
  .pgw-feature-card {
    width: 750px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pgw-about-line {
    font-size: 24px;
  }

  .pgw-pill {
    font-size: 28px;
  }
}

/* お問い合わせ（lp.penguin-wedding.com 準拠・Figma 数値は整数化） */
.inquiry-section {
  box-sizing: border-box;
  background: #ffffff;
  font-family: var(--font-sans);
}

.inquiry-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 16px;
  box-sizing: border-box;
  width: 100%;
  max-width: 848px;
  margin: 0 auto;
}

.inquiry-title {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #0f0f0f;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: 0;
}

.inquiry-top {
  display: flex;
  width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 800px;
  gap: 32px;
}

.inquiry-image-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 186px;
  margin-inline: auto;
}

.inquiry-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 30px 30px 0;
}

.inquiry-copy {
  display: flex;
  min-width: 0;
  flex: 1 1 0%;
  flex-direction: column;
  gap: 12px;
}

.inquiry-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: #00afbf;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  padding: 8px 24px;
  border-radius: 50px;
  text-align: center;
  box-sizing: border-box;
}

.inquiry-desc {
  margin: 0;
  color: #0f0f0f;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.inquiry-actions {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  max-width: 829px;
  gap: 12px;
}

.inquiry-btn {
  display: flex;
  flex: 0 1 auto;
  min-width: 278px;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 10px 27px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.inquiry-btn > span {
  line-height: 1.1;
}

.inquiry-btn:hover {
  opacity: 0.92;
}

.inquiry-btn-line {
  gap: 4px;
  border: 1px solid #06c755;
  background: #06c755;
  color: #ffffff;
}

.inquiry-btn-outline {
  border: 1px solid #00afbf;
  background: #ffffff;
  color: #039aa5;
}

@media (min-width: 768px) {
  .inquiry-top {
    flex-direction: row;
    align-items: center;
    gap: 76px;
  }

  .inquiry-image-wrap {
    margin-inline: 0;
  }

  .inquiry-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  /* Tailwind ユーティリティより後に勝たせるため親セレクタで詳細度アップ */
  .inquiry-section .inquiry-top {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .movie-detail-spec-section .inquiry-top {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .inquiry-section .inquiry-image-wrap {
    width: 30%;
    max-width: none;
    flex: 0 0 30%;
    margin-inline: 0;
  }

  .movie-detail-spec-section .inquiry-image-wrap {
    width: 30%;
    max-width: none;
    flex: 0 0 30%;
    margin-inline: 0;
  }

  .inquiry-section .inquiry-copy {
    flex: 1 1 70%;
    min-width: 0;
  }

  .movie-detail-spec-section .inquiry-copy {
    flex: 1 1 70%;
    min-width: 0;
  }

  .inquiry-section .inquiry-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .inquiry-section .inquiry-title {
    font-size: 26px;
    line-height: 34px;
  }

  .inquiry-section .inquiry-badge {
    font-size: 14px;
    padding: 4px 12px;
  }

  .movie-detail-spec-section .inquiry-badge {
    font-size: 14px;
    padding: 4px 12px;
  }

  .inquiry-section .inquiry-desc {
    font-size: 16px;
  }

  .movie-detail-spec-section .inquiry-desc {
    font-size: 16px;
  }

  .inquiry-section .inquiry-actions,
  .movie-detail-spec-section .inquiry-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
  }

  .inquiry-section .inquiry-btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    min-height: 0;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.1;
  }

  .movie-detail-spec-section .inquiry-btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    min-height: 0;
    font-size: 14px;
    line-height: 1.1;
  }
}

/* ----- VOICE（ホテルロゴマーキー） ----- */
.voice-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 0 40px;
  box-sizing: border-box;
  background: #ffffff;
  font-family: var(--font-sans);
}

.voice-section__inner {
  width: 100%;
  max-width: 1063px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.voice-section__kicker {
  margin: 0;
  text-align: center;
  color: #bfa574;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-transform: uppercase;
}

.voice-section__award {
  display: block;
  width: 250px;
  max-width: 100%;
  height: 138px;
  margin: 24px auto 0;
  object-fit: cover;
}

.voice-section__heading {
  margin: 24px 0 0;
  text-align: center;
  color: #0f0f0f;
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
}

.logo-marquee-wrapper {
  width: 100%;
  max-width: none;
  margin-top: 8px;
  overflow: hidden;
  background: #ffffff;
  padding: 28px 0;
  box-sizing: border-box;
}

.logo-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.logo-marquee-track img {
  flex-shrink: 0;
  width: 160px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .voice-section {
    padding: 40px 0 32px;
  }

  .voice-section__heading {
    font-size: 24px;
    line-height: 34px;
  }

  .logo-marquee-track img {
    width: 120px;
  }

  .logo-marquee-wrapper {
    padding: 20px 0;
    margin-top: 24px;
  }
}

/* ----- VOICE：お客様の声カルーセル ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.voice-section__reviews {
  width: 100%;
  margin-top: 0;
  padding: 40px 0 48px;
  box-sizing: border-box;
  background: #eaf6f8;
}

.voice-section__reviews-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.voice-section__reviews-heading {
  margin: 0 0 24px;
  text-align: center;
  color: #0f0f0f;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 560px;
  background: #000;
  padding-top: 56.25%;
}

.modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
  padding: 0;
  background: #ffffff;
  color: #333333;
  font-size: 24px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.review-carousel {
  position: relative;
  margin: 20px 0;
}

.carousel-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* ::before の幅と揃える。無いと snap が先頭スライドを左端に合わせて scroll を進め、余白が画面外に回る */
  scroll-padding-inline-start: 120px;
  scroll-padding-inline-end: 24px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: 0;
  box-sizing: border-box;
}

/* Flex 横スクロールで padding が効かない問題の回避：疑似要素で左右スペーサー */
.carousel-slider::before,
.carousel-slider::after {
  content: "";
  flex-shrink: 0;
  align-self: stretch;
  min-height: 1px;
  pointer-events: none;
}

.carousel-slider::before {
  flex: 0 0 250px;
  width: 250px;
}

.carousel-slider::after {
  flex: 0 0 24px;
  width: 24px;
}

.carousel-slider::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 30%;
  margin-right: 10px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: pointer;
}

a.carousel-slide {
  text-decoration: none;
  color: inherit;
}

.carousel-slide:last-child {
  margin-right: 0;
}

.voice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.voice-card__media {
  display: flex;
  flex-direction: column;
}

.voice-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}

.voice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.voice-card__play-icon {
  display: block;
  width: 60px;
  height: 42px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.voice-card__hint {
  margin: 0;
  padding: 10px 12px;
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.voice-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 20px;
  flex: 1;
}

.voice-card__title {
  margin: 0;
  color: #039aa5;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.voice-card__meta {
  margin: 0;
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.voice-card__purchase {
  display: block;
  margin-top: 4px;
}

.voice-card__name {
  font-weight: 700;
}

.voice-card__text {
  margin: 0;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

/* 口コミ本文の強調（太め・やや大きめ・黄色マーカー風） */
.voice-card__em {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #0f0f0f;
  background: linear-gradient(transparent 58%, #fff4cc 58%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

.carousel-nav.prev {
  left: 8px;
}

.carousel-nav.next {
  right: 8px;
}

@media (max-width: 767px) {
  .carousel-slider {
    scroll-padding-inline-start: 16px;
    scroll-padding-inline-end: 16px;
  }

  .carousel-slider::before {
    flex: 0 0 16px;
    width: 16px;
  }

  .carousel-slider::after {
    flex: 0 0 16px;
    width: 16px;
  }

  .carousel-slide {
    flex: 0 0 90%;
    margin-right: 10px;
  }

  .carousel-nav {
    display: none !important;
  }

  .review-carousel.few-1-slides .carousel-slider {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .review-carousel .carousel-slide {
    flex: 0 0 360px !important;
    flex-basis: 360px !important;
    margin-right: 16px !important;
  }

  .review-carousel.few-1-slides .carousel-slide {
    flex: 0 0 420px !important;
    flex-basis: 420px !important;
  }

  .review-carousel .carousel-slide:last-child {
    margin-right: 0 !important;
  }

  .review-carousel .carousel-slider {
    justify-content: flex-start !important;
  }

  .review-carousel.few-1-slides .carousel-slider,
  .review-carousel.few-2-slides .carousel-slider {
    justify-content: flex-start !important;
  }

  .review-carousel.few-2-slides .carousel-slider {
    justify-content: center !important;
  }

  .review-carousel.few-2-slides .carousel-slider::before,
  .review-carousel.few-2-slides .carousel-slider::after {
    flex: 0 0 0;
    width: 0;
  }

  .review-carousel.few-1-slides .carousel-nav,
  .review-carousel.few-2-slides .carousel-nav {
    display: none !important;
  }
}

.voice-latest-reviews {
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
  padding: 24px 16px;
  box-sizing: border-box;
  background: #ffffff;
}

.voice-latest-reviews__heading,
#review-summary,
#reviews,
.review-card {
  background: #ffffff;
}

.voice-latest-reviews__heading {
  margin: 0 0 16px;
  text-align: center;
  color: #0f0f0f;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

#review-summary {
  margin: 0 auto 12px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-summary-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.review-summary-score {
  font-size: 28px;
  font-weight: 800;
  color: #333333;
}

.review-summary-stars {
  display: flex;
  gap: 4px;
}

.review-summary-star {
  font-size: 28px;
  color: #f4a623;
}

.review-summary-star.inactive {
  color: #e0e0e0;
}

.review-summary-count {
  margin-top: 6px;
  font-size: 16px;
  color: #666666;
}

#reviews {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-sans);
  color: #333333;
}

.review-card {
  padding: 16px 0 20px;
  border-bottom: 1px solid #dddddd;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.review-author {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
}

.review-star {
  font-size: 16px;
  line-height: 1;
  color: #f4a623;
}

.review-star.inactive {
  color: #e0e0e0;
}

.review-purchase-date {
  font-size: 14px;
  font-weight: 600;
  color: #777777;
  margin-bottom: 12px;
}

.review-comment {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  white-space: pre-wrap;
}

.voice-latest-reviews__cta {
  display: flex;
  justify-content: center;
  margin: 24px 0 8px;
  background: #ffffff;
}

@media (max-width: 767px) {
  .voice-latest-reviews {
    margin-top: 20px;
    padding: 24px 12px;
  }

  .voice-latest-reviews__heading {
    font-size: 24px;
  }

  .review-summary-score,
  .review-summary-star {
    font-size: 24px;
  }
}

.faq-section {
  background: #fdfdfd;
  padding: 72px 0 64px;
}

.faq-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

.faq-kicker {
  margin: 0;
  text-align: center;
  color: #d6b45e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.faq-title {
  margin: 8px 0 36px;
  text-align: center;
  color: #0f0f0f;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #edf0f2;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-item__title {
  margin: 0;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #039aa5;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-question__icon {
  color: #11a5b6;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-answer p {
  margin: 0 0 14px;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 24px;
}

.faq-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0 44px;
  }

  .faq-inner {
    max-width: 430px;
    padding: 0 20px;
  }

  .faq-kicker {
    font-size: 13px;
    font-weight: 700;
  }

  .faq-title {
    margin: 6px 0 20px;
    font-size: 28px;
    line-height: 38px;
  }

  .faq-question {
    font-size: 17px;
    line-height: 1.45;
    padding: 14px 14px 13px 14px;
    gap: 10px;
  }

  .faq-question__icon {
    font-size: 24px;
  }

  .faq-answer {
    padding: 0 14px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.9;
  }

  .faq-item.is-open .faq-answer {
    padding-bottom: 16px;
  }

  .faq-cta {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 768px) {
  .faq-inner {
    padding: 0 24px;
  }

  .faq-question {
    font-size: 20px;
  }
}

.consult-section {
  background: #ffffff;
  padding: 78px 0 64px;
}

.consult-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
}

.consult-title {
  margin: 0;
  color: #0f0f0f;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
}

.consult-lead {
  margin: 14px auto 30px;
  max-width: 720px;
  color: #30343a;
  font-size: 14px;
  line-height: 1.65;
}

.consult-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.consult-btn {
  min-width: 278px;
  min-height: 54px;
  box-sizing: border-box;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.consult-btn:hover {
  opacity: 0.85;
}

.consult-btn--line {
  background: #06c755;
  border: 1px solid #06c755;
  color: #ffffff;
}

.consult-btn__line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.consult-btn__line-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consult-btn--outline {
  background: #ffffff;
  border: 1px solid #8bb9c9;
  color: #6c9bad;
}

.site-footer {
  background: #333333;
  color: #ffffff;
  padding: 58px 0 52px;
}

.site-footer__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
}

.site-footer__logo {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.45;
  transition: opacity 0.2s ease;
}

.site-footer__nav a:hover {
  opacity: 0.7;
}

.site-footer__copyright {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .consult-section {
    padding: 54px 0 42px;
  }

  .consult-inner {
    max-width: 430px;
    padding: 0 20px;
  }

  .consult-title {
    font-size: 30px;
  }

  .consult-lead {
    margin-top: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.75;
  }

  .consult-actions {
    flex-direction: column;
    gap: 10px;
  }

  .consult-btn {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    min-height: 48px;
    font-size: 15px;
  }

  .site-footer {
    padding: 44px 0 40px;
  }

  .site-footer__inner {
    max-width: 430px;
    padding: 0 20px;
  }

  .site-footer__logo {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .site-footer__nav {
    gap: 13px;
  }

  .site-footer__nav a {
    font-size: 18px;
  }

  .site-footer__copyright {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.45;
  }
}

@media (min-width: 768px) {
  h2 {
    font-size: 36px !important;
  }
}

/* ----- Film LP: ムービーの仕様 ----- */
.movie-detail-spec-section {
  box-sizing: border-box;
  padding: 48px 24px 56px;
  background: #ffffff;
  font-family: var(--font-sans);
}

.movie-detail-spec-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.movie-detail-spec-section__eyebrow {
  margin: 0;
  text-align: center;
  color: #bfa574;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.movie-detail-spec-section__title {
  margin: 12px 0 0;
  text-align: center;
  color: #0f0f0f;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.movie-detail-spec-section__table-wrap {
  margin-top: 32px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.movie-detail-spec-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.6;
  color: #0f0f0f;
}

.movie-detail-spec-table th,
.movie-detail-spec-table td {
  border: 1px solid #e0e0e0;
  padding: 14px 18px;
  vertical-align: top;
  text-align: left;
  box-sizing: border-box;
}

.movie-detail-spec-table th {
  width: 28%;
  min-width: 140px;
  background: #f9f9f9;
  font-weight: 700;
}

.movie-detail-spec-table td {
  background: #ffffff;
}

.movie-detail-spec-table__th-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.85em;
  font-weight: 400;
}

.movie-detail-spec-table__note {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.92em;
}

.movie-detail-spec-table__bgm-extra {
  margin-top: 10px;
}

.movie-detail-spec-table__bgm-extra p {
  margin: 0 0 8px;
}

.movie-detail-spec-table__bgm-extra p strong {
  color: #039aa5;
}

.movie-detail-spec-table__bgm-extra .pgw-secondary-button {
  font-size: 16px;
}

.movie-detail-spec-section__notes {
  margin-top: 24px;
  padding: 16px 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 15, 15, 0.08);
  text-align: center;
}

.movie-detail-spec-section__note-line {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #0f0f0f;
}

.movie-detail-spec-section__note-line--highlight {
  display: inline-block;
  margin: 0 auto 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f0fbfc;
  color: #039aa5;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.movie-detail-spec-section__link {
  color: #00afbf;
  font-weight: 700;
  text-decoration: underline;
}

.movie-detail-spec-section__link:hover {
  opacity: 0.88;
}

.movie-detail-spec-section__consult {
  margin: 24px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #0f0f0f;
}

.movie-detail-spec-section__consult-heading {
  margin: 0;
  text-align: center;
  color: #0f0f0f;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.movie-detail-spec-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.movie-detail-spec-section .inquiry-inner {
  padding: 0;
}

.movie-detail-spec-actions__pair {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 829px;
}

.movie-detail-spec-section .movie-detail-spec-actions .inquiry-btn {
  flex: 0 1 auto;
  min-width: 278px;
  max-width: none;
}

.movie-detail-spec-cv {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding: 16px 12px 22px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  animation: heroPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
}

.movie-detail-spec-cv__lead {
  margin: 0;
  text-align: center;
  color: #1d1d1d;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .movie-detail-spec-section {
    padding: 32px 16px 40px;
  }

  .movie-detail-spec-section__title {
    font-size: 24px;
  }

  .movie-detail-spec-section__table-wrap {
    margin-top: 20px;
    margin-left: -4px;
    margin-right: -4px;
    padding: 0 4px;
  }

  .movie-detail-spec-table {
    min-width: 0;
    width: 100%;
    font-size: 13px;
    line-height: 1.55;
  }

  .movie-detail-spec-table th,
  .movie-detail-spec-table td {
    padding: 10px 10px;
  }

  .movie-detail-spec-table th {
    min-width: 96px;
    width: 34%;
  }

  .movie-detail-spec-table__bgm-extra .pgw-secondary-button {
    font-size: 12px;
  }

  .movie-detail-spec-section .movie-detail-spec-actions .inquiry-btn {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    min-height: 0;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.1;
  }

  .movie-detail-spec-actions__pair {
    flex-direction: column;
    gap: 16px;
  }

  .movie-detail-spec-cv {
    width: calc(98vw / 1.08);
    max-width: none;
  }

  .movie-detail-spec-section__consult {
    font-size: 14px;
  }

  .movie-detail-spec-section__consult-heading {
    font-size: 22px;
    line-height: 1.45;
  }
}

/* Filmページの「実際の上映ムービー」専用調整 */
.movie-detail #users-movie-heading {
  margin-bottom: 16px;
}

.movie-detail .voice-section__reviews {
  padding-top: 16px;
}

/* Filmページ: 納品スケジュール */
.delivery-schedule-section {
  background: #ffffff;
  padding: 40px 16px 64px;
}

.delivery-schedule-section__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.delivery-schedule-section__kicker {
  margin: 0;
  text-align: center;
  color: #bfa574;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.delivery-schedule-section__title {
  margin: 12px 0 28px;
  text-align: center;
  color: #2b2b2b;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .delivery-schedule-section {
    padding: 32px 12px 44px;
  }

  .delivery-schedule-section__title {
    margin: 10px 0 20px;
    font-size: 24px !important;
    line-height: 1.3;
  }
}

/* 期間限定のお知らせバー（GW など） — 全ページ共通、運用終了後にこのブロックと markup を削除 */
.announcement-bar {
  background-color: #bef9ff;
  color: #0f0f0f;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announcement-bar__text {
  margin: 0;
}

@media (max-width: 480px) {
  .announcement-bar {
    font-size: 12px;
    padding: 8px 12px;
  }
}
