/* ===================== */
/*  COLOR SYSTEM */
/* ===================== */
:root {
  --color-text: #222;
  --color-subtext: #666;
  --color-border: #E5E5E5;

  --color-bg: #FFFFFF;
  --color-bg-soft: #ffffff;

  --color-primary: #000;
  --color-primary-hover: #333;

  /* food accent */
  --color-accent: #4CAF50;
  --color-accent-soft: #E8F5E9;
  --color-yellow: #F4D03F;       
  --color-yellow-soft: #FFF9E6;   
}


/* ===================== */
/*  HERO SECTION */
/* ===================== */
.hero-section {
  font-family: 
    "Hiragino Kaku Gothic ProN", 
    "ヒラギノ角ゴ ProN W3", 
    "Noto Sans JP", 
    "Yu Gothic", 
    "YuGothic", 
    "Meiryo", 
    sans-serif;

  background: #8cc63f;
  padding: 18px 10px;
  border-bottom: 1px solid var(--color-border);
　margin: 0;
}


/* ===================== */
/*  TEXT */
/* ===================== */
.hero-copy {
  text-align: center;
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.highlight {
  margin-top: 1px;
}

.highlight strong {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
 text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  display: inline-block;
  animation: popIn 0.6s ease-out;
}

@keyframes popIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-section .cta:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-section .cta:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-section .cta:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* subtle highlight */
.highlight strong::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin: 3px auto 0;
  border-radius: 2px;
}


/* ===================== */
/* CTA */
/* ===================== */
.hero-section .hero-cta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 100%;
  padding: 0 12px;
  overflow: visible;
}

.hero-section .cta {
  display: block;
  padding: 18px 16px;
  font-size: clamp(16px, 2.5vw, 18px);
  background: #fff;
  border: 2px solid var(--color-yellow);
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transform: scale(1);
  animation: fadeUp 0.6s ease both;
}
.hero-section .cta:hover {
  background: var(--color-yellow-soft); 
  border-color: var(--color-yellow);
  color: #000; 
  transform: translateY(-2px);
}

/* CTA center (売れ筋) */
.hero-section .cta.center {
  grid-column: span 2;            
  justify-self: center;            
  width: calc(60% - 9px);          
  max-width: none;                 
}

/* hover CTA center */
.hero-section .cta.center:hover {
  background: #fff;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero-section .cta.center::before {
  content: "人気";
  font-size: 10px;
  background: var(--color-yellow);
  color: #000;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 6px;
}
@media (max-width: 786px) {
  .highlight strong {
 font-size: 25px; 
 text-align: center;
  }
  .hero-section .cta.center {
    max-width: 55%;
  }
/* Mobile only */
@media (max-width: 480px) {
  .highlight strong {
    margin-left: 1px;
    margin-right: 1px;
    font-size: 16px;
    letter-spacing: -0.3px;
    text-align: center;
    white-space: nowrap;    
    overflow: hidden;       
    display: block;
  }
  .hero-section .cta {
    padding: 20px 16px;   
    font-size: 17px;
    border-radius: 12px;
  }
  .hero-section .cta.center {
    padding: 22px 18px;   
    max-width: 80%;  
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: -0.3px;
  }
}
@media (min-width: 1024px) {
  .hero-section .cta {
    padding: 22px 20px;
    font-size: 18px;
  }

  .hero-section .hero-cta {
    max-width: 900px;
    margin: 28px auto 0;
  }
  .hero-section .cta.center {
    max-width: 35%;
  }
}