@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: var(--head-h) 0 40px 250px; }
.gnav__list li + li { margin-top: 14px; }
.gnav__list a {
  display: inline-block;
  font-family: var(--en); font-weight: 600; font-size: 26px; letter-spacing: .08em;
  transition: opacity .3s;
}
.gnav__list a small { font-family: var(--jp); font-size: 12px; letter-spacing: .1em; color: #555; margin-left: 14px; font-weight: 400; }
.gnav__list a:hover { opacity: .45; }
.gnav__sub { margin-top: 44px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,.25); max-width: 380px; }
.gnav__sub dt { font-family: var(--en); font-size: 11px; letter-spacing: .16em; color: #555; margin-bottom: 10px; }
.gnav__sub dd { font-size: 13px; line-height: 1.9; }
.gnav__sub dd a { border-bottom: 1px solid transparent; }
.gnav__sub dd a:hover { border-color: var(--ink); }
.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; gap: 10px;
  min-height: 58px; padding: 0 36px;
  border: 1px solid var(--ink); background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: .1em;
  transition: background .3s, color .3s, border-color .3s;
}
.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; gap: 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; }
.sec-ttl span { font-family: var(--en); font-size: 11px; letter-spacing: .18em; color: var(--gray); }

/* menu tables */
.mtable { width: 100%; }
.mtable th, .mtable td { padding: 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; font-weight: 400; }
.mtable th { font-size: 14.5px; letter-spacing: .04em; }
.mtable th small { display: block; font-size: 11.5px; color: var(--gray); margin-top: 3px; letter-spacing: .04em; }
.mtable td { width: 130px; text-align: right; font-family: var(--en); font-size: 15px; font-weight: 600; white-space: nowrap; }
.mtable td small { font-family: var(--jp); font-size: 11px; color: var(--gray); font-weight: 400; }
.mtable--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 th, .info td { padding: 16px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.info th { width: 160px; font-weight: 400; color: var(--gray); font-size: 13px; letter-spacing: .1em; }
.info td { 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 a, .newslist .row { display: grid; grid-template-columns: 110px 96px minmax(0, 1fr); gap: 20px; align-items: baseline; padding: 22px 0; }
.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 0; color: var(--gray); }
.newslist .newsmain { min-width: 0; }
.newslist .newstitle { font-size: 14.5px; line-height: 1.8; }

/* =========================================================
   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 auto; }
  .gnav__left { padding: calc(var(--head-h) + 26px) var(--pad) 24px; justify-content: flex-start; overflow-y: auto; }
  .gnav__list a { font-size: 21px; }
  .gnav__list a small { display: block; margin-left: 0; margin-top: 2px; }
  .gnav__list li + li { margin-top: 18px; }
  .gnav__sub { margin-top: 28px; padding-top: 20px; max-width: none; }
  .gnav__media { height: 26vh; }

  .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; }

  .menusec { grid-template-columns: 1fr; gap: 24px; }
  .menusec__ttl { font-size: 24px; margin-bottom: 18px; }
  .menusec .menulist { order: 2; }
  .menusec .menuview { order: 1; }
  .menulist { display: flex; flex-wrap: wrap; gap: 6px 8px; }
  .menulist li + li { margin-top: 0; }
  .menulist button { border: 1px solid var(--line); padding: 7px 12px; font-size: 12px; border-radius: 999px; }
  .menulist button.is-active { border-color: var(--teal); background: var(--teal); color: #fff; }
  .menusec__more { margin-top: 24px; width: 100%; }

  .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; }

  .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; }

  .sec-ttl b { font-size: 17px; }
  .mtable--2col { grid-template-columns: 1fr; gap: 0; }
  .mtable th { font-size: 13.5px; }
  .mtable td { width: 105px; 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 th, .info td { display: block; width: auto; }
  .info th { padding: 14px 0 0; border-bottom: 0; }
  .info td { padding: 4px 0 14px; }

  .step { grid-template-columns: 1fr; gap: 6px; }
  .newslist a, .newslist .row { grid-template-columns: 84px 84px; grid-template-areas: "time cat" "txt txt"; gap: 8px 12px; }
  .newslist time { grid-area: time; }
  .newslist .cat { grid-area: cat; }
  .newslist .newsmain { grid-area: txt; }
  .newslist .newstitle { font-size: 14px; }
  .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; }
