/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-brown: #8B4513;
  --secondary-gold: #B8860B;  /* ダークゴールドベージュに変更 */
  --bg-warm: #FFF8F0;
  --text-dark: #333333;
  --accent-red: #DC143C;
  --dark-brown: #5C3317;
  --light-gold: #FFF9E6;
  --gray: #6B6B6B;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: var(--text-dark);
  background-color: var(--bg-warm);
  line-height: 1.8;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

h1, h2 {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

/* Elegant h3 styling */
h3 {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  position: relative;
  color: var(--primary-brown);
}

/* Default h3 underline */
h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--secondary-gold) 0%, transparent 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-brown);
  position: relative;
  padding-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--primary-brown);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.section-lead {
  text-align: left;
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 3rem;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 社会人女性セクションの特別なスタイル */
.social-women .section-lead {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: var(--primary-brown);
  text-align: center;
  position: relative;
  padding: 2rem 0;
}

/* 線を削除 - section-titleで既に線が表示されているため */
/* .social-women .section-lead:first-of-type::after {
  削除
} */

.emphasis-text {
  color: var(--primary-brown);
  font-weight: 400;
  font-size: 1.05em;
  border-bottom: 1px solid var(--primary-brown);
  padding-bottom: 2px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transform-origin: center;
}

.loading-screen.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.loading-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.loading-star {
  width: 60px;
  height: 60px;
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
  animation: rotate 3s linear infinite, pulse 2s ease-in-out infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.loading-text {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--secondary-gold);
  letter-spacing: 0.2em;
  font-family: 'Noto Serif JP', serif;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Main content wrapper for fade-in effect */
.hero, .section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.content-loaded .hero,
body.content-loaded .section {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/header.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-image {
  display: none; /* 一旦非表示にして背景画像で対応 */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(92, 51, 23, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.8rem 2rem;
  border: 1px solid var(--white);
  border-radius: 0;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5); }
}

.hero-title {
  margin-bottom: 2rem;
}

.main-title {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sub-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-feature {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
}

.cta-button {
  display: inline-block;
  background: var(--primary-brown);
  color: var(--white);
  padding: 1.2rem 3.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.15em;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--primary-brown);
}

.cta-button:hover {
  background: var(--white);
  color: var(--primary-brown);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.large {
  padding: 1.2rem 4rem;
  font-size: 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  margin: 10px auto;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Social Women Section */
.social-women {
  background: var(--white);
}

.social-women-image {
  margin: 2rem 0;
  text-align: center;
}

.section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.social-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.social-point {
  text-align: center;
  padding: 2rem;
}

.social-point h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-brown);
  text-align: center;
  padding-bottom: 1rem;
}

.social-point h3::after {
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  background: var(--secondary-gold);
}

.social-point p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Empathy Section */
.empathy {
  background: linear-gradient(180deg, var(--light-gold) 0%, var(--white) 100%);
}

.experience-list {
  max-width: 800px;
  margin: 0 auto;
}

.experience-item {
  background: var(--white);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
  transition: var(--transition);
}

.experience-item p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-brown);
  text-align: center;
}

.experience-item.bad {
  background: rgba(220, 20, 60, 0.05);
  border-left: 4px solid var(--accent-red);
  padding-left: calc(2rem - 4px);
}

.experience-item.bad span {
  color: var(--accent-red);
  font-weight: 400;
}

.empathy-message {
  text-align: left;
  font-size: 1.1rem;
  line-height: 2;
  margin-top: 2rem;
  color: var(--text-dark);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.empathy-message .highlight {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-brown);
  margin-top: 1rem;
}

/* Law Change Alert Section */
.law-change {
  background: var(--white);
  padding: 60px 0;
}

.alert-box {
  background: rgba(220, 20, 60, 0.05);
  border: 2px solid var(--accent-red);
  border-radius: 15px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.alert-title {
  font-size: 2rem;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
  text-align: center;
}

.alert-date {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  text-align: center;
}

.alert-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.alert-content strong {
  color: var(--accent-red);
}

.alert-emphasis {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-top: 1.5rem;
}

/* Solution Section */
.solution {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gold) 100%);
}

.solution-content {
  max-width: 800px;
  margin: 0 auto;
}

.solution-image {
  margin-bottom: 3rem;
  text-align: center;
}

.solution-image .premium-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.solution-points {
  margin-bottom: 3rem;
}

.solution-point {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
}

.solution-point .icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-gold);
  color: var(--primary-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.solution-point p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.solution-message {
  text-align: left;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--primary-brown);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* Three Reasons Section */
.three-reasons {
  background: var(--white);
}

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

.reason-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-gold), var(--primary-brown));
}

.reason-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-gold);
  color: var(--primary-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
}

.reason-title {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  color: var(--primary-brown);
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
  min-height: 4em; /* タイトルの高さを統一 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--secondary-gold);
}

.reason-points {
  list-style: none;
  flex-grow: 1; /* 残りのスペースを埋める */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.reason-points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.reason-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-gold);
  font-weight: 700;
}

.reason-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
}

.reason-image {
  margin: 1.5rem 0;
  text-align: center;
  height: 220px; /* 固定の高さを設定 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-image img {
  width: 100%;
  max-width: 300px;
  height: 200px; /* 画像の高さを統一 */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Shop Gacha Section */
.shop-gacha {
  background: linear-gradient(180deg, var(--light-gold) 0%, var(--white) 100%);
}

.gacha-image {
  margin-bottom: 2rem;
  text-align: center;
}

.gacha-content {
  max-width: 1000px;
  margin: 0 auto;
}

.gacha-lead {
  text-align: left;
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 3rem;
  color: var(--text-dark);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.gacha-bad,
.gacha-good {
  padding: 2.5rem;
  border-radius: 15px;
}

.gacha-bad {
  background: rgba(220, 20, 60, 0.05);
  border: 2px solid rgba(220, 20, 60, 0.3);
}

.gacha-good {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--secondary-gold);
}

.gacha-bad h3,
.gacha-good h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
}

.gacha-bad h3::after,
.gacha-good h3::after {
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
}

.gacha-bad h3 {
  color: var(--accent-red);
}

.gacha-bad h3::after {
  background: var(--accent-red);
}

.gacha-good h3 {
  color: var(--primary-brown);
}

.gacha-good h3::after {
  background: var(--secondary-gold);
}

.gacha-bad ul,
.gacha-good ul {
  list-style: none;
}

.gacha-bad li,
.gacha-good li {
  padding: 0.8rem 0;
  line-height: 1.6;
}

.gacha-bad li::before {
  content: '×';
  color: var(--accent-red);
  font-weight: 700;
  margin-right: 0.5rem;
}

.gacha-good li::before {
  content: '◎';
  color: var(--secondary-gold);
  font-weight: 700;
  margin-right: 0.5rem;
}

.gacha-conclusion {
  text-align: left;
  font-size: 1.3rem;
  line-height: 2;
  color: var(--primary-brown);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

/* Comparison Section */
.comparison {
  background: var(--white);
}

.comparison-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-column {
  padding: 2.5rem;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gray-box {
  background: #f5f5f5;
  border: 2px solid #ddd;
}

.gold-box {
  background: linear-gradient(135deg, var(--light-gold) 0%, #FFE4B5 100%);
  border: 2px solid var(--secondary-gold);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.comparison-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
}

.comparison-image {
  margin: 1.5rem 0;
  text-align: center;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-img {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gray-box .comparison-img {
  filter: brightness(0.7) contrast(0.9);
  opacity: 0.85;
}

.gold-box .comparison-img {
  filter: brightness(1.1) contrast(1.05);
}

.gray-box h3 {
  color: var(--gray);
}

.gray-box h3::after {
  background: #ccc;
}

.gold-box h3 {
  color: var(--primary-brown);
}

.gold-box h3::after {
  background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
}

.comparison-column ul {
  list-style: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.comparison-column li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-column li:last-child {
  border-bottom: none;
}

.gray-box li::before {
  content: '✗';
  color: #999;
  margin-right: 0.5rem;
}

.gold-box li::before {
  content: '✓';
  color: var(--secondary-gold);
  font-weight: 700;
  margin-right: 0.5rem;
}

.comparison-column .highlight-red {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(220, 20, 60, 0.05);
  padding: 0.3rem 0;
  margin-bottom: 0.5rem;
}

.comparison-column .highlight-gold {
  color: var(--primary-brown);
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(255, 215, 0, 0.2);
  padding: 0.3rem 0;
  margin-bottom: 0.5rem;
}

/* Welcome Section */
.welcome {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gold) 100%);
}

.welcome-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
}

.welcome-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.welcome-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.welcome-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-brown);
}

/* welcome-itemの下線を削除 */
.welcome-item h3::after {
  display: none;
}

.welcome-item p {
  color: var(--text-dark);
  line-height: 1.8;
}

.welcome-note {
  text-align: left;
  margin-top: 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--primary-brown);
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-image-header {
  margin-bottom: 3rem;
  text-align: center;
}

.welcome-header-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.lifestyle-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1000px;
}

.lifestyle-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.lifestyle-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Income Examples Section */
.income-examples {
  background: var(--light-gold);
}

.income-image-header {
  margin-bottom: 3rem;
  text-align: center;
}

.income-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.income-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
}

.income-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profile-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.income-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-brown);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.income-card h3::after {
  display: none;
}

.schedule {
  color: var(--gray);
  margin-bottom: 1rem;
}

.income {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.comment {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
}

.income-note {
  text-align: left;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--primary-brown);
  font-weight: 500;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Section */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-list {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  background: var(--white);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3rem;
  color: var(--secondary-gold);
  opacity: 0.5;
  font-family: serif;
}

.testimonial-header {
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-message {
  line-height: 1.8;
  color: var(--text-dark);
  padding-left: 2rem;
}

/* Flow Section */
.flow {
  background: linear-gradient(180deg, var(--light-gold) 0%, var(--white) 100%);
}

.flow-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.flow-step {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  position: relative;
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
}

.flow-step:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.flow-step.special {
  background: linear-gradient(135deg, var(--light-gold) 0%, #FFE4B5 100%);
  border: 2px solid var(--secondary-gold);
}

.step-number {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  width: 50px;
  height: 50px;
  background: var(--secondary-gold);
  color: var(--primary-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.flow-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-brown);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-left: 3rem;
}

.flow-step h3::after {
  display: none;
}

.flow-step p {
  color: var(--text-dark);
  line-height: 1.8;
  padding-left: 3rem;
}

.flow-connector {
  position: absolute;
  left: 15px;
  width: 2px;
  height: 30px;
  background: var(--secondary-gold);
  opacity: 0.5;
  margin: -15px 0;
}

.flow-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--gray);
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--light-gold);
  border-radius: 15px;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-brown);
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.faq-question::before {
  content: 'Q.';
  position: absolute;
  left: 0;
  color: var(--secondary-gold);
  font-weight: 700;
}

.faq-answer {
  line-height: 1.8;
  color: var(--text-dark);
  padding-left: 1.5rem;
}

/* Final Appeal Section */
.final-appeal {
  background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.final-appeal .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.final-appeal .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 400;
}

.final-appeal .section-title::after {
  background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
}

.appeal-message {
  max-width: 700px;
  margin: 3rem auto;
}

.appeal-message p {
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 400;
}

.final-message {
  max-width: 800px;
  margin: 3rem auto;
}

.final-message p {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.final-message .emphasis {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-message p {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.final-message .emphasis {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta {
  margin-top: 3rem;
}

.cta-subtext {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-note {
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.8;
}

/* Requirements Section */
.requirements {
  background: var(--white);
}

.requirements-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.requirement-column {
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
}

.welcome {
  background: var(--light-gold);
  border: 2px solid var(--secondary-gold);
}

.not-applicable {
  background: #f5f5f5;
  border: 2px solid #ddd;
}

.requirement-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: 0.8rem;
  position: relative;
}

.requirement-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
}

.welcome h3 {
  color: var(--primary-brown);
}

.welcome h3::after {
  background: var(--secondary-gold);
}

.not-applicable h3 {
  color: var(--gray);
}

.not-applicable h3::after {
  background: #ccc;
}

.requirement-column ul {
  list-style: none;
}

.requirement-column li {
  padding: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.8;
}

.requirement-column li::before {
  position: absolute;
  left: 0;
}

.welcome li::before {
  content: '✓';
  color: var(--secondary-gold);
  font-weight: 700;
}

.not-applicable li::before {
  content: '–';
  color: #999;
}

.requirements-note {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
}

/* Contact Section */
.contact {
  background: var(--light-gold);
  text-align: center;
}

.contact-lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-buttons {
  margin-bottom: 2rem;
}

.contact-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #00B900;
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 185, 0, 0.3);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 185, 0, 0.4);
}

.contact-note {
  color: var(--gray);
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: var(--white);
  text-align: center;
  padding: 40px 0;
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.3rem;
}

.footer-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Fixed CTA */
.fixed-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.fixed-cta-button {
  display: block;
  padding: 1rem 2rem;
  background: #00B900;
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 185, 0, 0.3);
  transition: var(--transition);
}

.fixed-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 185, 0, 0.4);
}

/* Trust Badge */
.trust-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--secondary-gold);
  color: var(--primary-brown);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
  z-index: 100;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Contact Info Styles */
.contact-info {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-align: center;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--secondary-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.shop-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.shop-location,
.shop-tel {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.shop-tel {
  font-weight: 700;
  color: var(--secondary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .income-cards {
    grid-template-columns: 1fr;
  }
  
  .social-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Loading screen should remain black on mobile */
  .loading-screen {
    background: #000 !important;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .sub-title {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-background {
    background-position: center center; /* モバイルでは中央に */
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* シンプルな黒の半透明オーバーレイ */
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.6); /* テキストエリアに背景追加 */
    padding: 2rem 1.5rem;
    border-radius: 10px;
    margin: 0 auto;
  }
  
  .alert-box {
    padding: 2rem 1.5rem;
  }
  
  .alert-content p {
    font-size: 1rem;
  }
  
  .solution-message,
  .gacha-lead,
  .gacha-conclusion,
  .empathy-message,
  .section-lead {
    padding: 0 1rem;
    text-align: left !important;
  }
  
  .comparison-content {
    grid-template-columns: 1fr;
  }
  
  .gacha-comparison {
    grid-template-columns: 1fr;
  }
  
  .requirements-columns {
    grid-template-columns: 1fr;
  }
  
  .welcome-list {
    grid-template-columns: 1fr;
  }
  
  .lifestyle-images {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .step-number {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
  }
  
  .flow-step h3,
  .flow-step p {
    padding-left: 0;
  }
  
  .flow-connector {
    display: none;
  }
  
  .fixed-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 15px;
  }
  
  .fixed-cta-button {
    white-space: nowrap;
  }
  
  /* モバイルでのテキスト左寄せ */
  .section p,
  .welcome-note,
  .income-note,
  .flow-note,
  div[style*="text-align: center"] p {
    text-align: left !important;
  }
  
  /* PC用の改行を非表示 */
  br.pc-only {
    display: none;
  }
}

/* PC用の改行を表示 */
@media (min-width: 769px) {
  br.pc-only {
    display: inline;
  }
}