/* 
  超うまログ (Umalog) 公式Webサイト スタイルシート
  デザインシステム: プレミアム・ダークグリーン＆ゴールド
*/

/* --- Google Fonts 読み込み --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* --- 変数定義 --- */
:root {
  --font-en: 'Outfit', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;

  /* 配色 */
  --bg-primary: #060d0a;          /* 極めて深い緑がかった黒 */
  --bg-secondary: #0b1a14;        /* 深いダークグリーン */
  --bg-card: rgba(20, 42, 33, 0.45); /* グラスモルフィズム用カード背景 */
  --bg-card-hover: rgba(25, 54, 42, 0.6);
  
  --color-accent-gold: #D4AF37;   /* メインゴールド */
  --color-accent-gold-light: #F3E5AB; /* ライトゴールド */
  --color-accent-green: #10b981;  /* エメラルドグリーン */
  --color-accent-green-light: #34d399;
  
  --text-primary: #ffffff;        /* 主要テキスト */
  --text-secondary: #a3b8b0;      /* 副次テキスト */
  --text-muted: #6b827a;          /* 非活性・補助テキスト */
  
  --border-color: rgba(212, 175, 55, 0.15); /* ゴールドの薄い枠線 */
  --border-color-hover: rgba(212, 175, 55, 0.35);
  
  /* グラデーション */
  --grad-gold: linear-gradient(135deg, #D4AF37 0%, #aa820a 100%);
  --grad-green: linear-gradient(135deg, #10b981 0%, #047857 100%);
  --grad-dark: linear-gradient(180deg, #0b1a14 0%, #060d0a 100%);
  --grad-premium: linear-gradient(135deg, #D4AF37 0%, #10b981 100%);
  
  /* シャドウ・エフェクト */
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.15);
  --shadow-gold-heavy: 0 12px 40px rgba(212, 175, 55, 0.3);
  --shadow-green: 0 8px 30px rgba(16, 185, 129, 0.15);
  --blur-glass: 12px;
  
  /* イージング・トランジション */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- 基本リセット & グローバルスタイル --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  background-image: radial-gradient(circle at 50% -20%, #143224 0%, var(--bg-primary) 70%);
  color: var(--text-primary);
  font-family: var(--font-jp);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* --- タイポグラフィ --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.font-en {
  font-family: var(--font-en);
}

.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-premium {
  background: var(--grad-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- コンテナレイアウト --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

/* --- ヘッダー (グラスモルフィズム) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(6, 13, 10, 0.7);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: rgba(6, 13, 10, 0.9);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-premium);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-primary);
  font-weight: 700;
}

/* アプリダウンロードボタン（ヘッダー内） */
.btn-header-download {
  background: var(--grad-gold);
  color: #000000;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-header-download:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-heavy);
}

/* モバイルメニューボタン */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.2rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(6, 13, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* --- ボタンコンポーネント --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: var(--grad-gold);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-heavy);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-accent-gold);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--grad-green);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

/* --- ヒーローセクション --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  color: var(--color-accent-gold-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .badge {
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-actions img {
  height: 3.5rem;
  transition: var(--transition-smooth);
}

.hero-actions img:hover {
  transform: scale(1.05);
}

/* アプリモックアップビジュアル */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  z-index: 2;
}

.mockup-phone {
  background: #000;
  border: 8px solid #1a1a1c;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  width: 100%;
  position: relative;
}

/* モックアップUIの中身（擬似画面） */
.mockup-screen {
  background-color: #0c0c0e;
  height: 100%;
  width: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: #fff;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-logo-area span {
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mockup-card {
  background: #142a21;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-card-title {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.8rem;
}

.mockup-badge-g1 {
  background: var(--color-accent-gold);
  color: #000;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
}

.mockup-card-profit {
  font-size: 1.2rem;
  font-weight: 900;
  color: #10b981;
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-list-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-mark {
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.65rem;
}

.mockup-tags {
  display: flex;
  gap: 0.3rem;
}

.mockup-tag {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-accent-gold-light);
  border: 0.5px solid rgba(212, 175, 55, 0.3);
  padding: 1px 6px;
  border-radius: 50px;
  font-size: 0.55rem;
}

/* ビジュアルの背景サークル */
.hero-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  top: -50px;
  right: -50px;
  border-radius: 50%;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

/* --- 特徴紹介セクション --- */
.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--color-accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-desc {
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--grad-gold);
  color: #000;
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 分析セクション (ホームページ) --- */
.analysis-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.analysis-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  text-align: left;
  margin-top: 2rem;
}

.analysis-feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .analysis-section-title {
    font-size: 1.65rem;
  }

  .analysis-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- アプリの機能詳細 (二段構成) --- */
.details-section {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.detail-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.detail-visual {
  background: radial-gradient(circle, rgba(20, 50, 36, 0.2) 0%, rgba(0, 0, 0, 0) 75%);
  padding: 2rem;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.detail-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.detail-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.detail-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.detail-feature-icon {
  color: var(--color-accent-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.detail-feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.detail-feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .detail-row, .detail-row.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .detail-row.reverse .detail-content {
    grid-row: 1;
  }
}

/* 擬似画面詳細2：スマート入力画面 */
.mockup-keyboard-screen {
  background: #0d0d0f;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.keyboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.keyboard-key {
  background: #1e1e24;
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--text-primary);
  border: 0.5px solid rgba(255,255,255,0.05);
}

.keyboard-key.accent {
  background: var(--color-accent-gold);
  color: #000;
}

/* 擬似画面詳細3：カレンダー＆収支 */
.mockup-calendar-screen {
  background: #0a0a0c;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-top: 0.75rem;
  text-align: center;
}

.calendar-header {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
}

.calendar-day.profit {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.calendar-day.loss {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.calendar-day-val {
  font-size: 0.5rem;
  font-weight: 700;
}

/* --- 有料プラン比較セクション --- */
.pricing-section {
  position: relative;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 840px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.premium {
  border-color: var(--color-accent-gold);
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12) 0%, rgba(20, 42, 33, 0.6) 80%);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.08);
}

.pricing-card.premium::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--grad-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin-top: 1rem;
}

.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-en);
}

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-feature svg {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.pricing-feature.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-feature.disabled svg {
  color: var(--text-muted);
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* --- アピール・ダウンロード誘導 (CTA) --- */
.cta-section {
  position: relative;
  text-align: center;
}

.cta-box {
  background: radial-gradient(circle at center, rgba(20, 50, 36, 0.6) 0%, rgba(6, 13, 10, 0.95) 100%);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.cta-buttons img {
  height: 3.8rem;
  transition: var(--transition-smooth);
}

.cta-buttons img:hover {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* --- フッター --- */
.footer {
  background-color: #030705;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-logo-img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 6px;
}

.footer-desc {
  max-width: 320px;
  line-height: 1.6;
}

.footer-links-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--color-accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- プライバシーポリシーページレイアウト --- */
.policy-hero {
  padding: 10rem 0 4rem 0;
  background: radial-gradient(circle at top, rgba(20, 50, 36, 0.3) 0%, rgba(6, 13, 10, 0) 60%);
  text-align: center;
}

.policy-hero h1 {
  font-size: 2.75rem;
}

@media (max-width: 576px) {
  .policy-hero {
    padding: 8rem 0 2.5rem 0;
  }

  .policy-hero h1 {
    font-size: 1.75rem;
  }

  .policy-hero p {
    font-size: 0.9rem;
  }
}

.policy-body {
  padding-bottom: 8rem;
}

.policy-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.policy-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .policy-section h2 {
    font-size: 1.15rem;
    gap: 0.5rem;
  }
}

.policy-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.5rem;
  background: var(--grad-gold);
  border-radius: 2px;
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-section ul {
  list-style: none;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

.policy-section li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.policy-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-gold);
  font-weight: bold;
}

.policy-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  -webkit-overflow-scrolling: touch;
}

.policy-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.policy-table th, .policy-table td {
  padding: 1rem 1.25rem;
}

.policy-table th {
  background-color: rgba(212, 175, 55, 0.08);
  color: var(--text-primary);
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.policy-table td {
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.policy-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 576px) {
  .policy-table {
    font-size: 0.85rem;
    min-width: 480px;
  }

  .policy-table th, .policy-table td {
    padding: 0.75rem 0.85rem;
  }

  .policy-section p {
    font-size: 0.92rem;
  }
}

@media (max-width: 768px) {
  .policy-card {
    padding: 2.5rem 1.5rem;
  }
}

/* --- お問い合わせページレイアウト --- */
.contact-hero {
  padding: 10rem 0 4rem 0;
  background: radial-gradient(circle at top, rgba(20, 50, 36, 0.3) 0%, rgba(6, 13, 10, 0) 60%);
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.75rem;
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 8rem 0 2.5rem 0;
  }

  .contact-hero h1 {
    font-size: 1.75rem;
  }
}

.contact-body {
  padding-bottom: 8rem;
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-card h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.8;
}

.contact-list {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 3rem auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-num {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-accent-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-action-btn {
  width: 100%;
  max-width: 360px;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-list {
    padding: 1.5rem 1rem;
  }
}

/* --- スクロールアニメーション用クラス --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
