@charset "utf-8";
/* =========================================================
   TOROPIKATSU  ―  鹿児島県産とんかつ トロピカツ 伊集院
   style.css
   ========================================================= */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, dl, dt, dd, figure, figcaption, table, th, td {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; }

/* ---------- tokens ---------- */
:root {
  --ink: #111111;
  --ink-2: #333333;
  --gray: #8b8b8b;
  --gray-l: #b5b5b5;
  --line: #e3e3e3;
  --bg: #ffffff;
  --bg-2: #f6f6f4;
  --teal: #0FB2CC;
  --teal-d: #0a92a8;
  --green: #3E7A55;

  --inner: 940px;
  --pad: 30px;
  --head-h: 110px;

  --jp: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic",
        "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Meiryo", sans-serif;
  --en: "Barlow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --round: "Zen Maru Gothic", var(--jp);
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 20px); }
body {
  font-family: var(--jp);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

.inner { width: min(var(--inner), calc(100% - var(--pad) * 2)); margin-inline: auto; }
.inner-w { width: min(1180px, calc(100% - var(--pad) * 2)); margin-inline: auto; }

.en { font-family: var(--en); font-weight: 600; letter-spacing: 0.06em; }

/* ---------- fade in ---------- */
.fade { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
.fade.is-show { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   header
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--head-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  pointer-events: none;
}
.header > * { pointer-events: auto; }

.logo { display: flex; align-items: center; gap: 11px; line-height: 1; }
.logo__mark { width: 40px; height: auto; flex: none; }
.logo__type { display: block; }
.logo__wm { display: block; height: 20px; width: auto; }
.logo__en {
  display: block;
  font-family: var(--en); font-weight: 600;
  font-size: 9px; letter-spacing: 0.22em;
  color: var(--gray); margin-top: 5px;
}

.head-nav { display: flex; align-items: center; gap: 26px; }
.head-nav__sns { display: flex; align-items: center; gap: 14px; }
.head-nav__sns a { display: grid; place-items: center; width: 22px; height: 22px; transition: opacity .3s; }
.head-nav__sns a:hover { opacity: .5; }
.head-nav__sns svg { width: 18px; height: 18px; fill: var(--ink); }

.btn-reserve {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 20px;
  border: 1px solid var(--ink);
  font-family: var(--en); font-weight: 600; font-size: 13px; letter-spacing: 0.1em;
  background: #fff;
  transition: background .3s, color .3s, border-color .3s;
}
.btn-reserve:hover { background: var(--ink); color: #fff; }
.btn-reserve .jp { font-family: var(--jp); font-size: 12px; letter-spacing: .08em; }

.burger {
  position: relative; width: 40px; height: 22px; flex: none;
}
.burger span {
  position: absolute; left: 0; width: 40px; height: 2px; background: var(--ink);
  transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .3s;
}
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 15px; }
.is-nav-open .burger span:nth-child(1) { transform: translateY(11px) rotate(20deg); }
.is-nav-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-20deg); }

/* =========================================================
   global nav overlay
   ========================================================= */
.gnav {
  position: fixed; inset: 0; z-index: 800;
  background: #d9d9d6;
  display: grid; grid-template-columns: 1fr 1fr;
  opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility .5s;
}
.is-nav-open .gnav { opacity: 1; visibility: visible; }
.gnav__left { display: flex; flex-direction: column; justify-content: center; padding: calc(var(--head-h) + 8px) 40px 28px 250px; overflow-y: auto; }
.gnav__list { max-width: 420px; }
.gnav__list li { border-bottom: 1px solid rgba(0,0,0,.13); }
.gnav__list li:first-child { border-top: 1px solid rgba(0,0,0,.13); }
.gnav__list a {
  display: flex; align-items: baseline; gap: 14px; padding: 10px 2px;
  font-family: var(--en); font-weight: 600; font-size: 22px; letter-spacing: .08em;
  transition: opacity .3s, padding-left .3s;
}
.gnav__list a small { font-family: var(--jp); font-size: 11.5px; letter-spacing: .1em; color: #555; font-weight: 400; }
.gnav__list a:hover { opacity: .5; padding-left: 8px; }

.gnav__foot { margin-top: 20px; max-width: 420px; flex: none; }
.gnav__hours > div { display: grid; grid-template-columns: 74px minmax(0, 1fr); align-items: baseline; padding: 5px 0; }
.gnav__hours dt { font-size: 9.5px; letter-spacing: .16em; color: #6a6a66; }
.gnav__hours dd { font-size: 12px; letter-spacing: .01em; font-weight: 700; }

.gnav__cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 12px; padding: 12px 18px;
  background: var(--teal); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .06em;
  transition: background .3s;
}
.gnav__cta svg { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; }
.gnav__cta span { display: flex; flex-direction: column; gap: 2px; }
.gnav__cta small { font-size: 9.5px; letter-spacing: .16em; font-weight: 500; opacity: .82; }
.gnav__cta:hover { background: var(--teal-d); }

.gnav__links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.gnav__links a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 8px; border: 1px solid rgba(0,0,0,.2);
  font-size: 12px; letter-spacing: .06em;
  transition: background .3s, color .3s, border-color .3s;
}
.gnav__links a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.gnav__links svg { width: 15px; height: 15px; flex: none; fill: currentColor; }
.gnav__links .ico-line { fill: none; stroke: currentColor; stroke-width: 1.6; }
.gnav__addr { margin-top: 10px; font-size: 11px; line-height: 1.7; color: #5c5c58; letter-spacing: .04em; }

.gnav__media { position: relative; overflow: hidden; }
.gnav__media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   FV slider
   ========================================================= */
.fv { padding-top: var(--head-h); }
.fv__slider { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #eee; }
.fv__slider::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 46%; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,0) 100%);
}
.fv__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s ease;
}
.fv__slide.is-active { opacity: 1; }
.fv__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s linear; }
.fv__slide.is-active img { transform: scale(1); }
.fv__copy {
  position: absolute; left: 0; bottom: 0; z-index: 3;
  padding: 26px 30px;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,.45);
}
.fv__copy .en { display: block; font-size: 11px; letter-spacing: .28em; opacity: .85; }
.fv__copy strong { display: block; font-size: 22px; font-weight: 700; letter-spacing: .1em; margin-top: 6px; }
.fv__dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.fv__dots button {
  width: 34px; height: 2px; background: var(--line); position: relative; overflow: hidden;
}
.fv__dots button::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--ink); }
.fv__dots button.is-active::after { width: 100%; transition: width 5s linear; }

/* =========================================================
   generic section pieces
   ========================================================= */
.sec { padding: 110px 0; }
.sec--tight { padding: 70px 0; }

.label {
  font-family: var(--en); font-size: 11px; font-weight: 600; letter-spacing: .22em;
  color: var(--gray); display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.label::before { content: ""; width: 26px; height: 1px; background: var(--teal); }

.h-lead { font-size: 22px; font-weight: 700; line-height: 1.75; letter-spacing: .06em; word-break: auto-phrase; }
.h-lead--sm { font-size: 19px; }
.txt { font-size: 15px; line-height: 2.05; letter-spacing: .04em; }
.txt + .txt { margin-top: 1.6em; }
.mt-l { margin-top: 34px; }
.mt-m { margin-top: 22px; }

/* lead 2col */
.lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* link text */
.link-txt {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--en); font-size: 12px; font-weight: 600; letter-spacing: .14em;
  padding-bottom: 4px; border-bottom: 1px solid var(--ink);
  transition: gap .3s, color .3s, border-color .3s;
}
.link-txt::after { content: ""; width: 16px; height: 1px; background: currentColor; transition: width .3s; }
.link-txt:hover { color: var(--teal-d); border-color: var(--teal); }
.link-txt:hover::after { width: 26px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2px 10px;
  min-height: 58px; padding: 14px 32px;
  border: 1px solid var(--ink); background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: .1em; line-height: 1.5;
  text-align: center;
  transition: background .3s, color .3s, border-color .3s;
}
/* 2段組みのボタン（日本語＋英字を必ず改行して並べる） */
.btn--stack { flex-direction: column; gap: 5px; }
.btn--stack .btn__jp { letter-spacing: .06em; }
.btn--stack .en { opacity: .72; }
.btn:hover { background: #fff; color: var(--ink); }
.btn--teal { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn--teal:hover { background: #fff; color: var(--teal-d); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--wide { width: 100%; max-width: 420px; }
.btn .en { font-family: var(--en); font-size: 12px; letter-spacing: .12em; }

/* =========================================================
   banner
   ========================================================= */
.bnr { display: grid; grid-template-columns: 1fr 1.06fr; align-items: stretch; background: var(--ink); color: #fff; }
.bnr__img { position: relative; min-height: 320px; }
.bnr__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bnr__body { padding: 44px 38px; display: flex; flex-direction: column; justify-content: center; }
.bnr__tag { display: inline-block; align-self: flex-start; background: var(--teal); color: #fff; font-family: var(--en); font-size: 11px; font-weight: 600; letter-spacing: .18em; padding: 5px 12px; }
.bnr__ttl { font-size: 24px; font-weight: 700; line-height: 1.55; letter-spacing: .03em; margin-top: 18px; word-break: auto-phrase; }
.bnr__ttl em { font-style: normal; color: var(--teal); }
.bnr__txt { font-size: 13.5px; line-height: 2; color: #d8d8d8; margin-top: 16px; }

/* =========================================================
   photo blocks
   ========================================================= */
.duo { display: grid; grid-template-columns: 1fr 1fr; }
.duo img { width: 100%; aspect-ratio: 3 / 2.6; object-fit: cover; }
.duo > div:last-child { margin-top: 70px; }

.photo-offset img { display: block; }
.photo-offset--r { width: 62%; margin-left: auto; }
.photo-offset--l { width: 62%; }
.photo-cap { font-size: 12px; color: var(--gray); letter-spacing: .08em; margin-top: 12px; }

/* =========================================================
   commitment
   ========================================================= */
.commit { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.commit__media { position: relative; overflow: hidden; }
.commit__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s cubic-bezier(.22,.61,.36,1); }
.commit__media:hover img { transform: scale(1.05); }
.commit__media::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.18); }
.commit__media span {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  font-family: var(--en); font-weight: 600; font-size: 30px; letter-spacing: .1em; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.cdetail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cdetail__img img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.cdetail__item + .cdetail__item { margin-top: 44px; }
.cdetail__ttl { font-size: 16px; font-weight: 700; letter-spacing: .08em; margin-bottom: 12px; }
.cdetail__ttl i { font-style: normal; color: var(--teal); }

/* =========================================================
   card links (STORE / NEWS)
   ========================================================= */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.cards > *:last-child { margin-top: 90px; }
.card { display: block; position: relative; overflow: hidden; }
.card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 1.2s cubic-bezier(.22,.61,.36,1); }
.card::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); transition: background .4s; }
.card:hover img { transform: scale(1.05); }
.card:hover::after { background: rgba(0,0,0,.32); }
.card span {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; gap: 4px; align-content: center;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.card span b { font-family: var(--en); font-weight: 600; font-size: 28px; letter-spacing: .1em; }
.card span small { font-size: 11px; letter-spacing: .2em; }

/* =========================================================
   MENU section
   ========================================================= */
.menusec { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.menusec__ttl { font-family: var(--en); font-weight: 600; font-size: 30px; letter-spacing: .08em; margin-bottom: 30px; }
.menulist li + li { margin-top: 4px; }
.menulist button {
  display: block; width: 100%; text-align: left;
  font-size: 14px; letter-spacing: .05em; padding: 5px 0; color: var(--ink);
  transition: color .3s, opacity .3s;
}
.menulist button:hover { color: var(--teal-d); }
.menulist button.is-active { color: var(--teal-d); font-weight: 700; }
.menusec__more { margin-top: 40px; }

.menuview { position: relative; }
.menuview__imgwrap { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #f0f0f0; }
.menuview__imgwrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s ease; }
.menuview__imgwrap img.is-active { opacity: 1; }
.menuview__name { display: flex; align-items: baseline; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.menuview__name b { font-size: 17px; font-weight: 700; letter-spacing: .06em; }
.menuview__name span { font-family: var(--en); font-size: 14px; color: var(--teal-d); font-weight: 600; }
.menuview__desc { font-size: 13.5px; line-height: 2; color: var(--ink-2); margin-top: 10px; max-width: 460px; }

/* =========================================================
   reserve
   ========================================================= */
.reserve { background: var(--bg-2); }
.reserve__head { text-align: center; margin-bottom: 40px; }
.reserve__head .label { justify-content: center; }
.reserve__head h2 { font-size: 24px; font-weight: 700; letter-spacing: .1em; }
.reserve__head p { font-size: 14px; color: var(--ink-2); margin-top: 14px; }
.reserve__frame {
  position: relative; background: #fff; border: 1px solid var(--line);
  padding: 10px; box-shadow: 0 18px 50px -30px rgba(0,0,0,.35);
}
.reserve__frame iframe { display: block; width: 100%; height: 620px; border: 0; background: #fff; }
.reserve__note { font-size: 12px; color: var(--gray); margin-top: 14px; text-align: center; line-height: 1.9; }
.reserve__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* =========================================================
   instagram
   ========================================================= */
.insta__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.insta__ttl { font-family: var(--en); font-weight: 600; font-size: 28px; letter-spacing: .08em; }
.insta__id { font-family: var(--en); font-size: 14px; color: var(--gray); letter-spacing: .1em; margin-top: 6px; }
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.insta__grid a { position: relative; display: block; overflow: hidden; }
.insta__grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 1s cubic-bezier(.22,.61,.36,1), opacity .4s; }
.insta__grid a:hover img { transform: scale(1.06); opacity: .82; }
.insta__cta { text-align: center; margin-top: 34px; }

/* =========================================================
   footer
   ========================================================= */
.footer { padding: 70px 0 40px; border-top: 1px solid var(--line); margin-top: 110px; }
.footer__grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 40px; }
.footer__ttl { font-family: var(--en); font-size: 11px; letter-spacing: .18em; color: var(--gray); margin-bottom: 14px; }
.footer__info { font-size: 13px; line-height: 2; }
.footer__nav li + li { margin-top: 8px; }
.footer__nav a { font-size: 13px; transition: color .3s; }
.footer__nav a:hover { color: var(--teal-d); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line);
}
.footer__copy { font-family: var(--en); font-size: 11px; letter-spacing: .1em; color: var(--gray); }
.totop { display: grid; place-items: center; width: 34px; height: 34px; transition: transform .3s; }
.totop:hover { transform: translateY(-4px); }
.totop svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.6; }

/* =========================================================
   sub pages
   ========================================================= */
.page-head { padding: calc(var(--head-h) + 70px) 0 60px; text-align: center; }
.page-head h1 { font-family: var(--en); font-weight: 600; font-size: 34px; letter-spacing: .1em; }
.page-head p { font-size: 12px; letter-spacing: .22em; color: var(--gray); margin-top: 10px; }
.page-head__lead { font-size: 15px; line-height: 2.1; margin-top: 30px; }

.breadcrumb { font-size: 11px; color: var(--gray); letter-spacing: .06em; padding-top: 14px; }
.breadcrumb a:hover { color: var(--ink); }

.sec-ttl { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 16px; margin-bottom: 26px; padding-bottom: 14px; border-bottom: 1px solid var(--ink); }
.sec-ttl b { font-size: 19px; font-weight: 700; letter-spacing: .08em; white-space: nowrap; }
.sec-ttl span { font-family: var(--en); font-size: 11px; letter-spacing: .18em; color: var(--gray); }

/* menu tables */
/* 価格リスト（table をやめたのは、iOSが表の中の「鹿児島県…」を住所と誤検出して
   勝手にマップのリンクにしてしまうため。div にすると起きない） */
.plist { width: 100%; }
.plist__row {
  display: grid; grid-template-columns: minmax(0, 1fr) 130px;
  gap: 0 16px; align-items: baseline;
  padding: 15px 2px; border-bottom: 1px solid var(--line);
}
.plist--3 .plist__row { grid-template-columns: minmax(0, 1fr) 104px 104px; }
.plist__name { font-size: 14.5px; letter-spacing: .04em; line-height: 1.6; }
.plist__name small { display: block; font-size: 11.5px; color: var(--gray); margin-top: 4px; letter-spacing: .04em; }
.plist__price {
  text-align: right; font-family: var(--en); font-size: 15px; font-weight: 600;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.plist__price small { font-family: var(--jp); font-size: 11px; color: var(--gray); font-weight: 400; margin-left: 1px; }
.plist__none { color: var(--gray-l); font-weight: 400; }
.plist__row--head { padding: 0 2px 10px; border-bottom-color: var(--ink); }
.plist__row--head .plist__name { font-size: 11px; letter-spacing: .12em; color: var(--gray); }
.plist__row--head .plist__price { font-family: var(--jp); font-size: 11px; font-weight: 400; color: var(--gray); }
.plist--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }

.mgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 26px; }
.mgrid figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mgrid figcaption { margin-top: 12px; }
.mgrid .n { font-size: 15px; font-weight: 700; letter-spacing: .04em; display: block; }
.mgrid .k { font-size: 11px; color: var(--gray); letter-spacing: .1em; display: block; margin-top: 2px; }
.mgrid .p { font-family: var(--en); font-size: 15px; font-weight: 600; display: block; margin-top: 8px; }
.mgrid .p small { font-family: var(--jp); font-size: 11px; color: var(--gray); font-weight: 400; }
.mgrid .d { font-size: 12.5px; line-height: 1.9; color: var(--ink-2); margin-top: 8px; }

.note-box { background: var(--bg-2); padding: 26px 30px; font-size: 13px; line-height: 2; }
.note-box b { display: block; font-size: 14px; margin-bottom: 6px; letter-spacing: .06em; }

/* info table */
.info { width: 100%; font-size: 14px; }
.info > div { display: grid; grid-template-columns: 160px minmax(0, 1fr); padding: 16px 0; border-bottom: 1px solid var(--line); }
.info dt { color: var(--gray); font-size: 13px; letter-spacing: .1em; }
.info dd { line-height: 1.9; }
.map { width: 100%; aspect-ratio: 16/9; border: 0; filter: grayscale(1) contrast(1.05); transition: filter .5s; }
.map:hover { filter: none; }

/* steps */
.steps { counter-reset: s; display: grid; gap: 26px; }
.step { display: grid; grid-template-columns: 62px 1fr; gap: 20px; align-items: start; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step__n { counter-increment: s; font-family: var(--en); font-weight: 600; font-size: 13px; letter-spacing: .1em; color: var(--teal-d); padding-top: 4px; }
.step__n::before { content: "STEP " counter(s); }
.step__b b { display: block; font-size: 16px; letter-spacing: .06em; margin-bottom: 6px; }
.step__b p { font-size: 13.5px; line-height: 2; color: var(--ink-2); }

/* news list */
.newslist li { border-bottom: 1px solid var(--line); }
.newslist li:first-child { border-top: 1px solid var(--line); }
.newsrow { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 0 24px; align-items: baseline; padding: 22px 2px; }
.newsmeta { display: flex; align-items: center; gap: 14px; }
.newslist time { font-family: var(--en); font-size: 12px; letter-spacing: .08em; color: var(--gray); }
.newslist .cat { font-size: 10.5px; letter-spacing: .14em; border: 1px solid var(--line); text-align: center; padding: 3px 12px; color: var(--gray); white-space: nowrap; }
.newslist .newsmain { min-width: 0; }
.newslist .newstitle { font-size: 14.5px; line-height: 1.85; letter-spacing: .02em; }

/* 本文は畳んでおく。一覧は「横長の行が下に並ぶ」形を保つ */
.newsdetail { margin-top: 8px; }
.newsdetail summary {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; list-style: none;
  font-family: var(--en); font-size: 11px; font-weight: 600; letter-spacing: .12em; color: var(--gray);
  transition: color .3s;
}
.newsdetail summary::-webkit-details-marker { display: none; }
.newsdetail summary > span { font-family: var(--jp); letter-spacing: .06em; }
.newsdetail summary::after {
  content: ""; width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .3s;
}
.newsdetail[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.newsdetail summary:hover { color: var(--teal-d); }

/* =========================================================
   Google クチコミ スライダー
   ========================================================= */
.rv__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.rv__ttl { font-size: 20px; font-weight: 700; letter-spacing: .06em; }
.rv__score { display: flex; align-items: baseline; gap: 10px; }
.rv__score b { font-family: var(--en); font-size: 30px; font-weight: 700; letter-spacing: .02em; }
.rv__stars { color: #f5a623; font-size: 14px; letter-spacing: .12em; }
.rv__count { font-size: 11px; letter-spacing: .12em; color: var(--gray); }

.rv__track {
  --rv-gutter: max(var(--pad), calc((100vw - var(--inner)) / 2));
  overflow-x: auto; scroll-snap-type: x proximity;
  padding: 4px var(--rv-gutter) 6px;
  /* これが無いと、スナップ時に左の余白ぶん勝手にスクロールしてしまう */
  scroll-padding-left: var(--rv-gutter);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.rv__track::-webkit-scrollbar { display: none; }
.rv__list { display: flex; gap: 16px; }
.rv__card {
  flex: 0 0 320px; scroll-snap-align: start;
  position: relative; display: flex; flex-direction: column;
  padding: 30px 26px 24px; border: 1px solid var(--line); background: var(--bg-2);
}
.rv__quote {
  position: absolute; top: 10px; left: 20px;
  font-family: var(--en); font-size: 46px; line-height: 1; color: var(--teal); opacity: .35;
}
.rv__text { position: relative; font-size: 14.5px; line-height: 2; letter-spacing: .02em; flex: 1; display: flex; align-items: center; }
.rv__who { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--gray); }
.rv__who b { font-weight: 700; color: var(--ink-2); }
.rv__who span { margin-left: 8px; }
.rv__cta { margin-top: 26px; }

/* =========================================================
   TOP 福利厚生バナー
   ========================================================= */
.wfbnr {
  display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: stretch;
  border: 1px solid var(--ink); background: #fff;
  transition: background .35s, color .35s;
}
.wfbnr__img { position: relative; min-height: 240px; overflow: hidden; }
.wfbnr__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,.61,.36,1); }
.wfbnr:hover .wfbnr__img img { transform: scale(1.05); }
.wfbnr__body { padding: 40px 44px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.wfbnr__tag {
  display: inline-block; padding: 5px 12px; margin-bottom: 16px;
  background: var(--green); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .16em;
}
.wfbnr__ttl { font-size: 22px; font-weight: 700; line-height: 1.7; letter-spacing: .04em; word-break: auto-phrase; }
.wfbnr__ttl em { font-style: normal; color: var(--teal-d); }
.wfbnr__txt { margin-top: 14px; font-size: 13.5px; line-height: 2; color: var(--ink-2); }
.wfbnr__link { margin-top: 22px; }

/* =========================================================
   福利厚生ページ
   ========================================================= */
.wf-point { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.wf-point li { padding: 28px 26px 26px; background: var(--bg-2); }
.wf-point__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 14px; font-weight: 700;
}
.wf-point li b { display: block; margin-top: 14px; font-size: 17px; font-weight: 700; letter-spacing: .03em; line-height: 1.6; }
.wf-point li p { margin-top: 10px; font-size: 13px; line-height: 1.95; color: var(--ink-2); }

.wf-merit { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.wf-merit li { background: #fff; padding: 26px 28px; }
.wf-merit li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.wf-merit li b { display: block; font-size: 15px; font-weight: 700; letter-spacing: .04em; padding-left: 18px; position: relative; }
.wf-merit li b::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--teal); }
.wf-merit li p { margin-top: 10px; padding-left: 18px; font-size: 13px; line-height: 1.95; color: var(--ink-2); }

.wf-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.wf-flow li { position: relative; padding: 24px 22px; border: 1px solid var(--line); }
.wf-flow li + li::before {
  content: ""; position: absolute; left: -12px; top: 50%; width: 8px; height: 8px;
  border-right: 1px solid var(--gray-l); border-bottom: 1px solid var(--gray-l);
  transform: translateY(-50%) rotate(-45deg);
}
.wf-flow__no { display: block; font-size: 22px; font-weight: 700; color: var(--teal); letter-spacing: .04em; }
.wf-flow li b { display: block; margin-top: 10px; font-size: 14.5px; font-weight: 700; letter-spacing: .04em; }
.wf-flow li p { margin-top: 8px; font-size: 12.5px; line-height: 1.9; color: var(--ink-2); }

.wf-small { font-size: 11.5px; color: var(--gray); line-height: 1.8; }
.wf-flyer { text-align: center; }
.wf-flyer img { width: min(680px, 100%); border: 1px solid var(--line); }
.wf-flyer figcaption { margin-top: 12px; font-size: 11.5px; color: var(--gray); }

.wf-cta { background: var(--ink); color: #fff; padding: 60px 40px; text-align: center; }
.wf-cta__ttl { font-size: 26px; font-weight: 700; line-height: 1.6; letter-spacing: .06em; }
.wf-cta__txt { margin-top: 16px; font-size: 13.5px; line-height: 2; color: rgba(255,255,255,.78); }
.wf-cta__btns { margin-top: 28px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.wf-cta__note { margin-top: 20px; font-size: 11.5px; color: rgba(255,255,255,.55); }

/* =========================================================
   sp fixed action bar
   ========================================================= */
.spbar { display: none; }

/* =========================================================
   responsive
   ========================================================= */
@media screen and (max-width: 1180px) {
  .gnav__left { padding-left: 8vw; }
}

@media screen and (max-width: 900px) {
  :root { --pad: 20px; --head-h: 64px; }
  body { font-size: 14px; }

  .header { height: var(--head-h); background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,.06); }
  .logo { gap: 8px; }
  .logo__mark { width: 30px; }
  .logo__wm { height: 15px; }
  .logo__en { font-size: 7.5px; letter-spacing: .18em; margin-top: 3px; }
  .head-nav { gap: 14px; }
  .head-nav__sns, .btn-reserve { display: none; }
  .burger { width: 28px; height: 16px; }
  .burger span { width: 28px; }
  .burger span:nth-child(1) { top: 2px; }
  .burger span:nth-child(2) { top: 11px; }
  .is-nav-open .burger span:nth-child(1) { transform: translateY(9px) rotate(20deg); }
  .is-nav-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-20deg); }

  /* スマホのメニューは「スクロールなしで全部見える」ことを最優先にする。
     画像は出さず、そのぶん営業時間・予約・連絡先を入れて情報量を増やしている。 */
  .gnav { grid-template-columns: 1fr; grid-template-rows: 1fr; height: 100dvh; }
  .gnav__left {
    padding: calc(var(--head-h) + 14px) var(--pad) calc(16px + env(safe-area-inset-bottom));
    justify-content: space-between; gap: 14px; overflow-y: auto;
  }
  /* 6項目が余白ごと縦に均等配分されるので、画面の高さが変わっても間延びしない */
  .gnav__list { max-width: none; flex: 1 1 auto; display: flex; flex-direction: column; }
  .gnav__list li { flex: 1 1 0; min-height: 50px; max-height: 76px; display: flex; }
  .gnav__list a { flex: 1; align-items: center; font-size: 19px; gap: 10px; padding: 2px; }
  .gnav__list a small { font-size: 10.5px; }
  .gnav__foot { margin-top: 0; max-width: none; flex: none; }
  .gnav__hours { padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,.13); }
  .gnav__hours > div { padding: 3px 0; grid-template-columns: 68px minmax(0, 1fr); }
  .gnav__hours dt { font-size: 9px; }
  .gnav__hours dd { font-size: 11.5px; }
  .gnav__cta { margin-top: 14px; padding: 13px 14px; font-size: 13.5px; }
  .gnav__links a { padding: 11px 6px; font-size: 11.5px; }
  .gnav__addr { margin-top: 12px; font-size: 10.5px; }
  .gnav__media { display: none; }

  .fv__slider { aspect-ratio: 4 / 3; }
  .fv__copy { padding: 18px 20px; }
  .fv__copy strong { font-size: 17px; }
  .fv__dots button { width: 26px; }

  .sec { padding: 62px 0; }
  .sec--tight { padding: 40px 0; }
  .h-lead { font-size: 18px; }
  .h-lead--sm { font-size: 17px; }
  .txt { font-size: 14px; line-height: 2; }

  .lead__grid { grid-template-columns: 1fr; gap: 40px; }

  .bnr { grid-template-columns: 1fr; }
  .bnr__img { min-height: 0; aspect-ratio: 16/10; }
  .bnr__img img { position: absolute; }
  .bnr__body { padding: 30px 22px 34px; }
  .bnr__ttl { font-size: 19px; letter-spacing: .01em; }
  .bnr__txt { font-size: 13px; }

  .duo { grid-template-columns: 1fr; gap: 12px; }
  .duo > div:last-child { margin-top: 0; }
  .photo-offset--r, .photo-offset--l { width: 100%; }

  .commit { grid-template-columns: 1fr; gap: 26px; }
  .commit__media span { font-size: 22px; }
  .cdetail { grid-template-columns: 1fr; gap: 30px; }
  .cdetail__img img { aspect-ratio: 4/3; }

  .cards { grid-template-columns: 1fr; gap: 14px; }
  .cards > *:last-child { margin-top: 0; }
  .card img { aspect-ratio: 16/10; }
  .card span b { font-size: 22px; }

  /* MENUセクション：見出し → 横スクロールのタブ → 写真と説明 → もっと見る、の順に読ませる。
     menulist-wrap を display:contents にして、4つを直接グリッドの子として並べ替えている。 */
  .menusec { grid-template-columns: 1fr; gap: 0; }
  .menusec .menulist-wrap { display: contents; }
  .menusec__ttl { order: 1; font-size: 24px; margin-bottom: 14px; }
  .menusec .menulist { order: 2; margin-bottom: 18px; }
  .menusec .menuview { order: 3; }
  .menusec__more { order: 4; margin-top: 20px; width: 100%; }

  .menulist {
    display: flex; flex-wrap: nowrap; gap: 8px;
    overflow-x: auto; scroll-snap-type: x proximity;
    padding-bottom: 2px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    /* 右端をうっすら消して「まだ横に続く」ことを伝える */
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 34px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 34px), transparent);
  }
  .menulist::-webkit-scrollbar { display: none; }
  .menulist li { flex: none; scroll-snap-align: start; }
  .menulist li + li { margin-top: 0; }
  .menulist button {
    border: 1px solid var(--line); padding: 9px 16px; font-size: 12.5px; border-radius: 999px;
    white-space: nowrap; letter-spacing: .02em;
  }
  .menulist button.is-active { border-color: var(--teal); background: var(--teal); color: #fff; }

  .menuview__imgwrap { aspect-ratio: 4 / 3; }
  .menuview__name { margin-top: 16px; gap: 10px; }
  .menuview__name b { font-size: 16px; }
  .menuview__desc { font-size: 13px; line-height: 1.95; margin-top: 8px; }

  .reserve__frame { padding: 6px; }
  .reserve__frame iframe { height: 560px; }
  .reserve__head h2 { font-size: 19px; }
  .reserve__btns .btn { width: 100%; }

  .insta__grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .insta__ttl { font-size: 22px; }

  /* クチコミ */
  .rv__head { margin-bottom: 20px; gap: 12px; }
  .rv__ttl { font-size: 18px; }
  .rv__score b { font-size: 26px; }
  .rv__track { --rv-gutter: var(--pad); }
  .rv__list { gap: 12px; }
  .rv__card { flex-basis: 80%; max-width: 300px; padding: 26px 20px 20px; }
  .rv__text { font-size: 13.5px; line-height: 1.95; }
  .rv__cta { margin-top: 20px; }

  /* 福利厚生バナー */
  .wfbnr { grid-template-columns: 1fr; }
  .wfbnr__img { min-height: 0; aspect-ratio: 16/9; }
  .wfbnr__img img { position: absolute; }
  .wfbnr__body { padding: 26px 22px 30px; }
  .wfbnr__ttl { font-size: 18px; }
  .wfbnr__txt { font-size: 13px; }

  /* 福利厚生ページ */
  .wf-point { grid-template-columns: 1fr; gap: 10px; }
  .wf-point li { padding: 20px 20px 22px; }
  .wf-point li b { font-size: 16px; margin-top: 10px; }
  .wf-point li p { font-size: 12.5px; }

  .wf-merit { grid-template-columns: 1fr; }
  .wf-merit li { padding: 20px 20px; }
  .wf-merit li b { font-size: 14px; }
  .wf-merit li p { font-size: 12.5px; }

  .wf-flow { grid-template-columns: 1fr; gap: 10px; }
  .wf-flow li { padding: 18px 20px; }
  .wf-flow li + li::before { left: 50%; top: -9px; transform: translateX(-50%) rotate(45deg); }

  .wf-cta { padding: 40px 20px 44px; }
  .wf-cta__ttl { font-size: 21px; }
  .wf-cta__btns { flex-direction: column; gap: 10px; }
  .wf-cta__btns .btn { width: 100%; }

  .footer { padding: 50px 0 30px; margin-top: 70px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { margin-top: 36px; }

  .page-head { padding: calc(var(--head-h) + 44px) 0 40px; }
  .page-head h1 { font-size: 26px; }
  .page-head__lead { font-size: 14px; margin-top: 22px; text-align: left; }

  /* 見出しは日本語と英字を必ず2段に。「ランチメニュー」の「ー」だけが折り返るのを防ぐ */
  .sec-ttl { display: block; padding-bottom: 12px; margin-bottom: 20px; }
  .sec-ttl b { display: block; font-size: 17px; }
  .sec-ttl span { display: block; margin-top: 5px; font-size: 10px; letter-spacing: .14em; }

  .plist--2col { grid-template-columns: 1fr; gap: 0; }
  .plist__row { grid-template-columns: minmax(0, 1fr) 92px; padding: 13px 0; }
  .plist--3 .plist__row { grid-template-columns: minmax(0, 1fr) 74px 74px; gap: 0 8px; }
  .plist__name { font-size: 13.5px; }
  .plist__name small { font-size: 11px; }
  .plist__price { font-size: 14px; }
  .mgrid { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .mgrid .n { font-size: 13.5px; }
  .mgrid .d { display: none; }
  .note-box { padding: 20px 18px; }

  .info > div { grid-template-columns: 1fr; padding: 13px 0; }
  .info dd { margin-top: 3px; }

  .step { grid-template-columns: 1fr; gap: 6px; }

  /* お知らせは1件＝1行のカードとして、上から下に並べる */
  .newsrow { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .newsmeta { gap: 10px; }
  .newslist time { font-size: 11.5px; }
  .newslist .cat { font-size: 9.5px; padding: 2px 9px; letter-spacing: .12em; }
  .newslist .newstitle { font-size: 14px; line-height: 1.8; }
  .newsbody { font-size: 12.5px; }

  /* sp bottom bar */
  .spbar {
    display: grid; grid-template-columns: 1fr 1fr 1.4fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 700;
    background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(110%); transition: transform .4s cubic-bezier(.22,.61,.36,1);
  }
  .spbar.is-show { transform: none; }
  .is-nav-open .spbar { transform: translateY(110%); }
  .spbar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    height: 58px; font-size: 10.5px; letter-spacing: .08em;
  }
  .spbar a svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.6; }
  .spbar a + a { border-left: 1px solid var(--line); }
  .spbar a.is-primary { background: var(--teal); color: #fff; font-weight: 700; border-left: 0; }
  .spbar a.is-primary svg { stroke: #fff; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 90px; }
}

@media screen and (max-width: 400px) {
  .mgrid { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   お知らせバー（microCMSの「サイト上部のお知らせ」が入力されたときだけ表示）
   ========================================================= */
.notice {
  position: fixed; inset: 0 0 auto 0; z-index: 950;
  height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--teal); color: #fff;
  font-size: 12.5px; letter-spacing: .06em; text-align: center;
  padding: 0 16px;
}
.notice a { border-bottom: 1px solid rgba(255,255,255,.6); }
body:has(.notice) .header { top: 40px; }
body:has(.notice) .gnav { top: 40px; }
body:has(.notice) .fv { padding-top: calc(var(--head-h) + 40px); }
body:has(.notice) .page-head { padding-top: calc(var(--head-h) + 40px + 70px); }

@media screen and (max-width: 900px) {
  .notice { height: 36px; font-size: 11.5px; }
  body:has(.notice) .header { top: 36px; }
  body:has(.notice) .gnav { top: 36px; }
  body:has(.notice) .fv { padding-top: calc(var(--head-h) + 36px); }
  body:has(.notice) .page-head { padding-top: calc(var(--head-h) + 36px + 44px); }
}

/* footer nav の英字ラベル */
.footer__nav a .en { color: var(--gray); font-size: 10px; margin-left: 8px; }

/* お知らせ本文（任意入力） */
.newsbody { font-size: 13px; line-height: 1.95; color: var(--ink-2); margin-top: 10px; max-width: 640px; }
.newsbody p + p { margin-top: .9em; }
.newsbody a { border-bottom: 1px solid var(--teal); }
.newsbody ul { list-style: disc; padding-left: 1.2em; }

/* =========================================================
   Instagram 最新投稿（LightWidget）
   ========================================================= */
.insta__live { min-height: 280px; }
/* iframe には min-height を付けない（既定の150pxのままかどうかで表示可否を判定するため） */
.insta__live iframe { display: block; width: 100%; border: 0; overflow: hidden; background: transparent; }
/* ウィジェットが動いているときは、予備の写真グリッドを隠す */
.insta__grid.is-fallback { display: none; }
.is-insta-fallback .insta__grid.is-fallback { display: grid; }
.is-insta-fallback .insta__live { display: none; }

/* 長い英字ラベル（EMPLOYEE BENEFITS）がはみ出さないように */
.gnav__list .is-long a { gap: 10px; }
.gnav__list .is-long .en { font-size: .8em; }
@media screen and (max-width: 900px) {
  .gnav__list .is-long .en { font-size: .78em; }
}
