:root{
  --orange:       #F47A24;
  --orange-dark:  #DE5F16;
  --orange-light: #FFE1C2;
  --cream:        #FFF9EC;
  --white:        #FFFFFF;
  --brown:        #3E3028;
  --green:        #76A94F;
  --yellow:       #F6C94C;

  --font-jp:      'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  --font-body:    'M PLUS Rounded 1c', sans-serif;
  --font-en:      'Poppins', sans-serif;

  --header-h: 96px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 32px rgba(62,48,40,0.08);
  --shadow-card: 0 8px 20px rgba(62,48,40,0.07);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body{
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.85;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; border:none; background:none; cursor:pointer; }
ul{ list-style:none; }

.container{
  width:100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible{
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.eyebrow{
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--orange-dark);
  margin-bottom: 10px;
}
.eyebrow-on-green{ color: #F4FBE9; }

.section-title{
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.5;
  color: var(--brown);
}
.section-title-on-green{ color: var(--white); }

.section-head{
  text-align:center;
  margin-bottom: 48px;
}
.section-head .eyebrow{ display:block; }

.sp-only{ display:none; }

.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in{ opacity:1; transform:none; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-jp);
  font-weight:700;
  font-size:15px;
  padding: 15px 30px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-icon{ width:18px; height:18px; flex-shrink:0; }

.btn-primary{
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(244,122,36,0.32);
}
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); }

.btn-secondary{
  background: var(--white);
  color: var(--orange-dark);
  border: 2px solid var(--orange-light);
}
.btn-secondary:hover{ background: var(--orange-light); transform: translateY(-2px); }

.btn-online{
  background: var(--white);
  color: var(--green);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.btn-online:hover{ background: var(--yellow); color: var(--brown); transform: translateY(-2px); }

.btn-outline{
  background:transparent;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
}
.btn-outline:hover{ background: var(--orange); color:var(--white); }

.media-frame{
  position:relative;
  width:100%;
  overflow:hidden;
  background: linear-gradient(135deg, var(--orange-light), #FFF3E0);
  border-radius: var(--radius-md);
}
.media-frame .media-img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.media-frame::after{
  content: attr(data-filename);
  position:absolute;
  left:10px; bottom:10px;
  font-family: var(--font-en);
  font-size:10.5px;
  letter-spacing:0.03em;
  color: var(--orange-dark);
  background: rgba(255,255,255,0.78);
  padding: 3px 9px;
  border-radius: 999px;
  opacity:0;
  transition: opacity 0.2s ease;
  pointer-events:none;
}
.media-frame.is-placeholder::after,
.media-frame:not(.is-placeholder) .media-img:not([src]){ opacity:1; }
.media-frame.is-placeholder .media-img{ visibility:hidden; }
.media-frame.is-placeholder::after{ opacity:1; }

.about-photo{ aspect-ratio: 4 / 5; box-shadow: var(--shadow-soft); }
.menu-photo{ aspect-ratio: 1 / 1; }
.bento-photo{ aspect-ratio: 4 / 3; }
.frozen-photo{ aspect-ratio: 1 / 1; }
.shop-photo{ aspect-ratio: 4 / 3; }
.hero-tile{ height:100%; border-radius:0; }

.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 700;
  height: var(--header-h);
  display:flex;
  align-items:center;
  background: rgba(255,249,236,0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled{
  background: rgba(255,249,236,0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(62,48,40,0.06);
}
.header-inner{
  width:100%;
  padding: 0 28px 0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.header-right-group{ display:flex; align-items:center; gap:16px; }
.header-right-group .hero-actions .btn{ padding:10px 20px; font-size:13px; }
.logo{ display:flex; flex-direction:row; align-items:center; gap:10px; align-self:center; height:100%; }
.logo-icon{ width:99px; height:auto; flex-shrink:0; }
.logo-text{ display:flex; flex-direction:column; justify-content:center; line-height:1.1; }
.logo-eyebrow{
  font-family: var(--font-body);
  font-size:10px;
  font-weight:700;
  letter-spacing:0.05em;
  color: var(--brown);
  opacity:0.75;
  margin-bottom:6px;
}
.logo-jp{
  font-family: var(--font-jp);
  font-weight:900;
  font-size:30px;
  line-height:1.2;
  color: var(--orange-dark);
}

.menu-btn{
  position:relative;
  width:120px; height:120px;
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: var(--orange);
  border-radius: 34px;
  box-shadow: 0 16px 32px rgba(244,122,36,0.38);
  transition: background 0.2s ease, transform 0.2s ease;
  transform: translateY(30px);
  z-index:5;
}
.menu-btn:hover{ background: var(--orange-dark); transform: translateY(28px); }
.menu-btn-open{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  transition: opacity 0.2s ease;
}
.menu-btn-tri{ width:34px; height:30px; }
.menu-btn-label{
  font-family: var(--font-en);
  font-size:15px;
  font-weight:700;
  letter-spacing:0.08em;
  color: var(--white);
}
.menu-btn-x{
  position:absolute;
  width:40px; height:40px;
  opacity:0;
  transition: opacity 0.2s ease;
}
.menu-btn.is-open .menu-btn-open{ opacity:0; }
.menu-btn.is-open .menu-btn-x{ opacity:1; }

.full-menu{
  position:fixed; inset:0; z-index:600;
  background: rgba(62,48,40,0.5);
  display:flex; align-items:center; justify-content:center;
  padding: calc(var(--header-h) + 24px) clamp(16px, 5vw, 64px) 24px;
  opacity:0; visibility:hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.full-menu.is-open{ opacity:1; visibility:visible; }

.full-menu-panel{
  position:relative;
  width:min(90vw, 480px);
  aspect-ratio: 1 / 1.05;
  max-height: calc(100vh - var(--header-h) - 48px);
  background: var(--cream);
  border-radius: 56px;
  box-shadow: 0 24px 48px rgba(62,48,40,0.32);
  display:flex; flex-direction:column; align-items:center;
  padding: 32px 28px 36px;
  box-sizing:border-box;
  transform: translateX(40px) scale(0.96);
  opacity:0;
  transition: transform 0.4s cubic-bezier(.2,.8,.3,1), opacity 0.35s ease;
}
.full-menu.is-open .full-menu-panel{ transform:none; opacity:1; }

.full-menu-illustration{
  width:clamp(90px, 18vw, 140px);
  height:auto;
  flex-shrink:0;
  margin-bottom:8px;
}

.full-menu-nav{
  position:relative; z-index:1;
  flex:1;
  width:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:space-evenly;
  gap: clamp(14px, 2.4vh, 22px);
}
.full-menu-nav a{
  font-family: var(--font-jp);
  font-weight:700;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--brown);
  text-align:center;
}
.full-menu-nav a:hover{ color: var(--orange-dark); }

.hero{
  position:relative;
  padding: calc(var(--header-h) + 14px) 20px 20px;
  overflow:hidden;
  height: 720px;
}
.hero-collage{
  position:relative;
  width:100%; height:100%;
  max-width:1400px; margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr 0.9fr 0.85fr 1.05fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas:
    "a a b b"
    "a a c d"
    "e e c d";
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.hero-tile{ border-radius:0; }
.hero-tile-a{ grid-area:a; }
.hero-tile-b{ grid-area:b; }
.hero-tile-c{ grid-area:c; }
.hero-tile-d{ grid-area:d; }
.hero-tile-e{ grid-area:e; }
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 50% at 50% 46%, rgba(244,122,36,0.22) 0%, rgba(222,95,22,0.14) 55%, rgba(62,48,40,0.28) 100%);
  pointer-events:none;
}

.hero-deco{ position:absolute; z-index:3; pointer-events:none; height:auto; }

@keyframes float-a{ 0%,100%{ transform: translateY(0) rotate(var(--tilt,0deg));} 50%{ transform: translateY(-12px) rotate(calc(var(--tilt,0deg) - 4deg));} }
@keyframes float-b{ 0%,100%{ transform: translateY(0) rotate(var(--tilt,0deg));} 50%{ transform: translateY(10px) rotate(calc(var(--tilt,0deg) + 5deg));} }

.hero-catch{
  position:absolute;
  inset:0;
  margin:auto;
  width:100%;
  max-width:760px;
  height:max-content;
  z-index:4;
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
  padding: 0 20px;
  box-sizing:border-box;
}
#hero .hero-catch{ transform: translateY(48px); }
#hero .hero-catch.reveal.in{ transform: translateY(48px); }
.hero-bubble{
  position:relative;
  background: rgba(255,249,236,0.82);
  backdrop-filter: blur(2px);
  border-radius: 38% 38% 30% 30% / 62% 62% 26% 26%;
  padding: clamp(34px,4.6vw,50px) clamp(38px,5.6vw,60px) clamp(30px,4vw,42px);
  box-shadow: 0 22px 46px rgba(62,48,40,0.28);
}
.hero-bubble::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  width:15%;
  min-width:44px;
  max-width:74px;
  height:9px;
  border-radius:999px;
  background: var(--brown);
  opacity:0.85;
}
.hero-catch-title{ font-family: var(--font-jp); font-weight:900; line-height:1.3; }
.hero-catch-line1{
  display:block;
  font-size: clamp(20px,2.4vw,27px);
  color: var(--orange-dark);
}
.hero-catch-line2{
  display:block;
  margin-top:8px;
  font-size: clamp(34px,4.8vw,53px);
  color: var(--brown);
}
.hero-catch-break{display:none;} .hero-catch-sub{
  display:block;
  margin-top:22px;
  font-family: var(--font-body);
  font-size: clamp(12px,1.3vw,14px);
  font-weight:700;
  letter-spacing:0.08em;
  color: var(--brown);
  opacity:0.75;
}
.hero-catch-brand{
  display:block;
  margin-top:6px;
  font-family: var(--font-jp);
  font-weight:900;
  font-size: clamp(24px,3.2vw,34px);
  color: var(--orange-dark);
  line-height:1.2;
}
.hero-sub{
  font-size:15px;
  line-height:1.75;
  color: var(--brown);
  background: rgba(255,249,236,0.85);
  padding: 14px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(62,48,40,0.12);
  margin-top:2px;
  margin-bottom:24px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.btn-cream{
  background: var(--cream);
  color: var(--orange-dark);
  box-shadow: 0 10px 22px rgba(62,48,40,0.18);
}
.btn-cream:hover{ background: var(--white); transform: translateY(-2px); }

.btn-green{
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(118,169,79,0.32);
}
.btn-green:hover{ background: #6B9A45; transform: translateY(-2px); }

.about{ padding: 100px 0; }
.about-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.about-media{ position:relative; }
.about-deco{ position:absolute; width:84px; height:auto; top:-34px; right:10%; transform:rotate(-9deg); pointer-events:none; }
.about-copy .section-title{ margin-bottom:22px; }
.about-text{ font-size:15px; opacity:0.85; margin-bottom:26px; }
.about-rice-deco{ width:70px; height:auto; opacity:0.85; transform:rotate(7deg); }

.promise{ padding: 90px 0; background: var(--white); }
.promise-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
}
.promise-card{
  position:relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 38px 26px 30px;
  text-align:center;
}
.promise-num{
  position:absolute; top:20px; left:24px;
  font-family: var(--font-en);
  font-weight:700;
  font-size:13px;
  color: var(--orange-light);
  letter-spacing:0.05em;
}
.promise-icon{ width:88px; height:auto; margin:10px auto 20px; display:block; }
.promise-card:nth-child(1) .promise-icon{ transform:rotate(-6deg); }
.promise-card:nth-child(2) .promise-icon{ transform:rotate(4deg); }
.promise-card:nth-child(3) .promise-icon{ transform:rotate(-3deg); }
.promise-card h3{
  font-family: var(--font-jp);
  font-weight:700;
  font-size:16.5px;
  line-height:1.6;
  color: var(--brown);
}

.menu{ padding: 90px 0; }
.menu-layout{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:52px;
  align-items:stretch;
}
.menu-main-photo{ height:100%; border-radius: var(--radius-lg); }
.menu-list{
  column-count:2;
  column-gap:36px;
  list-style:none;
  margin:0; padding:0;
}
.menu-list-item{
  break-inside: avoid-column;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  padding:13px 0;
  border-bottom: 1px dashed rgba(62,48,40,0.28);
}
.menu-list-name{
  font-family: var(--font-jp);
  font-weight:700;
  font-size:14.5px;
  color: var(--brown);
  line-height:1.4;
}
.menu-list-price{
  font-family: var(--font-en);
  font-weight:600;
  font-size:14px;
  color: var(--orange-dark);
  white-space:nowrap;
  flex-shrink:0;
}

.bento{ padding: 90px 0; background: var(--white); }
.bento-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:28px;
}
.bento-item{ display:flex; flex-direction:column; }
.bento-caption{
  font-family: var(--font-jp);
  font-weight:700;
  font-size:14.5px;
  margin-top:12px;
  text-align:center;
}
.bento-badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:4px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight:700;
  font-size:12px;
  letter-spacing:0.02em;
  padding:6px 12px 6px 9px;
  border-radius:999px;
  border:2px solid var(--white);
  box-shadow: 0 6px 14px rgba(244,122,36,0.4);
  transform: rotate(-7deg);
}
.bento-badge-icon{ width:13px; height:13px; color: var(--yellow); flex-shrink:0; }

.frozen{
  position:relative;
  padding: 84px 0 100px;
  background: linear-gradient(160deg, #86B85E, var(--green) 60%);
  overflow:hidden;
}
.frozen-inner{
  display:grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap:52px;
  align-items:start;
}
.frozen-copy{ padding-top:4px; }
.frozen-text{ color:#F4FBE9; font-size:15px; opacity:0.92; margin: 16px 0 26px; }
.frozen-products-label{
  text-align:center;
  color:#fff;
  font-family: var(--font-jp);
  font-weight:700;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing:0.02em;
  margin: 0 0 22px;
}
.frozen-products{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.frozen-product-name{
  font-family: var(--font-jp);
  font-weight:700;
  font-size:13px;
  color:#fff;
  margin-top:10px;
  text-align:center;
  line-height:1.5;
}

.howto-block{ margin-top:80px; padding-top:70px; border-top:1px solid rgba(255,255,255,0.22); }
.howto-block .section-head{ margin-bottom:44px; }
.howto-steps{
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:26px;
}
.howto-step{
  flex:1;
  max-width:220px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align:center;
  box-shadow: var(--shadow-card);
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.howto-num{
  font-family: var(--font-en);
  font-weight:700;
  font-size:12px;
  color: var(--orange-light);
  display:block;
  margin-bottom:6px;
}
.howto-icon{ width:70px; height:56px; margin: 6px auto 14px; }
.howto-step p{ font-family: var(--font-jp); font-weight:700; font-size:14.5px; }
.howto-arrow{
  font-size:22px;
  color: var(--orange);
  flex-shrink:0;
}

.shops{ padding: 90px 0; background: var(--white); }
.shops-lead{ font-size:14.5px; opacity:0.75; margin-top:10px; }
.shops-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
}
.shop-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 18px 24px;
}
.shop-name{
  font-family: var(--font-jp);
  font-weight:700;
  font-size:18px;
  margin: 16px 0 10px;
}
.shop-line{
  display:flex; align-items:center; gap:8px;
  font-size:13.5px;
  opacity:0.85;
  margin-bottom:6px;
}
.shop-icon{ width:16px; height:16px; flex-shrink:0; color: var(--orange-dark); }
.shop-map-link{
  display:inline-block;
  margin-top:12px;
  font-family: var(--font-en);
  font-size:12.5px;
  font-weight:600;
  color: var(--orange-dark);
  border-bottom: 1px solid var(--orange-dark);
}

.disclaimer{
  background: var(--orange-light);
  padding: 26px 20px;
  text-align:center;
}
.disclaimer p{
  max-width:680px;
  margin:0 auto;
  font-size:12px;
  line-height:1.8;
  color: var(--orange-dark);
}

.site-footer{
  position:relative;
  background: var(--orange-dark);
  color: var(--white);
  padding: 56px 0 24px;
  overflow:hidden;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:32px;
  position:relative; z-index:1;
}
.footer-logo{
  display:block;
  font-family: var(--font-jp);
  font-weight:700;
  font-size:20px;
  margin-bottom:12px;
  color:inherit;
}
.footer-logo:hover{ color: var(--orange-light); }
.footer-desc{ font-size:13px; opacity:0.85; line-height:1.9; }
.footer-nav{ display:flex; flex-direction:column; gap:12px; }
.footer-nav a{ font-family: var(--font-en); font-size:12.5px; letter-spacing:0.08em; opacity:0.9; }
.footer-actions{ display:flex; flex-direction:column; align-items:flex-start; gap:16px; }
.footer-online-btn{
  background: var(--white);
  color: var(--orange-dark);
  font-family: var(--font-jp);
  font-weight:700;
  font-size:13px;
  padding: 11px 22px;
  border-radius:999px;
}
.footer-deco{
  position:absolute; width:220px; height:auto; right:-30px; bottom:-30px;
  opacity:0.2; z-index:0; transform:rotate(-8deg);
  pointer-events:none;
}
.footer-copyright{
  text-align:center;
  font-family: var(--font-en);
  font-size:11px;
  opacity:0.7;
  margin-top:40px;
  position:relative; z-index:1;
}

.back-to-top{
  position:fixed;
  right:20px; bottom:20px;
  width:48px; height:48px;
  border-radius:50%;
  background: var(--orange);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 20px rgba(222,95,22,0.35);
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
  z-index:400;
}
.back-to-top svg{ width:20px; height:20px; }
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
.back-to-top:hover{ background: var(--orange-dark); }

@media (max-width: 1024px){
  .about-grid{ grid-template-columns: 1fr; gap:40px; }
  .about-media{ max-width:340px; margin:0 auto; }
  .frozen-inner{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / 3; }
}

@media (max-width: 860px){
  .hero-catch{ max-width:520px; }
  .hero-bubble{ padding: 30px 32px 24px; }

  .header-right-group{ gap:12px; }
  .hero-actions{ gap:8px; }
  .hero-actions .btn{ padding:11px 18px; font-size:13px; }

  .promise-grid{ grid-template-columns:1fr; gap:18px; }
  .menu-layout{ grid-template-columns:1fr; gap:34px; }
  .menu-main-photo{ height:auto; aspect-ratio: 16 / 9; }

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

  .frozen-products{ grid-template-columns: repeat(3, 1fr); gap:10px; }

  .howto-steps{ flex-direction:column; }
  .howto-arrow{ transform: rotate(90deg); }
  .howto-step{ max-width:none; width:100%; }

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

  .footer-grid{ grid-template-columns:1fr; text-align:center; }
  .footer-brand{ grid-column:auto; }
  .footer-actions{ align-items:center; }
  .footer-nav{ align-items:center; }
}

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

  .logo{ flex-shrink:0; gap:8px; }
  .logo-icon{ width:56px; }
  .logo-jp{ font-size:24px; white-space:nowrap; }
  .logo-eyebrow{ font-size:9px; margin-bottom:3px; white-space:nowrap; }

  .hero{
    height: 820px;
    padding: calc(var(--header-h) + 10px) 12px 16px;
  }
  .hero-collage{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.15fr 0.85fr 0.9fr 1.1fr;
    grid-template-areas:
      "a b"
      "a c"
      "d c"
      "d e";
    gap:5px;
  }
  .hero-catch{ max-width:94%; }
  .hero-bubble{
    padding: 36px 28px 26px;
  }
  .hero-catch-line1{ font-size:18px; }
  .hero-catch-line2{ font-size: 34px; margin-top:10px; }
  .hero-catch-break{display:inline;}
  .hero-catch-sub{ font-size:11px; margin-top:16px; }
  .hero-catch-brand{ font-size:22px; }
  .hero-sub{ font-size:13.5px; margin-bottom:20px; }
  .header-right-group{ flex-wrap:wrap; justify-content:flex-end; gap:6px; flex-shrink:1; min-width:0; }
  .hero-actions{ display:none; }

  .menu-btn{ order:1; width:100px; height:100px; border-radius:28px; transform:translateY(18px); }
  .menu-btn:hover{ transform: translateY(16px); }
  .menu-btn-tri{ width:28px; height:25px; }
  .menu-btn-label{ font-size:12px; }
  .menu-btn-x{ width:32px; height:32px; }

  .full-menu{ padding: calc(var(--header-h) + 18px) 14px 18px; justify-content:center; }
  .full-menu-panel{
    width:85vw;
    aspect-ratio: auto;
    height:auto;
    max-height: calc(100vh - var(--header-h) - 36px);
    border-radius:44px;
    padding: 26px 22px 30px;
  }
  .full-menu-illustration{ width:clamp(80px, 26vw, 120px); }
  .full-menu-nav{ gap: clamp(16px, 2.8vh, 26px); }
  .full-menu-nav a{ font-size:16px; }

  .about-deco{ width:56px; top:-18px; right:6%; }
  .about-rice-deco{ width:48px; }

  .promise-icon{ width:60px; }

  .menu-list{ column-count:1; }

  .footer-deco{ width:130px; right:-24px; bottom:-18px; opacity:0.16; }
}

@media (max-width: 480px){
  .frozen-products{ grid-template-columns: repeat(3, 1fr); gap:8px; }
}
