@charset "UTF-8";
/* =========================================================
   ベニパンダ中国餃子専門店 ／ てげ旨®ジャオズ
   ========================================================= */

/* ---------- Tokens ---------- */
:root{
  --red:        #e8231a;
  --red-deep:   #b3120c;
  --red-soft:   #f7a49f;
  --gold:       #c9a227;
  --gold-light: #e6cf86;
  --cream:      #f7f1e4;
  --cream-2:    #fbf7ee;
  --paper:      #ffffff;
  --ink:        #241c19;
  --ink-2:      #5b4f49;
  --ink-3:      #8d827c;
  --dough:      #f7dfa9;
  --green:      #16b45a;

  --shadow-s: 0 2px 10px rgba(36,28,25,.06);
  --shadow-m: 0 10px 30px rgba(36,28,25,.10);
  --shadow-l: 0 24px 60px rgba(36,28,25,.14);

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 48px);
  --head-h: 88px;

  --serif: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Hiragino Sans", "Yu Gothic", sans-serif;
  --sans:  "Zen Kaku Gothic New", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  --latin: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:var(--head-h); }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--sans); font-size:16px; line-height:1.9;
  font-feature-settings:"palt" 1; letter-spacing:.02em;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p,figure,dl,dd{ margin:0; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
:focus-visible{ outline:3px solid var(--red); outline-offset:3px; border-radius:4px; }

/* ---------- Layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }
.wrap-wide{ width:100%; max-width:1440px; margin-inline:auto; padding-inline:var(--gut); }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.section{ padding-block:clamp(72px,10vw,132px); position:relative; }
.section--cream{ background:var(--cream); }
.section--cream2{ background:var(--cream-2); }

/* ---------- Type ---------- */
.eyebrow{
  font-family:var(--latin); font-size:.72rem; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; color:var(--red);
  display:flex; align-items:center; gap:.7em;
}
.eyebrow::before{
  content:""; width:26px; height:2px; background:var(--red); border-radius:2px; flex:none;
}
.eyebrow--center{ justify-content:center; }

.sec-head{ margin-bottom:clamp(36px,5vw,60px); }
.sec-head--center{ text-align:center; }
.sec-head--center .eyebrow{ justify-content:center; }
.sec-title{
  font-family:var(--serif); font-weight:700;
  font-size:clamp(1.7rem,4vw,2.5rem); line-height:1.45;
  letter-spacing:.04em; margin-top:.5em;
}
.sec-title .accent{ color:var(--red); }
.sec-lead{
  margin-top:1.2em; color:var(--ink-2); font-size:clamp(.94rem,1.6vw,1.02rem);
  line-height:2.1; max-width:44em;
}
.sec-head--center .sec-lead{ margin-inline:auto; }

/* ---------- Buttons ---------- */
.btn{
  --btn-bg:var(--red); --btn-fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.7em;
  background:var(--btn-bg); color:var(--btn-fg);
  font-family:var(--serif); font-weight:700; font-size:.95rem; letter-spacing:.08em;
  padding:1.05em 2.3em; border-radius:999px; line-height:1;
  box-shadow:0 8px 22px rgba(232,35,26,.26);
  transition:transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, background .25s;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-3px); box-shadow:0 14px 32px rgba(232,35,26,.32); }
.btn:active{ transform:translateY(-1px); }
.btn .arrow{ transition:transform .25s; }
.btn:hover .arrow{ transform:translateX(4px); }
.btn--ghost{
  --btn-bg:transparent; --btn-fg:#fff;
  border:1.5px solid rgba(255,255,255,.75); box-shadow:none; backdrop-filter:blur(4px);
}
.btn--ghost:hover{ background:rgba(255,255,255,.14); box-shadow:none; }
.btn--outline{
  --btn-bg:transparent; --btn-fg:var(--red);
  border:1.5px solid var(--red); box-shadow:none;
}
.btn--outline:hover{ background:var(--red); --btn-fg:#fff; box-shadow:0 12px 26px rgba(232,35,26,.24); }
.btn--lg{ padding:1.2em 2.8em; font-size:1rem; }

/* =========================================================
   Header
   ========================================================= */
.header{
  position:fixed; inset:0 0 auto 0; z-index:100; height:var(--head-h);
  display:flex; align-items:center;
  background:rgba(251,247,238,.0);
  transition:background .35s, box-shadow .35s, height .35s;
}
.header.is-stuck{
  background:rgba(251,247,238,.94);
  -webkit-backdrop-filter:saturate(1.6) blur(14px);
  backdrop-filter:saturate(1.6) blur(14px);
  box-shadow:0 1px 0 rgba(36,28,25,.07), 0 8px 26px rgba(36,28,25,.05);
  height:74px;
}
.header__inner{
  width:100%; max-width:1440px; margin-inline:auto; padding-inline:var(--gut);
  display:flex; align-items:center; gap:clamp(16px,2.4vw,34px);
  position:relative; z-index:2; /* ドロワーより前面に：ロゴと閉じるボタンを常に操作可能に */
}

.brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.brand__mark{
  width:46px; height:46px; border-radius:11px; overflow:hidden; flex:none;
  box-shadow:0 4px 12px rgba(179,18,12,.25);
}
.brand__mark img{ width:100%; height:100%; object-fit:cover; }
.brand__txt{ display:flex; flex-direction:column; line-height:1.25; min-width:0; }
.brand__ja{
  font-family:var(--serif); font-weight:700; font-size:.98rem; letter-spacing:.06em;
  color:var(--ink); transition:color .35s;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.brand__en{
  font-family:var(--latin); font-size:.55rem; font-weight:500; letter-spacing:.2em;
  color:var(--ink-3); transition:color .35s;
}
.header:not(.is-stuck):not(.is-open) .brand__ja{ color:#fff; }
.header:not(.is-stuck):not(.is-open) .brand__en{ color:rgba(255,255,255,.72); }

.gnav{ margin-left:auto; }
.gnav__list{ display:flex; align-items:center; gap:clamp(14px,1.9vw,30px); }
.gnav__link{ display:block; text-align:center; position:relative; padding-block:6px; }
.gnav__num{
  display:block; font-family:var(--latin); font-size:.58rem; font-weight:600;
  letter-spacing:.14em; color:var(--red); transition:color .3s;
}
.gnav__ja{
  display:block; font-family:var(--serif); font-weight:700;
  font-size:.83rem; letter-spacing:.05em; white-space:nowrap; transition:color .3s;
}
.gnav__link::after{
  content:""; position:absolute; left:50%; bottom:0; width:0; height:2px;
  background:var(--red); border-radius:2px; transform:translateX(-50%); transition:width .3s;
}
.gnav__link:hover::after{ width:100%; }
.header:not(.is-stuck) .gnav__ja{ color:#fff; }
.header:not(.is-stuck) .gnav__num{ color:var(--red-soft); }
.header:not(.is-stuck) .gnav__link::after{ background:#fff; }

.header__side{ display:flex; align-items:center; gap:16px; flex:none; }
.header__ig{
  display:flex; align-items:center; gap:7px;
  font-family:var(--latin); font-size:.74rem; font-weight:600; letter-spacing:.12em;
  transition:color .3s, opacity .3s;
}
.header__ig svg{ width:19px; height:19px; }
.header__ig:hover{ opacity:.65; }
.header:not(.is-stuck) .header__ig{ color:#fff; }
.header__cta{ padding:.95em 1.9em; font-size:.85rem; }

.burger{
  display:none; width:46px; height:46px; border-radius:12px; flex:none;
  align-items:center; justify-content:center; background:var(--red);
  box-shadow:0 6px 16px rgba(232,35,26,.28);
}
.burger span{
  display:block; width:19px; height:2px; background:#fff; border-radius:2px;
  position:relative; transition:background .2s;
}
.burger span::before,.burger span::after{
  content:""; position:absolute; left:0; width:19px; height:2px; background:#fff; border-radius:2px;
  transition:transform .3s cubic-bezier(.2,.8,.3,1), top .25s;
}
.burger span::before{ top:-6px; }
.burger span::after{ top:6px; }
.is-open .burger span{ background:transparent; }
.is-open .burger span::before{ top:0; transform:rotate(45deg); }
.is-open .burger span::after{ top:0; transform:rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero{ position:relative; min-height:min(100svh,880px); display:flex; align-items:flex-end; overflow:hidden; }
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:58% 50%; }
.hero__media::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(24,14,11,.86) 0%, rgba(24,14,11,.46) 42%, rgba(24,14,11,.28) 68%, rgba(24,14,11,.55) 100%),
    linear-gradient(to right, rgba(24,14,11,.55), rgba(24,14,11,0) 62%);
}
.hero__inner{
  position:relative; z-index:2; width:100%; max-width:1440px; margin-inline:auto;
  padding:0 var(--gut) clamp(72px,10vh,120px);
}
.hero__badge{
  display:inline-flex; align-items:center; gap:.6em;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.35);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  color:#fff; border-radius:999px; padding:.55em 1.25em;
  font-family:var(--serif); font-weight:700; font-size:.78rem; letter-spacing:.08em;
  margin-bottom:1.6em;
}
.hero__badge img{ width:22px; height:22px; object-fit:contain; }
.hero__title{
  font-family:var(--serif); font-weight:700; color:#fff;
  font-size:clamp(3rem,10.5vw,7.4rem); line-height:1.06; letter-spacing:.01em;
  text-shadow:0 6px 34px rgba(0,0,0,.35);
}
.hero__title .l{ display:block; overflow:hidden; }
.hero__title .l > span{
  display:block; transform:translateY(105%);
  animation:heroUp 1.05s cubic-bezier(.16,1,.3,1) forwards;
}
.hero__title .l:nth-child(2) > span{ animation-delay:.13s; }
@keyframes heroUp{ to{ transform:translateY(0); } }

.hero__sub{
  margin-top:1.5em; color:#fff; font-family:var(--serif); font-weight:500;
  font-size:clamp(.95rem,2.2vw,1.2rem); letter-spacing:.1em; line-height:1.9;
  opacity:0; animation:heroFade .9s .5s ease forwards;
}
.hero__sub strong{ font-weight:700; }
.hero__actions{
  margin-top:2.4em; display:flex; flex-wrap:wrap; gap:14px;
  opacity:0; animation:heroFade .9s .68s ease forwards;
}
@keyframes heroFade{ to{ opacity:1; } }

.hero__scroll{
  position:absolute; right:var(--gut); bottom:clamp(72px,10vh,120px); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  font-family:var(--latin); font-size:.6rem; font-weight:600; letter-spacing:.24em; color:#fff;
  writing-mode:vertical-rl;
}
.hero__scroll i{ display:block; width:1px; height:70px; background:rgba(255,255,255,.4); position:relative; overflow:hidden; }
.hero__scroll i::after{
  content:""; position:absolute; inset:0; background:#fff; transform:translateY(-100%);
  animation:scrollLine 1.9s ease-in-out infinite;
}
@keyframes scrollLine{ 0%{transform:translateY(-100%);} 55%{transform:translateY(0);} 100%{transform:translateY(100%);} }

/* ---------- Marquee ribbon ---------- */
.ribbon{ background:var(--red); color:#fff; padding-block:14px; overflow:hidden; }
.ribbon__track{ display:flex; width:max-content; animation:marquee 34s linear infinite; }
.ribbon:hover .ribbon__track{ animation-play-state:paused; }
.ribbon__group{ display:flex; align-items:center; }
.ribbon__item{
  display:flex; align-items:center; gap:22px; padding-inline:22px;
  font-family:var(--serif); font-weight:700; font-size:.92rem; letter-spacing:.12em; white-space:nowrap;
}
.ribbon__item::after{ content:""; width:7px; height:7px; border-radius:50%; background:var(--dough); }
@keyframes marquee{ to{ transform:translateX(-50%); } }

/* =========================================================
   News
   ========================================================= */
.news{ background:var(--cream-2); padding-block:clamp(52px,7vw,80px); }
.news__grid{ display:grid; grid-template-columns:minmax(0,260px) minmax(0,1fr); gap:clamp(24px,4vw,56px); align-items:start; }
.news__list{ border-top:1px solid rgba(36,28,25,.12); }
.news__item{ border-bottom:1px solid rgba(36,28,25,.12); }
.news__link{
  display:grid; grid-template-columns:auto auto 1fr; gap:8px 20px; align-items:center;
  padding:20px 8px; transition:background .25s, padding-left .25s;
}
.news__link:hover{ background:rgba(232,35,26,.045); padding-left:16px; }
.news__date{ font-family:var(--latin); font-size:.8rem; font-weight:600; color:var(--ink-3); letter-spacing:.06em; }
.news__tag{
  font-size:.68rem; font-family:var(--serif); font-weight:700; letter-spacing:.08em;
  color:var(--red); border:1px solid currentColor; border-radius:999px; padding:.25em 1em; white-space:nowrap;
}
.news__tag--gold{ color:var(--gold); }
.news__txt{ font-size:.94rem; font-weight:500; line-height:1.7; }

/* =========================================================
   About
   ========================================================= */
.about{ position:relative; overflow:hidden; }
.about__grid{ display:grid; grid-template-columns:1.14fr .86fr; gap:clamp(36px,5vw,76px); align-items:center; }
.about__body p + p{ margin-top:1.5em; }
.about__body p{ color:var(--ink-2); line-height:2.15; }
.about__body .lead{
  font-family:var(--serif); font-weight:700; font-size:clamp(1.05rem,2.2vw,1.3rem);
  color:var(--ink); line-height:1.95; letter-spacing:.04em;
}
.about__marks{ display:flex; flex-wrap:wrap; gap:10px; margin-top:2em; }
.about__marks li{
  font-family:var(--serif); font-weight:700; font-size:.8rem; letter-spacing:.06em;
  background:var(--cream); color:var(--red-deep); border-radius:999px; padding:.6em 1.3em;
}
.about__figs{ position:relative; }
.about__fig-a{ border-radius:26px; overflow:hidden; box-shadow:var(--shadow-l); }
.about__fig-a img{ aspect-ratio:4/3; object-fit:cover; width:100%; }
.about__fig-b{
  position:absolute; right:-6%; bottom:-14%; width:52%;
  border-radius:20px; overflow:hidden; border:7px solid #fff; box-shadow:var(--shadow-m);
}
.about__fig-b img{ aspect-ratio:1/1; object-fit:cover; width:100%; }
.about__stamp{
  position:absolute; left:-6%; top:-9%; width:112px; height:112px; border-radius:50%;
  background:var(--red); color:#fff; display:grid; place-content:center; text-align:center;
  font-family:var(--serif); font-weight:700; font-size:.78rem; line-height:1.55; letter-spacing:.04em;
  box-shadow:0 12px 30px rgba(179,18,12,.3); transform:rotate(-9deg);
}
.about__stamp b{ display:block; font-size:1.45rem; letter-spacing:0; }

/* Chinese frame decoration */
.cn-frame{
  position:absolute; width:clamp(160px,22vw,300px); aspect-ratio:1; pointer-events:none;
  opacity:.14; color:var(--gold);
}
.cn-frame--tr{ top:34px; right:-40px; }
.cn-frame--bl{ bottom:34px; left:-50px; transform:rotate(180deg); }

/* =========================================================
   Commitment
   ========================================================= */
.commit__list{ display:grid; gap:clamp(48px,7vw,96px); }
.commit__row{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,72px); align-items:center; }
.commit__row:nth-child(even) .commit__fig{ order:2; }
.commit__fig{ position:relative; border-radius:24px; overflow:hidden; box-shadow:var(--shadow-m); }
.commit__fig img{ width:100%; aspect-ratio:16/11; object-fit:cover; transition:transform .8s cubic-bezier(.2,.8,.3,1); }
.commit__row:hover .commit__fig img{ transform:scale(1.05); }
.commit__no{
  font-family:var(--latin); font-size:clamp(3rem,7vw,4.6rem); font-weight:700; line-height:1;
  color:var(--red); opacity:.16; letter-spacing:-.02em;
}
.commit__ttl{
  font-family:var(--serif); font-weight:700; font-size:clamp(1.3rem,2.8vw,1.75rem);
  line-height:1.6; letter-spacing:.04em; margin-top:-.35em;
}
.commit__ttl .mark{
  background:linear-gradient(transparent 62%, var(--dough) 62%); padding-inline:.08em;
}
.commit__txt{ margin-top:1.2em; color:var(--ink-2); line-height:2.15; font-size:.96rem; }
.commit__note{
  margin-top:1.5em; display:inline-flex; align-items:center; gap:.6em;
  font-family:var(--serif); font-weight:700; font-size:.8rem; letter-spacing:.05em;
  color:var(--red-deep); background:#fff; border:1px dashed var(--red-soft);
  border-radius:12px; padding:.7em 1.2em; line-height:1.6;
}

/* =========================================================
   Products
   ========================================================= */
.prod__grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(238px,1fr));
  gap:clamp(20px,2.6vw,30px);
}
.card{
  background:#fff; border-radius:24px; overflow:hidden; box-shadow:var(--shadow-s);
  display:flex; flex-direction:column;
  transition:transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s;
}
.card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-l); }
.card__media{ position:relative; overflow:hidden; }
.card__media img{ width:100%; aspect-ratio:1/1; object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.3,1); }
.card:hover .card__media img{ transform:scale(1.06); }
.card__flag{
  display:inline-block; align-self:flex-start; margin-bottom:.9em;
  font-family:var(--serif); font-weight:700; font-size:.68rem; letter-spacing:.08em;
  background:var(--cream); color:var(--red); border-radius:999px; padding:.42em 1em; line-height:1.4;
}
.card__flag--collab{ background:#eef7f0; color:#1c8a4c; }
.card__body{ padding:24px 24px 28px; display:flex; flex-direction:column; flex:1; }
.card__name{ font-family:var(--serif); font-weight:700; font-size:1.16rem; letter-spacing:.05em; line-height:1.5; }
.card__en{ font-family:var(--latin); font-size:.6rem; font-weight:600; letter-spacing:.18em; color:var(--ink-3); margin-top:.5em; }
.card__desc{ margin-top:1em; font-size:.87rem; line-height:1.95; color:var(--ink-2); flex:1; }
.card__meta{ margin-top:1.4em; padding-top:1.1em; border-top:1px solid rgba(36,28,25,.1); }
.card__spec{ font-size:.76rem; color:var(--ink-3); letter-spacing:.04em; }
.card__price{ font-family:var(--serif); font-weight:700; font-size:1.42rem; color:var(--red); letter-spacing:.02em; margin-top:.15em; }
.card__price small{ font-size:.64rem; color:var(--ink-3); font-weight:500; margin-left:.45em; letter-spacing:.06em; }
.card__price.is-soon{ font-size:.95rem; color:var(--ink-2); }

.prod__spec{
  margin-top:clamp(40px,5vw,64px); background:#fff; border-radius:24px;
  padding:clamp(26px,4vw,44px); box-shadow:var(--shadow-s);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:26px 40px;
}
.prod__spec dt{
  font-family:var(--serif); font-weight:700; font-size:.78rem; letter-spacing:.1em;
  color:var(--red); margin-bottom:.6em;
  display:flex; align-items:center; gap:.5em;
}
.prod__spec dt::before{ content:""; width:6px; height:6px; border-radius:50%; background:currentColor; }
.prod__spec dd{ font-size:.86rem; line-height:1.95; color:var(--ink-2); }

/* =========================================================
   How to cook
   ========================================================= */
.cook{ background:var(--red); color:#fff; position:relative; overflow:hidden; }
.cook .eyebrow{ color:#fff; }
.cook .eyebrow::before{ background:#fff; }
.cook .sec-title{ color:#fff; }
.cook .sec-lead{ color:rgba(255,255,255,.85); }
.cook__grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:clamp(22px,3vw,34px); }
.step{
  background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.2);
  border-radius:24px; padding:28px 26px 30px; position:relative; overflow:hidden;
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
}
.step__no{
  font-family:var(--latin); font-size:3.6rem; font-weight:700; line-height:1;
  color:rgba(255,255,255,.22); position:absolute; top:14px; right:20px;
}
.step__media{ border-radius:16px; overflow:hidden; margin-bottom:20px; }
.step__media img{ width:100%; aspect-ratio:16/10; object-fit:cover; }
.step__ttl{ font-family:var(--serif); font-weight:700; font-size:1.1rem; letter-spacing:.05em; line-height:1.6; }
.step__txt{ margin-top:.8em; font-size:.87rem; line-height:1.95; color:rgba(255,255,255,.86); }
.cook__tip{
  margin-top:clamp(30px,4vw,46px); display:flex; flex-wrap:wrap; gap:12px 26px;
  align-items:center; justify-content:center; text-align:center;
  background:rgba(0,0,0,.16); border-radius:20px; padding:22px 28px;
  font-family:var(--serif); font-weight:700; font-size:.9rem; letter-spacing:.06em; line-height:1.9;
}

/* =========================================================
   Awards / proof
   ========================================================= */
.proof__grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(34px,5vw,72px); align-items:center; }
.proof__badge{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; }
.proof__badge img{ width:min(210px,58%); }
.proof__badge p{ font-family:var(--serif); font-weight:700; font-size:1.02rem; line-height:1.8; letter-spacing:.04em; }
.proof__badge span{ font-size:.8rem; color:var(--ink-3); line-height:1.8; }

.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:clamp(26px,3.5vw,38px); }
.stat{ background:#fff; border-radius:20px; padding:22px 18px; text-align:center; box-shadow:var(--shadow-s); }
.stat__num{
  font-family:var(--latin); font-weight:700; font-size:clamp(1.6rem,4vw,2.3rem);
  color:var(--red); line-height:1.1; letter-spacing:-.01em;
}
.stat__num small{ font-size:.5em; margin-left:.1em; }
.stat__label{ font-size:.72rem; color:var(--ink-3); letter-spacing:.06em; margin-top:.7em; line-height:1.6; }

.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.gallery figure{ border-radius:16px; overflow:hidden; box-shadow:var(--shadow-s); }
.gallery img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.3,1); }
.gallery figure:hover img{ transform:scale(1.07); }

/* =========================================================
   Story
   ========================================================= */
.story{ background:var(--ink); color:#fff; position:relative; overflow:hidden; }
.story .eyebrow{ color:var(--red-soft); }
.story .eyebrow::before{ background:var(--red-soft); }
.story .sec-title{ color:#fff; }
.story__grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(36px,6vw,80px); align-items:start; }
.story__person{ text-align:center; }
.story__person img{
  width:min(210px,62%); margin-inline:auto; border-radius:50%;
  border:5px solid rgba(255,255,255,.12); box-shadow:0 20px 50px rgba(0,0,0,.4);
}
.story__role{ margin-top:22px; font-size:.78rem; letter-spacing:.1em; color:rgba(255,255,255,.6); line-height:1.9; }
.story__name{ font-family:var(--serif); font-weight:700; font-size:1.5rem; letter-spacing:.1em; margin-top:.35em; }
.story__name small{ display:block; font-size:.62rem; letter-spacing:.16em; color:rgba(255,255,255,.5); margin-top:.7em; font-weight:500; }

.story__steps{ display:grid; gap:clamp(24px,3vw,34px); margin-top:8px; }
.sstep{ position:relative; padding-left:60px; }
.sstep::before{
  content:attr(data-no); position:absolute; left:0; top:2px;
  width:40px; height:40px; border-radius:50%; background:var(--red); color:#fff;
  display:grid; place-content:center; font-family:var(--latin); font-weight:700; font-size:.9rem;
}
.sstep::after{
  content:""; position:absolute; left:19.5px; top:48px; bottom:-26px; width:1px;
  background:linear-gradient(rgba(255,255,255,.28), rgba(255,255,255,0));
}
.sstep:last-child::after{ display:none; }
.sstep__ttl{ font-family:var(--serif); font-weight:700; font-size:1.1rem; letter-spacing:.04em; line-height:1.65; }
.sstep__txt{ margin-top:.7em; font-size:.9rem; line-height:2.05; color:rgba(255,255,255,.74); }

.timeline{
  margin-top:clamp(34px,4vw,48px); border-top:1px solid rgba(255,255,255,.14);
  padding-top:26px; display:grid; gap:2px;
}
.timeline li{
  display:grid; grid-template-columns:96px 1fr; gap:16px; align-items:baseline;
  padding:9px 0; border-bottom:1px solid rgba(255,255,255,.07); font-size:.84rem;
  color:rgba(255,255,255,.78);
}
.timeline b{ font-family:var(--latin); font-weight:600; color:var(--red-soft); letter-spacing:.06em; font-size:.78rem; }

/* =========================================================
   CTA / Contact
   ========================================================= */
.cta{ position:relative; overflow:hidden; background:var(--cream); }
.cta__box{
  background:#fff; border-radius:clamp(24px,3vw,34px); box-shadow:var(--shadow-l);
  padding:clamp(34px,5.5vw,70px); text-align:center; position:relative; overflow:hidden;
}
.cta__box::before{
  content:""; position:absolute; inset:auto -10% -60% -10%; height:70%;
  background:radial-gradient(closest-side, rgba(232,35,26,.07), transparent);
}
.cta__ttl{
  font-family:var(--serif); font-weight:700; font-size:clamp(1.5rem,4vw,2.5rem);
  line-height:1.5; letter-spacing:.04em; position:relative;
}
.cta__lead{ margin-top:1.2em; color:var(--ink-2); font-size:.96rem; line-height:2.1; position:relative; }
.cta__actions{ margin-top:2.2em; display:flex; flex-wrap:wrap; gap:14px; justify-content:center; position:relative; }
.cta__ch{
  margin-top:clamp(32px,4vw,48px); display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:14px; position:relative;
}
.ch{
  background:var(--cream-2); border-radius:18px; padding:22px 20px; text-align:left;
  transition:transform .3s, box-shadow .3s;
}
a.ch:hover{ transform:translateY(-4px); box-shadow:var(--shadow-m); }
.ch__k{
  font-family:var(--latin); font-size:.62rem; font-weight:600; letter-spacing:.18em;
  color:var(--red); display:block; margin-bottom:.7em;
}
.ch__v{ display:block; font-family:var(--serif); font-weight:700; font-size:1.02rem; letter-spacing:.04em; line-height:1.6; }
.ch__note{ display:block; font-size:.75rem; color:var(--ink-3); margin-top:.6em; line-height:1.8; }

/* =========================================================
   Info / company
   ========================================================= */
.info__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(34px,5vw,70px); align-items:start; }
.table{ width:100%; border-collapse:collapse; }
.table th,.table td{
  text-align:left; vertical-align:top; padding:16px 4px;
  border-bottom:1px solid rgba(36,28,25,.1); font-size:.88rem; line-height:1.9;
}
.table th{ width:9em; font-family:var(--serif); font-weight:700; letter-spacing:.06em; color:var(--ink); }
.table td{ color:var(--ink-2); }

.faq__item{ border-bottom:1px solid rgba(36,28,25,.1); }
.faq__q{
  width:100%; display:flex; align-items:flex-start; gap:14px; text-align:left;
  padding:20px 4px; font-family:var(--serif); font-weight:700; font-size:.95rem; line-height:1.7;
}
.faq__q i{
  flex:none; width:22px; height:22px; margin-top:2px; position:relative;
  border-radius:50%; background:var(--red);
}
.faq__q i::before,.faq__q i::after{
  content:""; position:absolute; left:50%; top:50%; width:10px; height:2px; background:#fff;
  transform:translate(-50%,-50%); border-radius:2px; transition:transform .3s;
}
.faq__q i::after{ transform:translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open .faq__q i::after{ transform:translate(-50%,-50%) rotate(0deg); }
.faq__a{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .4s cubic-bezier(.2,.8,.3,1); }
.faq__item.is-open .faq__a{ grid-template-rows:1fr; }
.faq__a > div{ overflow:hidden; }
.faq__a p{ padding:0 4px 22px 36px; font-size:.87rem; line-height:2; color:var(--ink-2); }

/* =========================================================
   Footer
   ========================================================= */
.footer{ background:var(--ink); color:rgba(255,255,255,.75); padding-block:clamp(52px,7vw,80px) 30px; }
.footer__top{ display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:clamp(30px,5vw,60px); }
.footer__brand{ display:flex; align-items:center; gap:14px; }
.footer__brand img{ width:56px; height:56px; border-radius:13px; }
.footer__brand .n{ font-family:var(--serif); font-weight:700; color:#fff; font-size:1.05rem; letter-spacing:.06em; }
.footer__brand .e{ font-family:var(--latin); font-size:.56rem; letter-spacing:.2em; color:rgba(255,255,255,.45); margin-top:.5em; }
.footer__addr{ margin-top:22px; font-size:.83rem; line-height:2.05; }
.footer__ttl{
  font-family:var(--latin); font-size:.64rem; font-weight:600; letter-spacing:.2em;
  color:var(--red-soft); margin-bottom:16px;
}
.footer__list li + li{ margin-top:11px; }
.footer__list a{ font-size:.86rem; transition:color .25s, padding-left .25s; }
.footer__list a:hover{ color:#fff; padding-left:5px; }
.footer__sns{ display:flex; gap:10px; margin-top:18px; }
.footer__sns a{
  width:42px; height:42px; border-radius:50%; display:grid; place-content:center;
  background:rgba(255,255,255,.09); transition:background .25s, transform .25s;
}
.footer__sns a:hover{ background:var(--red); transform:translateY(-3px); }
.footer__sns svg{ width:19px; height:19px; }
.footer__bottom{
  margin-top:clamp(38px,5vw,56px); padding-top:22px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; flex-wrap:wrap; gap:10px 24px; justify-content:space-between; align-items:center;
  font-size:.72rem; color:rgba(255,255,255,.45); letter-spacing:.06em;
}

.totop{
  position:fixed; right:20px; bottom:20px; z-index:90;
  width:52px; height:52px; border-radius:50%; background:var(--red); color:#fff;
  display:grid; place-content:center; box-shadow:0 10px 26px rgba(232,35,26,.35);
  opacity:0; visibility:hidden; transform:translateY(14px);
  transition:opacity .35s, transform .35s, visibility .35s;
}
.totop.is-show{ opacity:1; visibility:visible; transform:translateY(0); }
.totop:hover{ background:var(--red-deep); }

/* =========================================================
   Reveal animation
   ========================================================= */
/* 反転指定：JS が動く環境でのみ隠す（JS 無効時も必ず表示される） */
.js .rv{ opacity:0; transform:translateY(28px); transition:opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.js .rv.is-in{ opacity:1; transform:none; }
.rv-d1{ transition-delay:.09s; } .rv-d2{ transition-delay:.18s; }
.rv-d3{ transition-delay:.27s; } .rv-d4{ transition-delay:.36s; }

/* =========================================================
   Drawer (mobile)
   ========================================================= */
.drawer{
  /* .header（z-index:100）内の重ね順。ヘッダー内容（z-index:2）より背面に置く */
  position:fixed; inset:0; z-index:1; background:var(--cream-2);
  padding:calc(var(--head-h) + 20px) var(--gut) 40px;
  overflow-y:auto; opacity:0; visibility:hidden; transform:translateY(-14px);
  transition:opacity .35s, transform .45s cubic-bezier(.16,1,.3,1), visibility .35s;
}
.is-open .drawer{ opacity:1; visibility:visible; transform:none; }
.drawer__list{ display:grid; gap:2px; }
.drawer__list a{
  display:flex; align-items:baseline; gap:14px; padding:18px 4px;
  border-bottom:1px solid rgba(36,28,25,.1);
}
.drawer__list .n{ font-family:var(--latin); font-size:.66rem; font-weight:600; color:var(--red); letter-spacing:.14em; }
.drawer__list .t{ font-family:var(--serif); font-weight:700; font-size:1.05rem; letter-spacing:.05em; }
.drawer__foot{ margin-top:28px; display:grid; gap:12px; }
.drawer__foot .btn{ width:100%; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:1080px){
  .gnav{ display:none; }
  .header__ig{ display:none; }
  .burger{ display:flex; margin-left:auto; }
  .header__side{ display:none; }
  .header.is-open{ background:var(--cream-2); }
}
@media (max-width:980px){
  .about__grid,.proof__grid,.story__grid,.info__grid,.news__grid{ grid-template-columns:1fr; }
  .commit__row{ grid-template-columns:1fr; gap:24px; }
  .commit__row:nth-child(even) .commit__fig{ order:0; }
  .about__figs{ margin-top:26px; }
  .about__fig-b{ width:44%; right:0; bottom:-10%; }
  .about__stamp{ left:auto; right:6%; top:-8%; width:96px; height:96px; font-size:.7rem; }
  .cn-frame{ display:none; }
  .story__person{ display:flex; align-items:center; gap:24px; text-align:left; }
  .story__person img{ width:120px; flex:none; margin:0; }
  .story__role{ margin-top:0; }
}
@media (max-width:680px){
  :root{ --head-h:74px; }
  body{ font-size:15px; }
  .hero{ min-height:88svh; }
  .hero__scroll{ display:none; }
  .stats{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:1fr 1fr; }
  .gallery figure:last-child{ grid-column:span 2; }
  .news__link{ grid-template-columns:auto 1fr; }
  .news__txt{ grid-column:1/-1; }
  .table th{ width:7em; }
  .footer__top{ grid-template-columns:1fr; }
  .about__figs{ padding-bottom:8%; }
  .prod__grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .card__body{ padding:18px 16px 22px; }
  .card__name{ font-size:1rem; }
  .card__desc{ font-size:.8rem; }
}
@media (max-width:420px){
  .brand__mark{ width:40px; height:40px; }
  .brand__ja{ font-size:.86rem; }
  .prod__grid{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:1fr; }
  .gallery figure:last-child{ grid-column:auto; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  html{ scroll-behavior:auto; }
  .hero__title .l > span{ transform:none; }
  .hero__sub,.hero__actions{ opacity:1; }
  .js .rv{ opacity:1; transform:none; }
}

@media print{
  .header,.drawer,.totop,.hero__scroll,.ribbon{ display:none !important; }
  .js .rv{ opacity:1 !important; transform:none !important; }
}
