/* ===== CSS VARIABLES ===== */
:root {
  --color-dark: #1A1A2E;
  --color-dark-light: #252545;
  --color-green: #2D5A27;
  --color-green-light: #3a7a32;
  --color-orange: #E8A020;
  --color-orange-light: #F0B840;
  --color-orange-bg: rgba(232, 160, 32, 0.1);
  --color-white: #FFFFFF;
  --color-bg: #F5F3EF;
  --color-bg-white: #FFFFFF;
  --color-text: #1A1A2E;
  --color-text-light: #555;
  --color-text-muted: #888;
  --color-border: #E0DDD6;
  --font-main: 'Noto Sans JP', sans-serif;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 4px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.15) 0%,
    rgba(26, 26, 46, 0.3) 30%,
    rgba(26, 26, 46, 0.7) 60%,
    rgba(26, 26, 46, 0.92) 85%,
    rgba(26, 26, 46, 0.97) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}
.hero__brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.hero__title {
  margin-bottom: 24px;
}
.hero__title-sub {
  display: block;
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}
.hero__title-main {
  display: block;
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.2;
}
.hero__title-accent {
  display: block;
  font-size: clamp(2.6rem, 10vw, 3.8rem);
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(232, 160, 32, 0.3);
}
.hero__badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.badge--hero {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.5);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.badge__icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}
.hero__sub-cta {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: var(--color-dark);
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  width: 100%;
  max-width: 360px;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 160, 32, 0.4);
}
.btn--glow {
  box-shadow:
    0 0 20px rgba(232, 160, 32, 0.3),
    0 0 40px rgba(232, 160, 32, 0.15);
  animation: cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 160, 32, 0.3), 0 0 40px rgba(232, 160, 32, 0.15); }
  50% { box-shadow: 0 0 30px rgba(232, 160, 32, 0.5), 0 0 60px rgba(232, 160, 32, 0.25); }
}
.btn--outline {
  background: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  width: 100%;
  max-width: 360px;
}
.btn--outline:hover {
  background: rgba(232, 160, 32, 0.1);
}
.btn--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}
.section-title--light {
  color: var(--color-white);
}
.section-title--light::after {
  background: var(--color-orange);
}

/* ===== WORRIES SECTION ===== */
.worries {
  padding: 80px 0 60px;
  background: var(--color-bg-white);
}
.worries .section-title {
  margin-bottom: 32px;
}
.worries__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.worry-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 5px solid var(--color-orange);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.worry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.worry-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.worry-card__icon svg {
  width: 26px;
  height: 26px;
}
.worry-card__text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
}
.worries__resolve {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-green);
}
.worries__arrow {
  text-align: center;
  margin-top: 8px;
  color: var(--color-orange);
  animation: bounce-down 1.5s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== REASONS SECTION ===== */
.reasons {
  padding: 80px 0;
  background: var(--color-bg);
}
.reasons .section-title {
  margin-bottom: 32px;
}
.reasons__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reason-card {
  background: var(--color-bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reason-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.reason-card__badge-icon {
  margin: 0 auto 16px;
  width: 80px;
  height: 80px;
}
.reason-card__badge-icon--large {
  width: 110px;
  height: 110px;
}
.reason-card__badge-icon svg {
  width: 100%;
  height: 100%;
}
.reason-card__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.reason-card__big-num {
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
}
.reason-card__percent,
.reason-card__yen {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  color: var(--color-orange);
}
.reason-card__clock {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.reason-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}
.reason-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.reason-card__zero-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.zero-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c0392b;
  border: 1.5px solid #c0392b;
  border-radius: var(--radius-pill);
  position: relative;
  text-decoration: line-through;
  text-decoration-color: #c0392b;
  text-decoration-thickness: 2px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background: var(--color-bg-white);
}
.testimonials .section-title {
  margin-bottom: 24px;
}
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--color-green);
  border-radius: var(--radius);
  padding: 16px 12px;
  margin-bottom: 28px;
}
.stat {
  text-align: center;
}
.stat__label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2px;
}
.stat__value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-white);
}
.stat__unit {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}
.testimonial-card {
  background: var(--color-bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-orange);
  padding: 20px;
  margin-bottom: 16px;
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.stars {
  display: flex;
  gap: 2px;
}
.star {
  width: 18px;
  height: 18px;
  background: var(--color-orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-card__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-orange);
  background: var(--color-orange-bg);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.testimonial-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}
.testimonial-card__quote {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: 80px 0;
  background: var(--color-bg);
}
.process .section-title {
  margin-bottom: 4px;
}
.process__subtitle {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 32px;
}
.process__steps {
  position: relative;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.3);
}
.step__card {
  flex: 1;
  background: var(--color-bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.step__icon svg {
  width: 20px;
  height: 20px;
}
.step__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.step__text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}
.step__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  background: var(--color-orange-bg);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
}
.step__line {
  width: 2px;
  height: 24px;
  background: var(--color-orange);
  margin-left: 23px;
  opacity: 0.4;
  border-radius: 1px;
}

/* ===== AREA SECTION ===== */
.area {
  padding: 80px 0;
  background: var(--color-dark);
  color: var(--color-white);
}
.area__subtitle {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 24px;
}
.area__map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.area__map-img {
  width: 100%;
  height: auto;
}
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.area__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1.5px solid var(--color-orange);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  background: rgba(232, 160, 32, 0.08);
  transition: background 0.3s ease;
}
.area__tag:hover {
  background: rgba(232, 160, 32, 0.2);
}
.area__note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.area__free {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-orange);
}

/* ===== SHOP SECTION ===== */
.shop {
  padding: 60px 0;
  background: var(--color-dark);
  color: var(--color-white);
}
.shop .section-title {
  margin-bottom: 24px;
}
.shop__card {
  background: var(--color-dark-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(232, 160, 32, 0.2);
}
.shop__name {
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-white);
}
.shop__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shop__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.shop__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--color-orange);
}
.shop__icon svg {
  width: 100%;
  height: 100%;
}
.shop__phone {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-orange);
  letter-spacing: 0.05em;
}
.shop__row--phone {
  padding: 8px 0;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.88);
}
.final-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.final-cta__title {
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(232, 160, 32, 0.2);
}
.final-cta__sub {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 8px;
}
.final-cta__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.badge--dark {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--color-orange);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  background: rgba(232, 160, 32, 0.08);
}

/* ===== FOOTER ===== */
.footer {
  background: #111125;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px 20px;
  font-size: 0.78rem;
}
.footer__hours {
  margin-top: 4px;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(232, 160, 32, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.floating-cta.is-visible {
  transform: translateY(0);
}
.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 20px rgba(232, 160, 32, 0.3);
}

/* ===== EXTRA VISUAL RICHNESS ===== */
.hero__title-accent {
  -webkit-text-stroke: 1px rgba(200, 140, 0, 0.3);
  paint-order: stroke fill;
}
.reason-card__big-num {
  background: linear-gradient(135deg, #E8A020, #F0C040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reason-card__percent,
.reason-card__yen {
  background: linear-gradient(135deg, #E8A020, #F0C040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial-card {
  border-left: 5px solid var(--color-orange);
}
.area__tag {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.area__tag:hover {
  box-shadow: 0 0 12px rgba(232, 160, 32, 0.3);
}
.shop__phone:hover {
  text-shadow: 0 0 12px rgba(232, 160, 32, 0.4);
}
.section-title {
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .container {
    max-width: 640px;
  }
  .hero__badges {
    gap: 12px;
  }
  .badge--hero {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
  .stats-bar {
    gap: 24px;
    padding: 20px;
  }
  .stat__value {
    font-size: 1.6rem;
  }
  .area__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 800px;
  }
  .worries__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .reasons__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .area__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .floating-cta {
    display: none;
  }
}
