/* ===================================================
   30周年3連勝・感謝キャンペーン LP - グーペ
   WordPress固定ページ用（#goope-lp-content スコープ）
   新聞広告デザイン踏襲: ゴールド × ネイビーブルー
   =================================================== */

/* --- CSS Variables (scoped) --- */
#goope-lp-content {
  /* Gold palette */
  --gold-dark: #9E7B2F;
  --gold: #C9A84C;
  --gold-light: #D4AF37;
  --gold-bright: #F5D060;
  --gold-pale: #FFE082;
  --gold-bg: #FFF8E1;

  /* Navy palette */
  --navy-dark: #0A1628;
  --navy: #0D1B3E;
  --navy-light: #1B2A4A;

  /* Brand */
  --blue-gmo: #0066CC;
  --blue-goope: #2196F3;

  /* CTA */
  --cta-primary: #E8380D;
  --cta-primary-hover: #CC2E08;
  --cta-glow: rgba(232, 56, 13, 0.3);

  /* Neutral */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --text-primary: #333333;
  --text-secondary: #666666;

  /* Spacing */
  --section-padding: 80px;
  --container-width: 1080px;

  /* Typography */
  --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.25);
}

/* --- Reset (scoped) --- */
#goope-lp-content *,
#goope-lp-content *::before,
#goope-lp-content *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#goope-lp-content {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

#goope-lp-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

#goope-lp-content a {
  color: inherit;
  text-decoration: none;
}

#goope-lp-content ul {
  list-style: none;
}

/* --- Utility --- */
#goope-lp-content .container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

#goope-lp-content .sp-only {
  display: none;
}

/* ===================================================
   Footer Group Banner (Moved from Header)
   =================================================== */
#goope-lp-content .footer-group-banner {
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  padding: 24px 0;
}

@media (min-width: 768px) {
  #goope-lp-content .footer-group-banner {
    font-size: 20px;
    padding: 32px 0;
  }
}

#goope-lp-content .footer-group-inner {
  text-align: center;
}

#goope-lp-content .footer-group-link {
  color: var(--gold-bright);
  transition: opacity 0.2s, color 0.2s;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

#goope-lp-content .footer-group-link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 12px;
  margin-bottom: 2px;
}

#goope-lp-content .footer-group-link:hover {
  opacity: 0.8;
  color: var(--gold-pale);
}

/* ===================================================
   Hero Section — 新聞広告風レイアウト
   =================================================== */
#goope-lp-content .hero {
  position: relative;
  background: linear-gradient(180deg,
    #8B6914 0%,
    #B8942A 10%,
    #C9A84C 25%,
    #D4B85C 40%,
    #F5D060 55%,
    #D4B85C 70%,
    #C9A84C 85%,
    #8B6914 100%
  );
  overflow: hidden;
  padding: 105px 0 0; /* 黄色いヘッダーの下に潜り込ませるための余白（金背景を広げる） */
}

/* ゴールド背景のシマー効果 */
#goope-lp-content .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.04) 75%,
    transparent 100%
  );
  animation: lp30-shimmer 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes lp30-shimmer {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}

/* --- タグライン（最上部）--- */
#goope-lp-content .hero-tagline {
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.2em;
  padding: 32px 20px 18px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

#goope-lp-content .hero-tagline::before,
#goope-lp-content .hero-tagline::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7));
  flex-shrink: 0;
}

#goope-lp-content .hero-tagline::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.7), transparent);
}

/* ===================================================
   メインビジュアル（新聞広告レイアウト）
   =================================================== */
#goope-lp-content .ad-visual {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 620px;
  z-index: 2;
}

/* --- 中央キャンペーンロゴ（最背面）--- */
#goope-lp-content .ad-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  z-index: 1;
  animation: lp30-fadeInScale 1s ease-out 0.2s both;
  width: 50%;
  max-width: 550px;
}

#goope-lp-content .ad-logo-oval {
  background: radial-gradient(
    ellipse,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.92) 45%,
    rgba(255,255,255,0.5) 70%,
    rgba(255,255,255,0) 100%
  );
  border-radius: 50%;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

#goope-lp-content .ad-logo-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ロゴフォールバック */
#goope-lp-content .ad-logo-fallback {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

#goope-lp-content .ad-logo-fallback .logo-30th {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold-dark);
  text-shadow: none;
}

#goope-lp-content .ad-logo-fallback .logo-30th small {
  font-size: 0.5em;
  vertical-align: super;
}

#goope-lp-content .ad-logo-fallback .logo-3wins {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  text-shadow: none;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

#goope-lp-content .ad-logo-fallback .logo-campaign {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  background: none;
  padding: 2px 12px;
  border: 2px solid var(--gold);
  border-radius: 4px;
}

#goope-lp-content .ad-logo-fallback .logo-gmo {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-gmo);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* --- 陸上部ランナー7名（上部横一列・前面）--- */
#goope-lp-content .ad-runners {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  position: relative;
  z-index: 3;
  padding: 0 80px;
  height: 200px;
  animation: lp30-fadeInUp 0.8s ease-out 0.4s both;
}

#goope-lp-content .runner {
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.2));
}

/* 新聞広告風: 中央のランナーが少し大きく、端に行くほど小さい */
#goope-lp-content .runner-1 { height: 145px; margin-right: -12px; z-index: 1; }
#goope-lp-content .runner-2 { height: 160px; margin-right: -10px; z-index: 2; }
#goope-lp-content .runner-3 { height: 175px; margin-right: -14px; z-index: 3; }
#goope-lp-content .runner-4 { height: 195px; margin-right: -14px; z-index: 7; }
#goope-lp-content .runner-5 { height: 170px; margin-right: -12px; z-index: 4; }
#goope-lp-content .runner-6 { height: 157px; margin-right: -10px; z-index: 5; }
#goope-lp-content .runner-7 { height: 150px; z-index: 6; }

#goope-lp-content .runner--placeholder {
  width: 60px;
  background: linear-gradient(180deg, rgba(212,175,55,0.1), transparent);
  border-radius: 8px;
}

/* --- 脇元華選手（左下・前面）--- */
#goope-lp-content .ad-athlete-left {
  position: absolute;
  bottom: 0;
  left: 11%;
  z-index: 4;
  width: 18%;
  max-width: 210px;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 88%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 88%);
  animation: lp30-fadeInUp 0.8s ease-out 0.6s both;
}

#goope-lp-content .ad-athlete-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(3px 4px 10px rgba(0,0,0,0.25));
}

#goope-lp-content .ad-athlete-left img.fallback-photo {
  border-radius: 12px;
  object-fit: cover;
  max-height: 380px;
}

/* --- ラグビー部（右下・前面）--- */
#goope-lp-content .ad-athlete-right {
  position: absolute;
  bottom: 0;
  right: 8%;
  z-index: 4;
  width: 24%;
  max-width: 280px;
  animation: lp30-fadeInUp 0.8s ease-out 0.8s both;
}

#goope-lp-content .ad-athlete-right img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(3px 4px 10px rgba(0,0,0,0.25));
}

/* ===================================================
   3つの勝利（下部3カラム）
   =================================================== */
#goope-lp-content .ad-results {
  background: var(--white);
  position: relative;
  z-index: 3;
}

#goope-lp-content .ad-results-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#goope-lp-content .ad-result-item {
  text-align: center;
  padding: 32px 20px 28px;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

#goope-lp-content .ad-result-item:last-child {
  border-right: none;
}

#goope-lp-content .ad-result-affiliation {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

#goope-lp-content .ad-result-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: auto; /* 余白を吸収 */
}

#goope-lp-content .ad-result-name.name-vertical {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px; /* 氏名の間のスペースに相当 */
  letter-spacing: 0.1em;
}

#goope-lp-content .ad-result-name.name-rugby {
  font-size: 24px; /* 長い名称のため少し小さく */
}

#goope-lp-content .ad-result-name small {
  font-size: 0.5em; /* 14px */
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 4px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(2px);
}

#goope-lp-content .ad-result-achievement-wrapper {
  position: relative;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 16px;
}

#goope-lp-content .ad-result-sub {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0;
  margin-bottom: 4px;
  text-align: center;
}

#goope-lp-content .ad-result-achievement {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif; /* 明朝体に変更 */
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.15em;
  margin: 0;
}

#goope-lp-content .ad-result-event {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 4px;
}

#goope-lp-content .ad-result-date {
  font-size: 11px;
  color: var(--gray-600);
}

/* ===================================================
   オファーセクション（0円訴求 + CTA）
   =================================================== */
#goope-lp-content .offer-section {
  padding: 56px 0 60px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}

#goope-lp-content .offer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(245, 208, 96, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(245, 208, 96, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

#goope-lp-content .offer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

#goope-lp-content .offer-section .offer-service {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}

#goope-lp-content .offer-section .offer-service strong {
  color: var(--white);
  font-size: 20px;
}

#goope-lp-content .offer-section .offer-label {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

#goope-lp-content .offer-section .offer-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

#goope-lp-content .offer-section .price-original {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

#goope-lp-content .offer-section .price-original-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

#goope-lp-content .offer-section .price-original-amount {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

#goope-lp-content .offer-section .price-original-amount small {
  font-size: 0.6em;
}

#goope-lp-content .offer-section .price-strike {
  position: absolute;
  top: 55%;
  left: -5%;
  width: 110%;
  height: 3px;
  background: var(--cta-primary);
  transform: rotate(-8deg);
}

#goope-lp-content .offer-section .price-arrow {
  color: var(--gold-bright);
  font-size: 22px;
}

#goope-lp-content .offer-section .price-free {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

#goope-lp-content .offer-section .price-free-num {
  font-size: 96px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(245, 208, 96, 0.4);
}

#goope-lp-content .offer-section .price-free-yen {
  font-size: 40px;
  font-weight: 900;
  color: var(--gold-bright);
}

/* キャンペーン期間 */
#goope-lp-content .offer-period {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

#goope-lp-content .period-badge {
  display: inline-block;
  background: var(--cta-primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

#goope-lp-content .period-dates {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

#goope-lp-content .period-dates strong {
  font-size: 1.2em;
  color: var(--gold-bright);
}

/* CTA ボタン */
#goope-lp-content .offer-cta {
  text-align: center;
}

#goope-lp-content .cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

#goope-lp-content .cta-button--primary {
  background: linear-gradient(180deg, #FF5722 0%, var(--cta-primary) 100%);
  color: var(--white);
  padding: 18px 48px;
  font-size: 18px;
  box-shadow: 0 4px 16px var(--cta-glow), 0 2px 4px rgba(0,0,0,0.1);
  min-width: 300px;
  animation: lp30-pulse-cta 2s ease-in-out infinite;
}

#goope-lp-content .cta-button--primary:hover {
  background: linear-gradient(180deg, #FF6D3A 0%, #E84315 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--cta-glow), 0 4px 8px rgba(0,0,0,0.15);
}

#goope-lp-content .cta-button--large {
  padding: 22px 56px;
  font-size: 20px;
  min-width: 340px;
}

@keyframes lp30-pulse-cta {
  0%, 100% { box-shadow: 0 4px 16px rgba(232, 56, 13, 0.3), 0 2px 4px rgba(0,0,0,0.1); }
  50% { box-shadow: 0 4px 24px rgba(232, 56, 13, 0.5), 0 2px 4px rgba(0,0,0,0.1); }
}

#goope-lp-content .cta-button-main {
  display: block;
  font-size: inherit;
}

#goope-lp-content .cta-button-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}

/* 紙吹雪 */
#goope-lp-content .confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

#goope-lp-content .confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0.35;
  animation: lp30-confetti-fall linear infinite;
}

#goope-lp-content .confetti-1 { left: 5%; width: 7px; height: 7px; background: var(--gold-bright); animation-duration: 9s; animation-delay: 0s; border-radius: 50%; }
#goope-lp-content .confetti-2 { left: 15%; width: 10px; height: 5px; background: var(--white); animation-duration: 11s; animation-delay: 1s; }
#goope-lp-content .confetti-3 { left: 25%; width: 5px; height: 10px; background: var(--gold-pale); animation-duration: 8.5s; animation-delay: 2s; border-radius: 2px; }
#goope-lp-content .confetti-4 { left: 35%; width: 8px; height: 8px; background: var(--gold-pale); animation-duration: 10s; animation-delay: 0.5s; border-radius: 50%; }
#goope-lp-content .confetti-5 { left: 45%; width: 6px; height: 12px; background: var(--white); animation-duration: 12s; animation-delay: 1.5s; }
#goope-lp-content .confetti-6 { left: 55%; width: 12px; height: 6px; background: var(--gold-bright); animation-duration: 9.5s; animation-delay: 2.5s; border-radius: 2px; }
#goope-lp-content .confetti-7 { left: 65%; width: 8px; height: 8px; background: var(--gold-pale); animation-duration: 10.5s; animation-delay: 1.2s; border-radius: 50%; }
#goope-lp-content .confetti-8 { left: 75%; width: 5px; height: 8px; background: var(--gold-pale); animation-duration: 9s; animation-delay: 3s; }
#goope-lp-content .confetti-9 { left: 85%; width: 10px; height: 6px; background: var(--white); animation-duration: 10s; animation-delay: 0.5s; border-radius: 2px; }
#goope-lp-content .confetti-10 { left: 92%; width: 7px; height: 7px; background: var(--gold-bright); animation-duration: 11s; animation-delay: 1.8s; border-radius: 50%; }
#goope-lp-content .confetti-11 { left: 10%; width: 8px; height: 5px; background: var(--gold); animation-duration: 10s; animation-delay: 3.5s; }
#goope-lp-content .confetti-12 { left: 50%; width: 6px; height: 10px; background: rgba(255,255,255,0.5); animation-duration: 9s; animation-delay: 3s; border-radius: 2px; }

@keyframes lp30-confetti-fall {
  0% { top: -5%; transform: translateX(0) rotate(0deg); opacity: 0.4; }
  25% { transform: translateX(15px) rotate(90deg); }
  50% { transform: translateX(-10px) rotate(180deg); opacity: 0.3; }
  75% { transform: translateX(18px) rotate(270deg); }
  100% { top: 105%; transform: translateX(-8px) rotate(360deg); opacity: 0; }
}

/* ===================================================
   「3」のモチーフセクション
   =================================================== */
#goope-lp-content .three-motif {
  padding: var(--section-padding) 0;
  background: var(--white);
}

#goope-lp-content .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 40px;
  line-height: 1.5;
}

#goope-lp-content .section-title--light {
  color: var(--white);
}

#goope-lp-content .three-highlight {
  color: var(--cta-primary);
  font-size: 1.2em;
}

#goope-lp-content .three-highlight-gold {
  color: var(--gold-bright);
  font-size: 1.2em;
}

#goope-lp-content .motif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#goope-lp-content .motif-card {
  background: var(--gold-bg);
  border: 2px solid var(--gold-pale);
  border-radius: 16px;
  padding: 32px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#goope-lp-content .motif-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

#goope-lp-content .motif-card--highlight {
  background: linear-gradient(135deg, var(--cta-primary), #FF5722);
  border-color: var(--cta-primary);
}

#goope-lp-content .motif-card--highlight .motif-number {
  color: var(--white);
}

#goope-lp-content .motif-card--highlight .motif-label {
  color: var(--white);
}

#goope-lp-content .motif-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

#goope-lp-content .motif-number small {
  font-size: 0.4em;
  vertical-align: baseline;
}

#goope-lp-content .motif-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
}

#goope-lp-content .motif-label strong {
  color: var(--cta-primary);
  font-size: 1.1em;
}

#goope-lp-content .motif-card--highlight .motif-label strong {
  color: var(--gold-bright);
}

/* ===================================================
   キャンペーン詳細
   =================================================== */
#goope-lp-content .campaign-detail {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

#goope-lp-content .detail-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

#goope-lp-content .detail-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 32px;
  text-align: center;
}

#goope-lp-content .detail-highlight {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 12px;
}

#goope-lp-content .detail-highlight strong {
  color: var(--gold-bright);
}

#goope-lp-content .detail-free {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

#goope-lp-content .detail-free-num {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}

#goope-lp-content .detail-free-yen {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-bright);
}

#goope-lp-content .detail-free-label {
  font-size: 18px;
  color: var(--gold-pale);
  margin-left: 4px;
}

#goope-lp-content .detail-card-body {
  padding: 32px;
}

#goope-lp-content .detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#goope-lp-content .detail-list-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

#goope-lp-content .detail-list-item:last-child {
  border-bottom: none;
}

#goope-lp-content .detail-list-item dt {
  flex: 0 0 140px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 2px;
}

#goope-lp-content .detail-list-item dd {
  flex: 1;
  font-size: 15px;
  color: var(--text-primary);
}

#goope-lp-content .detail-list-item dd strong {
  color: var(--cta-primary);
  font-size: 1.1em;
}

/* グーペ特徴 */
#goope-lp-content .features-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

#goope-lp-content .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#goope-lp-content .feature-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

#goope-lp-content .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

#goope-lp-content .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--blue-goope);
}

#goope-lp-content .feature-icon svg {
  width: 100%;
  height: 100%;
}

#goope-lp-content .feature-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* ===================================================
   ボトムCTA
   =================================================== */
#goope-lp-content .bottom-cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg,
    #4A3020 0%,
    #8B6914 25%,
    #C9A84C 50%,
    #F5D060 75%,
    #C9A84C 100%
  );
  position: relative;
  overflow: hidden;
}

#goope-lp-content .bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

#goope-lp-content .bottom-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

#goope-lp-content .bottom-cta-athlete {
  flex: 0 0 280px;
}

#goope-lp-content .bottom-cta-athlete img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 380px;
  width: 100%;
}

#goope-lp-content .bottom-cta-content {
  flex: 1;
  text-align: center;
}

#goope-lp-content .urgency-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 8px;
}

#goope-lp-content .urgency-icon {
  margin-right: 4px;
}

#goope-lp-content .urgency-deadline {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 8px;
}

#goope-lp-content .urgency-deadline strong {
  font-size: 1.2em;
  color: var(--gold-pale);
}

#goope-lp-content .urgency-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* ===================================================
   注意事項
   =================================================== */
#goope-lp-content .notes {
  padding: 48px 0;
  background: var(--gray-100);
}

#goope-lp-content .notes-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-300);
}

#goope-lp-content .notes-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 4px;
}

#goope-lp-content .notes-list li::before {
  content: '\203B';
  position: absolute;
  left: 0;
  color: var(--gray-600);
}

/* ===================================================
   ブリッジメッセージ
   =================================================== */
#goope-lp-content .bridge-message {
  background: linear-gradient(180deg, var(--white) 0%, var(--navy) 100%);
  padding: 48px 20px 40px;
  text-align: center;
}

#goope-lp-content .bridge-message .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#goope-lp-content .bridge-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.15em;
  line-height: 1.6;
}

#goope-lp-content .bridge-arrow {
  display: inline-block;
  font-size: 16px;
  color: var(--gold-bright);
  animation: lp30-bounce-arrow 2s ease-in-out infinite;
}

@keyframes lp30-bounce-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===================================================
   登場アニメーション
   =================================================== */
@keyframes lp30-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp30-fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -46%) scale(1);
  }
}

/* ===================================================
   Responsive Design
   =================================================== */

/* Tablet */
@media (max-width: 960px) {
  #goope-lp-content {
    --section-padding: 60px;
  }

  /* Hero */
  #goope-lp-content .hero-tagline {
    font-size: 17px;
  }

  #goope-lp-content .ad-visual {
    height: 480px;
  }

  #goope-lp-content .ad-runners {
    height: 220px;
    padding: 0 40px;
  }

  #goope-lp-content .runner-1 { height: 155px; }
  #goope-lp-content .runner-2 { height: 170px; }
  #goope-lp-content .runner-3 { height: 185px; }
  #goope-lp-content .runner-4 { height: 200px; }
  #goope-lp-content .runner-5 { height: 180px; }
  #goope-lp-content .runner-6 { height: 165px; }
  #goope-lp-content .runner-7 { height: 158px; }

  #goope-lp-content .ad-logo-center {
    width: 36%;
  }

  #goope-lp-content .ad-logo-oval {
    padding: 28px 20px;
  }

  #goope-lp-content .ad-logo-fallback .logo-3wins {
    font-size: 38px;
  }

  #goope-lp-content .ad-athlete-left {
    width: 17%;
  }

  #goope-lp-content .ad-athlete-right {
    width: 22%;
  }

  /* Results */
  #goope-lp-content .ad-result-name {
    font-size: 22px;
  }

  #goope-lp-content .ad-result-achievement {
    font-size: 26px;
  }

  /* Offer */
  #goope-lp-content .offer-section .price-free-num {
    font-size: 80px;
  }

  /* Motif */
  #goope-lp-content .motif-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bottom CTA */
  #goope-lp-content .bottom-cta-inner {
    flex-direction: column;
    gap: 32px;
  }

  #goope-lp-content .bottom-cta-athlete {
    flex: none;
    width: 50%;
    max-width: 280px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  #goope-lp-content {
    --section-padding: 48px;
  }

  #goope-lp-content .sp-only {
    display: inline;
  }

  /* Header */
  #goope-lp-content .header-top {
    font-size: 11px;
    padding: 4px 0;
  }

  #goope-lp-content .header-main-inner {
    flex-direction: column;
    gap: 6px;
  }

  #goope-lp-content .logo-text {
    font-size: 20px;
  }

  #goope-lp-content .header-badge {
    font-size: 12px;
  }

  /* Hero Tagline */
  #goope-lp-content .hero-tagline {
    font-size: 14px;
    padding: 20px 16px 12px;
    letter-spacing: 0.1em;
  }

  /* Ad Visual - スマホでは高さを縮小 */
  #goope-lp-content .ad-visual {
    height: 340px;
  }

  #goope-lp-content .ad-runners {
    height: 160px;
    padding: 0 10px;
  }

  #goope-lp-content .runner-1 { height: 100px; margin-right: -6px; }
  #goope-lp-content .runner-2 { height: 110px; margin-right: -5px; }
  #goope-lp-content .runner-3 { height: 120px; margin-right: -7px; }
  #goope-lp-content .runner-4 { height: 130px; margin-right: -5px; }
  #goope-lp-content .runner-5 { height: 118px; margin-right: -6px; }
  #goope-lp-content .runner-6 { height: 108px; margin-right: -5px; }
  #goope-lp-content .runner-7 { height: 102px; }

  #goope-lp-content .ad-logo-center {
    width: 40%;
    max-width: 180px;
  }

  #goope-lp-content .ad-logo-oval {
    padding: 20px 16px;
  }

  #goope-lp-content .ad-logo-fallback .logo-30th {
    font-size: 18px;
  }

  #goope-lp-content .ad-logo-fallback .logo-3wins {
    font-size: 28px;
  }

  #goope-lp-content .ad-logo-fallback .logo-campaign {
    font-size: 10px;
  }

  #goope-lp-content .ad-logo-fallback .logo-gmo {
    font-size: 14px;
  }

  #goope-lp-content .ad-athlete-left {
    width: 16%;
    left: 1%;
  }

  #goope-lp-content .ad-athlete-right {
    width: 22%;
    right: 1%;
  }

  /* Results */
  #goope-lp-content .ad-results-inner {
    grid-template-columns: 1fr;
  }

  #goope-lp-content .ad-result-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 16px;
  }

  #goope-lp-content .ad-result-item:last-child {
    border-bottom: none;
  }

  #goope-lp-content .ad-result-name {
    font-size: 24px;
  }

  #goope-lp-content .ad-result-achievement {
    font-size: 28px;
    margin-bottom: 8px;
  }

  /* Offer */
  #goope-lp-content .offer-section {
    padding: 40px 0 48px;
  }

  #goope-lp-content .offer-section .offer-label {
    font-size: 18px;
  }

  #goope-lp-content .offer-section .offer-price {
    flex-direction: column;
    gap: 8px;
  }

  #goope-lp-content .offer-section .price-arrow {
    transform: rotate(90deg);
    font-size: 18px;
  }

  #goope-lp-content .offer-section .price-free-num {
    font-size: 72px;
  }

  #goope-lp-content .offer-section .price-free-yen {
    font-size: 32px;
  }

  #goope-lp-content .cta-button--primary {
    min-width: 260px;
    padding: 16px 36px;
    font-size: 16px;
  }

  #goope-lp-content .cta-button--large {
    min-width: 280px;
    padding: 18px 40px;
    font-size: 18px;
  }

  /* Sections */
  #goope-lp-content .section-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  #goope-lp-content .motif-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #goope-lp-content .motif-card {
    padding: 24px 12px;
  }

  #goope-lp-content .motif-number {
    font-size: 36px;
  }

  #goope-lp-content .motif-label {
    font-size: 13px;
  }

  /* Detail */
  #goope-lp-content .detail-card-header {
    padding: 24px 20px;
  }

  #goope-lp-content .detail-free-num {
    font-size: 56px;
  }

  #goope-lp-content .detail-free-yen {
    font-size: 24px;
  }

  #goope-lp-content .detail-card-body {
    padding: 20px;
  }

  #goope-lp-content .detail-list-item {
    flex-direction: column;
    gap: 4px;
  }

  #goope-lp-content .detail-list-item dt {
    flex: none;
    font-size: 12px;
    color: var(--gold-dark);
  }

  #goope-lp-content .detail-list-item dd {
    font-size: 14px;
  }

  #goope-lp-content .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #goope-lp-content .features-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  #goope-lp-content .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    text-align: left;
  }

  #goope-lp-content .feature-icon {
    margin: 0;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  #goope-lp-content .feature-text {
    font-size: 14px;
  }

  /* Bottom CTA */
  #goope-lp-content .bottom-cta-athlete {
    width: 60%;
    max-width: 240px;
  }

  #goope-lp-content .urgency-text {
    font-size: 22px;
  }

  #goope-lp-content .urgency-deadline {
    font-size: 24px;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  #goope-lp-content .offer-section .price-free-num {
    font-size: 60px;
  }

  #goope-lp-content .motif-number {
    font-size: 30px;
  }

  #goope-lp-content .section-title {
    font-size: 20px;
  }

  #goope-lp-content .ad-visual {
    height: 280px;
  }

  #goope-lp-content .ad-runners {
    height: 130px;
  }

  #goope-lp-content .runner-1 { height: 80px; }
  #goope-lp-content .runner-2 { height: 88px; }
  #goope-lp-content .runner-3 { height: 96px; }
  #goope-lp-content .runner-4 { height: 105px; }
  #goope-lp-content .runner-5 { height: 94px; }
  #goope-lp-content .runner-6 { height: 86px; }
  #goope-lp-content .runner-7 { height: 82px; }

  #goope-lp-content .ad-logo-center {
    width: 38%;
    max-width: 150px;
  }
}

/* ===================================================
   Print
   =================================================== */
@media print {
  #goope-lp-content .confetti-container,
  #goope-lp-content .header-top {
    display: none;
  }

  #goope-lp-content .hero {
    background: #F5D060 !important;
  }

  #goope-lp-content .cta-button {
    border: 2px solid var(--cta-primary);
    box-shadow: none;
    animation: none;
  }
}
