/* ============================================================
   MEN'S BEAUTY SALON LUXY — faithful navy design
   ============================================================ */

:root{
  --navy:       #696969;   /* メインカラー */
  --navy-deep:  #4d4d4d;
  --navy-soft:  #7d7d7d;
  --dark:       #3a3a3a;   /* 濃色（フッター・お問い合わせ背景） */
  --ink:        #1a2540;   /* 見出しの濃色 */
  --text:       #3a4356;   /* 本文 */
  --muted:      #7b8398;   /* 補助テキスト */
  --line:       #e3e6ec;   /* 罫線 */
  --line-soft:  #eef0f4;
  --bg:         #ffffff;
  --bg-gray:    #f4f6f9;   /* セクション薄グレー */
  --bg-gray-2:  #eef1f5;
  --gold:       #b9c2d6;   /* ごく薄いアクセント */
  --shadow-sm:  0 10px 30px -18px rgba(16,35,71,.30);
  --shadow:     0 24px 60px -30px rgba(16,35,71,.40);
  --radius:     14px;
  --radius-lg:  22px;
  --maxw:       1120px;
  --jp-serif:   "Shippori Mincho", serif;
  --jp-sans:    "Zen Kaku Gothic New", system-ui, sans-serif;
  --en:         "Cormorant Garamond", serif;
  --tel:        "Noto Serif JP", serif;
  --script:     "Parisienne", cursive;
}

/* heading font tweak */
html[data-head="gothic"]{ --head-font: var(--jp-sans); }
html[data-head="mincho"]{ --head-font: var(--jp-serif); }
:root{ --head-font: var(--jp-serif); }

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--jp-sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.9;
  font-size:15.5px;
  -webkit-font-smoothing:antialiased;
  letter-spacing:.02em;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4,h5{ margin:0; font-weight:700; line-height:1.4; color:var(--ink); }
p{ margin:0; }
button{ font-family:inherit; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.section{ padding:clamp(56px,8vw,104px) 0; }
.section--gray{ background:var(--bg-gray); }

/* セクション英字ラベル + 日本語見出し */
.label-en{
  font-family:var(--en);
  font-size:14px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--navy);
  font-weight:600;
}
.head-jp{
  font-family:var(--head-font);
  font-size:clamp(24px,3.4vw,34px);
  letter-spacing:.04em;
  color:var(--ink);
}
.sec-head{ text-align:center; margin-bottom:8px; }
.sec-head .label-en{ display:block; margin-bottom:10px; }
.sec-lead{ text-align:center; color:var(--muted); max-width:600px; margin:14px auto 0; font-size:15px; text-wrap:pretty; }

/* ---- ボタン ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:12px;
  font-family:var(--jp-sans);
  font-weight:700; font-size:15px; letter-spacing:.04em;
  padding:15px 26px; border-radius:999px; cursor:pointer;
  border:1.5px solid transparent; transition:all .2s ease; white-space:nowrap;
}
.btn .arw{
  width:26px;height:26px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  flex-shrink:0; transition:transform .2s ease;
}
.btn .arw svg{ width:13px;height:13px; }
.btn--primary{ background:var(--navy); color:#fff; }
.btn--primary .arw{ background:rgba(255,255,255,.18); color:#fff; }
.btn--primary:hover{ background:var(--navy-deep); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.btn--primary:hover .arw{ transform:translateX(3px); }
.btn--outline{ background:#fff; color:var(--ink); border-color:#cfd5e0; }
.btn--outline .arw{ background:transparent; color:var(--navy); border:1.5px solid #cfd5e0; }
.btn--outline:hover{ border-color:var(--navy); color:var(--navy); }
.btn--outline:hover .arw{ border-color:var(--navy); transform:translateX(3px); }
.btn--block{ width:100%; }
.btn--on-navy{ background:#fff; color:var(--navy); }
.btn--on-navy .arw{ background:var(--navy); color:#fff; }
.btn--on-navy:hover{ transform:translateY(-2px); box-shadow:0 16px 40px -20px rgba(0,0,0,.6); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:80;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line-soft);
}
.site-header .bar{ display:flex; align-items:center; justify-content:space-between; height:84px; overflow:visible; }
.brand{ display:flex; flex-direction:column; line-height:1; }
.brand-logo{ height:150px; width:auto; display:block; align-self:flex-end; margin-bottom:-16px; }
.brand .sup{ font-family:var(--en); font-size:9.5px; letter-spacing:.34em; color:var(--navy); margin-bottom:4px; }
.brand .mark{ font-family:var(--en); font-size:30px; font-weight:700; letter-spacing:.18em; color:var(--ink); }
.brand .sub{ font-size:9px; letter-spacing:.3em; color:var(--muted); margin-top:3px; }

.gnav{ display:flex; align-items:center; gap:26px; }
.gnav .links{ display:flex; align-items:center; gap:24px; }
.gnav .links a{ position:relative; font-size:14px; font-weight:500; color:var(--ink); padding:4px 0; }
.gnav .links a::after{ content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background:var(--navy); transition:right .25s ease; }
.gnav .links a:hover::after, .gnav .links a.active::after{ right:0; }
.gnav .actions{ display:flex; align-items:center; gap:12px; }
.gnav .actions .btn{ padding:12px 20px; font-size:13.5px; }
.hamburger{
  width:46px;height:46px;border-radius:12px;border:1px solid var(--line);
  background:#fff; display:none; align-items:center; justify-content:center; cursor:pointer;
}
.hamburger svg{ width:22px;height:22px; color:var(--navy); }

/* モバイルメニュー */
.m-nav{ display:none; flex-direction:column; padding:8px 24px 22px; background:#fff; border-bottom:1px solid var(--line); }
.m-nav.open{ display:flex; }
.m-nav a{ padding:13px 6px; font-size:15px; border-bottom:1px solid var(--line-soft); color:var(--ink); }
.m-nav .btn{ margin-top:14px; }
.m-nav .btn + .btn{ margin-top:10px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{ position:relative; background:var(--bg-gray); overflow:hidden; }
.hero .inner{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.04fr); }
.hero-left{ padding:clamp(40px,5vw,72px) clamp(20px,4vw,56px) clamp(40px,5vw,72px) max(24px,calc((100vw - var(--maxw))/2 + 24px)); display:flex; flex-direction:column; justify-content:center; }
.hero h1{
  font-family:var(--head-font);
  font-size:clamp(34px,5vw,58px);
  line-height:1.32; letter-spacing:.04em; color:var(--ink);
  margin-bottom:24px;
}
.hero .lead{ color:var(--text); font-size:clamp(14px,1.4vw,16px); line-height:2; max-width:430px; margin-bottom:30px; text-wrap:pretty; }
/* サービスアイコン行 */
.svc-icons{ display:flex; gap:10px; margin-bottom:32px; flex-wrap:wrap; }
.svc-ic{ flex:1; min-width:74px; background:#fff; border:1px solid var(--line); border-radius:14px; padding:14px 6px 11px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:8px; transition:transform .18s ease, box-shadow .2s ease; }
.svc-ic:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.svc-ic svg{ width:30px; height:30px; color:var(--navy); }
.svc-ic .nm{ font-size:11px; font-weight:600; color:var(--ink); letter-spacing:.02em; line-height:1.35; }
.svc-ic .nm small{ display:block; font-size:9px; color:var(--muted); font-weight:500; }
.hero .cta-row{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-right{ position:relative; min-height:440px; }
.hero-right image-slot{ width:100%; height:100%; position:absolute; inset:0; }
.hero-right .hero-img{ width:100%; height:100%; position:absolute; inset:0; object-fit:cover; object-position:50% 30%; }
.hero-vert{
  position:absolute; top:0; right:14px; height:100%;
  display:flex; align-items:center;
}
.hero-vert span{
  writing-mode:vertical-rl;
  font-family:var(--en); font-size:13px; letter-spacing:.34em;
  color:var(--navy); text-transform:uppercase; font-weight:600;
  background:rgba(255,255,255,.7); padding:14px 3px; border-radius:999px;
}
.hero-script{
  position:absolute; left:-104px; bottom:64px;
  font-family:var(--script); font-size:40px; color:var(--navy);
  transform:rotate(-6deg); z-index:3; text-shadow:0 2px 10px rgba(255,255,255,.8);
}

/* =========================================================
   STORE INTRO (2店舗)
   ========================================================= */
.store-grid{ display:grid; grid-template-columns:1fr 1fr; gap:30px; margin-top:50px; }
.store-card{ background:#fff; }
.store-card .ph{ position:relative; border-radius:var(--radius); overflow:hidden; }
.store-card .ph image-slot{ width:100%; height:240px; }
.store-card .ph .store-photo{ width:100%; height:240px; object-fit:cover; display:block; }
.store-card .ph .badge{
  position:absolute; top:0; left:0;
  background:var(--navy); color:#fff;
  font-family:var(--head-font); font-weight:700; font-size:15px; letter-spacing:.1em;
  padding:9px 22px; border-bottom-right-radius:14px;
}
.store-card .tags{ display:flex; flex-wrap:wrap; gap:8px 6px; align-items:center; padding:20px 2px 16px; border-bottom:1px solid var(--line); }
.store-card .tags .tag{ display:inline-flex; align-items:center; gap:6px; font-size:12.5px; color:var(--ink); font-weight:500; }
.store-card .tags .tag svg{ width:13px;height:13px; color:var(--navy); }
.store-card .tags .sep{ color:var(--line); }
.store-card .desc{ font-size:14.5px; color:var(--text); line-height:1.95; padding:18px 0 16px; text-wrap:pretty; }
.store-card .addr{ display:flex; gap:8px; align-items:flex-start; font-size:13.5px; color:var(--muted); margin-bottom:20px; }
.store-card .addr svg{ width:15px;height:15px;color:var(--navy); flex-shrink:0; margin-top:4px; }
.store-card .btn{ padding:13px 24px; }

/* =========================================================
   FOUR COLUMN (メニュー / 料金 / 店舗 / お知らせ)
   ========================================================= */
.quad{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.qcol{ padding:0 26px; border-right:1px solid var(--line); }
.qcol:first-child{ padding-left:0; }
.qcol:last-child{ padding-right:0; border-right:none; }
.qcol .qhead{ text-align:center; margin-bottom:22px; }
.qcol .qhead .ttl{ font-family:var(--head-font); font-size:20px; color:var(--ink); letter-spacing:.06em; }
.qcol .qhead .en{ display:block; font-family:var(--en); font-size:11px; letter-spacing:.3em; color:var(--muted); margin-top:4px; text-transform:uppercase; }
.qcol .qintro{ font-size:13px; color:var(--muted); line-height:1.85; margin-bottom:18px; text-wrap:pretty; }

/* メニュー紹介 list */
.menu-mini{ display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
.menu-mini .row{ display:flex; gap:12px; align-items:center; }
.menu-mini image-slot{ width:54px; height:54px; flex-shrink:0; }
.menu-mini .mphoto{ width:54px; height:54px; flex-shrink:0; object-fit:cover; border-radius:8px; display:block; }
.menu-mini .t .n{ font-size:13.5px; font-weight:700; color:var(--ink); }
.menu-mini .t .d{ font-size:11.5px; color:var(--muted); line-height:1.55; }

/* 料金 list */
.price-mini{ display:flex; flex-direction:column; }
.price-mini .pr{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding:11px 0; border-bottom:1px dashed var(--line); font-size:13.5px; }
.price-mini .pr .nm{ display:flex; align-items:center; gap:8px; color:var(--ink); font-weight:500; }
.price-mini .pr .nm svg{ width:15px;height:15px;color:var(--navy); flex-shrink:0; }
.price-mini .pr .pc{ font-family:var(--en); font-weight:700; font-size:16px; color:var(--navy); white-space:nowrap; }
.price-mini .pr .pc small{ font-family:var(--jp-sans); font-size:10px; color:var(--muted); margin-left:1px; }
.promo{ margin-top:18px; background:var(--bg-gray); border-radius:var(--radius); padding:18px 14px; text-align:center; }
.promo .lbl{ font-family:var(--en); font-size:10px; letter-spacing:.28em; color:var(--muted); }
.promo .big{ font-family:var(--head-font); font-size:15px; color:var(--ink); margin:2px 0 4px; }
.promo .pct{ font-family:var(--en); font-size:34px; font-weight:700; color:var(--navy); line-height:1; }
.promo .pct b{ font-size:18px; }
.promo .btn{ margin-top:12px; padding:10px 18px; font-size:12.5px; }

/* 店舗紹介 sub */
.shop-sub{ display:flex; flex-direction:column; gap:24px; }
.shop-sub .sh .nm{ display:flex; align-items:baseline; gap:8px; margin-bottom:8px; }
.shop-sub .sh .nm b{ font-family:var(--head-font); font-size:15px; color:var(--ink); }
.shop-sub .sh .nm span{ font-family:var(--en); font-size:10px; letter-spacing:.2em; color:var(--muted); }
.shop-sub .sh image-slot{ width:100%; height:96px; margin-bottom:10px; }
.shop-sub .sh .shop-photo{ width:100%; height:96px; object-fit:cover; border-radius:10px; margin-bottom:10px; display:block; }
.shop-sub .sh .ln{ font-size:11.5px; color:var(--text); line-height:1.7; margin-bottom:3px; }
.shop-sub .sh .ln b{ color:var(--ink); }
.shop-sub .sh .btns{ display:flex; flex-direction:column; gap:6px; margin-top:10px; }
.shop-sub .sh .btns .btn{ padding:9px 14px; font-size:12px; }

/* お知らせ */
.news-mini{ display:flex; flex-direction:column; }
.news-mini a{ display:block; padding:13px 0; border-bottom:1px solid var(--line); }
.news-mini a:first-child{ padding-top:0; }
.news-mini time{ font-family:var(--en); font-size:12px; color:var(--muted); letter-spacing:.06em; }
.news-mini .nt{ font-size:13px; color:var(--ink); font-weight:500; line-height:1.6; margin-top:3px; transition:color .15s; }
.news-mini a:hover .nt{ color:var(--navy); }
.qcol .col-btn{ margin-top:22px; display:flex; justify-content:center; }
.qcol .col-btn .btn{ padding:11px 22px; font-size:13px; }

/* =========================================================
   BOTTOM NAVY BAND (予約 / FAQ / 特徴)
   ========================================================= */
.band{ background:#565656; color:#dbe1ee; position:relative; overflow:hidden; }
.band .inner{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:46px; padding:clamp(48px,6vw,80px) 0; position:relative; z-index:2; }
.band .bhead{ margin-bottom:24px; }
.band .bhead .ttl{ font-family:var(--head-font); font-size:21px; color:#fff; letter-spacing:.06em; }
.band .bhead .en{ display:block; font-family:var(--en); font-size:11px; letter-spacing:.3em; color:#9fb0d0; margin-top:5px; text-transform:uppercase; }

/* 予約列 */
.band .resv p.note{ font-size:13.5px; color:#bcc7dd; line-height:1.9; margin-bottom:20px; }
.band .resv .btn{ width:100%; margin-bottom:14px; }
.band .telbox{ background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); border-radius:var(--radius); padding:16px 18px; margin-bottom:12px; }
.band .telbox .k{ font-size:11px; color:#9fb0d0; letter-spacing:.04em; }
.band .telbox .v{ display:flex; align-items:center; gap:10px; font-family:var(--tel); font-size:23px; font-weight:600; color:#fff; letter-spacing:.02em; margin-top:4px; }
.band .telbox .v svg{ width:18px;height:18px;color:#9fb0d0; }
.band .telbox + .telbox{ margin-bottom:0; }
.band .mail{ display:flex; align-items:center; gap:10px; justify-content:center; margin-top:14px; font-size:13px; color:#dbe1ee; padding:13px; border:1px solid rgba(255,255,255,.2); border-radius:999px; }
.band .mail svg{ width:17px;height:17px; }
.band .mail:hover{ background:rgba(255,255,255,.08); }

/* FAQ */
.faq{ display:flex; flex-direction:column; }
.faq .q{ border-bottom:1px solid rgba(255,255,255,.16); }
.faq .q button{ width:100%; text-align:left; background:none; border:none; color:#fff; font-size:13.5px; font-weight:500; padding:15px 30px 15px 2px; cursor:pointer; position:relative; line-height:1.6; letter-spacing:.02em; }
.faq .q button .pm{ position:absolute; right:2px; top:16px; width:18px; height:18px; }
.faq .q button .pm::before,.faq .q button .pm::after{ content:""; position:absolute; background:#9fb0d0; transition:transform .25s ease, opacity .2s; }
.faq .q button .pm::before{ left:0; top:8px; width:18px; height:1.5px; }
.faq .q button .pm::after{ left:8px; top:0; width:1.5px; height:18px; }
.faq .q.open button .pm::after{ transform:scaleY(0); opacity:0; }
.faq .q .a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq .q .a p{ font-size:12.5px; color:#bcc7dd; line-height:1.85; padding:0 24px 16px 2px; }
.faq .col-btn{ margin-top:18px; }
.faq .col-btn a{ display:inline-flex; align-items:center; gap:8px; font-size:12.5px; color:#9fb0d0; }
.faq .col-btn a:hover{ color:#fff; }

/* 特徴 */
.feat .feat-photo{ border-radius:var(--radius); overflow:hidden; margin-bottom:20px; }
.feat .feat-photo image-slot{ width:100%; height:150px; }
.feat ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.feat li{ display:flex; gap:12px; align-items:flex-start; font-size:13px; color:#dbe1ee; line-height:1.7; }
.feat li .ic{ flex-shrink:0; width:30px;height:30px;border-radius:50%; border:1px solid rgba(255,255,255,.22); display:flex; align-items:center; justify-content:center; }
.feat li .ic svg{ width:15px;height:15px;color:#9fb0d0; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot{ background:var(--dark); color:#9aa6c0; padding:25px 0 28px; }
.foot .top{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; flex-wrap:wrap; padding-bottom:30px; border-bottom:1px solid rgba(255,255,255,.1); }
.foot .mark{ font-family:var(--en); font-size:26px; letter-spacing:.18em; color:#fff; }
.foot-logo{ height:150px; width:auto; display:block; margin:0 auto; filter:brightness(0) invert(1); }
.foot .sup{ font-family:var(--en); font-size:9px; letter-spacing:.34em; color:#7e8cab; }
.foot .ftag{ font-size:12.5px; color:#7e8cab; max-width:300px; margin-top:2px; }
.foot .stores{ display:flex; gap:44px; flex-wrap:wrap; align-items:flex-end; }
.foot .st h5{ font-size:13px; color:#fff; margin-bottom:8px; letter-spacing:.06em; }
.foot .st p{ font-size:12px; line-height:1.85; color:#7e8cab; }
.foot .st a{ color:#9aa6c0; font-family:var(--tel); letter-spacing:.02em; }
.foot .bot{ padding-top:22px; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:11px; color:#5f6b88; }

/* 画面下固定CTA（スマホ） */
.dock{ display:none; }

/* =========================================================
   MENU PAGE
   ========================================================= */
.mpage-hero{ background:var(--bg-gray); }
.mpage-hero .inner{ display:grid; grid-template-columns:1fr 1fr; align-items:stretch; min-height:420px; }
.mpage-hero .txt{ padding:clamp(48px,7vw,84px) clamp(20px,4vw,56px) clamp(48px,7vw,84px) max(24px,calc((100vw - var(--maxw))/2 + 24px)); display:flex; flex-direction:column; justify-content:center; }
.mpage-hero .en-ttl{ font-family:var(--en); font-size:clamp(44px,7vw,72px); letter-spacing:.1em; color:var(--ink); line-height:1; }
.mpage-hero .jp-sub{ font-family:var(--head-font); font-size:19px; color:var(--navy); letter-spacing:.16em; margin:14px 0 22px; }
.mpage-hero p{ color:var(--text); font-size:14.5px; line-height:2; max-width:420px; text-wrap:pretty; }
.mpage-hero .photo{ position:relative; min-height:320px; }
.mpage-hero .photo img{ width:100%; height:100%; object-fit:cover; object-position:60% 30%; position:absolute; inset:0; }

.salon-menu-head{ text-align:center; padding:clamp(56px,7vw,84px) 0 0; }
.salon-menu-head .en-ttl{ font-family:var(--en); font-size:clamp(30px,4vw,42px); letter-spacing:.14em; color:var(--ink); }
.salon-menu-head .bar{ width:56px; height:2px; background:var(--navy); margin:16px auto 0; }

.shop-block{ padding:36px 0 clamp(48px,6vw,76px); }
.shop-tag{
  display:inline-flex; align-items:center; gap:16px;
  background:var(--navy); color:#fff;
  padding:14px 34px 14px 24px;
  clip-path:polygon(0 0,100% 0,calc(100% - 22px) 100%,0 100%);
  margin-bottom:0;
}
.shop-tag .en{ font-family:var(--en); font-size:22px; font-weight:700; letter-spacing:.1em; }
.shop-tag .jp{ font-size:13px; letter-spacing:.06em; color:#c9d2e6; }
.shop-lead{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin:18px 0 26px; }
.shop-lead p{ font-size:14.5px; color:var(--text); }

.mgrid{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.mgrid.five{ grid-template-columns:repeat(5,1fr); }
.mitem{ border-right:1px solid var(--line); padding:22px 20px 24px; display:flex; flex-direction:column; }
.mitem:last-child{ border-right:none; }
.mitem .thumb{ width:100%; height:150px; border-radius:10px; overflow:hidden; margin-bottom:16px; background:var(--bg-gray); }
.mitem .thumb img,.mitem .thumb image-slot{ width:100%; height:100%; object-fit:cover; display:block; }
.mitem .en{ font-family:var(--en); font-size:16px; font-weight:700; letter-spacing:.05em; color:var(--ink); }
.mitem .jp{ font-size:12.5px; color:var(--navy); font-weight:600; margin:2px 0 10px; }
.mitem .d{ font-size:12px; color:var(--muted); line-height:1.75; margin-bottom:16px; flex:1; text-wrap:pretty; }
.mitem .prices{ display:flex; flex-direction:column; gap:6px; padding-top:12px; border-top:1px solid var(--line); }
.mitem .prices .p{ display:flex; align-items:baseline; justify-content:space-between; gap:8px; font-size:12.5px; color:var(--text); }
.mitem .prices .p b{ font-family:var(--en); font-size:14.5px; color:var(--navy); font-weight:700; white-space:nowrap; }
.mitem .prices .p b.inquire{ font-family:var(--jp-sans); font-size:12.5px; font-weight:600; }

.mpage-cta{ background:var(--bg-gray); }
.mpage-cta .inner{ display:grid; grid-template-columns:1fr 1.15fr; align-items:center; gap:0; }
.mpage-cta .photo{ position:relative; min-height:280px; align-self:stretch; }
.mpage-cta .photo img{ width:100%; height:100%; object-fit:cover; object-position:50% 25%; position:absolute; inset:0; }
.mpage-cta .txt{ padding:clamp(40px,5vw,64px); }
.mpage-cta h3{ font-family:var(--head-font); font-size:clamp(24px,3vw,32px); color:var(--ink); margin-bottom:16px; }
.mpage-cta p{ color:var(--text); font-size:14.5px; line-height:1.95; margin-bottom:26px; }

@media(max-width:920px){
  .mgrid,.mgrid.five{ grid-template-columns:repeat(2,1fr); }
  .mitem{ border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
  .mitem:nth-child(2n){ border-right:none; }
  .mpage-hero .inner{ grid-template-columns:1fr; }
  .mpage-hero .photo{ order:-1; min-height:260px; }
  .mpage-cta .inner{ grid-template-columns:1fr; }
  .mpage-cta .photo{ min-height:220px; }
}
@media(max-width:560px){
  .mgrid,.mgrid.five{ grid-template-columns:1fr; }
  .mitem{ border-right:none; }
  .shop-tag{ padding:12px 26px 12px 18px; }
  .shop-tag .en{ font-size:18px; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-width:960px){
  .hero .inner{ grid-template-columns:1fr; }
  .hero-right{ min-height:340px; order:-1; }
  .hero-left{ padding:clamp(32px,6vw,52px) 24px; }
  .hero-script{ left:auto; right:20px; bottom:14px; }
  .quad{ grid-template-columns:1fr; gap:36px 0; }
  .qcol{ border-right:none; padding:0 18px; }
  .band .inner{ grid-template-columns:1fr; gap:40px; }
}
@media(max-width:760px){
  .gnav{ display:none; }
  .hamburger{ display:inline-flex; }
  .store-grid{ grid-template-columns:1fr; gap:34px; }
}
@media(max-width:560px){
  body{ font-size:15px; padding-bottom:60px; }
  .section{ padding:48px 0; }
  .svc-icons{ gap:8px; }
  .svc-ic{ min-width:60px; padding:11px 4px 9px; }
  .svc-ic svg{ width:26px;height:26px; }
  .hero h1{ font-size:32px; }
  .quad{ grid-template-columns:1fr; }
  .qcol{ padding:0 0 30px !important; border-right:none !important; border-bottom:1px solid var(--line); }
  .qcol:last-child{ border-bottom:none; padding-bottom:0 !important; }
  .hero .cta-row .btn{ width:100%; }
  .dock{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:90;
    background:#fff; border-top:1px solid var(--line); box-shadow:0 -8px 24px -16px rgba(0,0,0,.3);
  }
  .dock a{ flex:1; display:flex; align-items:center; justify-content:center; gap:7px; padding:15px 6px; font-weight:700; font-size:13.5px; }
  .dock a svg{ width:17px;height:17px; }
  .dock .d-tel{ background:var(--navy); color:#fff; }
  .dock .d-mail{ color:var(--ink); }
}
