@charset "UTF-8";
/* ==========================================================================
   買取専門店こやし屋 楽々園店　スタイルシート
   カラー：本部HP実測値／書体：Zen Kaku Gothic Antique
   設計：モバイルファースト（スマホ基準 → PCへ拡張）
   ========================================================================== */

:root{
  --navy:#09184A;      /* メインカラー（濃紺） */
  --navy-d:#050E2E;    /* 濃紺の暗い方 */
  --pale:#EAF1FA;      /* サブ背景（淡青） */
  --pale-2:#F2F5FA;
  --red:#D90000;       /* CTA・電話 */
  --red-d:#A50000;
  --gold:#FFCE00;      /* 高価買取の強調 */
  --line-g:#06C755;    /* LINEブランドカラー */
  --line-gd:#04A344;
  --ink:#1D1D1D;       /* 本文 */
  --ink-2:#5A6070;     /* 補助テキスト */
  --line:#C9D2E4;      /* 罫線 */
  --white:#FFFFFF;
  --bar-h:60px;        /* スマホ固定バーの高さ */
  --hdr-h:56px;        /* ヘッダーの高さ */
  --wrap:1080px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--hdr-h) + 8px);-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:"Zen Kaku Gothic Antique","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  font-size:16px;line-height:1.9;color:var(--ink);background:var(--white);
  padding-bottom:var(--bar-h);
  overflow-wrap:break-word;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
h1,h2,h3{line-height:1.5;margin:0}
p{margin:0 0 1em}
ul,ol{margin:0;padding:0;list-style:none}

/* プレースホルダー（画像がまだ無いときに表示されるグレー枠）
   写真を images/ に配置すれば自動的に表示されなくなります */
.imgph{
  width:100%;min-height:130px;aspect-ratio:3/2;
  background:var(--pale);border:2px dashed var(--line);border-radius:10px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:5px;padding:14px;text-align:center;color:#7C8AA5;
}
.imgph span{font-size:13px;font-weight:700;letter-spacing:.04em}
.imgph small{font-size:11.5px;line-height:1.6;max-width:32em}

.ic{width:20px;height:20px;flex:none}
.ic-md{width:30px;height:30px;flex:none;color:var(--navy)}
.ic-lg{width:40px;height:40px;flex:none;color:var(--navy)}
.ic-ch{width:18px;height:18px;flex:none;margin-left:auto;transition:transform .2s}

.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 18px}
.wrap.narrow{max-width:800px}

/* ---------- 最上部の古物商許可番号バー ----------
   古物営業法にもとづく表示。ページ最上部に常時掲載する */
.topbar{background:var(--navy-d);color:#fff}
.topbar-in{
  max-width:var(--wrap);margin:0 auto;padding:5px 18px;
  display:flex;flex-wrap:wrap;align-items:center;gap:4px 14px;
  font-size:11px;line-height:1.6;
}
.topbar-cert{font-weight:700;letter-spacing:.02em}
.topbar-sub{opacity:.75}

/* ---------- ヘッダー ---------- */
.hdr{position:sticky;top:0;z-index:50;background:var(--navy);color:var(--white)}
.hdr-in{display:flex;align-items:center;justify-content:space-between;gap:10px;height:var(--hdr-h);max-width:var(--wrap);margin:0 auto;padding:0 12px}
.hdr-logo{display:flex;align-items:center;gap:8px;text-decoration:none}
.hdr-logo img{height:28px;width:auto}
/* ロゴ本体には店舗名が入っていないため、隣に「楽々園店」を添える */
.logo-sub{
  font-size:14px;font-weight:900;color:#fff;letter-spacing:.04em;
  padding-left:8px;border-left:1px solid rgba(255,255,255,.4);line-height:1.2;
}
.logo-txt{font-size:13px;font-weight:500;letter-spacing:.02em;line-height:1.3}
.logo-txt b{display:block;font-size:16px;font-weight:900}
.hdr-right{display:flex;align-items:center;gap:8px}
.hdr-tel{display:flex;align-items:center;gap:6px;background:var(--red);color:#fff;text-decoration:none;font-weight:700;font-size:14px;padding:7px 12px;border-radius:6px}
.hdr-tel span{display:none}
/* 来店予約ボタン（A案：PCのみ表示。スマホは画面下の固定バーに予約ボタンがあるため非表示） */
.hdr-book{display:none;align-items:center;gap:6px;background:var(--gold);color:var(--navy);text-decoration:none;font-weight:800;font-size:14px;padding:7px 12px;border-radius:6px}
.hdr-book .ic{width:18px;height:18px}
.hdr-menu{width:40px;height:40px;background:transparent;border:1px solid rgba(255,255,255,.45);border-radius:6px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;cursor:pointer;padding:0}
.hdr-menu span{display:block;width:20px;height:2px;background:#fff;transition:.25s}
.hdr-menu[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hdr-menu[aria-expanded="true"] span:nth-child(2){opacity:0}
.hdr-menu[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.drawer{display:none;background:var(--navy-d);padding:8px 0 14px}
.drawer.open{display:block}
.drawer a{display:block;color:#fff;text-decoration:none;padding:12px 20px;font-size:15px;border-bottom:1px solid rgba(255,255,255,.12)}

/* ---------- ボタン ---------- */
.btn{
  display:flex;align-items:center;justify-content:center;gap:10px;
  text-decoration:none;border:none;cursor:pointer;
  padding:15px 18px;border-radius:10px;font-family:inherit;
  font-size:17px;font-weight:700;line-height:1.35;text-align:left;
  transition:filter .15s,transform .1s;
}
.btn:active{transform:scale(.985)}
.btn span{display:flex;flex-direction:column}
.btn small{font-size:11.5px;font-weight:400;opacity:.9;line-height:1.4}
.btn-tel{background:var(--red);color:#fff;box-shadow:0 3px 0 var(--red-d)}
.btn-mail{background:#fff;color:var(--navy);border:2px solid var(--navy)}
.btn-navy{background:var(--navy);color:#fff;box-shadow:0 3px 0 var(--navy-d)}
.btn-white{background:#fff;color:var(--red);box-shadow:0 3px 0 rgba(0,0,0,.15)}
.btn-line{background:var(--line-g);color:#fff;box-shadow:0 3px 0 var(--line-gd)}
.btn-book{background:var(--gold);color:var(--navy);box-shadow:0 3px 0 #C9A200}
.btn-submit{width:100%;background:var(--red);color:#fff;font-size:18px;padding:17px;box-shadow:0 3px 0 var(--red-d);justify-content:center}
.btn-submit:disabled{background:#9AA3B5;box-shadow:none;cursor:progress}
.lnk{color:var(--navy);font-weight:700;text-underline-offset:3px}

/* ---------- ファーストビュー ---------- */
.hero{background:var(--pale)}
.hero-in{width:100%;max-width:var(--wrap);margin:0 auto}
.hero-media{position:relative}
/* 店舗外観は約3:2。看板が切れないよう 3/2 で表示する */
.hero-photo{width:100%;aspect-ratio:3/2;object-fit:cover;object-position:center 45%}

/* イメージキャラクター（新庄剛志さん）
   スマホ：店舗写真の右下に重ねる（背景の等身大パネルが隠れる大きさにする）
   PC   ：写真の上に立たせる（別カット shinjo1.webp を使用）
   ※どちらも切り抜き済みの透過画像 */
.hero-chara{
  position:absolute;right:2px;bottom:0;z-index:2;
  width:42%;max-width:225px;margin:0;
  display:flex;flex-direction:column;align-items:center;
}
.hero-chara picture{display:block;width:100%}
.hero-chara img{
  width:100%;height:auto;object-fit:contain;
  filter:drop-shadow(0 6px 16px rgba(9,24,74,.38));
}
.hero-chara figcaption{
  position:absolute;left:50%;bottom:6px;transform:translateX(-50%);
  background:rgba(9,24,74,.92);color:#fff;border-radius:6px;
  padding:4px 10px;text-align:center;line-height:1.3;white-space:nowrap;
}
.hero-chara figcaption span{display:block;font-size:9.5px;opacity:.85}
.hero-chara figcaption b{font-size:13px;font-weight:700;letter-spacing:.04em}
.hero-body{padding:22px 18px 30px}
.hero-eyebrow{
  display:inline-block;background:var(--gold);color:#4A3A00;
  font-weight:700;font-size:13px;padding:4px 12px;border-radius:4px;margin:0 0 12px;
}
/* H1は「地名／キャッチ／店名」の3行固定。<br>で改行位置を指定しているため、
   2行目「楽々園駅徒歩10秒の買取専門店」が折り返さないサイズに調整している */
.hero h1{font-size:22px;font-weight:500;color:var(--navy);margin-bottom:16px;line-height:1.5}
.hero h1 strong{font-weight:900;font-size:1.08em;display:inline;margin-top:0}
/* 画面幅の狭い機種（iPhone SE など）でも2行目が折り返さないように縮める */
@media (max-width:374px){
  .hero h1{font-size:19.5px}
}
.hero-points{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 18px}
.hero-points li{display:flex;align-items:center;gap:5px;background:var(--navy);color:#fff;font-size:13.5px;font-weight:700;padding:6px 12px;border-radius:20px}
.hero-points .ic{width:15px;height:15px;color:var(--gold)}
.hero-lead{font-size:15px}
.hero-cta{display:flex;flex-direction:column;gap:10px;margin-top:22px}

/* ---------- アンカーナビ ---------- */
.anchors{background:#fff;border-bottom:1px solid var(--line)}
.anchors-in{
  display:flex;gap:8px;overflow-x:auto;
  width:100%;max-width:var(--wrap);margin:0 auto;padding:12px 18px;
  -webkit-overflow-scrolling:touch;
}
.anchors-in::-webkit-scrollbar{height:0}
.anchors a{white-space:nowrap;border:1.5px solid var(--navy);color:var(--navy);border-radius:20px;padding:5px 14px;font-size:13px;font-weight:700;text-decoration:none;flex:none}

/* ---------- セクション共通 ---------- */
.sec{padding:44px 0}
.sec-alt{background:var(--pale)}
.sec h2{
  font-size:20px;font-weight:900;color:var(--navy);
  margin:0 0 20px;padding-left:14px;border-left:6px solid var(--red);
}
.sec h3{font-size:17px;font-weight:700;color:var(--navy);margin:0 0 8px}
.lead{font-size:16px}
.note{font-size:14px;background:#fff;border:1px solid var(--line);border-radius:8px;padding:14px 16px}
.sec-alt .note{background:var(--white)}
.note-sm{font-size:13px;color:var(--ink-2)}

/* ---------- 3つの約束 ---------- */
.cards3{display:grid;gap:14px}
.card{background:#fff;border:1px solid var(--line);border-radius:12px;padding:22px 18px;text-align:center}
.card .ic-lg{margin:0 auto 10px;color:var(--red)}
.card p{margin:0;font-size:14.5px}

/* ---------- 店舗情報 ---------- */
.store-grid{display:grid;gap:18px}
.store-map{border-radius:12px;overflow:hidden;border:1px solid var(--line);background:#fff}
.store-map iframe{width:100%;height:260px;border:0;display:block}
.tbl{width:100%;border-collapse:collapse;background:#fff;font-size:14.5px;border:1px solid var(--line);border-radius:10px;overflow:hidden}
.tbl th,.tbl td{padding:11px 13px;text-align:left;vertical-align:top;border-bottom:1px solid var(--line)}
.tbl th{width:88px;background:var(--navy);color:#fff;font-weight:500;white-space:nowrap;font-size:13.5px}
.tbl tr:last-child th,.tbl tr:last-child td{border-bottom:none}
.store-btns{display:flex;flex-direction:column;gap:10px;margin-top:14px}
.store-text{margin-top:22px}
.fig-row{display:grid;gap:12px;margin:20px 0 0}
.fig-row img{border-radius:10px;width:100%;aspect-ratio:3/2;object-fit:cover}

/* ---------- 買取品目 ---------- */
.items{display:grid;gap:8px;margin:14px 0}
.item{background:#fff;border:1px solid var(--line);border-radius:10px;overflow:hidden}
.item summary{display:flex;align-items:center;gap:11px;padding:10px 15px;cursor:pointer;font-weight:700;font-size:16px;color:var(--navy);list-style:none}
.item summary::-webkit-details-marker{display:none}
/* 見出し行のサムネイル（本部HPの品目写真）。開かなくても何を買い取るか伝わるようにする */
.item-th{
  width:60px;height:55px;flex:none;object-fit:contain;
  background:#fff;border:1px solid var(--line);border-radius:6px;
}
.item[open] .ic-ch{transform:rotate(180deg)}
.item p{margin:0;padding:0 16px 16px;font-size:14.5px;color:var(--ink)}
.fig-3 img{aspect-ratio:1/1}

/* ---------- ブランド ---------- */
/* 写真＋ブランド名のタイル。ブランド名はテキストのまま残す（検索エンジンが読めるように） */
.brands{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:0 0 14px;padding:0;list-style:none}
.brands li{
  display:flex;flex-direction:column;overflow:hidden;
  background:#fff;border:1px solid var(--line);border-radius:8px;
}
.brands li img{width:100%;height:auto;aspect-ratio:11/10;object-fit:contain;background:#fff;display:block}
.brands li b{
  display:block;background:var(--navy);color:#fff;text-align:center;
  font-size:11.5px;font-weight:700;line-height:1.3;padding:7px 3px;margin-top:auto;
}

/* ---------- 状態が悪くてもOK ---------- */
.cond-grid{display:grid;gap:18px}
/* 品目ラインナップの横長バナー（本部HPの画像を使用）。画像は白背景なので枠内も白で揃える */
.lineup{
  margin:24px 0 0;padding:18px 14px 8px;
  background:#fff;border:1px solid var(--line);border-radius:12px;text-align:center;
}
.lineup figcaption{margin-bottom:6px}
.lineup-eyebrow{
  display:inline-block;background:var(--navy);color:#fff;
  font-size:12.5px;font-weight:700;padding:4px 14px;border-radius:20px;margin:0 0 8px;
}
.lineup-title{
  font-size:18px;font-weight:900;color:var(--navy);line-height:1.5;margin:0;
}
.lineup-title strong{color:var(--red)}
.lineup img{width:100%;height:auto;margin-top:4px}
.cond-grid img{border-radius:10px;width:100%}
.ticks li{position:relative;padding:6px 0 6px 28px;font-size:15px;border-bottom:1px dashed var(--line)}
.ticks li::before{
  content:"";position:absolute;left:2px;top:14px;width:14px;height:8px;
  border-left:3px solid var(--red);border-bottom:3px solid var(--red);transform:rotate(-45deg);
}
.ticks li small{display:block;font-size:12px;color:var(--ink-2);padding-left:0}
.cols2{margin-bottom:18px}

/* ---------- CTAバンド ---------- */
.cta-band{background:var(--red);color:#fff;padding:30px 0;text-align:center}
.cta-lead{font-size:19px;font-weight:900;margin:0 0 4px}
.cta-sub{font-size:14px;margin:0 0 16px;opacity:.95}
.cta-band .btn{max-width:420px;margin:0 auto}

/* ---------- 選ばれる理由 ---------- */
.reasons{display:grid;gap:14px}
.reason{background:#fff;border:1px solid var(--line);border-radius:12px;padding:20px 18px}
.reason .ic-lg{color:var(--red);margin-bottom:10px}
.reason p{margin:0;font-size:14.5px}
.reason img{margin-top:14px;border-radius:8px;width:100%;aspect-ratio:3/2;object-fit:cover}
/* 認定証など縦長の画像は切り取らず全体を見せる（文字が読めることが重要） */
.reason img.portrait{
  aspect-ratio:auto;object-fit:contain;background:#fff;
  width:auto;max-width:100%;max-height:430px;margin:14px auto 0;display:block;
}

/* ---------- 店長紹介 ---------- */
.staff{display:grid;gap:18px;background:#fff;border:1px solid var(--line);border-radius:12px;padding:20px 18px;margin-bottom:0}
/* 店長写真は縦位置。切り抜き加工済みのため、トリミングせず全体を表示する */
.staff-photo{border-radius:10px;width:100%;max-width:340px;margin:0 auto;height:auto;background:#fff}
.staff-role{font-size:13px;color:var(--red);font-weight:700;margin:0}
.staff-name{font-size:26px;font-weight:900;color:var(--navy);margin:0 0 14px;letter-spacing:.08em}
.staff-body p{font-size:15px}

/* ---------- SNS（店長紹介の下）----------
   主要CTA（電話・LINE・来店予約）より目立たせない控えめな見た目にする。
   ロゴ画像は使わず、線画アイコン＋テキストで表現している */
.sns{margin-top:20px;padding-top:18px;border-top:1px dashed var(--line)}
.sns-lead{font-size:14.5px;font-weight:700;color:var(--navy);margin:0 0 10px}
.sns-btns{display:flex;flex-wrap:wrap;gap:10px}
.sns-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 16px;border:1.5px solid var(--line);border-radius:999px;background:#fff;text-decoration:none;color:var(--navy);font-size:14px;transition:border-color .2s,background .2s}
.sns-btn b{font-weight:700}
.sns-btn:hover{background:var(--pale)}
.sns-x .ic{color:#000}
.sns-x:hover{border-color:#000}
.sns-insta .ic{color:#E1306C}
.sns-insta:hover{border-color:#E1306C}

/* ---------- 買取の流れ ---------- */
.flow{display:grid;gap:12px;counter-reset:s}
.flow li{background:#fff;border:1px solid var(--line);border-left:6px solid var(--navy);border-radius:0 10px 10px 0;padding:16px 18px}
.step{display:inline-block;background:var(--navy);color:#fff;font-size:12px;font-weight:700;letter-spacing:.08em;padding:3px 10px;border-radius:4px;margin-bottom:8px}
.flow p{margin:0;font-size:14.5px}

/* ---------- FAQ ---------- */
.faq details{background:#fff;border:1px solid var(--line);border-radius:10px;margin-bottom:8px;overflow:hidden}
.faq summary{display:flex;align-items:center;gap:10px;padding:15px 16px;cursor:pointer;font-weight:700;font-size:15.5px;color:var(--navy);list-style:none;position:relative;padding-left:44px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::before{content:"Q";position:absolute;left:15px;top:14px;width:22px;height:22px;background:var(--navy);color:#fff;border-radius:50%;font-size:13px;display:flex;align-items:center;justify-content:center;font-weight:700}
.faq details[open] .ic-ch{transform:rotate(180deg)}
.faq p{margin:0;padding:0 16px 16px 44px;font-size:14.5px;position:relative}
.faq p::before{content:"A";position:absolute;left:15px;top:0;width:22px;height:22px;background:var(--red);color:#fff;border-radius:50%;font-size:13px;display:flex;align-items:center;justify-content:center;font-weight:700}

/* ---------- お問い合わせ ---------- */
.contact-quick{display:grid;gap:10px;margin-bottom:26px}
.form{background:#fff;border:1px solid var(--line);border-radius:12px;padding:20px 18px}
.field{margin-bottom:18px}
.field label{display:block;font-weight:700;font-size:15px;color:var(--navy);margin-bottom:6px}
.req{display:inline-block;background:var(--red);color:#fff;font-size:11px;font-weight:700;padding:1px 7px;border-radius:3px;vertical-align:2px;margin-left:4px}
.field input,.field textarea{
  width:100%;font-family:inherit;font-size:16px;color:var(--ink);
  border:1.5px solid var(--line);border-radius:8px;padding:12px 13px;background:#fff;
}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--navy);box-shadow:0 0 0 3px rgba(9,24,74,.12)}
.field input[type=file]{padding:10px;font-size:14px}
.field small{display:block;font-size:12.5px;color:var(--ink-2);margin-top:5px}
.field.err input,.field.err textarea{border-color:var(--red);background:#FFF7F7}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-msg{margin:14px 0 0;font-size:14.5px;font-weight:700;text-align:center;min-height:1.5em}
.form-msg.ok{color:#0B7A3B}
.form-msg.ng{color:var(--red)}

/* ---------- フッター ---------- */
.ftr{background:var(--navy);color:#fff;padding:34px 0 30px;font-size:14px;line-height:1.9}
.ftr a{color:#fff}
.ftr-name{font-size:18px;font-weight:900;margin:0 0 10px}
.ftr-nav{display:flex;flex-wrap:wrap;gap:8px 16px;margin:18px 0 0;padding-top:16px;border-top:1px solid rgba(255,255,255,.25)}
.ftr-nav a{font-size:13.5px;text-decoration:none;opacity:.9}
.ftr-cert{
  margin:14px 0 0;font-size:13px;font-weight:700;
  display:inline-block;border:1px solid rgba(255,255,255,.45);
  border-radius:6px;padding:6px 12px;letter-spacing:.02em;
}
.copy{margin:18px 0 0;font-size:12px;opacity:.7}

/* ---------- 今月のチラシ ---------- */
.flyer-wrap{display:grid;gap:22px;margin:22px 0 18px}
.flyer-imgs{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:0}
.flyer-imgs img{
  width:100%;height:auto;border-radius:8px;
  border:1px solid var(--line);background:#fff;
  box-shadow:0 2px 10px rgba(9,24,74,.12);
}
.flyer-imgs figcaption{
  grid-column:1 / -1;font-size:12.5px;color:var(--ink-2);margin-top:4px;
}
.flyer-cta{background:#fff;border:1px solid var(--line);border-radius:12px;padding:22px 18px}
.flyer-cta h3{margin:0 0 10px;font-size:18px}
.flyer-cta p{font-size:14.5px;margin:0 0 12px}
.flyer-note{background:var(--pale);border-radius:8px;padding:12px 14px}
.flyer-cta .btn{width:100%;margin-top:4px}
.flyer-qr{
  display:flex;align-items:center;gap:14px;margin-top:16px;
  padding-top:16px;border-top:1px dashed var(--line);
}
.flyer-qr img{width:110px;height:110px;flex:0 0 110px;border:1px solid var(--line);border-radius:6px;padding:4px;background:#fff}
.flyer-qr p{font-size:13px;color:var(--ink-2);margin:0}

/* ---------- スマホ固定バー（常時表示） ---------- */
.fixbar{
  position:fixed;left:0;right:0;bottom:0;z-index:60;
  display:grid;grid-template-columns:repeat(3,1fr);
  height:var(--bar-h);background:var(--navy);
  box-shadow:0 -3px 12px rgba(0,0,0,.22);
  padding-bottom:env(safe-area-inset-bottom);
}
.fixbar a{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
  color:#fff;text-decoration:none;font-size:11.5px;
  border-right:1px solid rgba(255,255,255,.22);
}
.fixbar a:last-child{border-right:none}
.fixbar .fb-tel{background:var(--red)}
.fixbar .fb-line{background:var(--line-g)}
.fixbar .fb-book{background:var(--gold);color:var(--navy)}
.fixbar .ic{width:22px;height:22px}
.fixbar b{font-weight:700}
/* 4ボタン時は文字を少し詰める */
.fixbar-4{grid-template-columns:repeat(4,1fr)}
.fixbar-4 a{font-size:10.5px}
.fixbar-4 .ic{width:20px;height:20px}

/* ==========================================================================
   タブレット以上（768px〜）
   ========================================================================== */
@media (min-width:768px){
  .hero h1{font-size:30px}
  .sec h2{font-size:26px}
  .cards3{grid-template-columns:repeat(3,1fr)}
  .brands{grid-template-columns:repeat(4,1fr)}
  .fig-row{grid-template-columns:repeat(2,1fr)}
  .fig-3{grid-template-columns:repeat(3,1fr)}
  .cols2{columns:2;column-gap:26px}
  .hero-cta{flex-direction:row}
  .hero-cta .btn{flex:1}
  .store-btns{flex-direction:row}
  .store-btns .btn{flex:1}
  .contact-quick{grid-template-columns:repeat(2,1fr)}
  .items{grid-template-columns:repeat(2,1fr)}
  .reasons{grid-template-columns:repeat(2,1fr)}
  .cond-grid{grid-template-columns:1.2fr 1fr;align-items:start}
  .lineup{padding:24px 22px 12px}
  .lineup-title{font-size:24px}
  .lineup-eyebrow{font-size:14px}
  .form{padding:28px 26px}
}

/* ==========================================================================
   PC（1024px〜）
   ========================================================================== */
@media (min-width:1024px){
  :root{--hdr-h:70px}
  body{padding-bottom:0;font-size:16.5px}
  .hdr-tel span{display:inline;font-size:17px}
  .hdr-tel{padding:9px 16px}
  .hdr-menu{display:none}
  .drawer{display:none !important}
  .hdr-logo img{height:38px}
  .logo-sub{font-size:18px;padding-left:11px}
  .hdr-in{padding:0 20px}

  /* ヒーローは他のセクションと同じ 1080px の中央寄せコンテナに収める
     （左右の余白をヘッダー・本文と完全に揃えるため） */
  /* align-items:end で「写真の下端＝メールボタンの下端」を揃える */
  .hero-in{
    display:grid;grid-template-columns:1fr 1fr;gap:36px;
    align-items:end;padding:0 18px 48px;
  }
  .hero-body{order:1;padding:48px 0 0}
  .hero h1{font-size:31px}

  /* 写真を下に寄せ、その真上に新庄さんを立たせる（足元＝写真の上端） */
  .hero-media{order:2;display:flex;flex-direction:column;justify-content:flex-end;align-items:stretch}
  .hero-photo{border-radius:14px;aspect-ratio:3/2}
  .hero-chara{
    position:relative;right:auto;bottom:auto;
    width:auto;max-width:none;align-self:flex-end;
    margin:0 12px -3px 0;
  }
  .hero-chara picture{width:auto}
  .hero-chara img{width:auto;height:clamp(190px,22vw,290px);max-width:100%}
  .hero-chara figcaption{left:auto;right:calc(100% + 10px);bottom:10px;transform:none}

  .sec{padding:66px 0}
  .sec h2{font-size:29px;margin-bottom:28px}
  .store-grid{grid-template-columns:1fr 1fr;gap:26px;align-items:start}
  .store-map iframe{height:440px}
  .items{grid-template-columns:repeat(3,1fr)}
  .brands{grid-template-columns:repeat(5,1fr)}
  .reasons{grid-template-columns:repeat(3,1fr)}
  .staff{grid-template-columns:300px 1fr;gap:30px;padding:30px}
  .flow{grid-template-columns:repeat(2,1fr)}

  /* PCは固定バーの代わりに右下追従ボタン */
  .fixbar{
    left:auto;right:22px;bottom:22px;top:auto;
    grid-template-columns:1fr;width:96px;height:auto;
    background:transparent;box-shadow:none;gap:10px;
  }
  .fixbar a{
    width:88px;height:88px;border-radius:50%;border:none;
    background:var(--navy);box-shadow:0 5px 16px rgba(0,0,0,.3);font-size:12px;gap:3px;
  }
  /* PCも 電話・LINE・来店予約・地図 の4つを表示 */
  .fixbar-4{width:88px}
  .fixbar-4 a{font-size:11.5px}
  .fixbar .ic,.fixbar-4 .ic{width:24px;height:24px}

  /* ヘッダーの来店予約ボタンはPCのみ表示（A案） */
  .hdr-book{display:flex}
  /* チラシ：画像とCTAを左右に並べる */
  .flyer-wrap{grid-template-columns:1.15fr 1fr;gap:30px;align-items:start}
  .flyer-cta{padding:26px 24px}
  .flyer-cta h3{font-size:20px}
}

/* ---------- 印刷 ---------- */
@media print{
  .fixbar,.anchors,.hdr-menu,.drawer,.cta-band{display:none}
  body{padding:0}
}

/* ---------- 動きを減らす設定への配慮 ---------- */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{transition:none !important}
}
