/* =========================================================
   KOKE COFFEE — main.css
   SP デザイン（390px）をモバイル、PC デザインをデスクトップとして
   ひとつのレスポンシブ LP に統合。ブレークポイントは 900px。
   ========================================================= */

:root {
  --ink:        #2C2C2C;
  --muted:      #55554e;
  --cream:      #F7F5F0;
  --beige:      #EEEBE3;
  --green:      #4A5E4A;
  --deep-green: #2D4A3E;
  --forest:     #2D3A2D;
  --forest-2:   #222a22;
  --gold:       #C8B89A;
  --olive:      #9c8f72;
  --line:       #c9c3b4;
  --serif:      'Cormorant Garamond', serif;
  --jp-sans:    'Noto Sans JP', sans-serif;
  --jp-serif:   'Noto Serif JP', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.koke {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--jp-sans);
  font-size: 14px;
  line-height: 1.95;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--green); color: var(--cream); }

.koke-eyebrow-en { font-family: var(--serif); }

/* ---------- スクロールフェードイン（§8-4） ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in.d1  { transition-delay: 0.10s; }
.fade-in.d15 { transition-delay: 0.15s; }
.fade-in.d2  { transition-delay: 0.20s; }
.fade-in.d25 { transition-delay: 0.25s; }
.g-grid .fade-in:nth-child(2n+1) { transition-delay: 0s; }
.g-grid .fade-in:nth-child(2n+2) { transition-delay: 0.1s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

@keyframes kokeBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* =========================================================
   ローディング画面
   ========================================================= */
.koke-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #FFFFFF;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s ease;
  pointer-events: none;
}
.koke-loader.is-hidden { opacity: 0; }
.koke-loader.is-gone   { display: none; }
.koke-loader__logo { width: 84px; height: 84px; object-fit: contain; margin-bottom: 18px; }
.koke-loader__brand {
  font-family: var(--serif); font-size: 30px; font-weight: 600;
  letter-spacing: .34em; color: var(--deep-green); padding-left: .34em;
}
.koke-loader__sub {
  font-family: var(--jp-sans); font-size: 10px; letter-spacing: .46em;
  color: var(--gold); margin-top: 7px; padding-left: .46em;
}
.koke-loader__track {
  width: 150px; height: 1px; background: rgba(45,74,62,.15);
  margin: 30px 0 16px; position: relative;
}
.koke-loader__bar {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--deep-green); width: 0;
}
.koke-loader__pct {
  font-family: var(--serif); font-size: 40px; font-weight: 500;
  color: var(--deep-green); line-height: 1;
}

/* =========================================================
   ヘッダー
   ========================================================= */
.koke-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: rgba(247,245,240,0);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: transform .45s cubic-bezier(.4,0,.2,1), background .4s ease, border-color .4s ease;
}
.koke-header.is-hidden { transform: translateY(-120%); }
.koke-header.is-scrolled {
  background: rgba(247,245,240,.82);
  border-bottom: 1px solid rgba(44,44,44,.06);
}
.koke-header__brand { text-decoration: none; line-height: 1; display: flex; align-items: center; gap: 10px; }
.koke-header__logo { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.koke-header__name {
  display: block;
  font-family: var(--serif); font-size: 19px; font-weight: 600;
  letter-spacing: .2em; padding-left: .2em; color: var(--cream);
  transition: color .4s ease;
}
.koke-header__tag {
  display: block;
  font-family: var(--jp-sans); font-size: 8px; letter-spacing: .4em;
  margin-top: 2px; padding-left: .4em; color: rgba(247,245,240,.7);
  transition: color .4s ease;
}
.koke-header.is-scrolled .koke-header__name { color: var(--ink); }
.koke-header.is-scrolled .koke-header__tag  { color: var(--olive); }
.koke-header__toggle {
  background: none; border: none; cursor: pointer; line-height: 1; padding: 4px;
  font-size: 21px; color: var(--cream); transition: color .4s ease;
}
.koke-header.is-scrolled .koke-header__toggle { color: var(--ink); }
.koke-header__nav { display: none; }

/* =========================================================
   ドロワーメニュー（SP）
   ========================================================= */
.koke-drawer {
  position: fixed; inset: 0; z-index: 1200;
  background: var(--forest);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transition: opacity .45s ease, transform .45s cubic-bezier(.4,0,.2,1);
  opacity: 0; transform: translateY(-12px); pointer-events: none;
}
.koke-drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.koke-drawer__close {
  position: absolute; top: 22px; right: 22px; background: none; border: none;
  color: var(--cream); font-size: 24px; cursor: pointer; line-height: 1;
}
.koke-drawer__logo { width: 72px; height: 72px; object-fit: contain; margin-bottom: 4px; }
.koke-drawer__brand {
  font-family: var(--serif); font-size: 21px; font-weight: 600;
  letter-spacing: .2em; color: var(--cream); padding-left: .2em; margin-bottom: 6px;
}
.koke-drawer a.koke-drawer__link {
  text-decoration: none; color: var(--cream);
  font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: .14em;
}
.koke-drawer__ig { margin-top: 14px; color: var(--gold); font-size: 22px; }

/* =========================================================
   01 Hero
   ========================================================= */
.koke-hero {
  position: relative; height: 88vh; min-height: 560px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; background-color: var(--forest); overflow: hidden;
}
.koke-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.koke-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,38,30,.5) 0%, rgba(28,38,30,.36) 45%, rgba(28,38,30,.66) 100%);
}
.koke-hero__inner { position: relative; z-index: 2; max-width: 320px; }
.koke-hero__title {
  font-family: var(--jp-serif); font-weight: 500; font-size: 27px; line-height: 2.0;
  letter-spacing: .12em; color: var(--cream); text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.koke-hero__lead {
  font-family: var(--jp-sans); font-weight: 300; font-size: 13px; letter-spacing: .08em;
  color: rgba(247,245,240,.88); margin-top: 24px; line-height: 2;
}
.koke-hero__btn {
  position: relative; z-index: 2; margin-top: 36px;
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px;
  border: 1px solid rgba(247,245,240,.7); border-radius: 2px; color: var(--cream);
  text-decoration: none; font-size: 11px; letter-spacing: .16em;
  font-family: var(--serif); font-weight: 600; background: rgba(247,245,240,.06);
  transition: background .35s ease, color .35s ease;
}
.koke-hero__btn i { font-size: 14px; }
.koke-hero__btn:hover { background: var(--cream); color: var(--deep-green); }
.koke-hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(247,245,240,.75); font-family: var(--serif); font-size: 10px; letter-spacing: .28em;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.koke-hero__scroll i { animation: kokeBounce 2s ease infinite; }

/* =========================================================
   セクション共通
   ========================================================= */
.koke-section { padding: 72px 24px; }
.koke-container { width: 100%; }

.koke-head { text-align: center; margin-bottom: 36px; }
.koke-head--left { text-align: left; }
.koke-head__en {
  font-family: var(--serif); font-size: 40px; font-weight: 600; line-height: 1;
  color: var(--green); letter-spacing: .02em;
}
.koke-head__en--gold { color: var(--gold); }
.koke-head__jp {
  font-family: var(--jp-sans); font-size: 11px; letter-spacing: .2em; color: var(--olive); margin-top: 9px;
}

/* ---------- 02 About ---------- */
.koke-about__lead {
  font-family: var(--jp-serif); font-weight: 400; font-size: 17px; line-height: 2.2;
  letter-spacing: .03em; color: var(--ink);
}
.koke-about__body { margin-top: 18px; font-size: 14px; line-height: 2.1; letter-spacing: .02em; color: var(--muted); }
.koke-about__img {
  margin-top: 30px; height: 220px; border-radius: 3px;
  background-color: #2a2a26; background-size: cover; background-position: center;
}
.koke-moss { margin-top: 56px; }
.koke-moss__img {
  height: 230px; border-radius: 3px; margin-bottom: 26px;
  background-color: #1f241d; background-size: cover; background-position: center;
}
.koke-moss__eyebrow {
  font-family: var(--serif); font-size: 12px; font-weight: 600; letter-spacing: .26em;
  color: var(--gold); text-transform: uppercase;
}
.koke-moss__title {
  font-family: var(--jp-serif); font-weight: 600; font-size: 22px; letter-spacing: .05em;
  color: var(--ink); margin: 10px 0 14px; line-height: 1.7;
}
.koke-moss__italic {
  font-family: var(--jp-serif); font-style: italic; font-size: 15px; color: var(--green);
  letter-spacing: .03em; margin-bottom: 18px;
}
.koke-moss__body { font-size: 14px; line-height: 2.1; letter-spacing: .02em; color: var(--muted); }
.koke-moss__body + .koke-moss__body { margin-top: 14px; }

/* ---------- 03 Menu ---------- */
.koke-menu { padding: 72px 0 16px; }
.koke-menu__head { margin-bottom: 14px; }
.koke-menu__item { padding: 36px 24px; }
.koke-menu__item.is-alt { background: var(--beige); }
.koke-menu__img {
  height: 210px; border-radius: 3px; margin-bottom: 20px;
  background-size: cover; background-position: center; background-color: #5a6b52;
}
.koke-menu__no { font-family: var(--serif); font-size: 12px; font-weight: 600; letter-spacing: .28em; color: var(--gold); }
.koke-menu__name {
  font-family: var(--jp-serif); font-weight: 600; font-size: 21px; letter-spacing: .04em;
  color: var(--ink); margin: 8px 0 4px;
}
.koke-menu__price { font-family: var(--serif); font-size: 17px; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.koke-menu__catch {
  font-family: var(--jp-serif); font-style: italic; font-size: 14px; color: var(--green);
  margin-bottom: 12px; letter-spacing: .02em;
}
.koke-menu__desc { font-size: 14px; line-height: 2.05; letter-spacing: .02em; color: var(--muted); }

/* ---------- 04 Gallery ---------- */
.koke-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.koke-gallery__item {
  height: 130px; border-radius: 3px; background-color: #2a2a26;
  background-size: cover; background-position: center;
}

/* ---------- 05 Instagram ---------- */
.koke-insta { background: var(--forest); padding: 64px 24px; }
.koke-insta__head { margin-bottom: 6px; }
.koke-insta__handle {
  text-align: center; font-family: var(--serif); font-size: 13px; letter-spacing: .12em;
  color: rgba(247,245,240,.85); margin-bottom: 24px;
}
.koke-insta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.koke-insta__item {
  aspect-ratio: 1 / 1; border-radius: 3px; background-color: #4A5E4A;
  background-size: cover; background-position: center;
}
/* Smash Balloon（Social Photo Feed）埋め込み用ラッパー */
.koke-insta__feed { width: 100%; }
.koke-insta__feed .sb_instagram_header { color: #F7F5F0; }
.koke-insta__feed #sb_instagram { padding: 0 !important; }
.koke-insta__btn {
  display: flex; margin: 26px auto 0; align-items: center; justify-content: center; gap: 10px;
  height: 46px; border: 1px solid rgba(247,245,240,.5); border-radius: 2px; color: var(--cream);
  text-decoration: none; font-size: 12px; letter-spacing: .16em; font-family: var(--serif); font-weight: 600;
  transition: all .35s ease;
}
.koke-insta__btn i { font-size: 14px; }
.koke-insta__btn:hover { background: var(--cream); color: var(--forest); }

/* ---------- 06 Access ---------- */
.koke-access__head { text-align: left; margin-bottom: 30px; }
.koke-access__map {
  height: 220px; border-radius: 3px; overflow: hidden; margin-bottom: 28px; background: #e0ddd4;
}
.koke-access__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(.95); }
.koke-access__name {
  font-family: var(--jp-serif); font-weight: 600; font-size: 19px; letter-spacing: .05em;
  color: var(--ink); margin-bottom: 22px;
}
.koke-access__dl { display: grid; grid-template-columns: 84px 1fr; row-gap: 16px; }
.koke-access__dl dt { font-size: 12px; letter-spacing: .06em; color: var(--olive); }
.koke-access__dl dt i { margin-right: 6px; }
.koke-access__dl dd { font-size: 14px; color: var(--ink); line-height: 1.7; }

/* ---------- 07 Contact ---------- */
.koke-contact { background: var(--beige); padding: 72px 24px; }
.koke-contact__inner { width: 100%; }
.koke-form { display: grid; grid-template-columns: 1fr; gap: 24px; }
.koke-form__field { display: flex; flex-direction: column; }
.koke-form__field--full { grid-column: 1 / -1; }
.koke-form label {
  display: block; font-size: 12px; letter-spacing: .06em; color: var(--olive); margin-bottom: 6px;
}
.koke-form input,
.koke-form textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line); background: transparent;
  padding: 5px 0; font-family: var(--jp-sans); font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .3s ease;
}
.koke-form textarea { resize: none; line-height: 1.8; }
.koke-form input:focus,
.koke-form textarea:focus { border-bottom: 1px solid var(--green); }
/* セレクト（お問い合わせの種別） */
.koke-form select {
  width: 100%; border: none; border-bottom: 1px solid var(--line); background: transparent;
  padding: 5px 22px 5px 0; font-family: var(--jp-sans); font-size: 15px; color: var(--ink);
  outline: none; cursor: pointer; border-radius: 0; line-height: 1.6;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239c8f72' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; background-size: 11px 8px;
  transition: border-color .3s ease;
}
.koke-form select:focus { border-bottom: 1px solid var(--green); }
.koke-form select:invalid { color: var(--olive); }
/* 来店予定日（日付入力）はカレンダーアイコンを苔色に */
.koke-form input[type="date"] { min-height: 30px; }
.koke-form input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }
/* JS 無効時のフォールバック：来店予定日は既定で表示（JS が条件表示を制御） */
.koke-visit-field[hidden] { display: none !important; }
.koke-form__submit {
  display: flex; width: 100%; margin-top: 34px; align-items: center; justify-content: center; gap: 11px;
  height: 52px; border: none; border-radius: 2px; background: var(--green); color: var(--cream);
  cursor: pointer; font-size: 13px; letter-spacing: .16em; font-family: var(--serif); font-weight: 600;
  transition: background .35s ease;
}
.koke-form__submit:hover { background: var(--deep-green); }
.koke-form__submit i { font-size: 12px; }
.koke-notice {
  grid-column: 1 / -1; padding: 14px 18px; border-radius: 3px; font-size: 13px; line-height: 1.8;
  letter-spacing: .02em;
}
.koke-notice--ok   { background: rgba(74,94,74,.12);  color: var(--green);  border: 1px solid rgba(74,94,74,.3); }
.koke-notice--err  { background: rgba(150,70,60,.10);  color: #8a4338;       border: 1px solid rgba(150,70,60,.3); }

/* ---------- Contact Form 7 連携 ---------- */
.koke-contact .wpcf7 { width: 100%; }
.koke-contact .wpcf7-form-control-wrap { display: block; }
/* CF7 のテキスト系コントロールにフォームのアンダーライン体裁を適用 */
.koke-contact .wpcf7 .koke-form input.wpcf7-form-control,
.koke-contact .wpcf7 .koke-form textarea.wpcf7-form-control {
  width: 100%; border: none; border-bottom: 1px solid var(--line); background: transparent;
  padding: 5px 0; font-family: var(--jp-sans); font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .3s ease;
}
.koke-contact .wpcf7 .koke-form textarea.wpcf7-form-control { resize: none; line-height: 1.8; }
.koke-contact .wpcf7 .koke-form input.wpcf7-form-control:focus,
.koke-contact .wpcf7 .koke-form textarea.wpcf7-form-control:focus { border-bottom: 1px solid var(--green); }
.koke-contact .wpcf7 .koke-form .wpcf7-not-valid { border-bottom-color: #b3564a; }
/* 送信ボタン（CF7 の input[type=submit]） */
.koke-contact .koke-form__actions { display: block; }
.koke-contact input.koke-form__submit { width: 100%; cursor: pointer; -webkit-appearance: none; appearance: none; }
/* バリデーション・送信結果メッセージ */
.koke-contact .wpcf7-not-valid-tip { display: block; margin-top: 6px; color: #8a4338; font-size: 12px; letter-spacing: .02em; }
.koke-contact .wpcf7-response-output {
  margin: 26px 0 0 !important; padding: 14px 18px; border-radius: 3px;
  font-size: 13px; line-height: 1.8; letter-spacing: .02em;
  border: 1px solid rgba(74,94,74,.3); background: rgba(74,94,74,.12); color: var(--green);
}
.koke-contact .wpcf7-form.invalid .wpcf7-response-output,
.koke-contact .wpcf7-form.unaccepted .wpcf7-response-output,
.koke-contact .wpcf7-form.payment-required .wpcf7-response-output,
.koke-contact .wpcf7-form.failed .wpcf7-response-output,
.koke-contact .wpcf7-form.aborted .wpcf7-response-output,
.koke-contact .wpcf7-form.spam .wpcf7-response-output {
  border-color: rgba(150,70,60,.3); background: rgba(150,70,60,.10); color: #8a4338;
}
.koke-contact .wpcf7-spinner { margin: 0 0 0 12px; }
@media (min-width: 900px) {
  .koke-contact .koke-form__actions { text-align: center; }
  .koke-contact input.koke-form__submit { width: 230px; }
}

/* ---------- 08 Footer ---------- */
.koke-footer { background: var(--forest-2); padding: 48px 24px 36px; text-align: center; }
.koke-footer__logo { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 14px; }
.koke-footer__brand {
  font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: .2em;
  color: var(--cream); padding-left: .2em;
}
.koke-footer__brand img { display: none; }
.koke-footer__info {
  margin-top: 14px; font-size: 13px; line-height: 2; color: rgba(247,245,240,.6); letter-spacing: .03em;
}
.koke-footer__ig { display: inline-block; margin-top: 18px; color: rgba(247,245,240,.7); font-size: 19px; }
.koke-footer__bottom {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(247,245,240,.1);
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.koke-footer__bottom a { text-decoration: none; font-size: 12px; letter-spacing: .08em; color: rgba(247,245,240,.55); }
.koke-footer__copy { font-family: var(--serif); font-size: 11px; letter-spacing: .18em; color: rgba(247,245,240,.4); }

/* ---------- 汎用ページ（ブログ・固定ページ） ---------- */
.koke-page { padding: 120px 24px 72px; }
.koke-page__inner { max-width: 760px; margin: 0 auto; }
.koke-page__title {
  font-family: var(--jp-serif); font-weight: 600; font-size: 26px; letter-spacing: .04em;
  color: var(--ink); line-height: 1.6; margin-bottom: 28px;
}
.koke-page__content { font-size: 15px; line-height: 2.1; color: var(--muted); }
.koke-page__content p { margin-bottom: 20px; }
.koke-page__content a { color: var(--green); }
.koke-page__content h2 { font-family: var(--jp-serif); font-size: 20px; color: var(--ink); margin: 32px 0 14px; }
.koke-page__content h3 { font-family: var(--jp-serif); font-size: 17px; color: var(--ink); margin: 24px 0 10px; }
.koke-page__content img { border-radius: 3px; margin: 14px 0; }
.koke-page__content ul,
.koke-page__content ol { margin: 0 0 20px 1.4em; }
.koke-page__nav { margin-top: 40px; }
@media (min-width: 900px) {
  .koke-page { padding: 160px 56px 120px; }
  .koke-page__title { font-size: 32px; }
}

/* スキップリンク */
.koke-skip {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--green); color: var(--cream); padding: 10px 18px; border-radius: 0 0 3px 0;
}
.koke-skip:focus { left: 0; }

/* =========================================================
   デスクトップ（PC デザイン）  min-width: 900px
   ========================================================= */
@media (min-width: 900px) {
  body.koke { font-size: 15px; }

  /* ローダー */
  .koke-loader__logo { width: 96px; height: 96px; margin-bottom: 22px; }
  .koke-loader__brand { font-size: 34px; letter-spacing: .36em; padding-left: .36em; }
  .koke-loader__sub { font-size: 11px; letter-spacing: .5em; margin-top: 8px; padding-left: .5em; }
  .koke-loader__track { width: 180px; margin: 34px 0 18px; }
  .koke-loader__pct { font-size: 48px; }

  /* ヘッダー：常時クリーム背景・ダーク文字、ナビ表示 */
  .koke-header {
    padding: 6px 56px;
    background: rgba(247,245,240,.72);
    border-bottom: 1px solid rgba(44,44,44,.06);
  }
  .koke-header__logo { width: 70px; height: 70px; }
  .koke-header__brand { gap: 13px; }
  .koke-header__name { font-size: 23px; letter-spacing: .22em; padding-left: .22em; color: var(--ink); }
  .koke-header__tag { font-size: 9px; letter-spacing: .42em; margin-top: 3px; padding-left: .42em; color: var(--olive); }
  .koke-header__toggle { display: none; }
  .koke-header__nav { display: flex; align-items: center; gap: 34px; }
  .koke-header__nav a {
    text-decoration: none; color: var(--ink); font-size: 12px; letter-spacing: .14em;
    font-family: var(--serif); font-weight: 600; transition: color .3s ease;
  }
  .koke-header__nav a:hover { color: var(--green); }
  .koke-header__nav a.is-ig { color: var(--green); font-size: 16px; display: flex; align-items: center; }
  .koke-header__nav a.is-ig:hover { color: var(--ink); }

  /* ヒーロー */
  .koke-hero { height: 100vh; min-height: 600px; }
  .koke-hero__overlay {
    background: linear-gradient(180deg, rgba(28,38,30,.55) 0%, rgba(28,38,30,.40) 45%, rgba(28,38,30,.62) 100%);
  }
  .koke-hero__inner { max-width: 860px; }
  .koke-hero__title { font-size: 42px; line-height: 2.1; letter-spacing: .14em; }
  .koke-hero__lead { font-size: 15px; letter-spacing: .1em; margin-top: 30px; }
  .koke-hero__btn { margin-top: 46px; padding: 15px 34px; font-size: 12px; letter-spacing: .18em; }
  .koke-hero__scroll { bottom: 34px; font-size: 11px; letter-spacing: .3em; }

  /* セクション共通 */
  .koke-section { padding: 130px 56px; }
  .koke-container { max-width: 1180px; margin: 0 auto; }
  .koke-head__en { font-size: 62px; }
  .koke-head__jp { font-size: 12px; letter-spacing: .22em; margin-top: 12px; }

  /* About */
  .koke-about .koke-head {
    text-align: left; margin-bottom: 60px; padding-bottom: 22px;
    border-bottom: 1px solid rgba(44,44,44,.12);
  }
  .koke-about__textblock { max-width: 680px; }
  .koke-about__lead { font-size: 21px; line-height: 2.3; letter-spacing: .04em; }
  .koke-about__body { margin-top: 26px; font-size: 15px; line-height: 2.2; letter-spacing: .03em; }
  .koke-about__img { margin-top: 64px; height: 380px; }
  .koke-moss {
    margin-top: 110px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  }
  .koke-moss__img { order: 2; height: 420px; margin-bottom: 0; }
  .koke-moss__text { order: 1; }
  .koke-moss__title { font-size: 27px; letter-spacing: .06em; margin: 14px 0 18px; }
  .koke-moss__eyebrow { font-size: 14px; letter-spacing: .28em; }
  .koke-moss__italic { font-size: 16px; letter-spacing: .04em; margin-bottom: 22px; }
  .koke-moss__body { font-size: 14.5px; line-height: 2.2; letter-spacing: .03em; }
  .koke-moss__body + .koke-moss__body { margin-top: 18px; }

  /* Menu */
  .koke-menu { padding: 130px 0; background: var(--beige); }
  .koke-menu__container { max-width: 1180px; margin: 0 auto; padding: 0 56px; }
  .koke-menu__head { margin-bottom: 80px; }
  .koke-menu__item {
    padding: 0; background: transparent !important;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 88px;
  }
  .koke-menu__item:last-child { margin-bottom: 0; }
  .koke-menu__img { height: 400px; margin-bottom: 0; }
  .koke-menu__item.is-reverse .koke-menu__img  { order: 2; }
  .koke-menu__item.is-reverse .koke-menu__text { order: 1; }
  .koke-menu__no { font-size: 14px; letter-spacing: .3em; }
  .koke-menu__name { font-size: 26px; letter-spacing: .05em; margin: 10px 0 6px; }
  .koke-menu__price { font-size: 19px; margin-bottom: 18px; }
  .koke-menu__catch { font-size: 15px; margin-bottom: 14px; letter-spacing: .03em; }
  .koke-menu__desc { font-size: 14.5px; line-height: 2.15; letter-spacing: .03em; }

  /* Gallery */
  .koke-gallery .koke-head { margin-bottom: 64px; }
  .koke-gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .koke-gallery__item { height: 260px; }
  .g-grid .fade-in:nth-child(2n+2) { transition-delay: 0s; }
  .g-grid .fade-in:nth-child(3n+1) { transition-delay: 0s; }
  .g-grid .fade-in:nth-child(3n+2) { transition-delay: 0.1s; }
  .g-grid .fade-in:nth-child(3n+3) { transition-delay: 0.2s; }

  /* Instagram */
  .koke-insta { padding: 120px 56px; }
  .koke-insta__head { margin-bottom: 14px; }
  .koke-insta .koke-head__en { font-size: 62px; }
  .koke-insta__handle { font-size: 15px; letter-spacing: .14em; margin-bottom: 44px; }
  .koke-insta__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .koke-insta__item { background-color: #2a2a26; }
  .koke-insta__btn { width: 248px; height: auto; padding: 15px 0; margin-top: 48px; }

  /* Access */
  .koke-access .koke-head {
    text-align: left; margin-bottom: 60px; padding-bottom: 22px;
    border-bottom: 1px solid rgba(44,44,44,.12);
  }
  .koke-access__grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 52px; align-items: stretch; }
  .koke-access__map { height: auto; min-height: 360px; margin-bottom: 0; }
  .koke-access__map iframe { min-height: 360px; }
  .koke-access__name { font-size: 23px; letter-spacing: .06em; margin-bottom: 30px; }
  .koke-access__dl { grid-template-columns: 88px 1fr; row-gap: 20px; }
  .koke-access__dl dt { font-family: var(--serif); font-weight: 600; font-size: 13px; letter-spacing: .1em; }
  .koke-access__dl dt i { display: none; }
  .koke-access__dl dd { font-size: 14.5px; line-height: 1.8; }

  /* Contact */
  .koke-contact { padding: 130px 56px; }
  .koke-contact__inner { max-width: 660px; margin: 0 auto; }
  .koke-contact .koke-head { margin-bottom: 60px; }
  .koke-form { grid-template-columns: 1fr 1fr; gap: 34px; }
  .koke-form__submit { width: 230px; margin: 48px auto 0; height: auto; padding: 16px 0; }

  /* Footer */
  .koke-footer { padding: 66px 56px 40px; text-align: left; }
  .koke-footer__main {
    max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between;
    align-items: flex-start; flex-wrap: wrap; gap: 28px;
  }
  .koke-footer__logo { display: none; }
  .koke-footer__brand { font-size: 21px; letter-spacing: .22em; padding-left: .22em; display: flex; align-items: center; gap: 12px; }
  .koke-footer__brand img { display: block; width: 40px; height: 40px; object-fit: contain; }
  .koke-footer__info { margin-top: 16px; }
  .koke-footer__ig { margin-top: 0; font-size: 20px; }
  .koke-footer__bottom {
    max-width: 1180px; margin: 40px auto 0; padding-top: 24px; flex-direction: row;
    justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  }
  .koke-footer__copy { order: -1; }
}

/* 中間幅の調整（タブレット） */
@media (min-width: 900px) and (max-width: 1023px) {
  .koke-header { padding: 6px 28px; }
  .koke-section { padding: 96px 32px; }
  .koke-menu__container { padding: 0 32px; }
  .koke-insta { padding: 96px 32px; }
}
