/* ========================================
   しゅわTokyo LP - Stylesheet
   ======================================== */

/* Variables */
:root {
  --shuwa-gold: #c9a962;
  --shuwa-gold-light: #e6d5a8;
  --shuwa-gold-dark: #a68b4b;
  --shuwa-champagne: #f7f3e9;
  --shuwa-cream: #fdfbf7;
  --shuwa-dark: #2c2c2c;
  --shuwa-text: #4a4a4a;
  --shuwa-text-light: #7a7a7a;
  --shuwa-green: #8b9f7c;
  --shuwa-green-light: #d4dece;
}

/* Page Base */
.shuwa-page {
  background-color: var(--shuwa-cream);
}

/* Hide header on shuwa page */
.shuwa-page .header {
  display: none;
}

/* SP only line break */
.sp-only {
  display: none;
}

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

/* ========================================
   Splash Screen
   ======================================== */
.shuwa-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 1s ease;
}

.shuwa-splash.is-visible {
  opacity: 1;
}

.shuwa-splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.shuwa-splash__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--shuwa-cream);
  animation: splashZoom 3s ease forwards;
}

@keyframes splashZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* 木漏れ日エフェクト */
.shuwa-splash__komorebi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80px 80px at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60px 100px at 70% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 100px 60px at 40% 70%, rgba(255, 255, 255, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 70px 90px at 80% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50px 70px at 10% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 90px 50px at 60% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: komorebi 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes komorebi {
  0% {
    opacity: 0.6;
    transform: translateX(-2px) translateY(-1px);
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.7;
    transform: translateX(2px) translateY(1px);
  }
}

/* 軽い網掛けオーバーレイ */
.shuwa-splash__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

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

.shuwa-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--shuwa-champagne);
  transition: filter 0.8s ease;
}

/* 木漏れ日エフェクト (Hero) */
.shuwa-hero__komorebi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 120px 120px at 15% 25%, rgba(255, 255, 255, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 80px 140px at 75% 15%, rgba(255, 255, 255, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 140px 80px at 35% 75%, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 100px 120px at 85% 55%, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 70px 100px at 5% 85%, rgba(255, 255, 255, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 130px 70px at 55% 35%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: komorebi 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.shuwa-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 2;
  transition: background 0.8s ease;
}

/* スプラッシュ終了後、網掛けを強くして読みやすく */
.shuwa-hero.is-ready .shuwa-hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* スプラッシュ終了後、背景をぼかす */
.shuwa-hero.is-ready .shuwa-hero__bg {
  filter: blur(3px);
}

.shuwa-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 3rem 2.5rem;
  max-width: 700px;
  /* テキスト背後にブラー効果 + 半透明背景 */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shuwa-hero__tagline {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  /* 強化されたテキストシャドウ */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: shuwaFadeInUp 0.8s ease 0.3s forwards;
}

.shuwa-hero__title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  /* 強化されたテキストシャドウ */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 6px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: shuwaFadeInUp 0.8s ease 0.5s forwards;
}

.shuwa-hero__subtitle {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  /* 強化されたテキストシャドウ */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: shuwaFadeInUp 0.8s ease 0.7s forwards;
}

.shuwa-hero__note {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  /* 強化されたテキストシャドウ */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: shuwaFadeInUp 0.8s ease 0.85s forwards;
}

.shuwa-hero__cta {
  opacity: 0;
  animation: shuwaFadeInUp 0.8s ease 1s forwards;
}

.shuwa-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  opacity: 0;
  animation: shuwaFadeInUp 0.8s ease 1.1s forwards;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.shuwa-hero__scroll:hover {
  opacity: 0.7;
}

.shuwa-hero__scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 10px;
  position: relative;
  opacity: 0.9;
}

.shuwa-hero__scroll-wheel {
  width: 3px;
  height: 6px;
  background: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

.shuwa-hero__scroll-arrow {
  opacity: 0.8;
  animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    opacity: 1;
    top: 6px;
  }
  50% {
    opacity: 0.3;
    top: 14px;
  }
}

@keyframes scrollArrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(4px);
    opacity: 0.4;
  }
}

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

/* ========================================
   Section Titles
   ======================================== */
.shuwa-section-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--shuwa-dark);
}

.shuwa-section-subtitle {
  font-size: 0.9375rem;
  text-align: center;
  color: var(--shuwa-text-light);
  margin-bottom: 3rem;
}

/* ========================================
   Introduction Section
   ======================================== */
.shuwa-intro {
  padding: 5rem 0 6rem;
  background: var(--shuwa-cream);
}

/* Pain Points */
.shuwa-intro__pain {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}

.shuwa-intro__lead {
  font-size: 1rem;
  color: var(--shuwa-text-light);
  margin-bottom: 2rem;
}

.shuwa-intro__pain-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.shuwa-intro__pain-list li {
  font-size: 1.125rem;
  color: var(--shuwa-text);
  padding: 0.75rem 1.5rem;
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.shuwa-intro__pain-list li strong {
  color: var(--shuwa-gold-dark);
  font-weight: 600;
}

/* Solution */
.shuwa-intro__solution {
  text-align: center;
  margin-bottom: 4rem;
}

.shuwa-intro__solution-lead {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--shuwa-gold-dark);
  background: linear-gradient(135deg, var(--shuwa-gold-light) 0%, var(--shuwa-champagne) 100%);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.shuwa-intro__title {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--shuwa-dark);
}

.shuwa-intro__subtitle {
  font-size: 1.0625rem;
  line-height: 2;
  color: var(--shuwa-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Value Points */
.shuwa-intro__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.shuwa-intro__value {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.shuwa-intro__value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--shuwa-champagne) 0%, var(--shuwa-gold-light) 100%);
  border-radius: 50%;
  color: var(--shuwa-gold-dark);
}

.shuwa-intro__value-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--shuwa-dark);
}

.shuwa-intro__value-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--shuwa-text-light);
}

/* ========================================
   Steps Section
   ======================================== */
.shuwa-steps {
  padding: 3rem 0;
  background: var(--color-white);
}

.shuwa-steps__image {
  max-width: 1000px;
  margin: 0 auto;
}

.shuwa-steps__image img {
  width: 100%;
  height: auto;
}

/* ========================================
   Plans Section
   ======================================== */
.shuwa-plans {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--shuwa-champagne) 0%, var(--shuwa-cream) 100%);
}

.shuwa-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.shuwa-plan {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.shuwa-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.shuwa-plan--featured {
  border: 2px solid var(--shuwa-gold);
  transform: scale(1.02);
}

.shuwa-plan--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.shuwa-plan--premium {
  background: linear-gradient(135deg, var(--shuwa-dark) 0%, #1a1a1a 100%);
  color: var(--color-white);
}

.shuwa-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--shuwa-gold);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.shuwa-plan__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.shuwa-plan--premium .shuwa-plan__header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.shuwa-plan__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.shuwa-plan__tagline {
  font-size: 0.8125rem;
  color: var(--shuwa-text-light);
}

.shuwa-plan--premium .shuwa-plan__tagline {
  color: rgba(255, 255, 255, 0.7);
}

.shuwa-plan__price {
  margin-bottom: 1.5rem;
}

.shuwa-plan__price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--shuwa-dark);
}

.shuwa-plan--premium .shuwa-plan__price-amount {
  color: var(--shuwa-gold-light);
}

.shuwa-plan__price-tax {
  font-size: 0.8125rem;
  color: var(--shuwa-text-light);
}

.shuwa-plan--premium .shuwa-plan__price-tax {
  color: rgba(255, 255, 255, 0.6);
}

.shuwa-plan__features {
  margin-bottom: 2rem;
  text-align: left;
}

.shuwa-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: var(--shuwa-text);
}

.shuwa-plan--premium .shuwa-plan__features li {
  color: rgba(255, 255, 255, 0.9);
}

.shuwa-plan__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--shuwa-gold);
}

.shuwa-plan__btn {
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--shuwa-dark);
  color: var(--color-white);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.shuwa-plan__btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.shuwa-plan__btn--featured {
  background: var(--shuwa-gold);
}

.shuwa-plan__btn--featured:hover {
  background: var(--shuwa-gold-dark);
}

.shuwa-plan__btn--premium {
  background: var(--shuwa-gold);
  color: var(--shuwa-dark);
}

.shuwa-plan__btn--premium:hover {
  background: var(--shuwa-gold-light);
}

.shuwa-plan__note {
  font-size: 0.75rem;
  color: var(--shuwa-text-light);
  margin-top: 0.75rem;
}

.shuwa-plan--premium .shuwa-plan__note {
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Features Section
   ======================================== */
.shuwa-features {
  padding: 5rem 0;
  background: var(--color-white);
}

.shuwa-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.shuwa-feature {
  text-align: center;
  padding: 2rem 1.5rem;
}

.shuwa-feature__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--shuwa-champagne);
  border-radius: 50%;
  color: var(--shuwa-gold-dark);
}

.shuwa-feature__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--shuwa-dark);
}

.shuwa-feature__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--shuwa-text-light);
}

/* ========================================
   CTA Section
   ======================================== */
.shuwa-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--shuwa-green) 0%, var(--shuwa-green-light) 100%);
  text-align: center;
}

.shuwa-cta__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.shuwa-cta__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.shuwa-cta__btn {
  background: var(--color-white);
  color: var(--shuwa-green);
  border-color: var(--color-white);
  padding: 1rem 2.5rem;
  font-weight: 600;
}

.shuwa-cta__btn:hover {
  background: transparent;
  color: var(--color-white);
}

.shuwa-cta__btn svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   Footer
   ======================================== */
.shuwa-footer {
  padding: 3rem 0 2rem;
  background: var(--shuwa-cream);
  text-align: center;
}

.shuwa-footer__logo {
  margin-bottom: 1.5rem;
}

.shuwa-footer__logo img {
  height: 40px;
  width: auto;
  margin: 0 auto;
}

.shuwa-footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--shuwa-dark);
  letter-spacing: 0.05em;
}

.shuwa-footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.shuwa-footer__nav a {
  font-size: 0.8125rem;
  color: var(--shuwa-text-light);
  transition: color 0.2s ease;
}

.shuwa-footer__nav a:hover {
  color: var(--shuwa-dark);
}

.shuwa-footer__copyright {
  font-size: 0.75rem;
  color: var(--shuwa-text-light);
  margin-bottom: 1rem;
}

.shuwa-footer__notice {
  font-size: 0.6875rem;
  color: var(--shuwa-text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}

/* ========================================
   LINE Floating Button
   ======================================== */
.shuwa-line-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #06C755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.shuwa-line-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(6, 199, 85, 0.5);
}

.shuwa-line-float svg {
  width: 28px;
  height: 28px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .shuwa-intro__values {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .shuwa-plans__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .shuwa-plan--featured {
    transform: none;
    order: -1;
  }

  .shuwa-plan--featured:hover {
    transform: translateY(-4px);
  }

  .shuwa-features__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .shuwa-hero__title {
    font-size: 2.5rem;
  }

  .shuwa-hero__tagline {
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
  }

  .shuwa-hero__subtitle {
    font-size: 1rem;
    line-height: 1.9;
  }

  .shuwa-hero__note {
    font-size: 0.8125rem;
  }

  .shuwa-intro {
    padding: 4rem 0 5rem;
  }

  .shuwa-intro__pain {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }

  .shuwa-intro__pain-list {
    gap: 0.75rem;
  }

  .shuwa-intro__pain-list li {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }

  .shuwa-intro__solution {
    margin-bottom: 3rem;
  }

  .shuwa-intro__title {
    font-size: 1.75rem;
  }

  .shuwa-intro__subtitle {
    font-size: 1rem;
  }

  .shuwa-steps {
    padding: 4rem 0;
  }

  .shuwa-steps__grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .shuwa-step {
    max-width: 280px;
  }

  .shuwa-step__arrow {
    display: none;
  }

  .shuwa-plans {
    padding: 4rem 0 5rem;
  }

  .shuwa-section-title {
    font-size: 1.25rem;
  }

  .shuwa-features {
    padding: 4rem 0;
  }

  .shuwa-cta {
    padding: 4rem 0;
  }

  .shuwa-cta__title {
    font-size: 1.25rem;
  }

  .shuwa-footer__nav {
    flex-direction: column;
    gap: 1rem;
  }

  .shuwa-line-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .shuwa-line-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .shuwa-hero__title {
    font-size: 2rem;
  }

  .shuwa-hero__subtitle {
    font-size: 0.9375rem;
  }

  .shuwa-hero__note {
    font-size: 0.75rem;
  }

  .shuwa-plan {
    padding: 1.5rem 1.25rem;
  }

  .shuwa-plan__price-amount {
    font-size: 2rem;
  }
}

/* ========================================
   Legal Pages
   ======================================== */
.shuwa-legal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--shuwa-cream);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.shuwa-legal-header__logo img {
  height: 32px;
  width: auto;
}

.shuwa-legal-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--shuwa-cream);
  text-align: center;
}

.shuwa-legal-hero__title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--shuwa-dark);
}

.shuwa-legal-hero__subtitle {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--shuwa-text-light);
  letter-spacing: 0.1em;
}

.shuwa-legal-content {
  padding: 3rem 0 5rem;
  background: var(--color-white);
}

.shuwa-legal-content .legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.shuwa-legal-content .legal-content p:first-child {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-content__date {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--shuwa-text-light);
}

.legal-content__company {
  font-size: 0.875rem;
  color: var(--shuwa-text-light);
}

/* Tokushoho Table */
.tokushoho-table {
  margin: 2rem 0;
}

.tokushoho-row {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.tokushoho-row:first-child {
  border-top: 1px solid var(--color-border);
}

.tokushoho-label {
  width: 200px;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--shuwa-dark);
}

.tokushoho-value {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--shuwa-text);
  line-height: 1.8;
}

.tokushoho-value small {
  font-size: 0.8125rem;
  color: var(--shuwa-text-light);
}

.contact-info {
  background: var(--shuwa-champagne);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.contact-info p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.contact-info a {
  color: var(--shuwa-gold-dark);
  text-decoration: underline;
}

.contact-info a:hover {
  color: var(--shuwa-dark);
}

@media (max-width: 768px) {
  .shuwa-legal-hero {
    padding-top: 100px;
    padding-bottom: 2rem;
  }

  .shuwa-legal-hero__title {
    font-size: 1.5rem;
  }

  .tokushoho-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tokushoho-label {
    width: auto;
  }
}
