/* ============================================
   株式会社広藤洋行 公式サイト v5（V1ベース確定版）
   - V1（白＋薄グレーグリーン＋墨色、緑#11aa00アクセント）を土台に
   - サービスカードは自作フラットSVG図案（深緑#0e5a31系）
   - Numbers / Contact は V2 の墨色帯・大数字・大英字見出しを移植
   - Instagram / クチコミは静止カード＋右矢印のカルーセル
   - Zen Kaku Gothic New（和文）+ Montserrat（英字・数字）
   ============================================ */

:root {
  --brand: #11aa00;
  --brand-text: #0e8a00;
  --brand-soft: #e9f6e6;
  --green: #0e5a31;        /* SVG図案・V2移植部品の深緑 */
  --green-hover: #0a4526;
  --ink: #171c1a;
  --text: #333333;
  --text-weak: #6b736f;
  --bg-alt: #f6f8f7;
  --line: #e3e8e5;
  --radius: 16px;
  --font-ja: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", Meiryo, sans-serif;
  --font-en: Montserrat, "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.4, 0.4, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  font-weight: 500;
  color: var(--text);
  background: #fff;
  line-height: 2;
  font-size: 16px; /* 閲覧者は40〜50代想定。小さくしない */
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--brand-text); }
ul, ol { list-style-position: outside; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- スクロールフェードイン ---------- */
.ap {
  opacity: 0;
  translate: 0 24px;
  transition: opacity .45s ease-in-out, translate .45s ease-in-out;
  transition-delay: var(--ap-delay, 0ms);
}
.ap.ap-on { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .ap { opacity: 1; translate: none; transition: none; }
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
}
.brand { display: flex; flex-direction: column; line-height: 1.25; }
.brand-reg { font-size: 10px; color: var(--text-weak); letter-spacing: .04em; }
.brand-name {
  font-size: 20px; font-weight: 700; color: var(--ink);
  text-decoration: none; letter-spacing: .06em;
}
.brand-en { font-size: 10px; color: var(--brand); font-weight: 700; letter-spacing: .14em; font-family: var(--font-en); }

.header-right { display: flex; align-items: center; gap: 20px; }
.header-tel { text-align: right; line-height: 1.25; }
.header-tel a { text-decoration: none; color: var(--ink); }
.tel-num { font-size: 19px; font-weight: 700; letter-spacing: .04em; font-family: var(--font-en); }
.tel-note { font-size: 10px; color: var(--text-weak); display: block; letter-spacing: .06em; }
.header-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand); color: #fff; text-decoration: none;
  padding: 9px 12px 9px 22px; border-radius: 999px; font-weight: 700; font-size: 13px;
  transition: opacity .3s var(--ease);
}
.header-cta::after {
  content: "→"; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; color: var(--brand); font-weight: 700; font-size: 13px;
}
.header-cta:hover { opacity: .75; }

.nav-toggle { display: none; }

/* グローバルナビ：中央揃え・15px（+1pt）・Top含む */
.global-nav ul {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; list-style: none;
  border-top: 1px solid var(--line);
}
.global-nav a {
  display: block; padding: 11px 16px; color: var(--ink); text-decoration: none;
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  position: relative; transition: color .3s var(--ease);
}
.global-nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 2px; background: var(--brand); border-radius: 2px;
  scale: 0 1; transform-origin: left; transition: scale .3s var(--ease);
}
.global-nav a:hover { color: var(--brand-text); }
.global-nav a:hover::after { scale: 1 1; }

/* ---------- 共通レイアウト ---------- */
.container { max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0 0; }
.section:last-of-type { padding-bottom: 110px; }
.section.alt { background: var(--bg-alt); padding-bottom: 110px; margin-top: 110px; }
.section.alt + .section { padding-top: 110px; }
.section.alt + .section.alt { margin-top: 0; }

.sec-label {
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  color: var(--brand-text); letter-spacing: .06em;
  margin-bottom: 10px;
}
.section h2 {
  font-family: Montserrat, "Zen Kaku Gothic New", sans-serif;
  font-size: 32px; color: var(--ink); letter-spacing: .03em;
  margin-bottom: 32px; line-height: 1.5; position: relative;
  padding-top: 18px; font-weight: 700;
}
.section h2::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 36px; height: 3px; background: var(--brand); border-radius: 2px;
}
.sec-label + h2 { padding-top: 0; }
.sec-label + h2::before { display: none; }

.section h3 { font-size: 21px; color: var(--ink); margin: 34px 0 10px; font-weight: 700; }
.section p { margin-bottom: 1em; }
.note { font-size: 13.5px; color: var(--text-weak); }
.b2b-note {
  display: inline-block; background: var(--brand-soft); color: var(--brand-text);
  font-size: 12.5px; font-weight: 700; padding: 5px 18px; border-radius: 999px;
  letter-spacing: .04em;
}

/* 大英字ディスプレイ見出し（Numbers / Contact 用・V2移植） */
.sec-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}

/* ---------- LPヘッダー ---------- */
.page-hero { background: var(--bg-alt); padding: 64px 0 52px; }
.page-hero h1 {
  font-family: Montserrat, "Zen Kaku Gothic New", sans-serif;
  font-size: 32px; line-height: 1.55; letter-spacing: .03em;
  margin-bottom: 22px; color: var(--ink);
}
.page-hero .lead { max-width: 820px; margin-bottom: 14px; }
.breadcrumb { font-size: 12px; margin-bottom: 26px; color: var(--text-weak); letter-spacing: .04em; }
.breadcrumb a { color: var(--text-weak); text-decoration: none; }

/* ---------- 実績帯 ---------- */
.stats-band { background: #fff; border-bottom: 1px solid var(--line); padding: 26px 0; }
.stats-band ul {
  max-width: 1000px; margin: 0 auto; padding: 0 32px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 56px;
  list-style: none; text-align: center;
}
.stats-band li { font-size: 13px; letter-spacing: .06em; color: var(--text-weak); font-weight: 700; }
.stats-band strong { font-size: 30px; color: var(--brand-text); margin: 0 3px; font-family: var(--font-en); font-weight: 700; }

/* ---------- リスト・カード ---------- */
.check-list { list-style: none; }
.check-list li {
  position: relative; padding: 12px 0 12px 34px;
  border-bottom: 1px dashed var(--line);
}
.check-list li::before {
  content: ""; position: absolute; left: 2px; top: 27px;
  width: 16px; height: 2px; background: var(--brand);
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(23,28,26,.06);
  transition: translate .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { translate: 0 -4px; box-shadow: 0 10px 32px rgba(23,28,26,.1); }
.card h3 { margin: 0 0 12px; font-size: 18px; color: var(--ink); }
.card p { font-size: 14.5px; flex: 1; }
.card .card-link {
  margin-top: 16px; font-weight: 700; font-size: 13.5px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.card .card-link::after {
  content: "→"; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-text); font-size: 13px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .card-link::after { background: var(--brand); color: #fff; }

/* ---------- 流れ（ステップ） ---------- */
.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative;
  padding: 20px 22px 20px 76px; margin-bottom: 14px;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(23,28,26,.05);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 700; color: var(--brand);
  font-family: var(--font-en);
}
.steps li strong { color: var(--ink); display: block; }

/* ---------- FAQ ---------- */
.faq-item {
  border-radius: var(--radius); margin-bottom: 16px; background: #fff; overflow: hidden;
  box-shadow: 0 2px 14px rgba(23,28,26,.05);
}
.faq-item h3 {
  margin: 0; padding: 16px 22px 16px 54px; font-size: 17px;
  position: relative; color: var(--ink); border-bottom: 1px solid var(--line);
}
.faq-item h3::before {
  content: "Q"; position: absolute; left: 20px; top: 16px;
  color: var(--brand-text); font-weight: 700; font-family: var(--font-en); font-size: 17px;
}
.faq-item p {
  margin: 0; padding: 16px 22px 18px 54px; position: relative; font-size: 15.5px;
}
.faq-item p::before {
  content: "A"; position: absolute; left: 20px; top: 14px;
  color: var(--text-weak); font-weight: 700; font-family: var(--font-en); font-size: 17px;
}

/* ---------- ボタン（ピル型・白丸矢印つき） ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 28px;
  text-decoration: none; font-weight: 700;
  padding: 12px 13px 12px 28px; border-radius: 999px; font-size: 15.5px;
  transition: opacity .3s var(--ease), translate .3s var(--ease);
}
.btn:hover { opacity: .75; translate: 0 -2px; }
.btn::after {
  content: "→"; display: inline-flex; align-items: center; justify-content: center;
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  font-size: 14px; font-weight: 700;
}
.btn-form { background: var(--brand); color: #fff; }
.btn-form::after { background: #fff; color: var(--brand); }
.btn-tel { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-tel::after {
  content: ""; background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e5a31'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.02z'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.btn-tel > span { display: flex; flex-direction: column; text-align: left; }
.btn-tel small { font-size: 10.5px; font-weight: 500; color: var(--text-weak); line-height: 1.4; }
.btn-tel .btn-tel-num { font-family: var(--font-en); font-size: 17px; letter-spacing: .03em; line-height: 1.35; }

.btn-line {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 12px; font-weight: 700; text-decoration: none;
  color: var(--ink); border-radius: 999px;
  padding: 10px 12px 10px 24px; font-size: 13.5px;
  box-shadow: inset 0 0 0 1px var(--ink);
  transition: all .3s var(--ease);
}
.btn-line::after {
  content: "→"; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 13px;
  transition: all .3s var(--ease);
}
.btn-line:hover { box-shadow: inset 0 0 0 1px var(--brand); color: var(--brand-text); }
.btn-line:hover::after { background: var(--brand); }

/* ---------- LP用CTAボックス ---------- */
.cta-box {
  background: linear-gradient(135deg, #e9f6e6, #f2f8f0);
  color: var(--ink); border-radius: 24px;
  padding: 56px 40px; text-align: center; margin: 64px 0 0;
}
.section.alt .cta-box { background: #fff; box-shadow: 0 4px 24px rgba(23,28,26,.06); }
.cta-box .cta-copy { font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: .04em; line-height: 1.7; color: var(--ink); }
.cta-box .cta-sub { font-size: 14px; color: var(--text-weak); margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- 関連リンク（全カード同サイズ・ホバーでコーポレートカラー #4dbf40） ---------- */
.related-links { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 20px; }
.related-links a {
  display: flex; flex-direction: column; height: 100%;
  padding: 26px 28px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; font-size: 16.5px; font-weight: 700;
  color: var(--ink); box-shadow: 0 8px 24px rgba(23,28,26,.12); line-height: 1.7;
  transition: translate .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.related-links a:hover {
  translate: 0 -4px;
  border-color: #4dbf40;
  background: rgba(77,191,64,.06);
  color: #1e8814;
  box-shadow: 0 14px 32px rgba(77,191,64,.28);
}
.related-links span { display: block; font-size: 14px; font-weight: 500; color: var(--text-weak); margin-top: 8px; }

/* ---------- トップページ ---------- */
.hero { line-height: 0; }
.hero img { width: 100%; height: auto; }

.hero-lead { background: #fff; padding: 56px 0 0; }
.hero-lead .hero-sub { max-width: 820px; font-size: 18px; line-height: 2.2; letter-spacing: .03em; color: var(--ink); }

/* ---------- 事業カード（2列グリッド・01〜05） ---------- */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(23,28,26,.06);
  display: flex; flex-direction: column;
  transition: translate .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { translate: 0 -4px; box-shadow: 0 14px 40px rgba(23,28,26,.12); }
.card-media {
  height: 210px; overflow: hidden; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  padding: 18px 0;
}
.card-media svg {
  height: 100%; width: auto; max-width: 100%;
  transition: scale .6s var(--ease);
}
.service-card:hover .card-media svg { scale: 1.05; }
.card-media > div {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-weak); font-size: 12.5px;
}
.service-body { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.service-num { font-family: var(--font-en); font-weight: 700; color: var(--brand-text); font-size: 15px; letter-spacing: .14em; }
.service-body h3 { margin: 6px 0 4px; font-size: 18.5px; color: var(--ink); line-height: 1.6; }
.service-body p { font-size: 14.5px; flex: 1; margin-bottom: 12px; }
.service-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: auto; }
.service-links a {
  font-weight: 700; font-size: 13.5px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.service-links a::after {
  content: "→"; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-text); font-size: 13px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service-links a:hover::after { background: var(--brand); color: #fff; }

.service-card--cta { background: linear-gradient(135deg, #e9f6e6, #f2f8f0); justify-content: center; }
.service-card--cta .service-body { flex: 1; justify-content: center; align-items: flex-start; gap: 4px; }
.service-card--cta .service-num { color: var(--brand-text); }
.service-card--cta h3 { color: var(--ink); font-size: 21px; }
.service-card--cta p { color: var(--text); flex: 0; }
.service-card--cta .cta-actions { justify-content: flex-start; margin-top: 14px; }

/* 対応エリア：テキストラベル＋罫線（V2式） */
.area-tag {
  display: flex; align-items: baseline; gap: 14px;
  border-top: 1px solid var(--ink);
  padding-top: 10px; margin: 8px 0 12px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  letter-spacing: .04em;
}
.area-tag > span {
  font-size: 11px; color: var(--green); letter-spacing: .14em;
  flex: none; font-weight: 700;
}

/* ---------- 数字で見る（V2移植：墨色帯・大数字） ---------- */
.numbers-sec { background: var(--ink); color: #cfd6d1; padding: 110px 0; margin-top: 110px; }
.numbers-sec .sec-en { color: #fff; }
.numbers-sec h2 {
  font-size: 17px; font-weight: 700; color: #fff; letter-spacing: .06em;
  display: flex; align-items: center; gap: 14px; margin-bottom: 44px;
}
.numbers-sec h2::before {
  content: ""; width: 32px; height: 2px; background: #4f9b72; flex: none;
}
.num-row {
  display: grid; grid-template-columns: repeat(3, auto); justify-content: start;
  gap: 40px 88px; margin: 20px 0 44px;
}
.num-item { border-left: 1px solid rgba(255,255,255,.25); padding-left: 30px; }
.num-item dt { font-size: 13px; letter-spacing: .06em; color: #9aa6a0; }
.num-item dd {
  font-family: var(--font-en); font-weight: 700;
  font-size: clamp(56px, 6vw, 84px); line-height: 1.15; color: #fff;
  letter-spacing: -0.01em;
}
.num-item dd small { font-size: 20px; font-family: var(--font-ja); font-weight: 700; margin-left: 6px; color: #a9d3bc; }
.numbers-sec .reg-line { font-weight: 700; color: #fff; letter-spacing: .05em; margin-bottom: 10px; }

.text-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px; color: var(--ink); text-decoration: none;
  padding-bottom: 8px; border-bottom: 1px solid var(--ink); letter-spacing: .04em;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.text-link::after { content: "→"; font-family: var(--font-en); transition: translate .25s var(--ease); }
.text-link:hover { color: var(--brand-text); border-color: var(--brand-text); }
.text-link:hover::after { translate: 6px 0; }
.text-link--onink { color: #fff; border-color: #fff; }
.text-link--onink:hover { color: #a9d3bc; border-color: #a9d3bc; }

/* ---------- お知らせ ---------- */
.news-list { list-style: none; border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: flex; gap: 28px; padding: 20px 8px; text-decoration: none; color: var(--text);
  transition: background .3s var(--ease);
}
.news-list a:hover { background: var(--bg-alt); }
.news-list time { color: var(--brand-text); font-size: 13px; white-space: nowrap; font-family: var(--font-en); font-weight: 700; }

/* ---------- カルーセル（Instagram / クチコミ共通） ---------- */
/* Instagram用の広幅コンテナ：カード4.5枚が見える幅 */
.container-carousel { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.carousel { position: relative; }
.car-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 6px 2px 10px;
  padding-right: 140px; /* 末尾カードがフェードに隠れないための余白 */
}
.car-track::-webkit-scrollbar { display: none; }
/* 右端はスパッと切らず、ぼかしながら消す */
.carousel::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 130px;
  pointer-events: none; z-index: 1;
  background: linear-gradient(to left, #fff 12%, rgba(255,255,255,0));
}
.section.alt .carousel::after {
  background: linear-gradient(to left, var(--bg-alt) 12%, rgba(246,248,247,0));
}
.car-next {
  position: absolute; right: -10px; top: 50%; translate: 0 -50%;
  width: 50px; height: 50px; border-radius: 50%;
  background: #fff; border: 1px solid var(--ink); color: var(--ink);
  font-size: 18px; font-weight: 700; font-family: var(--font-en);
  cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(23,28,26,.14);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.car-next:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Instagram投稿カード（静止・写真＋投稿文） */
.insta-post {
  flex: 0 0 232px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
  transition: translate .3s var(--ease), box-shadow .3s var(--ease);
}
.insta-post:hover { translate: 0 -4px; box-shadow: 0 10px 28px rgba(23,28,26,.1); }
.post-media {
  aspect-ratio: 1; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--text-weak); font-size: 12px; line-height: 1.9;
}
.post-body { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-text {
  font-size: 13px; line-height: 1.9; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-account { font-family: var(--font-en); font-weight: 700; font-size: 12px; color: var(--brand-text); margin-top: auto; }

/* Googleクチコミカード */
.review-summary { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.review-score { font-family: var(--font-en); font-weight: 700; font-size: 34px; color: var(--ink); line-height: 1; }
.review-stars { color: #f5a623; letter-spacing: 3px; font-size: 15px; }
.review-count { font-size: 13px; color: var(--text-weak); }
.review-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.review-card .review-stars { font-size: 14px; }
.review-text { font-size: 13.5px; line-height: 1.9; flex: 1; margin: 0; }
.review-src { font-size: 11.5px; color: var(--text-weak); margin: 0; }

/* ---------- Contact（V2移植：大英字＋大電話番号） ---------- */
.cta-sec { padding: 120px 0 130px; }
.cta-sec .cta-copy {
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; color: var(--ink);
  line-height: 1.8; letter-spacing: .05em; margin: 22px 0 6px;
}
.cta-sec .cta-sub { color: var(--text-weak); font-size: 14.5px; margin-bottom: 40px; }
.cta-row { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
.cta-tel { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; line-height: 1.35; }
.cta-tel small { font-size: 11.5px; font-weight: 700; color: var(--text-weak); letter-spacing: .08em; }
.cta-tel span { font-family: var(--font-en); font-weight: 700; font-size: 34px; letter-spacing: .02em; }
.cta-tel:hover span { color: var(--brand-text); }
.btn-solid {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--green); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 15px; letter-spacing: .06em;
  padding: 16px 32px; border-radius: 2px;
  transition: background .25s var(--ease);
}
.btn-solid::after { content: "→"; font-family: var(--font-en); }
.btn-solid:hover { background: var(--green-hover); }

/* ---------- 店舗ページ・会社案内 ---------- */
.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th {
  width: 9em; text-align: left; padding: 14px 18px;
  background: var(--bg-alt); border: 1px solid var(--line);
  color: var(--ink); vertical-align: top; font-weight: 700;
}
.info-table td { padding: 14px 18px; border: 1px solid var(--line); background: #fff; }
.info-table th { background: var(--bg-alt); }
.section.alt .info-table th { background: #eceeec; }
.info-table.history-table th { width: 13em; }
.shop-actions { margin-top: 24px; }
.map-embed { margin: 8px 0 24px; border-radius: var(--radius); overflow: hidden; }

/* ---------- お問い合わせフォーム ---------- */
.contact-form { max-width: 720px; }
.form-row { margin-bottom: 26px; }
.form-row label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 8px; font-size: 15px; }
.req {
  display: inline-block; margin-left: 10px; font-size: 11px; font-weight: 700;
  color: #fff; background: var(--brand); border-radius: 999px; padding: 1px 10px; vertical-align: 2px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 16px; font: inherit; color: var(--text);
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .2s var(--ease);
}
.contact-form select { cursor: pointer; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brand);
}
.form-row--check .check-label { display: flex; align-items: baseline; gap: 10px; font-weight: 500; }
.form-row--check input { width: 18px; height: 18px; flex: none; translate: 0 2px; }
.form-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.form-submit button.btn { border: none; cursor: pointer; font-family: inherit; }
.form-notes { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 20px; }
.form-error {
  background: #fdf0ef; color: #b3261e; border: 1px solid #f3c9c5;
  border-radius: 10px; padding: 14px 18px; font-size: 14px; font-weight: 700; margin-bottom: 28px;
}

/* ---------- 年齢確認モーダル（keihin-tabakoのみ） ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(23,28,26,.72);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.age-gate[hidden] { display: none; }
.age-box {
  background: #fff; border-radius: 24px; padding: 44px 40px;
  max-width: 460px; width: 100%; text-align: center;
}
.age-title { font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 10px; letter-spacing: .06em; }
.age-q { font-size: 15px; line-height: 2; margin-bottom: 24px; }
.age-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.age-yes {
  font: inherit; font-weight: 700; font-size: 15.5px; color: #fff;
  background: var(--brand); border: none; border-radius: 999px;
  padding: 14px 20px; cursor: pointer; transition: opacity .2s var(--ease);
}
.age-yes:hover { opacity: .8; }
.age-no {
  font-weight: 700; font-size: 13.5px; color: var(--text-weak);
  text-decoration: none; padding: 8px;
}
.age-no:hover { color: var(--ink); }
.age-note { font-size: 12px; color: var(--text-weak); }

/* ---------- お知らせ記事・プライバシー ---------- */
.article-body h3 { margin-top: 40px; }
.privacy-body h2 { font-size: 21px; margin-top: 44px; margin-bottom: 12px; padding-top: 0; }
.privacy-body h2::before { display: none; }
.privacy-body ul, .privacy-body ol { padding-left: 1.6em; margin-bottom: 1em; }

/* ---------- LP部品（ポイント・設置場所・仕組み図） ---------- */
.point-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.point-card {
  background: #fff; border-radius: 24px; padding: 32px 34px;
  box-shadow: 0 4px 24px rgba(23,28,26,.06);
}
.point-label {
  font-family: var(--font-en); font-size: 12.5px; font-weight: 700;
  color: var(--brand-text); letter-spacing: .16em; text-transform: uppercase;
  display: block; margin-bottom: 4px;
}
.point-kw { font-size: 27px; font-weight: 700; color: var(--ink); line-height: 1.5; display: block; margin-bottom: 8px; }
.point-kw em { font-style: normal; color: var(--brand-text); }
.point-card p { font-size: 15px; margin: 0; }

/* 設置場所：PCは2列×2行の大判表示 */
.place-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.place-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(23,28,26,.05);
}
.place-card .card-media { height: 260px; padding: 0; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* 実写差替用の写真スロット */
.photo-slot { margin: 8px 0 28px; border-radius: var(--radius); overflow: hidden; }
.photo-slot img { width: 100%; height: auto; display: block; }
.photo-slot--empty {
  border: 2px dashed var(--line); background: var(--bg-alt);
  min-height: 240px; display: flex; align-items: center; justify-content: center;
  color: var(--text-weak); font-size: 13px; text-align: center; line-height: 2;
}

/* 店舗ロゴ（カンカン） */
.shop-logo { max-width: 400px; margin: 0 0 32px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.shop-logo img { width: 100%; height: auto; display: block; }
.place-body { padding: 16px 18px 18px; }
.place-body strong { display: block; font-size: 16.5px; color: var(--ink); margin-bottom: 4px; }
.place-body span { font-size: 13.5px; color: var(--text-weak); line-height: 1.7; display: block; }

.fee-diagram {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px; align-items: stretch; margin: 8px 0 20px;
}
.fee-step {
  background: #fff; border-radius: 18px; padding: 26px 20px; text-align: center;
  box-shadow: 0 2px 14px rgba(23,28,26,.05);
}
.fee-step .fee-who {
  font-size: 12.5px; font-weight: 700; color: var(--brand-text);
  background: var(--brand-soft); border-radius: 999px; padding: 3px 14px;
  display: inline-block; margin-bottom: 10px;
}
.fee-step strong { display: block; font-size: 17px; color: var(--ink); line-height: 1.6; }
.fee-step span { font-size: 13.5px; color: var(--text-weak); display: block; margin-top: 4px; }
.fee-arrow { align-self: center; color: var(--brand); font-size: 26px; font-weight: 700; font-family: var(--font-en); }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-media {
  min-height: 300px; border-radius: 24px;
  background: linear-gradient(135deg, var(--bg-alt), #eef3f0);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-weak); font-size: 12.5px;
}

.insta-placeholder {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 36px; text-align: center; color: var(--text-weak); font-size: 12.5px;
}

/* ---------- スマホ固定バー ---------- */
.fixed-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: none; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -2px 16px rgba(23,28,26,.16);
}
.fixed-bar a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 15px 8px; font-size: 14.5px; font-weight: 700; text-decoration: none;
  letter-spacing: .04em;
}
.fb-tel { background: var(--brand); color: #fff; }
.fb-contact { background: var(--ink); color: #fff; }
.fb-tel::before, .fb-contact::before {
  content: ""; width: 16px; height: 16px; flex: none;
  background-position: center; background-repeat: no-repeat; background-size: contain;
}
.fb-tel::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.02z'/%3E%3C/svg%3E");
}
.fb-contact::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

/* ---------- フッター（JTカラー＝深緑） ---------- */
.site-footer { background: #0a3d2c; color: #cfe0d7; }
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 64px 32px 28px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
}
.footer-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: .06em; }
.footer-addr { font-size: 12.5px; line-height: 2.2; }
.footer-addr a { color: #cfe0d7; }
.footer-reg { font-size: 11.5px; margin-top: 10px; color: #9dbcae; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.footer-nav ul { list-style: none; }
.footer-nav a {
  color: #cfe0d7; text-decoration: none; font-size: 12.5px;
  display: block; padding: 6px 0; transition: color .3s var(--ease);
}
.footer-nav a:hover { color: #fff; }
.footer-note {
  text-align: center; font-size: 12.5px; font-weight: 700; color: #fff;
  border-top: 1px solid rgba(255,255,255,.14); padding: 18px 20px 2px;
}
.footer-compliance { text-align: center; font-size: 11.5px; color: #9dbcae; padding: 4px 20px 6px; }
.footer-copy { text-align: center; font-size: 11px; padding: 8px 0 28px; color: #9dbcae; font-family: var(--font-en); letter-spacing: .08em; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .card-grid, .related-links, .service-grid, .point-grid { grid-template-columns: 1fr; }
  .place-grid { grid-template-columns: 1fr; }
  .place-card .card-media { height: 200px; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .card-media { height: 190px; }
  .fee-diagram { grid-template-columns: 1fr; }
  .fee-arrow { transform: rotate(90deg); justify-self: center; }
  .num-row { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 56px; }
  .fixed-bar { display: grid; }
  .header-right { display: none; }
  .header-inner { padding: 12px 20px; }
  .container { padding: 0 20px; }

  .nav-toggle {
    display: block; background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; position: relative;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--ink);
    margin: 5px auto; transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .global-nav { display: none; background: #fff; }
  .global-nav.open { display: block; }
  .global-nav ul { flex-direction: column; padding: 0; }
  .global-nav a { border-bottom: 1px solid var(--line); padding: 13px 20px; }
  .global-nav a::after { display: none; }

  .hero-lead { padding: 30px 0 0; }
  .hero-lead .hero-sub { font-size: 16.5px; }
  .page-hero { padding: 40px 0 36px; }
  .page-hero h1 { font-size: 23px; }
  .section { padding: 64px 0 0; }
  .section:last-of-type { padding-bottom: 64px; }
  .section.alt { padding-bottom: 64px; margin-top: 64px; }
  .section.alt + .section { padding-top: 64px; }
  .section h2 { font-size: 24px; }
  .sec-label { font-size: 15px; }
  .sec-en { font-size: clamp(40px, 12vw, 60px); }
  .stats-band ul { gap: 4px 28px; }
  .numbers-sec { padding: 64px 0; margin-top: 64px; }
  .cta-sec { padding: 64px 0 84px; }
  .cta-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-tel span { font-size: 30px; }
  .btn-solid { width: 100%; justify-content: center; }
  .cta-box { padding: 40px 24px; border-radius: var(--radius); }
  .cta-box .cta-copy { font-size: 18px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: space-between; }
  .car-next { right: 2px; width: 44px; height: 44px; }
  .insta-post { flex-basis: 200px; }
  .review-card { flex-basis: 260px; }
  .info-table th { width: 7em; }
  .info-table th, .info-table td { padding: 11px 12px; font-size: 14px; }
}
