/* =============================================
   Swan Pilates Studio FC - Landing Page Styles
   ============================================= */

/* CSS Variables */
:root {
  /* Brand Colors - Warm, sophisticated palette closer to HP */
  --bg: #faf8f6;
  --bg-alt: #f3ebe3;
  --bg-dark: #4a3f37;
  --accent: #b8a08a;
  --accent-dark: #8b7265;
  --accent-light: #d4c1ae;
  --accent-pink: #e0c4be;
  --accent-pink-dark: #c9a59e;
  --text: #3d3632;
  --text-light: #6b605a;
  --text-muted: #998e87;
  --white: #ffffff;
  --border: #e0d6cd;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-pink: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-pink-dark) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(61, 61, 61, 0.3) 0%, rgba(61, 61, 61, 0.6) 100%);

  /* Typography */
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;

  /* Layout */
  --container: 1240px;
  --header-height: 80px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: var(--accent-dark);
}

small {
  font-size: 0.75em;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Section */
.section {
  padding: 70px 0;
  overflow: hidden;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 169, 140, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 169, 140, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn svg {
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-chip {
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--text);
  border-radius: 20px;
  transition: var(--transition);
}

.nav-chip:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

.header-cta {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 29px; }

.hamburger.is-active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  padding: 12px 24px;
}

.mobile-nav a:hover {
  color: var(--accent-dark);
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 80%;
  max-width: 300px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-motion {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-pink);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  right: 10%;
  animation-delay: -7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--accent-light);
  bottom: 10%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 48px 24px 148px;
}

.hero-campaign-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.campaign-badge {
  background: var(--gradient-pink);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.campaign-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.hero-title {
  color: var(--white);
  margin-bottom: 48px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  opacity: 0.9;
}

.hero-title-main {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 2;
  margin-bottom: 8px;
}

.hero-title-catch {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  opacity: 0.9;
}

.hero-lead {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 40px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.hero-stat-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  flex: 1;
  max-width: 180px;
}

.hero-stat-box.hero-stat-highlight {
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  border: 2px solid #ffd700;
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1.2;
}

.stat-value small {
  font-size: 0.5em;
  font-weight: 400;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 4px;
  white-space: nowrap;
}

.hero-cta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 5;
}

.hero-cta-bar .container {
  max-width: 800px;
}

.hero-cta-lead {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.6;
}

.btn-pulse {
  animation: pulse-shadow 2s ease-in-out infinite;
  box-shadow: 0 6px 24px rgba(196, 169, 140, 0.4);
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 6px 24px rgba(196, 169, 140, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(196, 169, 140, 0.7); }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 12px;
  }

  .hero-stat-box {
    padding: 14px 16px;
    min-width: 100px;
    max-width: 140px;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 8px;
  }

  .hero-stat-box {
    padding: 12px 10px;
    min-width: 80px;
    max-width: 110px;
    border-radius: 8px;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }
}

/* Point Sections - 5 Key Selling Points */
.section-point {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-point-2 { background: var(--white); }
.section-point-3 { background: var(--bg-alt); }
.section-point-4 { background: var(--white); }
.section-point-5 { background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%); }

.section-point-1 .point-title,
.section-point-1 .point-lead,
.section-point-1 .point-list li { color: var(--white); }
.section-point-1 .point-list li i { color: #ffd700; }
.section-point-1 .point-highlight { color: #ffd700; }

.point-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.section-point-1 .point-badge {
  background: #ffd700;
  color: var(--accent-dark);
}

.point-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.point-content-reverse {
  direction: rtl;
}

.point-content-reverse > * {
  direction: ltr;
}

.point-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text);
}

.point-highlight {
  color: var(--accent-dark);
  font-size: 1.2em;
}

.point-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--text-light);
}

.point-list {
  list-style: none;
}

.point-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text);
}

.point-list li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.point-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.point-stat-big {
  background: linear-gradient(135deg, var(--white) 0%, #faf8f5 100%);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  min-width: 280px;
}

.section-point-1 .point-stat-big {
  background: rgba(255, 255, 255, 0.95);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}

.stat-unit {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 8px;
}

.stat-note {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.point-stat-text .stat-text-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}

.point-stat-text .stat-text-sub {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* Point Comparison */
.point-comparison {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.comparison-item {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.comparison-swan {
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  border: 2px solid #ffd700;
}

.comparison-other {
  background: var(--bg-alt);
  border: 2px solid var(--border);
}

.comparison-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.comparison-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.comparison-swan .comparison-value {
  color: var(--accent-dark);
}

.comparison-other .comparison-value {
  text-decoration: line-through;
  color: var(--text-light);
}

/* Point Metrics */
.point-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.metric-item {
  background: var(--white);
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.metric-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Point Problem Box */
.point-problem {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
}

.point-problem h4 {
  font-size: 0.875rem;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.point-problem p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Point Flow */
.point-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.flow-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.flow-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  margin-top: 4px;
}

.flow-arrow {
  color: var(--accent);
  font-size: 1.25rem;
}

/* Mid CTA */
.section-mid-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 60px 0;
}

.mid-cta-box {
  text-align: center;
  color: var(--white);
}

.mid-cta-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.mid-cta-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.mid-cta-box .btn {
  background: var(--white);
  color: var(--accent-dark);
}

.mid-cta-box .btn:hover {
  background: #fff9e6;
  transform: translateY(-2px);
}

.mid-cta-box .btn svg {
  stroke: var(--accent-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .point-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .point-content-reverse {
    direction: ltr;
  }

  .point-visual {
    order: -1;
  }

  .point-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section-point {
    padding: 60px 0;
  }

  .point-title {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .point-stat-big {
    padding: 32px;
    min-width: auto;
  }

  .point-comparison {
    flex-direction: column;
  }

  .point-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric-value {
    font-size: 1.25rem;
  }

  .flow-step {
    padding: 12px 16px;
  }

  .flow-num {
    font-size: 1.25rem;
  }

  .point-stat-text .stat-text-main {
    font-size: 2.5rem;
  }

  .point-stat-text .stat-text-sub {
    font-size: 1.75rem;
  }
}

/* About Section */
.section-about {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.about-image.image-gallery-grid {
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.about-lead {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Market Section */
.section-market {
  background: var(--bg-alt);
}

.market-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.market-chart {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.chart-bars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  height: 280px;
  margin-bottom: 20px;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.bar-fill {
  width: 100%;
  background: var(--gradient-pink);
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
  position: relative;
}

.bar-2028 {
  background: var(--gradient-primary);
}

.bar-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bar-label {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.chart-caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fact-list {
  margin-bottom: 32px;
}

.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.fact-icon {
  font-size: 1.25rem;
  color: var(--accent);
  width: 24px;
  text-align: center;
}

.fact-text {
  font-size: 0.9rem;
}

.market-reasons h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--accent-dark);
}

.market-reasons ul {
  padding-left: 20px;
}

.market-reasons li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.market-reasons li::before {
  content: '・';
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .market-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Strengths Section */
.section-strengths {
  background: var(--white);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.strength-card {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strength-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.strength-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

.strength-card:hover .strength-image img {
  transform: scale(1.05);
}

.strength-title {
  padding: 20px 20px 8px;
  font-size: 1rem;
  text-align: center;
  color: var(--accent-dark);
}

.strength-desc {
  padding: 0 20px 24px;
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
}

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

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

/* Brand Value Section */
.section-brand {
  background: var(--bg-alt);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.brand-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.brand-card h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.brand-card ul {
  text-align: left;
}

.brand-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.brand-card li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.brand-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

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

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1;
}

.stat-number small {
  font-size: 0.4em;
}

.stat-desc {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 8px;
}

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

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

  .brand-stats {
    gap: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

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

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.reason-card {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

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

.reason-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 1;
}

.reason-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.reason-title {
  padding: 16px 16px 8px;
  font-size: 1rem;
  text-align: center;
  color: var(--accent-dark);
}

.reason-highlight {
  text-align: center;
  padding: 0 16px 12px;
}

.highlight-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.highlight-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.reason-list {
  padding: 0 16px 20px;
}

.reason-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.reason-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}

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

@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

/* Comparison Section */
.section-comparison {
  background: var(--bg-alt);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 28px 36px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 1.15rem;
}

.comparison-table th {
  background: var(--bg);
  font-weight: 600;
  font-size: 1.3rem;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: var(--bg);
}

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

.check-icon {
  color: var(--accent-dark);
  font-size: 1.25rem;
}

.caution-icon {
  color: #e6a700;
  font-size: 1.25rem;
}

.ng-icon {
  color: #d4655a;
  font-size: 1.25rem;
}

/* Target Audience Section */
.section-target {
  background: var(--white);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.target-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.target-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.target-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.target-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.target-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

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

/* Training Section */
.section-training {
  background: var(--white);
}

.training-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.training-step {
  background: var(--bg);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 12px;
}

.training-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.training-step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.training-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--accent);
  padding-top: 50px;
}

.training-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.training-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.feature-check {
  color: var(--accent-dark);
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .training-arrow {
    display: none;
  }

  .training-step {
    min-width: 140px;
  }
}

/* Financials Section */
.section-financials {
  background: var(--bg-alt);
}

.financial-models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.financial-model-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.financial-model-card.featured {
  border: 2px solid var(--accent);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.model-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.model-desc {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.model-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 8px;
}

.metric.highlight {
  background: var(--accent-pink);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.metric-value small {
  font-size: 0.6em;
}

.model-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.fc-costs {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fc-costs h3 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--accent-dark);
}

.costs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cost-item {
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
}

.cost-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.cost-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.cost-value small {
  font-size: 0.6em;
  display: block;
  color: var(--text-muted);
}

.costs-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
}

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

  .costs-grid {
    grid-template-columns: 1fr;
  }
}

/* Process Section */
.section-process {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.process-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.process-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.process-content .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.process-steps {
  counter-reset: step;
}

.process-steps li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.process-steps li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.step-time {
  flex-shrink: 0;
  width: 80px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
}

.step-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.process-note {
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--accent-pink);
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
}

.process-note strong {
  font-size: 1.25rem;
}

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

  .process-image {
    position: relative;
    top: 0;
  }
}

/* Stores Section */
.section-stores {
  background: var(--bg-alt);
}

.stores-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-year {
  margin-bottom: 32px;
}

.timeline-year:last-child {
  margin-bottom: 0;
}

.year {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 20px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.timeline-items li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.timeline-items li:last-child {
  border-bottom: none;
}

.month {
  flex-shrink: 0;
  width: 50px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Target Section */
.section-target {
  background: var(--white);
}

.target-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.target-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  padding: 20px 24px;
  border-radius: 12px;
}

.target-check {
  font-size: 1.25rem;
  color: var(--accent-dark);
}

.target-text {
  font-size: 1rem;
}

.target-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .target-list {
    grid-template-columns: 1fr;
  }
}


/* Bottom CTA Section */
.section-bottom-cta {
  background: var(--bg-dark);
  padding: 80px 0;
}

.cta-box {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 32px;
  color: var(--text);
}

.sp-only {
  display: none;
}

.cta-checklist {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 32px;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.cta-checklist li i {
  color: var(--accent-dark);
  font-size: 1rem;
}

@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

/* Company Section */
.section-company {
  background: var(--white);
}

.company-info {
  max-width: 600px;
  margin: 0 auto;
}

.company-list {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
}

.company-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.company-row:last-child {
  border-bottom: none;
}

.company-row dt {
  flex-shrink: 0;
  width: 140px;
  padding: 20px 24px;
  background: var(--bg-alt);
  font-weight: 500;
  font-size: 0.9rem;
}

.company-row dd {
  flex: 1;
  padding: 20px 24px;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .company-row {
    flex-direction: column;
  }

  .company-row dt {
    width: 100%;
    padding: 16px 20px 8px;
  }

  .company-row dd {
    padding: 8px 20px 16px;
  }
}

/* Contact Section */
.section-contact {
  background: var(--bg-alt);
}

.section-contact .section-title {
  color: var(--accent-dark);
}

.contact-easy-note {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 50px;
  margin-top: 16px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-fieldset {
  border: none;
  margin-bottom: 32px;
}

.contact-fieldset:last-of-type {
  margin-bottom: 0;
}

.contact-fieldset legend {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.option-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.option-pill {
  display: block;
  cursor: pointer;
}

.option-pill input {
  display: none;
}

.option-pill span {
  display: block;
  padding: 12px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.option-pill input:checked + span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.option-pill:hover span {
  border-color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.required {
  color: #d4655a;
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 169, 140, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 32px;
}

.form-reassurance {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .contact-form {
    padding: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-easy-note {
    font-size: 0.8rem;
    padding: 5px 16px;
  }

  .form-reassurance {
    font-size: 0.75rem;
  }

  .section-contact .section-title {
    font-size: 1.35rem;
  }
}

/* Footer */
.site-footer {
  background: #edd3c5;
  color: var(--accent-dark);
  padding: 60px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 160px;
  height: auto;
  opacity: 1;
}

.footer-company {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.1em;
}

.footer-address {
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 0;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.back-to-top:hover svg {
  stroke: var(--white);
}

.back-to-top svg {
  stroke: var(--accent-dark);
  transition: var(--transition);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  transform: translateX(120%);
  transition: var(--transition);
  cursor: pointer;
  max-width: 320px;
}

.toast.is-visible {
  transform: translateX(0);
}

.toast-success {
  border-left: 4px solid #5cb85c;
}

.toast-error {
  border-left: 4px solid #d4655a;
}

/* ========================================
   New Wireframe Sections
   ======================================== */

/* Hero Tag */
.hero-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 48px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 10px 28px;
  border-radius: 50px;
}

/* Hero Badges (3 circles) */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 650px;
  margin: 0 auto;
}

.hero-badge {
  width: 155px;
  height: 155px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--accent);
}

.badge-value {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}

.badge-value strong {
  font-size: 1.55em;
  color: var(--accent-dark);
  display: block;
  margin-top: 2px;
}

/* Hero Highlight Text */
.hero-highlight-text {
  color: #f0c87a;
  font-size: 1.2em;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 36px 20px 130px;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .hero-badges {
    gap: 16px;
  }

  .hero-badge {
    width: 120px;
    height: 120px;
  }

  .badge-value {
    font-size: 0.72rem;
  }

  .badge-value strong {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 24px 12px 120px;
  }

  .hero-title {
    margin-bottom: 16px;
  }

  .hero-title-main {
    font-size: 1.65rem;
  }

  .hero-title-main br {
    display: none;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    width: 95px;
    height: 95px;
    border-width: 1.5px;
  }

  .badge-value {
    font-size: 0.6rem;
  }

  .badge-value strong {
    font-size: 1.15em;
  }

  .hero-highlight-text {
    font-size: 1.05em;
  }

  .hero-cta-lead {
    font-size: 0.72rem;
  }

  .hero-tag {
    padding: 7px 18px;
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}

/* Swanとは Section */
.section-swan-about {
  background: var(--white);
  padding: 32px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image-side {
  border-radius: 16px;
  overflow: hidden;
}

.about-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.swan-about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--accent-dark);
}

.swan-about-content {
  max-width: 680px;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-light);
}

.swan-about-content p {
  margin-bottom: 16px;
}

.swan-about-content strong {
  color: var(--accent-dark);
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-side {
    order: -1;
    max-height: 300px;
  }
}

/* Section Title Center */
.section-title-center {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent-dark);
  position: relative;
  padding-bottom: 20px;
}

.section-title-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Section Lead */
.section-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 48px;
}

/* こんな方に選ばれています */
.section-target-simple {
  background: var(--bg-alt);
  padding: 50px 0;
}

.target-check-list {
  max-width: 600px;
  margin: 0 auto;
}

.target-check-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  padding: 20px 28px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.target-check-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.target-check-list li:last-child {
  margin-bottom: 0;
}

.target-check-list li i {
  width: 36px;
  height: 36px;
  background: var(--accent-dark);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 2px solid var(--accent-dark);
  box-shadow: 0 2px 10px rgba(139, 114, 101, 0.35), 0 0 0 3px var(--white), 0 0 0 5px var(--accent);
}

/* なぜ全店舗黒字化を実現できるのか */
.section-why {
  background: var(--white);
}

.section-why .section-lead {
  margin-bottom: 32px;
}

.why-points {
  max-width: 1000px;
  margin: 0 auto 60px;
}

.why-point-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-point-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-point-card:last-child {
  margin-bottom: 0;
}

.why-point-card.reverse {
  direction: rtl;
}

.why-point-card.reverse > * {
  direction: ltr;
}

.why-point-card-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-point-card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

.why-point-card-body {
  display: flex;
  flex-direction: column;
}

.why-point-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.why-point-card-body .why-point-num + .why-point-title {
  margin-bottom: 8px;
}

.why-point-num-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .why-point-card {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
    padding: 24px;
  }

  .why-point-card.reverse {
    direction: ltr;
  }

  .why-point-card-img {
    order: -1;
  }

  .why-point-card-img img {
    height: 240px;
  }
}

.why-point-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 0;
}

.why-point-catch {
  font-size: 1rem;
  color: var(--accent-dark);
  margin-bottom: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #fdf6ee, #fff8f0);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid rgba(184, 160, 138, 0.4);
  line-height: 1.7;
}

.why-point-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff9e6, #fff);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 16px 24px;
}

.why-stat {
  font-size: 1rem;
  color: var(--text);
}

.why-stat strong {
  font-size: 1.75rem;
  color: var(--accent-dark);
}

.why-stat-divider {
  color: var(--text-muted);
}

.why-point-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 4px;
}

.why-point-highlight-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 16px;
  display: inline-block;
  padding: 2px 6px;
  background: linear-gradient(transparent 60%, #f0d6a0 60%);
}

@media (max-width: 768px) {
  .why-point-title {
    font-size: 1.35rem;
  }

  .why-point-catch {
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .why-point-stats {
    padding: 12px 16px;
  }

  .why-stat strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .why-point {
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
  }

  .why-point-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .why-point-title {
    font-size: 1.15rem;
  }

  .why-point-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .why-point-num-title-row {
    gap: 8px;
  }

  .why-point-stats {
    padding: 10px 12px;
    gap: 8px;
  }

  .why-stat strong {
    font-size: 1.25rem;
  }

  .why-stat {
    font-size: 0.85rem;
  }
}

/* サポート体制 */
.section-support {
  background: var(--bg-alt);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.support-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-icon i {
  font-size: 1.5rem;
  color: var(--accent-dark);
}

.support-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
  text-align: center;
}

.support-card-catch {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.support-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: left;
}

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

/* 営業実績 */
.section-results {
  background: var(--white);
  text-align: center;
}

.results-store-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.results-store-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .results-store-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .results-store-images img {
    height: 200px;
  }
}

.section-results .container {
  text-align: center;
}

.section-results .section-title-center {
  display: inline-block;
  border: 2px solid var(--accent);
  padding: 12px 32px;
  border-radius: 8px;
}

.section-results .section-title-center::after {
  display: none;
}

.section-results .section-title-center small {
  font-size: 0.5em;
  color: var(--text-light);
  font-weight: 400;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.result-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
}

.result-card-label {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.result-card-data {
  margin-bottom: 20px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.result-row:last-child {
  border-bottom: none;
}

.result-row dt {
  font-size: 0.9rem;
  color: var(--text-light);
}

.result-row dd {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.result-card-model {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-primary);
  padding: 6px 0;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.result-card-note {
  background: rgba(245, 237, 230, 0.85);
  backdrop-filter: blur(6px);
  padding: 0;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  overflow: hidden;
}

.result-card-note-label {
  background: var(--accent-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 0;
  letter-spacing: 0.1em;
}

.result-card-note p:last-child {
  padding: 12px 16px;
}

.results-summary {
  text-align: center;
  margin-bottom: 48px;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.results-investment {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.results-investment strong {
  font-size: 2rem;
  color: var(--accent-dark);
}

.results-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-card {
    padding: 24px;
  }

  .result-card-label {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .result-card-model {
    font-size: 0.8rem;
    padding: 5px 0;
  }

  .result-row dd {
    font-size: 1.8rem;
  }

  .result-card-note-label {
    font-size: 0.7rem;
  }

  .results-summary {
    padding: 24px 20px;
  }

  .results-investment {
    font-size: 1.25rem;
  }

  .results-investment strong {
    font-size: 1.5rem;
  }

  .section-results .section-title-center {
    padding: 10px 20px;
    font-size: 1.25rem;
  }
}

/* Comparison Table Simple */
.comparison-table-simple {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-footer {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 40px;
  line-height: 1.9;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .comparison-table th,
  .comparison-table td {
    padding: 14px 10px;
    font-size: 0.85rem;
  }

  .comparison-table th {
    font-size: 0.9rem;
  }

  .comparison-table td.highlight-col strong {
    font-size: 1.05rem;
  }

  .comparison-table td small {
    font-size: 0.7rem;
  }

  .comparison-footer {
    font-size: 1rem;
  }
}

/* 開業までの流れ */
.section-flow {
  background: var(--bg-alt);
}

/* Horizontal Flow Steps with Icons */
.flow-steps-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0 auto 48px;
  flex-wrap: wrap;
}

.flow-step-h {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  width: 120px;
  position: relative;
}

.flow-step-h-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.flow-step-h-icon {
  width: 68px;
  height: 68px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-step-h-icon i {
  font-size: 1.5rem;
  color: var(--accent-dark);
}

.flow-step-h h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.flow-step-h-highlight .flow-step-h-icon {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(139, 114, 101, 0.35);
  transform: scale(1.1);
}

.flow-step-h-highlight .flow-step-h-icon i {
  color: var(--white);
}

.flow-step-h-highlight h3 {
  font-weight: 700;
  color: var(--accent-dark);
}

.flow-step-h:hover .flow-step-h-icon {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(139, 114, 101, 0.2);
}

.flow-step-h-arrow {
  display: flex;
  align-items: center;
  padding-top: 30px;
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  width: 20px;
  justify-content: center;
  animation: flow-arrow-bob 1.8s ease-in-out infinite;
}

@keyframes flow-arrow-bob {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(2px); }
}

/* Legacy vertical flow (hidden) */
.flow-steps {
  max-width: 500px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flow-step-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

.flow-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.flow-step-arrow {
  color: var(--accent);
  font-size: 1rem;
  padding: 8px 0;
  text-align: center;
}

.flow-bottom-text {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 24px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.flow-bottom-text strong {
  font-size: 1.5rem;
  color: var(--accent-dark);
  display: block;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .flow-steps-horizontal {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .flow-step-h {
    width: 80px;
  }

  .flow-step-h-icon {
    width: 52px;
    height: 52px;
  }

  .flow-step-h-icon i {
    font-size: 1.1rem;
  }

  .flow-step-h h3 {
    font-size: 0.7rem;
  }

  .flow-step-h-num {
    font-size: 0.7rem;
  }

  .flow-step-h-arrow {
    width: 12px;
    font-size: 0.6rem;
    padding-top: 24px;
    animation: none;
  }
}

@media (max-width: 640px) {
  .flow-steps-horizontal {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .flow-step-h-arrow {
    display: none;
  }

  .flow-step-h {
    width: auto;
    min-width: 0;
  }

  .flow-step-h h3 {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .flow-step-h-highlight {
    grid-column: 2 / 3;
  }
}

@media (max-width: 420px) {
  .flow-steps-horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .flow-step-h h3 {
    font-size: 0.72rem;
  }

  .flow-step-h-highlight {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(140px, 88%);
  }
}

@media (max-width: 640px) {
  .flow-step-item {
    padding: 16px 24px;
  }

  .flow-bottom-text {
    padding: 20px 16px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .flow-bottom-text strong {
    font-size: 1.25rem;
  }
}

/* Footer Company/Address */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-company {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.footer-address {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 0;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Scroll Animations */
.scroll-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for children */
.scroll-target > *:nth-child(1) { transition-delay: 0s; }
.scroll-target > *:nth-child(2) { transition-delay: 0.08s; }
.scroll-target > *:nth-child(3) { transition-delay: 0.16s; }
.scroll-target > *:nth-child(4) { transition-delay: 0.24s; }
.scroll-target > *:nth-child(5) { transition-delay: 0.32s; }

/* ========================================
   Parallax Sections
   ======================================== */

/* Parallax Divider - Full Width Image with Fixed Background */
.parallax-divider {
  position: relative;
  height: 340px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(166, 139, 109, 0.7) 0%, rgba(139, 107, 79, 0.8) 100%);
}

.parallax-divider-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 40px;
}

.parallax-divider-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.parallax-divider-text {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 600px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Parallax Divider Images */
.parallax-divider-1 {
  background-image: url('../images/intro3.jpg');
}

.parallax-divider-2 {
  background-image: url('../images/parallax/img_intro_4.jpeg');
}

.parallax-divider-3 {
  background-image: url('../images/intro4.jpg');
}

.parallax-divider-4 {
  background-image: url('../images/reasons/reason-04.jpg');
}

/* Point Sections with Background Images */
.section-point-1 {
  background: none;
  position: relative;
}

.section-point-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/parallax/lst_img01.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.section-point-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(166, 139, 109, 0.92) 0%, rgba(139, 107, 79, 0.95) 100%);
  z-index: 1;
}

.section-point-1 > .container {
  position: relative;
  z-index: 2;
}

/* Point Section Image Boxes */
.point-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 450px;
  margin: 0 auto;
}

.point-image-box img {
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.point-image-box:hover img {
  transform: scale(1.05);
}

.point-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.point-image-stat {
  color: var(--white);
  text-align: center;
}

.point-image-stat .stat-big {
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.point-image-stat .stat-big small {
  font-size: 0.4em;
}

.point-image-stat .stat-label {
  display: block;
  font-size: 1rem;
  margin-top: 8px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Floating Images for Point Sections */
.point-floating-images {
  position: relative;
  height: 400px;
  perspective: 1000px;
}

.floating-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.floating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.floating-img:hover {
  transform: translateY(-10px) scale(1.02);
}

.floating-img-1 {
  width: 200px;
  height: 260px;
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-5deg);
}

.floating-img-2 {
  width: 220px;
  height: 280px;
  top: 40px;
  right: 0;
  z-index: 2;
  transform: rotate(3deg);
}

.floating-img-3 {
  width: 180px;
  height: 240px;
  bottom: 0;
  left: 30%;
  z-index: 1;
  transform: rotate(-2deg);
}

/* Image Gallery Grid */
.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.image-gallery-grid .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.image-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.image-gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

.image-gallery-grid .gallery-item:first-child {
  grid-row: span 2;
}

/* Scroll-triggered Parallax for Images */
.parallax-scroll-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.parallax-scroll-img img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

/* Image with Stats Overlay */
.image-with-stats {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  margin: 0 auto;
}

.image-with-stats img {
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.image-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(61, 61, 61, 0.9) 0%, rgba(61, 61, 61, 0.6) 50%, transparent 100%);
}

.image-stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.image-stat-item {
  text-align: center;
  color: var(--white);
}

.image-stat-item .value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}

.image-stat-item .value small {
  font-size: 0.5em;
}

.image-stat-item .label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* Mobile Adjustments for Parallax */
@media (max-width: 1024px) {
  .parallax-divider {
    background-attachment: scroll;
    background-position: center top;
    height: 350px;
  }

  .section-point-1::before {
    background-attachment: scroll;
    background-position: center top;
  }

  .floating-img-1 {
    width: 160px;
    height: 200px;
  }

  .floating-img-2 {
    width: 180px;
    height: 220px;
  }

  .floating-img-3 {
    width: 140px;
    height: 180px;
  }

  /* Images - prioritize showing faces */
  .point-image-box img,
  .image-with-stats img {
    object-position: 50% 30%;
  }
}

@media (max-width: 768px) {
  .parallax-divider {
    height: 300px;
    background-position: center top;
  }

  .parallax-divider-title {
    font-size: 1.5rem;
  }

  .parallax-divider-text {
    font-size: 1rem;
  }

  .section-point-1::before {
    background-position: center top;
  }

  .point-floating-images {
    height: 300px;
  }

  .floating-img-1 {
    width: 120px;
    height: 160px;
    left: 10px;
  }

  .floating-img-2 {
    width: 140px;
    height: 180px;
    right: 10px;
  }

  .floating-img-3 {
    width: 100px;
    height: 140px;
    left: 25%;
  }

  .image-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 150px);
    gap: 12px;
  }

  .image-gallery-grid .gallery-item:first-child {
    grid-row: span 1;
  }

  .image-stats-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .image-stat-item .value {
    font-size: 1.5rem;
  }

  .point-image-stat .stat-big {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .parallax-divider {
    height: 250px;
  }

  .image-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 150px);
  }

  .image-gallery-grid .gallery-item:first-child {
    grid-row: span 1;
  }
}

/* Mobile: Hide forced <br> for natural text flow */
@media (max-width: 768px) {
  .section-lead br,
  .swan-about-content br,
  .why-point-desc br,
  .why-point-catch br,
  .support-card-desc br,
  .comparison-footer br,
  .flow-bottom-text br,
  .hero-cta-lead br,
  .form-reassurance br {
    display: none;
  }
}

/* Mobile Image Positioning - Prevent face cropping */
@media (max-width: 768px) {
  /* Hero section - show right-side person */
  .hero-media img {
    object-position: 60% 20%;
  }

  /* Point image boxes - prioritize faces */
  .point-image-box {
    max-width: 100%;
  }

  .point-image-box img {
    min-height: 280px;
    object-position: 50% 25%;
  }

  /* Image with stats - prioritize faces */
  .image-with-stats {
    max-width: 100%;
  }

  .image-with-stats img {
    min-height: 280px;
    object-position: 50% 25%;
  }

  /* Floating images - better mobile arrangement */
  .point-floating-images {
    height: auto;
    min-height: 250px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    perspective: none;
  }

  .floating-img {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }

  .floating-img-1,
  .floating-img-2 {
    width: auto;
    height: 180px;
  }

  .floating-img-3 {
    width: auto;
    height: 160px;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .floating-img img {
    object-position: 50% 25%;
  }

  /* Reason cards - show faces in thumbnails */
  .reason-image {
    aspect-ratio: 3/2;
  }

  .reason-image img {
    object-position: 50% 20%;
  }

  /* Gallery items - show faces */
  .image-gallery-grid .gallery-item img {
    object-position: 50% 25%;
  }

  /* Process image - show person */
  .process-image img {
    object-position: 50% 20%;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens - show right-side person */
  .hero-media img {
    object-position: 65% 15%;
  }

  .point-image-box img {
    min-height: 240px;
    object-position: 50% 20%;
  }

  .image-with-stats img {
    min-height: 240px;
    object-position: 50% 20%;
  }

  /* Floating images stack vertically on very small screens */
  .point-floating-images {
    min-height: auto;
  }

  .floating-img {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .floating-img-1,
  .floating-img-2,
  .floating-img-3 {
    width: 100%;
    height: 200px;
  }

  /* Reason cards */
  .reason-image {
    aspect-ratio: 4/3;
  }

  .reason-image img {
    object-position: 50% 15%;
  }

  /* Gallery - single column, show faces */
  .image-gallery-grid {
    grid-template-rows: repeat(3, 180px);
  }

  .image-gallery-grid .gallery-item img {
    object-position: 50% 20%;
  }
}

/* ========================================
   Ver1.2 Modifications
   ======================================== */

/* Global overflow prevention */
html, body {
  overflow-x: hidden;
}

/* === Hero V2: Text align left === */
.hero-v2 .hero-content {
  text-align: left;
  width: 100%;
  padding: 64px 24px 160px;
}

.hero-v2 .hero-content .container {
  max-width: var(--container);
  padding-left: 24px;
}

@media (min-width: 769px) {
  .hero-v2 .hero-content .container {
    padding-left: 48px;
  }
}

/* Hero Badges Bar (below hero image) */
.hero-badges-bar {
  position: relative;
  z-index: 5;
  background: var(--white);
  padding: 20px 0;
}

.hero-badges-bar .hero-badges {
  display: flex;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-badges-bar .hero-badge {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #f3ebe3 0%, #e8ddd2 100%);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(139, 114, 101, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: badge-float 5.2s ease-in-out infinite;
}

.hero-badges-bar .hero-badge:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-badges-bar .hero-badge:nth-child(3) {
  animation-delay: 1.2s;
}

.hero-badges-bar .hero-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(139, 114, 101, 0.32);
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-badges-bar .badge-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}

.hero-badges-bar .badge-value strong {
  font-size: 1.52em;
  color: var(--accent-dark);
  display: block;
  margin-top: 10px;
  white-space: nowrap;
  line-height: 1.06;
}

.badge-num {
  display: inline-block;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.badge-unit {
  display: inline-block;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 0.06em;
}

.hero-badges-bar .hero-badge:nth-child(2) .badge-num {
  font-size: 1.15em;
}

@media (max-width: 768px) {
  .hero-v2 .hero-content {
    padding: 36px 16px 120px;
  }

  .hero-v2 .hero-content .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-badges-bar .hero-badge {
    width: 160px;
    height: 160px;
    animation: none;
  }

  .hero-badges-bar .badge-value {
    font-size: 0.85rem;
  }

  .hero-badges-bar .badge-value strong {
    font-size: 1.35em;
  }

  .hero-badges-bar .hero-badges {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-v2 .hero-content {
    padding: 20px 12px 110px;
  }

  .hero-v2 .hero-content .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-badges-bar .hero-badge {
    width: 105px;
    height: 105px;
    border-width: 2px;
    animation: none;
  }

  .hero-badges-bar .badge-value {
    font-size: 0.65rem;
  }

  .hero-badges-bar .badge-value strong {
    font-size: 1.1em;
  }

  .badge-num {
    font-size: 1.5em;
  }

  .hero-badges-bar .hero-badges {
    gap: 10px;
  }

  .hero-badges-bar {
    padding: 20px 8px;
  }
}

/* Hero: Larger CTA - Horizontal Layout */
.hero-v2 .hero-cta-bar .container {
  max-width: 940px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-v2 .hero-cta-lead {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  white-space: nowrap;
  line-height: 1.6;
  text-align: left;
}

.hero-cta-highlight {
  color: #d4655a;
  font-weight: 700;
  font-size: 1.25em;
  display: block;
}

.hero-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-v2 .hero-cta-bar .btn-lg {
  padding: 20px 40px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  overflow: hidden;
  position: relative;
}

.hero-v2 .hero-cta-bar .btn-lg::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 30%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-22deg);
  animation: cta-shimmer 2.8s ease-in-out infinite;
}

@keyframes cta-shimmer {
  0%, 62% {
    left: -40%;
  }
  100% {
    left: 120%;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-v2 .hero-cta-lead {
    font-size: 0.95rem;
  }

  .hero-v2 .hero-cta-bar .btn-lg {
    padding: 18px 30px;
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero-v2 .hero-cta-bar .container {
    flex-direction: column;
    gap: 12px;
  }

  .hero-v2 .hero-cta-lead {
    white-space: normal;
    text-align: center;
  }

  .hero-cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-v2 .hero-cta-bar .btn-lg {
    padding: 16px 24px;
    font-size: 1rem;
  }

  .hero-v2 .hero-cta-lead {
    font-size: 0.8rem;
  }

  .hero-cta-highlight {
    font-size: 1.15em;
  }

  .hero-v2 .hero-cta-bar .btn-lg::before {
    animation: none;
  }
}

/* === 成約率/継続率: Separate boxes side by side === */
.why-point-stats-separate {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  background: none;
  border: none;
  padding: 0;
}

.why-stat-box {
  flex: 1;
  min-width: 140px;
  background: linear-gradient(135deg, #fdf6ee, #fff);
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 16px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-stat-box .why-stat {
  font-size: 1rem;
}

.why-stat-box .why-stat strong {
  font-size: 1.75rem;
}

@media (max-width: 768px) {
  .why-stat-box {
    padding: 12px 18px;
    min-width: 0;
    border-radius: 40px;
  }

  .why-stat-box .why-stat {
    font-size: 0.9rem;
  }

  .why-stat-box .why-stat strong {
    font-size: 1.4rem;
  }

  .why-point-stats-separate {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .why-stat-box {
    padding: 10px 14px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .why-stat-box .why-stat {
    font-size: 0.8rem;
    word-break: keep-all;
  }

  .why-stat-box .why-stat strong {
    font-size: 1.15rem;
  }

  .why-point-stats-separate {
    gap: 8px;
  }
}

/* === 収支実績 V2: Reference-like design === */
.result-card-v2 {
  background: var(--bg-dark);
  color: var(--white);
  border: 1px solid rgba(184, 160, 138, 0.3);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.result-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.result-card-v2 .result-card-label {
  color: var(--white);
  font-size: 1.75rem;
  padding: 32px 36px 8px;
  margin-bottom: 0;
  letter-spacing: 0.08em;
}

.result-card-v2 .result-card-model {
  margin: 0 32px 20px;
  background: rgba(184, 160, 138, 0.25);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
}

.result-card-v2 .result-card-data {
  padding: 0 32px;
  margin-bottom: 0;
}

.result-card-v2 .result-row {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  padding: 16px 0;
}

.result-card-v2 .result-row dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.result-card-v2 .result-row dd strong {
  color: var(--accent-light);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
}

.result-card-blur {
  position: relative;
  margin: 16px 32px 32px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  min-height: 132px;
  display: flex;
  flex-direction: column;
}

.result-card-blur::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: url('../images/stores-performance.jpg') center center / cover no-repeat;
  filter: blur(7px) saturate(0.8);
  transform: scale(1.08);
  z-index: 0;
}

.results-grid .result-card-v2:nth-child(2) .result-card-blur::before {
  background-image: url('../images/stores-timeline.jpg');
}

.result-card-blur::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 63, 55, 0.58);
  z-index: 1;
}

.result-card-blur .result-card-note-label {
  position: relative;
  z-index: 2;
  background: var(--accent);
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 0;
}

.result-card-blur p:last-child {
  position: relative;
  z-index: 2;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.8rem;
}

/* Results Summary V2: Left amount, right notes */
.results-summary-v2 {
  display: flex;
  align-items: center;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 0;
  max-width: 800px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 48px;
  text-align: left;
}

.results-summary-inner {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 24px 32px;
  text-align: center;
  min-width: 240px;
}

.results-investment-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.results-investment-value {
  font-family: var(--font-serif);
  margin: 0;
}

.results-investment-value strong {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.results-investment-unit {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  opacity: 0.9;
}

.results-summary-note {
  flex: 1;
  padding: 20px 24px;
}

.results-summary-note p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .results-summary-v2 {
    flex-direction: column;
  }

  .results-summary-inner {
    width: 100%;
    min-width: auto;
    padding: 20px 24px;
  }

  .results-investment-value strong {
    font-size: 2.5rem;
  }

  .results-summary-note {
    padding: 16px 20px;
  }

  .result-card-v2 .result-card-label {
    padding: 20px 24px 8px;
  }

  .result-card-v2 .result-card-model {
    margin: 0 24px 12px;
  }

  .result-card-v2 .result-card-data {
    padding: 0 24px;
  }

  .result-card-blur {
    margin: 12px 24px 24px;
  }
}

/* === 比較表: Swanカラム強調 === */
.comparison-table th.highlight-col {
  background: #e67e22;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}

.comparison-table td.highlight-col {
  background: rgba(230, 126, 34, 0.06);
  border-left: 3px solid #e67e22;
  border-right: 3px solid #e67e22;
  font-weight: 500;
}

.comparison-table tr:last-child td.highlight-col {
  border-bottom: 3px solid #e67e22;
}

.comparison-table td.highlight-col strong {
  font-size: 1.6rem;
  color: #d35400;
  font-weight: 700;
}

.comparison-table td.highlight-col small {
  color: #c0763a;
  font-weight: 500;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 480px) {
  .comparison-table th.highlight-col {
    font-size: 1rem;
  }

  .comparison-table td.highlight-col strong {
    font-size: 1.1rem;
    color: #d35400;
  }
}

/* === Contact Section V2: Eye-catching design === */
.section-contact-v2 {
  background: var(--white);
}

.section-contact-v2 .section-header {
  margin-bottom: 28px;
}

.contact-headline {
  text-align: center;
  margin-bottom: 20px;
}

.contact-headline-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-headline-cta {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #d4655a;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(212, 101, 90, 0.15);
  letter-spacing: 0.05em;
}

.contact-headline-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-headline-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-easy-note-lg {
  font-size: 1.3rem;
  padding: 14px 48px;
  background: #d4655a;
  color: var(--white);
  border-radius: 50px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(212, 101, 90, 0.28);
  letter-spacing: 0.08em;
  animation: pulse-shadow-red 2s ease-in-out infinite;
}

@keyframes pulse-shadow-red {
  0%, 100% { box-shadow: 0 6px 18px rgba(212, 101, 90, 0.28); }
  50% { box-shadow: 0 8px 28px rgba(212, 101, 90, 0.5); }
}

@media (max-width: 640px) {
  .contact-headline-text {
    font-size: 1.1rem;
  }

  .contact-headline-cta {
    font-size: 1.75rem;
  }

  .contact-easy-note-lg {
    font-size: 1rem;
    padding: 10px 28px;
  }
}

/* === フォーム: 全体を大きく === */
.contact-form {
  max-width: 860px;
  padding: 48px;
  box-sizing: border-box;
  border: 1px solid rgba(116, 154, 167, 0.28);
}

.contact-grid {
  gap: 20px;
}

.form-group input,
.form-group textarea {
  padding: 16px 18px;
  font-size: 1.05rem;
  box-sizing: border-box;
  max-width: 100%;
}

.form-group label {
  font-size: 0.95rem;
}

.section-contact .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

@media (max-width: 640px) {
  .contact-form {
    max-width: 100%;
    padding: 20px 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 12px;
    font-size: 1rem;
  }
}



/* === 加盟者の声 === */
.section-owner-voice {
  background: var(--bg-alt);
}

.owner-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.owner-voice-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  word-break: break-word;
}

/* V2: Card with person icon - dramatic silhouette design */
.owner-voice-card-v2 {
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--border);
}

.owner-voice-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg-dark);
  color: var(--white);
}

.owner-voice-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.owner-voice-icon i {
  font-size: 2rem;
  color: var(--white);
}

.owner-voice-card-v2 .owner-voice-label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.owner-voice-card-v2 .owner-voice-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 0;
  line-height: 1.6;
  padding: 24px 32px;
  background: linear-gradient(135deg, #fdf6ee, #fff);
  border-left: 4px solid var(--accent);
  position: relative;
}

.owner-voice-card-v2 .owner-voice-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 3rem;
  color: var(--accent-light);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
}

.owner-voice-card-v2 .owner-voice-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.9;
  padding: 20px 32px 28px;
}

.owner-voice-text p {
  margin-bottom: 12px;
}

.owner-voice-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .owner-voice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .owner-voice-card {
    padding: 24px;
  }

  .owner-voice-header {
    padding: 20px 24px;
  }

  .owner-voice-icon {
    width: 58px;
    height: 58px;
  }

  .owner-voice-icon i {
    font-size: 1.55rem;
  }

  .owner-voice-card-v2 .owner-voice-quote {
    padding: 16px 24px;
    font-size: 1rem;
  }

  .owner-voice-card-v2 .owner-voice-text {
    padding: 16px 24px 24px;
    font-size: 0.85rem;
  }
}

/* ========================================
   Ver1.3 Image-based Section Styles
   ======================================== */

/* === Hero V3: Image banner based === */
.hero-v3 {
  position: relative;
  min-height: auto;
  display: block;
  background: var(--bg);
}

.hero-banner {
  width: 100%;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cta-bar-v3 {
  position: relative;
  background: #f9f9f9;
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 5;
}

.hero-cta-bar-v3 .container {
  max-width: 960px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-cta-bar-v3 .hero-cta-lead {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.6;
}

.hero-cta-bar-v3 .hero-cta-btn {
  padding: 22px 48px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}

.hero-cta-bar-v3 .hero-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0%   { left: -75%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}

@media (max-width: 768px) {
  .hero-cta-bar-v3 .container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-cta-bar-v3 .hero-cta-btn {
    padding: 16px 24px;
    font-size: 1rem;
  }
  .hero-cta-bar-v3 .hero-cta-lead {
    font-size: 0.8rem;
  }
}

/* === Hero Badges V3: Image-based rectangular cards === */
.hero-badges-bar-v3 {
  position: relative;
  z-index: 5;
  background: var(--white);
  padding: 32px 0;
}

.hero-badges-img {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge-img {
  width: 270px;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .hero-badge-img {
    width: 240px;
  }
  .hero-badges-img {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .hero-badge-img {
    width: 160px;
  }
  .hero-badges-img {
    gap: 12px;
  }
  .hero-badges-bar-v3 {
    padding: 20px 12px;
  }
}

@media (max-width: 480px) {
  .hero-badge-img {
    width: 30%;
  }
  .hero-badges-img {
    gap: 8px;
  }
}

/* === Why Points V3: Image-based cards === */
.why-points-img {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-point-img-card {
  border-radius: 12px;
  overflow: visible;
}

.why-point-img-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* === Results V3: Image-based cards === */
.results-grid-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.result-card-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.result-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .results-grid-img {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 24px;
  }
}

@media (max-width: 375px) {
  .results-grid-img {
    max-width: 300px;
  }
}

/* === Owner Voice V3: Image-based cards === */
.owner-voice-img-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.owner-voice-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.owner-voice-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .owner-voice-img-list {
    gap: 20px;
  }
  .owner-voice-img-card {
    border-radius: 12px;
  }
}

/* === Comparison V3: Image-based === */
.comparison-img-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .comparison-img-wrapper {
    padding: 0 8px;
  }
  .comparison-img {
    border-radius: 8px;
  }
}

/* === Flow V3: Image-based === */
.flow-img-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
}

.flow-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .flow-img-wrapper {
    max-width: 100%;
    padding: 0 16px;
  }
}

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

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

.faq-item {
  border-bottom: 1.5px solid var(--border);
}

.faq-item:first-child {
  border-top: 1.5px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.faq-q-icon {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.faq-q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.faq-toggle {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.faq-toggle-icon {
  display: block;
  line-height: 1;
}

.faq-toggle-icon::before {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
}

.faq-item.is-open .faq-toggle-icon::before {
  content: '−';
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  margin: 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 8px 0 24px 32px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 640px) {
  .faq-question {
    gap: 12px;
    padding: 20px 0;
  }
  .faq-q-text {
    font-size: 0.95rem;
  }
  .faq-answer-inner p {
    padding: 8px 0 20px 28px;
    font-size: 0.9rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-target {
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    transform: none !important;
  }

  .parallax-divider,
  .section-point-1::before {
    background-attachment: scroll;
  }
}
