/* ======================================
   Variables - Pink Rounded Theme
   ====================================== */
:root {
  /* Typography - Rounded */
  --font-display: 'M PLUS Rounded 1c', 'Zen Maru Gothic', sans-serif;
  --font-body: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --font-accent: 'M PLUS Rounded 1c', 'Zen Maru Gothic', sans-serif;

  /* Colors - Pink Base (draft.pdf style) */
  --color-primary: #F56C98;
  --color-secondary: #FFB5CD;
  --color-accent: #E85086;
  --color-gold: #C5A572;
  --color-highlight: #F37F9F;

  /* Neutrals */
  --color-bg-warm: #FFF8F3;
  --color-bg-light: #FEFEFE;
  --color-bg-cream: #FAF5F0;
  --color-text: #2C2C2C;
  --color-text-light: #666666;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
  --spacing-2xl: 120px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(45, 74, 62, 0.08);
  --shadow-md: 0 8px 24px rgba(45, 74, 62, 0.12);
  --shadow-lg: 0 16px 48px rgba(45, 74, 62, 0.16);
  --shadow-gold: 0 4px 20px rgba(197, 165, 114, 0.3);

  /* Transitions */
  --transition-base: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ======================================
   Scroll Progress Bar
   ====================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 10000;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s ease-out;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.4);
}

/* ======================================
   Floating CTA Button
   ====================================== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pulse-cta 2s ease-in-out infinite;
}

.floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 157, 0.6);
}

.floating-cta svg {
  flex-shrink: 0;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(255, 107, 157, 0.6); }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.loaded {
  opacity: 1;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9999;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ======================================
   Header
   ====================================== */
.header {
  background-color: rgba(255, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  padding: clamp(12px, 2vw, 20px) 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

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

.logo {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  font-family: var(--font-display);
  color: #FF90B3;
  letter-spacing: 0.5px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.phone-info {
  text-align: right;
}

.business-hours {
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.phone-number {
  display: inline-block;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 900;
  color: var(--color-text);
  white-space: nowrap;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.phone-caption {
  margin-top: 4px;
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  color: var(--color-primary);
  line-height: 1.35;
}

.btn-contact {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-highlight) 100%);
  color: #fff;
  padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 36px);
  border-radius: 60px;
  font-weight: 700;
  font-size: clamp(12px, 1.8vw, 15px);
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  text-align: center;
  line-height: 1.45;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 115, 94, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-contact span {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 700;
}

/* ======================================
   Hero Section - Magazine Cover Style
   ====================================== */
.hero {
  display: grid;
  grid-template-columns: 58fr 42fr;
  min-height: clamp(600px, 90vh, 900px);
  position: relative;
  background: var(--color-bg-warm);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-copy {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(24px, 5vw, 90px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(8px, 1.4vw, 14px);
  text-align: right;
  pointer-events: none;
}

.hero-copy-top,
.hero-copy-main {
  margin: 0;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #EA5B91;
  text-shadow:
    -3px -3px 0 #FFFFFF,
    3px -3px 0 #FFFFFF,
    -3px 3px 0 #FFFFFF,
    3px 3px 0 #FFFFFF,
    0 6px 18px rgba(255, 255, 255, 0.85);
}

.hero-copy-top {
  font-size: clamp(34px, 5.8vw, 100px);
}

.hero-copy-main {
  font-size: clamp(46px, 7vw, 100px);
}

.hero-copy-badge {
  margin: 0;
  min-width: clamp(240px, 34vw, 420px);
  padding: clamp(8px, 1vw, 12px) clamp(20px, 2vw, 28px);
  border-radius: 6px;
  background: linear-gradient(135deg, #EC5D94 0%, #E44C86 100%);
  color: #FFFFFF;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-align: center;
  box-shadow: 0 10px 24px rgba(228, 76, 134, 0.28);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: contrast(1.05) brightness(1.02) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 248, 243, 0.3) 70%,
    var(--color-bg-warm) 100%
  );
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px) clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 10;
}

.badge-award {
  position: relative;
  margin-bottom: clamp(24px, 4vw, 32px);
  animation: float 4s ease-in-out infinite, rotate-subtle 8s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(197, 165, 114, 0.4))
          drop-shadow(0 0 40px rgba(197, 165, 114, 0.2));
  align-self: flex-start;
}

.badge-award img {
  width: clamp(100px, 15vw, 140px);
  height: auto;
}

.badge-award--in-price {
  position: absolute;
  top: clamp(-54px, -5vw, -36px);
  right: clamp(10px, 2vw, 22px);
  margin-bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.badge-award--in-price img {
  width: clamp(88px, 11vw, 124px);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes rotate-subtle {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  25% { transform: translateY(-8px) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
  75% { transform: translateY(-8px) rotate(-1deg); }
}

.hero-text {
  animation: fadeInUp 1s ease 0.3s both;
}

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

.hero-label {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(2px, 0.4vw, 6px);
  margin: 0;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  line-height: 1;
}

.hero-label-text {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.01em;
}

.hero-label-number,
.hero-label-unit {
  font-weight: 900;
  color: #E60012;
}

.hero-label-number {
  font-size: clamp(44px, 6vw, 66px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-label-unit {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 0.95;
}

.hero-price-main {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: clamp(8px, 1.4vw, 14px);
  row-gap: clamp(4px, 0.8vw, 8px);
  margin-bottom: clamp(32px, 5vw, 48px);
  position: relative;
  padding: 30px 100px 40px 30px;
  /* padding: clamp(16px, 2vw, 33px) clamp(18px, 2.2vw, 40px) clamp(10px, 1.4vw, 30px); */
  width: fit-content;
  max-width: 100%;
  background: white;
  border-radius: 28px;
  box-shadow:
    0 8px 32px rgba(255, 107, 157, 0.25),
    0 0 0 3px rgba(255, 144, 179, 0.1);
  border: 3px solid transparent;
  background-clip: padding-box;
}

.meal-price-breakdown {
  display: flex;
  flex-direction: column;
  /* align-self: start; */
  gap: 0;
  /* font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif; */
  font-size: clamp(14px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 1.12;
  color: #111111;
  white-space: nowrap;
  padding-top: clamp(2px, 0.4vw, 6px);
  margin-left: -50px;
}

.price-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: clamp(6px, 1vw, 12px);
}

.hero-price-main::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  border-radius: 28px;
  z-index: -1;
  animation: gradient-rotate 3s linear infinite;
  background-size: 200% 200%;
}

@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.price-large {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}

.price-number {
  font-size: clamp(78px, 13vw, 156px);
  font-weight: 900;
  color: #E60012;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.price-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  /* font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif; */
  font-size: clamp(14px, 2vw, 18px);
  color: var(--color-text-light);
  line-height: 1.05;
  padding-top: 40px;
}

.price-tax {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 900;
  color: #E60012;
  line-height: 1.1;
}

.price-yen {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 58px);
  font-weight: 900;
  color: #E60012;
  line-height: 0.95;
}

.price-note {
  margin: 0;
  font-size: clamp(10px, 1.15vw, 14px);
  font-weight: 500;
  line-height: 1.2;
  color: #111111;
  white-space: nowrap;
  padding-top: 5px; 
}

.hero-features {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 24px);
  margin-bottom: clamp(32px, 5vw, 48px);
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 600;
  color: var(--color-text);
  padding: 12px 20px;
  background: rgba(232, 184, 154, 0.15);
  border-radius: 50px;
  border: 1px solid rgba(197, 165, 114, 0.3);
  transition: all var(--transition-base);
}

.feature-badge:hover {
  background: rgba(232, 184, 154, 0.25);
  transform: translateX(8px);
}

.feature-badge svg {
  flex-shrink: 0;
  color: var(--color-primary);
  filter: drop-shadow(0 2px 4px rgba(255, 144, 179, 0.3));
}

.free-ship-icon {
  width: clamp(92px, 10vw, 170px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 18px rgba(245, 108, 152, 0.24));
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-highlight) 100%);
  color: #fff;
  padding: clamp(18px, 3vw, 24px) clamp(32px, 5vw, 48px);
  border-radius: 60px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(255, 144, 179, 0.4);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  animation: fadeInUp 1s ease 0.7s both;
  position: relative;
  overflow: hidden;
}

.btn-hero-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero-cta:hover::before {
  width: 400px;
  height: 400px;
}

.btn-hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 144, 179, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: clamp(24px, 4vw, 32px);
  transition: transform var(--transition-base);
  position: relative;
  z-index: 1;
}

.btn-hero-cta:hover .btn-arrow {
  transform: translateX(8px);
}

/* ======================================
   Sections Base
   ====================================== */
section {
  padding: clamp(60px, 10vw, 65px) 0;
  position: relative;
}

section.hero {
  padding: 0;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
  color: var(--color-text);
  line-height: 1.2;
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.section-title .highlight {
  color: var(--color-primary);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  font-style: italic;
  display: inline-block;
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-primary) 100%);
  opacity: 0.3;
  border-radius: 4px;
}

.section-divider {
  position: relative;
  width: 100%;
  height: 3px;
  margin: clamp(60px, 10vw, 100px) auto;
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0px,
    var(--color-primary) 10px,
    transparent 10px,
    transparent 20px
  );
}

/* ======================================
   Reasons Section
   ====================================== */
.reasons {
  background: linear-gradient(180deg, #FFFDFC 0%, #FFF7FA 100%);
  position: relative;
  overflow: hidden;
}

.reasons::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 144, 179, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-bubble 20s ease-in-out infinite;
  pointer-events: none;
}

.reasons::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 181, 205, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-bubble 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float-bubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 50px) scale(1.1); }
}

.reason-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  margin-bottom: clamp(80px, 12vw, 140px);
  opacity: 0;
  transform: translateY(60px);
  transition: all var(--transition-smooth);
  position: relative;
}

.reason-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.reason-item:nth-child(2n) {
  grid-template-columns: 1fr 1.2fr;
}

.reason-item:nth-child(2n) .reason-image {
  order: 2;
}

.reason-item:nth-child(2n) .reason-content {
  order: 1;
}

/* Number decoration */
.reason-item::before {
  content: attr(data-number);
  position: absolute;
  top: -30px;
  left: -40px;
  font-size: clamp(100px, 15vw, 180px);
  font-family: var(--font-accent);
  font-weight: 900;
  color: var(--color-gold);
  opacity: 0.08;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.reason-item:nth-child(2n)::before {
  left: auto;
  right: -40px;
}

.reason-image {
  position: relative;
  z-index: 1;
}

.reason-image img {
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth);
}

.reason-item:hover .reason-image img {
  transform: scale(1.03) rotate(-1deg);
}

.image-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--color-gold);
  border-radius: 24px;
  opacity: 0.4;
  transition: all var(--transition-base);
  pointer-events: none;
}

.reason-item:hover .image-frame {
  top: -20px;
  left: -20px;
  opacity: 0.6;
}

.reason-content {
  position: relative;
  z-index: 1;
}

.reason-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: clamp(16px, 3vw, 24px);
  line-height: 1.3;
}

.reason-text {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.9;
  color: var(--color-text);
}

.reason-text strong {
  color: var(--color-accent);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  background: linear-gradient(to right, rgba(197, 165, 114, 0.2), transparent);
  padding: 2px 4px;
  border-radius: 4px;
  letter-spacing: 0.01em;
}

/* ======================================
   Lineup Section
   ====================================== */
.lineup {
  background: linear-gradient(180deg, #FFF6F8 0%, #FFF0F4 100%);
  position: relative;
}

.pink-bg {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  padding: clamp(12px, 2vw, 18px) clamp(40px, 8vw, 80px);
  border-radius: 60px;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(255, 144, 179, 0.4);
}

.lineup .section-title {
  display: flex;
  justify-content: center;
}

.lineup-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(32px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.lineup-grid > * {
  flex: 0 0 auto;
  width: clamp(260px, 30%, 320px);
}

.lineup-item {
  background: white;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 24px;
  box-shadow:
    0 4px 12px rgba(255, 144, 179, 0.15),
    0 0 0 1px rgba(255, 144, 179, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.lineup-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 28px rgba(255, 144, 179, 0.25),
    0 0 0 1px rgba(255, 144, 179, 0.15);
}

.lineup-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.lineup-item:nth-child(1) { transition-delay: 0.1s; }
.lineup-item:nth-child(2) { transition-delay: 0.2s; }
.lineup-item:nth-child(3) { transition-delay: 0.3s; }
.lineup-item:nth-child(4) { transition-delay: 0.4s; }
.lineup-item:nth-child(5) { transition-delay: 0.5s; }

.lineup-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: clamp(16px, 3vw, 24px);
  box-shadow: 0 4px 12px rgba(255, 144, 179, 0.2);
  transition: all var(--transition-base);
}

.lineup-item:hover .lineup-image-wrap {
  box-shadow: 0 8px 24px rgba(255, 144, 179, 0.3);
}

.lineup-image {
  width: 100%;
  height: clamp(220px, 30vw, 280px);
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(1.05) contrast(1.03);
}

.lineup-item:hover .lineup-image {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.05) brightness(1.02);
}

/* Type badge */
.lineup-item::before {
  content: attr(data-type);
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-gold);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(197, 165, 114, 0.4);
}

.lineup-name {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: clamp(12px, 2vw, 16px);
  text-align: center;
}

.lineup-desc {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: var(--color-text);
  text-align: left;
}

.lineup-desc strong {
  color: var(--color-accent);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  display: inline-block;
  letter-spacing: 0.01em;
}

/* ======================================
   Cost Simulation Section - Image Style
   ====================================== */
.cost {
  background: linear-gradient(180deg, #FFFCFD 0%, #FFF7FA 100%);
  position: relative;
}

.cost .section-title {
  display: flex;
  justify-content: center;
}

.cost-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 144, 179, 0.2);
}

.cost-simulation-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ======================================
   Support Section
   ====================================== */
.support {
  background: linear-gradient(180deg, #FFF7F9 0%, #FFF2F6 100%);
  position: relative;
  overflow: hidden;
}

.support::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 181, 205, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
  color: var(--color-accent);
  line-height: 1.3;
}

.highlight-large {
  color: var(--color-primary);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  font-style: italic;
}

.support-intro {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-text {
  color: var(--color-primary);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  padding: 2px 6px;
  background: linear-gradient(to right, rgba(212, 115, 94, 0.15), transparent);
  border-radius: 4px;
  letter-spacing: 0.01em;
}

.support-intro-main {
  margin-top: clamp(24px, 4vw, 36px);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  line-height: 1.8;
}

.support-subtitle {
  font-size: clamp(24px, 4vw, 36px);
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 5vw, 48px);
  margin-bottom: clamp(48px, 8vw, 80px);
}

.support-item {
  text-align: center;
  transition: transform var(--transition-base);
}

.support-item:hover {
  transform: translateY(-8px);
}

.support-item img {
  width: 100%;
  height: clamp(200px, 30vw, 280px);
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: clamp(16px, 3vw, 24px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  filter: saturate(1.05);
}

.support-item:hover img {
  box-shadow: var(--shadow-lg);
  filter: saturate(1.15) contrast(1.05);
}

.support-text {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 500;
}

.support-message {
  text-align: center;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: clamp(32px, 5vw, 48px);
  line-height: 1.9;
  color: var(--color-text);
}

.support-message strong {
  color: var(--color-primary);
  font-size: clamp(20px, 3.5vw, 28px);
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-highlight) 100%);
  color: #fff;
  padding: clamp(20px, 4vw, 28px) clamp(48px, 8vw, 72px);
  border-radius: 60px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-base);
  line-height: 1.6;
  letter-spacing: 0.01em;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.8s, height 0.8s;
}

.btn-cta:hover::before {
  width: 600px;
  height: 600px;
}

.btn-cta:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 45px rgba(212, 115, 94, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ======================================
   FAQ Section
   ====================================== */
.faq {
  background: linear-gradient(180deg, #FFFDFD 0%, #FFF7FA 100%);
}

.pink-text {
  color: var(--color-primary);
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  counter-reset: faq-counter;
}

.faq-item {
  background: #fff;
  padding: clamp(24px, 4vw, 36px) clamp(28px, 5vw, 40px);
  padding-left: clamp(60px, 10vw, 80px);
  margin-bottom: clamp(16px, 3vw, 24px);
  border-radius: 20px;
  border-left: 5px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.faq-item::before {
  content: counter(faq-counter);
  counter-increment: faq-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  font-family: var(--font-display);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-width: 8px;
}

.faq-item:hover::before {
  transform: translateY(-50%) scale(1.2) rotate(360deg);
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4);
}

.faq-question {
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: clamp(12px, 2vw, 16px);
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.faq-answer {
  font-size: clamp(15px, 2.3vw, 18px);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.01em;
}

/* ======================================
   Campaign Section - draft.pdf Style
   ====================================== */
.campaign {
  background: linear-gradient(180deg, #FFF6F8 0%, #FFF1F5 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 76px) 0;
}

.campaign::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 144, 179, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-bubble-slow 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-bubble-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.campaign-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(28px, 4.5vw, 40px) clamp(24px, 4.5vw, 40px);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-primary);
  position: relative;
}

.campaign-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(10px, 2vw, 18px);
}

.campaign-label {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.3;
}

.campaign-label span {
  font-size: clamp(28px, 5vw, 36px);
  display: inline;
  margin-left: 8px;
}

.campaign-badge-new {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #E60012;
  padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 32px);
  border-radius: 30px;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.campaign-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: clamp(14px, 2.5vw, 24px);
  text-align: center;
  line-height: 1.15;
}

.campaign-price-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.5vw, 30px);
  margin-bottom: clamp(12px, 2vw, 18px);
}

.campaign-before-box,
.campaign-after-box {
  flex: 1;
  text-align: center;
}

.campaign-before-label {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--color-text-light);
  margin-bottom: 4px;
  font-weight: 600;
}

.campaign-before-price {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--color-text);
  font-weight: 700;
}

.strikethrough {
  text-decoration: line-through;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: var(--color-text-light);
}

.small {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 600;
  margin-left: 4px;
}

.campaign-arrow-large {
  font-size: clamp(36px, 7vw, 56px);
  color: #E60012;
  font-weight: 900;
  line-height: 1;
}

.campaign-zero-large {
  font-size: clamp(80px, 15vw, 120px);
  font-weight: 900;
  color: #E60012;
  line-height: 1;
}

.campaign-yen-large {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 900;
  margin-left: 8px;
}

.campaign-note {
  font-size: clamp(11px, 2vw, 13px);
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.4;
}

/* ======================================
   Footer
   ====================================== */
.footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-highlight) 100%);
  color: #fff;
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.footer .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: clamp(32px, 6vw, 48px);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: clamp(24px, 4vw, 36px);
  letter-spacing: 1px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.footer-hours {
  font-size: clamp(13px, 2vw, 26px);
  font-weight: 500;
  opacity: 0.9;
}

.footer-phone {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  font-family: var(--font-accent);
  margin-bottom: clamp(8px, 2vw, 16px);
  letter-spacing: -0.5px;
}

.btn-footer-contact {
  background: #fff;
  color: var(--color-primary);
  padding: clamp(16px, 3vw, 24px) clamp(40px, 7vw, 64px);
  border-radius: 60px;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  line-height: 1.6;
  letter-spacing: 0.01em;
  border: 3px solid transparent;
}

.btn-footer-contact:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: var(--color-accent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-company {
  margin-top: clamp(20px, 4vw, 32px);
  font-size: clamp(11px, 1.7vw, 13px);
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.footer-company p {
  margin: 0;
}

.footer-company-name {
  margin-bottom: 4px;
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.footer-company a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ======================================
   Responsive Design
   ====================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-wrap {
    height: 50vh;
    order: 1;
  }

  .hero-copy {
    right: 20px;
    bottom: 18px;
  }

  .hero-copy-top {
    font-size: clamp(28px, 5vw, 46px);
  }

  .hero-copy-main {
    font-size: clamp(38px, 6.6vw, 62px);
  }

  .hero-copy-badge {
    min-width: 0;
    width: min(86vw, 360px);
    font-size: clamp(16px, 3vw, 24px);
    letter-spacing: 0.18em;
  }

  .hero-content {
    order: 2;
    padding: clamp(40px, 8vw, 60px) clamp(24px, 5vw, 40px);
  }

  .badge-award--in-price {
    top: -34px;
    right: 12px;
  }

  .reason-item,
  .reason-item:nth-child(2n) {
    grid-template-columns: 1fr;
  }

  .reason-item:nth-child(2n) .reason-image,
  .reason-item:nth-child(2n) .reason-content {
    order: 0;
  }

  .cost-image-wrapper {
    padding: clamp(16px, 3vw, 24px);
  }

  .campaign-price-flow {
    flex-direction: column;
    gap: 12px;
  }

  .campaign-arrow-large {
    transform: rotate(90deg);
  }

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

}

@media (max-width: 640px) {
  .header {
    padding: 6px 0;
  }

  .logo {
    font-size: 20px;
    line-height: 1.1;
  }

  .business-hours,
  .phone-caption {
    display: none;
  }

  .phone-number {
    font-size: 15px;
    line-height: 1;
    color: var(--color-text-light);
  }

  .btn-contact {
    padding: 8px 14px;
    font-size: 12px;
    line-height: 1.2;
    border-width: 1px;
    box-shadow: 0 4px 12px rgba(245, 108, 152, 0.24);
    white-space: nowrap;
  }

  .btn-contact span {
    display: none;
  }

  .hero-copy {
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .hero-copy-top,
  .hero-copy-main {
    text-shadow:
      -2px -2px 0 #FFFFFF,
      2px -2px 0 #FFFFFF,
      -2px 2px 0 #FFFFFF,
      2px 2px 0 #FFFFFF,
      0 4px 12px rgba(255, 255, 255, 0.9);
  }

  .hero-copy-top {
    font-size: 60px;
  }

  .hero-copy-main {
    font-size: 60px;
  }

  .hero-copy-badge {
    width: min(88vw, 300px);
    padding: 7px 14px;
    font-size: 23px;
    letter-spacing: 0.12em;
  }

  .badge-award--in-price {
    top: -28px;
    right: 10px;
  }

  .badge-award--in-price img {
    width: 86px;
  }

  .campaign {
    padding: 32px 0;
  }

  .campaign-box {
    padding: 24px 18px;
  }

  .campaign-header {
    gap: 8px;
    align-items: flex-start;
  }

  .hero-price-main {
    grid-template-columns: auto auto;
    align-items: end;
    column-gap: 8px;
    row-gap: 5px;
    padding: 18px 54px 20px 18px;
    width: fit-content;
    align-self: center;
    max-width: 100%;
  }

  .hero-label {
    justify-content: flex-start;
  }

  .hero-label-text {
    font-size: 16px;
  }

  .hero-label-number {
    font-size: 36px;
  }

  .hero-label-unit {
    font-size: 24px;
  }

  .meal-price-breakdown {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.15;
    margin-left: 0;
    padding-top: 2px;
    text-align: left;
  }

  .price-row {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    align-items: center;
    justify-items: start;
    column-gap: 6px;
    row-gap: 0;
  }

  .price-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 22px;
    padding-bottom: 0;
    text-align: left;
    width: auto;
  }

  .price-large {
    justify-content: flex-start;
    width: auto;
    gap: 0;
  }

  .price-number {
    font-size: clamp(92px, 25vw, 112px);
  }

  .price-tax {
    font-size: 13px;
  }

  .price-yen {
    font-size: 34px;
  }

  .price-note {
    font-size: 10px;
    padding-top: 3px;
  }

  .header .container {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 14px;
  }

  .header-contact {
    flex: 1;
    flex-direction: row;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .phone-info {
    order: 2;
    flex-basis: 100%;
    text-align: right;
  }

  .btn-contact {
    width: auto;
  }

  .hero-features {
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    /* justify-content: center; */
  }

  .free-ship-icon {
    width: 92px;
  }

  .feature-badge {
    font-size: 12px;
    padding: 9px 14px;
  }

  .lineup-grid {
    flex-direction: column;
    align-items: center;
  }

  .lineup-grid > * {
    width: 100%;
    max-width: 400px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .floating-cta span {
    display: none;
  }

  .faq-item {
    padding-left: clamp(50px, 12vw, 60px);
  }

  .faq-item::before {
    left: 12px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

}

/* ======================================
   Print Styles
   ====================================== */
@media print {
  body::before,
  .header,
  .badge-award,
  .btn-hero-cta,
  .btn-cta,
  .btn-footer-contact,
  .floating-cta,
  .scroll-progress-bar {
    display: none;
  }

  * {
    box-shadow: none !important;
    animation: none !important;
  }
}
