/* ============================================================
   Local Battle Card LP — v2 完全版
============================================================ */

:root {
  /* B2C上部: 明るく鮮やか */
  --color-primary-orange: #FF6B35;
  --color-primary-orange-light: #FF8F5C;
  --color-accent-yellow: #FFD23F;
  --color-accent-red: #E63946;

  /* CTAブルー */
  --color-primary-blue: #2A6FB8;
  --color-primary-blue-light: #4A90D9;

  /* B2G下部: 信頼感 */
  --color-primary-navy: #1B3A5C;
  --color-primary-navy-light: #2A5278;
  --color-accent-gold: #D4A24C;

  /* 共通 */
  --color-bg-base: #FFFFFF;
  --color-bg-cream: #FAF7F2;
  --color-bg-soft: #F5F2EC;
  --color-text-main: #1A1A1A;
  --color-text-sub: #555555;
  --color-border: #E5E5E5;

  /* noteブランド */
  --color-note-green: #41C9B4;

  /* フォント */
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-accent: "Bebas Neue", "Oswald", sans-serif;
}

/* ============================================================
   リセット
============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
img, picture, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   コンテナ
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ============================================================
   共通fade-in
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* prefers-reduced-motion対応 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.text-center { text-align: center; }

/* スクリーンリーダー専用（視覚的に非表示・クローラは読む） */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ヘッダー
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0);
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { height: 40px; width: auto; }
.global-nav ul {
  display: flex;
  gap: 32px;
}
.global-nav a {
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.global-nav a:hover { color: var(--color-primary-orange); }
.header-cta {
  padding: 10px 24px;
  background: var(--color-primary-orange);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.header-cta:hover { transform: translateY(-2px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  transition: all 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .global-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .global-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 24px;
  }
  .global-nav.open ul {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* ============================================================
   Section 01: FV — Wix版に忠実なレイアウト
============================================================ */
.fv {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #6BB3E8 0%, #A8D5F0 40%, #FFD699 80%, #FFAA66 100%);
}

/* FV: 背景レイヤー */
.fv-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.fv-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}
.fv-light-rays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 30%, rgba(255, 255, 200, 0.5) 0%, transparent 60%),
    conic-gradient(from 180deg at 50% 30%,
      transparent 0deg,
      rgba(255, 240, 180, 0.3) 30deg,
      transparent 60deg,
      rgba(255, 240, 180, 0.3) 90deg,
      transparent 120deg,
      rgba(255, 240, 180, 0.3) 150deg,
      transparent 180deg,
      rgba(255, 240, 180, 0.3) 210deg,
      transparent 240deg,
      rgba(255, 240, 180, 0.3) 270deg,
      transparent 300deg,
      rgba(255, 240, 180, 0.3) 330deg,
      transparent 360deg);
  mix-blend-mode: screen;
  animation: lightPulse 6s ease-in-out infinite;
}
@keyframes lightPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
.fv-stadium-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(255, 160, 80, 0.7) 0%, rgba(255, 200, 120, 0.3) 50%, transparent 100%);
}

/* FV: 写真レイヤー */
.fv-photos {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.photo {
  position: absolute;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}
/* 家族（4人）: 右上、大きく */
.photo-family {
  top: 0;
  right: -2%;
  width: 36%;
  max-width: 560px;
  animation: fadeInRight 1.5s ease 0.3s both;
}
/* 男の子: 左中央、大きく */
.photo-boy {
  top: 8%;
  left: 5%;
  width: 28%;
  max-width: 420px;
  animation: fadeInLeft 1.5s ease 0.5s both;
}
/* 女の子: 左下、メシカードを掲げる */
.photo-girl {
  bottom: -2%;
  left: -2%;
  width: 22%;
  max-width: 320px;
  animation: fadeInLeft 1.5s ease 0.7s both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* FV: カードレイヤー（浮遊） */
.fv-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.card {
  position: absolute;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
  will-change: transform;
}
/* card-1: クラウンメロン — 左中央下、男の子と女の子の間 */
.card-1 {
  top: 48%; left: 12%;
  width: clamp(95px, 13vw, 180px);
  transform: rotate(-3deg);
  animation: float1 6s ease-in-out infinite;
}
/* card-2: 浜松の誇り（凧揚げ）— 上部中央寄り左 */
.card-2 {
  top: 4%; left: 21%;
  width: clamp(80px, 11vw, 160px);
  transform: rotate(-8deg);
  animation: float2 7s ease-in-out infinite;
}
/* card-3: 城 — 左端中央、男の子の左 */
.card-3 {
  top: 26%; left: -1%;
  width: clamp(70px, 9vw, 140px);
  transform: rotate(-12deg);
  animation: float3 5.5s ease-in-out infinite;
}
/* card-4: 浜名湖うなぎ — 右中央、家族の左下 */
.card-4 {
  top: 42%; right: 22%;
  width: clamp(85px, 11vw, 160px);
  transform: rotate(6deg);
  animation: float4 6.5s ease-in-out infinite;
}
/* card-5: 浜松餃子 — 右下 */
.card-5 {
  bottom: 8%; right: 5%;
  width: clamp(95px, 13vw, 190px);
  transform: rotate(4deg);
  animation: float5 7.2s ease-in-out infinite;
}
/* card-6: 飯系メシ — 左下、女の子の右隣 */
.card-6 {
  bottom: 4%; left: 14%;
  width: clamp(80px, 10vw, 150px);
  transform: rotate(-6deg);
  animation: float6 6.8s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-15px); } }
@keyframes float2 { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-12px); } }
@keyframes float3 { 0%,100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(-18px); } }
@keyframes float4 { 0%,100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(8deg) translateY(-14px); } }
@keyframes float5 { 0%,100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-16px); } }
@keyframes float6 { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-13px); } }

/* FV: 吹き出しレイヤー */
.fv-bubbles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.bubble {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
/* bubble-1: 大好きな名物が切り札！ — 右上、家族の左隣 */
.bubble-1 {
  top: 6%;
  right: 16%;
  width: clamp(140px, 16vw, 240px);
  transform: rotate(8deg);
  animation: bubblePop 0.6s ease 1.5s both, wiggle1 4s ease-in-out 2s infinite;
}
/* bubble-2: この街のことなら誰にも負けない！ — 左中央、男の子の下 */
.bubble-2 {
  top: 38%;
  left: 4%;
  width: clamp(130px, 15vw, 220px);
  transform: rotate(-6deg);
  animation: bubblePop 0.6s ease 1.8s both, wiggle2 4s ease-in-out 2.5s infinite;
}
@keyframes bubblePop {
  0%   { opacity: 0; transform: scale(0) rotate(var(--rot, 8deg)); }
  60%  { opacity: 1; transform: scale(1.15) rotate(var(--rot, 8deg)); }
  100% { opacity: 1; transform: scale(1) rotate(var(--rot, 8deg)); }
}
.bubble-1 { --rot: 8deg; }
.bubble-2 { --rot: -6deg; }
@keyframes wiggle1 { 0%,100% { transform: rotate(8deg); } 50% { transform: rotate(10deg); } }
@keyframes wiggle2 { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(-8deg); } }

/* FV: メインコンテンツ（中央配置） */
.fv-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 0;
}
.fv-title-logo {
  width: clamp(280px, 42vw, 540px);
  height: auto;
  margin: 0 auto 50px;
  animation: titleZoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}
@keyframes titleZoomIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.fv-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  color: var(--color-primary-navy);
}
.fv-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: lineUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fv-headline .line-1 { animation-delay: 1s; }
.fv-headline .line-2 { animation-delay: 1.3s; }
.fv-headline em {
  font-style: normal;
  color: var(--color-primary-orange);
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.9);
}
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}
.fv-subcopy {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.9;
  color: var(--color-primary-navy);
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: subcopyFade 1s ease 1.8s both;
}
@keyframes subcopyFade { to { opacity: 1; } }
.fv-subcopy em {
  font-style: normal;
  color: var(--color-primary-orange);
  font-weight: 900;
}

/* FV: CTAボタン — 横並び */
.fv-cta-group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: ctaFade 1s ease 2.2s both;
  position: relative;
  z-index: 5;
}
@keyframes ctaFade { to { opacity: 1; } }
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 20px 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  border-radius: 60px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.btn-cta-orange {
  background: linear-gradient(135deg, var(--color-primary-orange-light) 0%, var(--color-primary-orange) 100%);
}
.btn-cta-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}
.btn-cta-blue {
  background: linear-gradient(135deg, var(--color-primary-orange-light) 0%, var(--color-primary-orange) 100%);
  color: white;
}
.btn-cta-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: left 0.5s ease;
}
.btn-cta:hover::before { left: 100%; }

/* FV: スクロール誘導 */
.fv-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-primary-navy);
  opacity: 0.7;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(27, 58, 92, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 30%;
  background: var(--color-primary-orange);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* FV: レスポンシブ */
@media (max-width: 1023px) {
  .fv { padding: 100px 0 90px; }
  .photo-family { width: 30%; top: 2%; }
  .photo-boy { width: 26%; top: 12%; left: 2%; }
  .photo-girl { width: 22%; }
  .bubble-1 { right: 24%; }
  .bubble-2 { left: 4%; }
}
@media (max-width: 767px) {
  .fv { padding: 80px 0 60px; min-height: auto; }
  .fv-content { padding-top: 10px; position: relative; z-index: 5; }

  /* 写真: 画面端に小さく配置 */
  .photo-family { top: 2%; right: -10%; width: 36%; }
  .photo-boy { top: 16%; left: -10%; width: 34%; }
  .photo-girl { bottom: -2%; left: -12%; width: 28%; }

  /* カード: テキスト/CTAに重ならない隅へ */
  .card { filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3)); }
  /* メロン: 非表示（タイトルロゴと重なるため） */
  .card-1 { display: none; }
  /* うなぎ: タイトルロゴ右下の隙間 */
  .card-4 { top: 30%; right: 2%; left: auto; width: 58px; transform: rotate(8deg); }
  /* 餃子: 画面右、CTAボタンの上 */
  .card-5 { top: 56%; bottom: auto; right: 2%; width: 62px; transform: rotate(4deg); }

  /* 吹き出し: モバイルでは浮遊セリフを非表示 */
  .fv-bubbles { display: none; }

  /* テキスト */
  .fv-title-logo { width: 78%; max-width: 320px; margin-bottom: 28px; }
  .fv-headline { font-size: 1.7rem; margin-bottom: 24px; line-height: 1.4; }
  .fv-subcopy { font-size: 0.95rem; margin-bottom: 36px; }

  /* CTA: 縦並び、画面端まで広げる */
  .fv-cta-group { flex-direction: column; gap: 14px; position: relative; z-index: 6; }
  .btn-cta {
    width: 88%;
    min-width: 0;
    font-size: 1rem;
    padding: 16px 24px;
  }
}

/* ============================================================
   Section 02: 共感
============================================================ */
.sec-empathy {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-cream) 22%, var(--color-bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.heading-main {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 60px;
  color: var(--color-text-main);
}

/* ============================================================
   日本語見出しの禁則処理（スマホでの孤立文字・語句分割を防止）
   ※全LP/WEB共通の標準。詳細はNotion「LP見出し改行修正指示書」
============================================================ */
h1, h2, h3,
.heading-main,
.cta-headline,
.fv-headline,
.video-stmt-title,
.belief-headline {
  word-break: keep-all;        /* 日本語の語句を途中で割らない */
  line-break: strict;          /* 句読点・閉じ括弧を行頭に出さない */
  overflow-wrap: anywhere;     /* 句読点のない長い語句がはみ出す時だけ折返す */
  text-wrap: pretty;           /* 対応ブラウザで行末の孤立を回避 */
}
.hl-line { display: block; }
.product-jp-sub {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-top: 6px;
}
.nowrap { white-space: nowrap; }
@media (max-width: 380px) {
  .nowrap { white-space: normal; word-break: keep-all; }
}
.heading-main .accent {
  color: var(--color-primary-orange);
  position: relative;
  display: inline-block;
}
.heading-main .accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 107, 53, 0.2);
  z-index: -1;
}
/* 共感: ヘッダー */
.empathy-head { margin-bottom: 56px; }
.badge-empathy {
  background: var(--color-primary-navy);
  color: #fff;
  letter-spacing: 0.14em;
}

/* 共感: 3つの“あるある”カード */
.empathy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 56px;
}
.empathy-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(27, 58, 92, 0.08);
  border-top: 4px solid var(--color-accent-yellow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.empathy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(27, 58, 92, 0.14);
}
.empathy-card-icon { font-size: 2.6rem; margin-bottom: 16px; line-height: 1; }
.empathy-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-sub);
}
.empathy-card strong { color: var(--color-text-main); font-weight: 900; }

/* 共感: 余白の一言 */
.empathy-pause {
  text-align: center;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 40px;
}

/* 共感: 転換（切り札・必殺技） */
.empathy-turn { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.empathy-hook {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 900;
  line-height: 1.7;
  color: var(--color-text-main);
}
.empathy-hook + .empathy-hook { margin-top: 8px; }
.empathy-hook em {
  font-style: normal;
  color: var(--color-primary-orange);
  background: linear-gradient(transparent 62%, var(--color-accent-yellow) 62%);
  padding: 0 2px;
}

/* 共感: クライマックス */
.empathy-climax {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary-navy) 0%, var(--color-primary-navy-light) 100%);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(27, 58, 92, 0.25);
  position: relative;
  overflow: hidden;
}
.empathy-climax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,107,53,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.empathy-climax p {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}
.empathy-climax span { color: var(--color-accent-gold); position: relative; white-space: nowrap; }
.empathy-climax span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: var(--color-accent-gold);
  border-radius: 2px;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .sec-empathy { padding: 80px 0; }
  .empathy-cards { grid-template-columns: 1fr; gap: 16px; max-width: 440px; }
  .empathy-card {
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    border-top: none;
    border-left: 4px solid var(--color-accent-yellow);
  }
  .empathy-card-icon { margin-bottom: 0; font-size: 2.2rem; flex-shrink: 0; }
  .empathy-climax { padding: 36px 22px; border-radius: 22px; }
}

/* ============================================================
   Section 03: Product
============================================================ */
.sec-product {
  padding: 120px 0;
  background: white;
}
.product-header { text-align: center; margin-bottom: 80px; }
.badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 16px;
  background: var(--color-primary-orange);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.brand {
  color: var(--color-primary-orange);
  font-family: var(--font-accent);
  font-size: 1.3em;
  letter-spacing: 0.05em;
}
.lead {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-sub);
}
.card-showcase { max-width: 1200px; margin: 0 auto; }
.card-slider {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.card-item {
  flex: 0 0 280px;
  text-align: center;
  transition: all 0.4s ease;
}
.card-item:nth-child(1) { transform: rotate(-3deg); }
.card-item:nth-child(2) { transform: rotate(0deg); }
.card-item:nth-child(3) { transform: rotate(3deg); }
.card-item:hover {
  transform: translateY(-15px) rotate(0deg) scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}
.card-item img {
  width: 100%; height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}
.card-item h3 {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-text-main);
}
.card-item p {
  margin-top: 8px;
  color: var(--color-text-sub);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.slider-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dots .dot.active {
  background: var(--color-primary-orange);
  transform: scale(1.3);
}
.product-closing {
  text-align: center;
  margin-top: 80px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .card-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 10%;
  }
  .card-item { flex: 0 0 80%; scroll-snap-align: center; }
}

/* ============================================================
   Section 04: Flow
============================================================ */
.sec-flow {
  padding: 120px 0;
  background: linear-gradient(180deg, white 0%, var(--color-bg-cream) 100%);
}
.accent-large {
  color: var(--color-primary-orange);
  font-size: 1.1em;
}
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 80px 0 60px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 0 0 240px;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: rgba(255, 107, 53, 0.2);
  line-height: 1;
}
.step-icon {
  font-size: 3rem;
  margin: 20px 0;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: var(--color-primary-orange);
  border-radius: 50%;
  color: white;
}
.flow-step h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.flow-step p {
  color: var(--color-text-sub);
  font-size: 0.95rem;
}
.flow-arrow {
  font-size: 2rem;
  color: var(--color-primary-orange);
  font-weight: 900;
}
.flow-closing {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 60px;
}
.flow-closing strong { color: var(--color-primary-orange); }
@media (max-width: 767px) {
  .flow-steps { flex-direction: column; gap: 20px; }
  .flow-arrow { transform: rotate(90deg); }
}

/* ============================================================
   Section 04.5: 想い（belief）
============================================================ */
.sec-belief {
  padding: 120px 0;
  background: var(--color-primary-navy);
  color: #fff;
  overflow: hidden;
}
.belief-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.belief-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 48px;
}
.belief-headline span {
  color: var(--color-accent-yellow);
  position: relative;
}
.belief-body {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}
.belief-body-last { margin-bottom: 0; }
.belief-body strong {
  color: var(--color-accent-yellow);
  font-weight: 900;
}
@media (max-width: 767px) {
  .sec-belief { padding: 80px 0; }
  .belief-headline { margin-bottom: 36px; }
}

/* ============================================================
   Section 05: Values
============================================================ */
.sec-values {
  padding: 120px 0;
  background: var(--color-bg-soft);
}
.values-header { margin-bottom: 80px; }
.value-keyword {
  color: var(--color-primary-orange);
  font-weight: 900;
}
.cross {
  font-size: 0.7em;
  color: var(--color-text-sub);
  margin: 0 0.5em;
}
.sub {
  margin-top: 24px;
  font-size: 1.25rem;
  line-height: 1.8;
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  padding: 48px 32px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
}
.tilt-left { transform: rotate(-2deg); }
.tilt-right { transform: rotate(2deg); }
.value-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}
.value-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}
.value-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--color-primary-orange);
}
.value-card p {
  line-height: 1.8;
  color: var(--color-text-main);
}
@media (max-width: 767px) {
  .value-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 06: Gallery
============================================================ */
.sec-gallery {
  padding: 120px 0;
  background: white;
}
.gallery-header { margin-bottom: 40px; }

.deck-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.deck-tab {
  border: 2px solid var(--color-primary-orange);
  background: transparent;
  color: var(--color-primary-orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.deck-tab:hover {
  transform: translateY(-2px);
  background: rgba(255, 107, 53, 0.08);
}
.deck-tab.active {
  background: var(--color-primary-orange);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.deck-panel { display: none; }
.deck-panel.active { display: block; animation: deckFadeIn 0.4s ease; }
@keyframes deckFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.deck-tagline {
  text-align: center;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 16px;
}

.gallery-slider { position: relative; margin: 0 -20px; }
.gallery-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 40px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 220px;
  scroll-snap-align: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.gallery-card:hover { transform: translateY(-10px) rotate(2deg); }
.gallery-card img {
  width: 100%;
  aspect-ratio: 1488 / 2078; /* 画像のwidth/height相当を確保しCLS・診断対策 */
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}
.gallery-card span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}
.gallery-card-desc {
  margin-top: 4px !important;
  font-weight: 400 !important;
  font-size: 0.8rem;
  color: var(--color-text-sub);
  line-height: 1.5;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--color-primary-orange);
  color: white;
  font-size: 1.5rem;
  z-index: 10;
  transition: transform 0.3s;
}
.gallery-nav:hover { transform: translateY(-50%) scale(1.1); }
.gallery-nav.prev { left: 0; }
.gallery-nav.next { right: 0; }
.gallery-cta { margin-top: 60px; }
.btn-primary {
  display: inline-block;
  padding: 20px 48px;
  background: var(--color-primary-orange);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 107, 53, 0.4);
}
@media (max-width: 767px) {
  .gallery-nav { display: none; }
}

/* ============================================================
   Section 06.4: Video
============================================================ */
.sec-video { padding: 120px 0; background: white; }
.video-header { text-align: center; margin-bottom: 40px; }
.badge-yt {
  background: #FF0033;
  color: #fff;
  letter-spacing: 0.14em;
}
.video-main { max-width: 900px; margin: 0 auto; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-facade {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  display: block;
  overflow: hidden;
}
.video-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.video-facade:hover img { transform: scale(1.04); opacity: 0.9; }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.92);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-play::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.video-facade:hover .video-play {
  background: #FF0033;
  transform: translate(-50%, -50%) scale(1.08);
}
.video-message {
  max-width: 880px;
  margin: 48px auto 0;
  text-align: center;
  background:
    radial-gradient(900px 320px at 50% -20%, rgba(255, 210, 63, 0.12), transparent 60%),
    linear-gradient(160deg, var(--color-primary-navy) 0%, #122a44 100%);
  color: #fff;
  border-radius: 24px;
  padding: 64px 48px;
}
.video-stmt-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 32px;
}
.video-stmt-title .accent { color: var(--color-accent-yellow); }
.video-statement {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}
.video-closing {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 900;
  line-height: 1.8;
  color: #fff;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.video-closing em {
  font-style: normal;
  color: var(--color-accent-yellow);
}
.video-closing strong {
  color: #fff;
  border-bottom: 3px solid var(--color-accent-yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 767px) {
  .video-message { padding: 44px 24px; border-radius: 18px; }
}

/* product+lineup統合: ラインナップ橋渡し見出し */
.product-lineup-lead {
  margin: 8px 0 36px;
  font-weight: 700;
}

/* ============================================================
   Section 09.6: 料金の目安
============================================================ */
.sec-price {
  padding: 100px 0;
  background: var(--color-bg-cream);
}
.price-head { margin-bottom: 40px; }
.badge-price { background: var(--color-primary-navy); }
.price-base {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  border-top: 5px solid var(--color-primary-orange);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 48px 32px;
  text-align: center;
}
.price-base-spec {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 8px;
}
.price-base-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 4rem);
  line-height: 1.1;
  color: var(--color-primary-orange);
  margin-bottom: 10px;
}
.price-base-amount .price-num { font-size: 1.35em; }
.price-base-amount .price-from { font-size: 0.55em; color: var(--color-text-sub); margin-left: 2px; }
.price-base-incl {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 14px;
}
.price-base-aster {
  font-size: 0.85rem;
  color: var(--color-text-sub);
}
.price-sub {
  text-align: center;
  margin: 36px auto 0;
  max-width: 600px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-text-main);
}
.price-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-sub);
}
.price-cta { margin-top: 36px; }
.price-cta .btn-cta-final-navy { border: none; }
@media (max-width: 767px) {
  .sec-price { padding: 64px 0; }
  .price-base { padding: 36px 22px; }
}

/* ============================================================
   Section 06.6: 遊び方
============================================================ */
.sec-howto {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-cream) 100%);
}
.howto-head { margin-bottom: 56px; }
.badge-howto { background: var(--color-primary-blue); }
.howto-lead {
  margin-top: 18px;
  color: var(--color-text-sub);
  line-height: 1.9;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.howto-step {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--color-primary-orange);
  transition: transform 0.3s ease;
}
.howto-step:hover { transform: translateY(-6px); }
.howto-step-num {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-primary-orange);
  margin-bottom: 12px;
}
.howto-step-icon { font-size: 3rem; line-height: 1; margin-bottom: 16px; }
.howto-step h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--color-primary-navy);
}
.howto-step p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--color-text-sub);
}
.stat-badge,
.skill-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1px 9px;
  margin: 2px 2px;
  border-radius: 999px;
  white-space: nowrap;
}
.stat-badge {
  background: var(--color-accent-yellow);
  color: var(--color-primary-navy);
}
.skill-badge {
  background: var(--color-primary-orange);
  color: #fff;
}
.howto-note {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
  color: var(--color-text-main);
}
@media (max-width: 767px) {
  .sec-howto { padding: 64px 0; }
  .howto-steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Section 06.5: note
============================================================ */
.sec-note {
  padding: 120px 0;
  background: var(--color-bg-cream);
}
.note-header { margin-bottom: 60px; }
.badge-note { background: var(--color-note-green); }
.note-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.note-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.note-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}
.note-card-thumb {
  aspect-ratio: 1280 / 670; /* note標準サムネ比に合わせて見切れを防止 */
  overflow: hidden;
  background: var(--color-bg-soft);
}
.note-card-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.note-card:hover .note-card-thumb img { transform: scale(1.05); }
.note-card-thumb--empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.note-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.note-card-date {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--color-note-green);
  margin-bottom: 8px;
}
.note-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--color-text-main);
}
.note-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-sub);
  margin-bottom: 16px;
  flex: 1;
}
.note-card-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-note-green);
  margin-top: auto;
}
.note-cta { margin-top: 60px; }
.btn-note {
  display: inline-block;
  padding: 18px 40px;
  background: white;
  color: var(--color-note-green);
  border: 2px solid var(--color-note-green);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.btn-note:hover {
  background: var(--color-note-green);
  color: white;
}
@media (max-width: 1023px) {
  .note-articles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .note-articles { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 07: Pivot
============================================================ */
.sec-pivot {
  padding: 150px 0;
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-primary-navy) 100%);
  color: white;
}
.pivot-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.5;
  color: white;
}
.accent-gold { color: var(--color-accent-gold); }
@media (max-width: 767px) {
  .sec-pivot { padding: 100px 0; }
}

/* ============================================================
   Section 08: B2G Offer
============================================================ */
.sec-b2g-offer {
  padding: 120px 0;
  background: var(--color-primary-navy);
  color: white;
}
.heading-light { color: white; }
.lead-light { color: rgba(255, 255, 255, 0.85); }
.badge-gold {
  background: var(--color-accent-gold);
  color: var(--color-primary-navy);
}
.b2g-vision {
  margin: 40px auto 80px;
  max-width: 600px;
}
.b2g-vision p {
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 162, 76, 0.3);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.b2g-vision p:last-child { border-bottom: none; }

.usecase-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.usecase-card {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-accent-gold);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.usecase-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 162, 76, 0.8);
  transform: translateY(-5px);
}
.usecase-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.usecase-card:hover .usecase-icon {
  transform: scale(1.1) rotate(-5deg);
}
.usecase-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--color-accent-gold);
}
.usecase-card p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 1023px) {
  .usecase-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .usecase-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 09: Support
============================================================ */
.sec-support {
  padding: 120px 0;
  background: var(--color-primary-navy-light);
  color: white;
}
.support-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 80px 0 60px;
}
.support-step {
  text-align: center;
  padding: 28px 18px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 162, 76, 0.25);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.support-step:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-gold);
}
.support-step-num {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.support-step-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1;
}
.support-step h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}
.support-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.support-note {
  font-size: 1.1rem;
  line-height: 1.8;
}
.support-note strong { color: var(--color-accent-gold); }

/* ハイライト枠（03 許諾代行 / 07 寄贈 / 08 販売・広報） */
.support-step-highlight {
  background: linear-gradient(160deg, rgba(255, 210, 63, 0.18) 0%, rgba(255, 210, 63, 0.06) 100%);
  border-color: var(--color-accent-yellow);
  box-shadow: 0 0 0 1px var(--color-accent-yellow), 0 12px 32px rgba(255, 210, 63, 0.22);
}
.support-step-highlight:hover {
  border-color: var(--color-accent-yellow);
  box-shadow: 0 0 0 1px var(--color-accent-yellow), 0 18px 40px rgba(255, 210, 63, 0.32);
}
.support-step-highlight .support-step-num { color: var(--color-accent-yellow); }
.support-step-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--color-accent-yellow);
  color: var(--color-primary-navy);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 210, 63, 0.45);
}
@media (max-width: 1023px) {
  .support-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .support-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 09.5: 制作実績
============================================================ */
.sec-record {
  padding: 120px 0;
  background: var(--color-primary-navy);
  color: white;
}
.record-header { margin-bottom: 60px; }
.record-card {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-accent-gold);
  border-radius: 24px;
}
.record-mark {
  flex-shrink: 0;
  line-height: 1;
}
.record-mark img {
  width: 180px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.record-body h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-accent-gold);
  margin-bottom: 16px;
  line-height: 1.4;
}
.record-body p {
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}
.record-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(212, 162, 76, 0.4);
  font-weight: 700;
  color: var(--color-accent-gold) !important;
}
.record-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 1.5px solid var(--color-accent-gold);
  border-radius: 999px;
  color: var(--color-accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.record-link:hover {
  background: var(--color-accent-gold);
  color: var(--color-primary-navy);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .sec-record { padding: 80px 0; }
  .record-card {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }
  .record-mark img { width: 150px; }
  .record-body h3 { font-size: 1.35rem; }
}

/* ============================================================
   Section 09.7: FAQ
============================================================ */
.sec-faq {
  padding: 100px 0;
  background: var(--color-bg-cream);
}
.faq-header { margin-bottom: 50px; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-main);
  position: relative;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-primary-orange);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--color-primary-orange); }
.faq-item p {
  padding: 0 24px 24px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

/* ============================================================
   Section 10: Final CTA
============================================================ */
.sec-cta {
  padding: 120px 0;
  background: linear-gradient(180deg, white 0%, var(--color-bg-cream) 100%);
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 80px;
}
.accent-orange { color: var(--color-primary-orange); }
.cta-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-block {
  padding: 48px 32px;
  background: white;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.cta-block:hover { transform: translateY(-8px); }
.cta-b2c { border-top: 4px solid var(--color-primary-orange); }
.cta-b2g { border-top: 4px solid var(--color-primary-navy); }
.cta-icon { font-size: 3.5rem; margin-bottom: 24px; }
.cta-block h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
}
.cta-block p {
  color: var(--color-text-sub);
  line-height: 1.7;
  margin-bottom: 32px;
}
.btn-cta-final {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-cta-final-orange {
  background: var(--color-primary-orange);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}
.btn-cta-final-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}
.btn-cta-final-navy {
  background: var(--color-primary-navy);
  color: white;
  box-shadow: 0 8px 24px rgba(27, 58, 92, 0.3);
}
.btn-cta-final-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 58, 92, 0.4);
}
@media (max-width: 767px) {
  .cta-double { grid-template-columns: 1fr; }
}

/* ============================================================
   同業者向け制作支援
============================================================ */
.sec-peer {
  padding: 100px 0;
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(255, 107, 53, 0.18), transparent 60%),
    linear-gradient(160deg, var(--color-primary-navy) 0%, #122a44 100%);
  color: #fff;
}
.peer-eyebrow {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-accent-gold);
  margin-bottom: 16px;
}
.peer-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 24px;
}
.peer-lead {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 56px;
  max-width: 760px;
}
.peer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.peer-card {
  position: relative;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.peer-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-orange);
  background: rgba(255, 255, 255, 0.08);
}
.peer-num {
  display: block;
  font-family: var(--font-accent);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-primary-orange);
  margin-bottom: 16px;
}
.peer-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.peer-card p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}
.peer-cta-btn {
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .peer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .sec-peer { padding: 64px 0; }
  .peer-lead { margin-bottom: 36px; }
  .peer-grid { gap: 14px; margin-bottom: 40px; }
  .peer-card { padding: 24px 20px; }
}

/* ============================================================
   お問い合わせフォーム
============================================================ */
.sec-contact-form {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg-soft) 100%);
}
.contact-form-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-primary-navy);
  margin-bottom: 16px;
}
.contact-form-lead {
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 48px;
}
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 24px;
  border-top: 4px solid var(--color-primary-navy);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field {
  display: block;
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}
.form-label em {
  display: inline-block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  background: var(--color-accent-red);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-main);
  background: var(--color-bg-cream);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(42, 111, 184, 0.15);
  background: white;
}
.contact-form textarea { resize: vertical; }
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 8px;
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status {
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}
.form-status.is-success { color: var(--color-primary-blue); }
.form-status.is-error { color: var(--color-accent-red); }
.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-sub);
}
@media (max-width: 767px) {
  .sec-contact-form { padding: 64px 0; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   フッター
============================================================ */
.site-footer {
  background: var(--color-primary-navy);
  color: white;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-company {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--color-accent-gold);
  letter-spacing: 0.02em;
  text-transform: none;
}
.footer-company-jp {
  font-family: var(--font-body);
  font-size: 0.5em;
  margin-left: 0.4em;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.footer-detail {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-detail a {
  color: white;
  transition: color 0.3s;
}
.footer-detail a:hover { color: var(--color-accent-gold); }
.footer-area {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.footer-tagline-main {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--color-accent-gold);
}
.footer-bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-credit {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-credit a {
  color: var(--color-accent-gold);
  font-weight: 700;
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
