/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --orange:#e8821e;
  --orange-dark:#d9741a;
  --teal:#0e3d34;
  --navy:#14314d;
  --navy-dark:#0f2438;
  --cream:#f5efe4;
  --line:#e3ddd2;
  --text:#333;
  --muted:#6b6b6b;
  --radius:10px;
  --shadow:0 6px 24px rgba(0,0,0,.08);
}
html{ scroll-behavior:smooth; scroll-padding-top:104px; }
body{
  font-family:"Noto Sans JP",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  line-height:1.8;
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
.container{ max-width:1120px; margin:0 auto; padding:0 24px; }
.center{ text-align:center; }

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-weight:700; font-size:15px; line-height:1.4;
  padding:15px 26px; border-radius:6px; cursor:pointer;
  transition:.2s; text-align:center;
}
.btn .arw{ font-weight:700; }
.btn-orange{ background:var(--orange); color:#fff; box-shadow:0 4px 12px rgba(232,130,30,.35); }
.btn-orange:hover{ background:var(--orange-dark); transform:translateY(-2px); }
.btn-outline{ background:#fff; color:var(--teal); border:1.5px solid var(--teal); }
.btn-outline:hover{ background:var(--teal); color:#fff; }
.btn-white{ background:#fff; color:var(--orange); border:1px solid #fff; }
.btn-white:hover{ background:#fff3e6; }
.btn-block{ display:flex; width:100%; }
.btn-lg{ padding:17px 44px; font-size:16px; }

/* ===== Section title ===== */
.sec-title{
  text-align:center; font-size:30px; font-weight:900; color:var(--teal);
  margin-bottom:44px; position:relative; padding-bottom:18px;
}
.sec-title em{ font-style:normal; }
.sec-title::after{
  content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:60px; height:4px; background:var(--orange); border-radius:2px;
}

/* ===== Header ===== */
.site-header{
  position:sticky; top:0; z-index:100; background:var(--teal);
  border-bottom:1px solid rgba(255,255,255,.12); box-shadow:0 2px 10px rgba(0,0,0,.18);
}
.header-inner{
  max-width:1240px; margin:0 auto; padding:10px 24px;
  display:flex; align-items:center; gap:20px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
/* 濃緑ヘッダー上でもロゴが読めるよう白いプレートを敷く */
.brand-logo{ height:76px; width:auto; background:#fff; border-radius:8px; padding:4px 10px; }
.global-nav{ display:flex; gap:22px; margin-left:auto; }
.global-nav a{ font-size:14px; font-weight:500; color:#fff; white-space:nowrap; }
/* 濃緑背景ではオレンジ原色だとコントラスト不足のため明るめのオレンジ */
.global-nav a:hover{ color:#f5b25c; }
.header-right{ display:flex; align-items:center; gap:16px; margin-left:auto; }
.header-phone{ display:flex; align-items:center; gap:8px; }
.header-phone img{ width:26px; height:26px; filter:brightness(0) invert(1); }
.header-phone-text{ display:flex; flex-direction:column; line-height:1.2; }
.header-phone-text .num{ font-size:20px; font-weight:900; color:#fff; }
.ph-label{ font-size:.55em; font-weight:700; opacity:.8; margin-right:3px; letter-spacing:0; }
.header-phone-text .hours{ font-size:10px; color:rgba(255,255,255,.72); }
.header-cta{ font-size:13px; padding:12px 18px; }
.hamburger{ display:none; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger img{ width:30px; height:30px; filter:brightness(0) invert(1); }

/* ===== Hero ===== */
.hero{ position:relative; background:var(--cream); overflow:hidden; }
.hero-photo{ position:absolute; inset:0; z-index:0; }
.hero-photo .hero-slide{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity 1.4s ease-in-out;
}
.hero-photo .hero-slide.is-active{ opacity:1; }
@media (prefers-reduced-motion: reduce){
  .hero-photo .hero-slide{ transition:none; }
}
.hero-photo::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(245,239,228,.98) 30%, rgba(245,239,228,.4) 55%, rgba(245,239,228,0) 75%);
}
.hero-inner{ position:relative; z-index:1; max-width:1120px; margin:0 auto; padding:60px 24px; }
.hero-card{
  background:transparent; border-radius:0; padding:0;
  max-width:600px; box-shadow:none;
}
.hero-eyebrow{
  display:inline-block; background:var(--teal); color:#fff; font-size:13px; font-weight:700;
  padding:6px 16px; border-radius:20px; margin-bottom:18px;
}
.hero-title{ font-size:40px; font-weight:900; color:var(--teal); line-height:1.35; }
.hero-title em{ font-style:normal; color:var(--orange); }
.hero-lead{ margin-top:20px; font-size:15px; color:#444; }
.hero-btns{ display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; }
.hero-phone{ display:flex; align-items:center; gap:10px; margin-top:26px; flex-wrap:wrap; }
.hero-phone img{ width:34px; height:34px; }
.hero-phone .hp-nums{ display:flex; flex-direction:column; gap:2px; }
.hero-phone .hp-num{ font-size:29px; font-weight:900; color:var(--teal); letter-spacing:.5px; text-decoration:none; }
.hero-phone a.hp-num:hover{ color:var(--orange); }
.hero-phone .hp-hours{ font-size:12px; color:var(--muted); width:100%; padding-left:44px; margin-top:-4px; }

/* ===== Stats ===== */
.stats{ background:#fff; }
.stats-inner{
  max-width:1000px; margin:0 auto; padding:30px 24px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px;
}
.stat{ display:flex; align-items:center; justify-content:center; gap:14px; padding:14px; }
.stat:not(:last-child){ border-right:1px solid var(--line); }
.stat img{ width:44px; height:44px; }
.stat-text{ display:flex; flex-direction:column; line-height:1.2; }
.stat-label{ font-size:13px; color:var(--muted); }
.stat-value{ font-size:32px; font-weight:900; color:var(--teal); }
.stat-value small{ font-size:14px; font-weight:700; margin-left:2px; }
.stat-value--sm{ font-size:19px; }

/* ===== お知らせ・イベント案内 ===== */
.news{ padding:64px 0; background:#fff; }
.news-list{ list-style:none; max-width:860px; margin:0 auto; border-top:1px solid var(--line); }
.news-item{
  display:grid; grid-template-columns:220px 1fr; gap:20px;
  padding:20px 8px; border-bottom:1px solid var(--line); align-items:start;
}
.news-meta{ display:flex; align-items:center; gap:14px; padding-top:2px; }
.news-date{ font-size:14px; font-weight:700; color:var(--muted); letter-spacing:.03em; }
.news-cat{
  display:inline-block; font-size:12px; font-weight:700; color:#fff;
  padding:3px 12px; border-radius:20px; background:var(--teal); white-space:nowrap;
}
.news-cat[data-cat="イベント"]{ background:var(--orange); }
.news-cat[data-cat="キャンペーン"]{ background:#c0392b; }
.news-cat[data-cat="休業案内"]{ background:#7a7a7a; }
.news-title{ font-size:16px; font-weight:700; color:#333; line-height:1.6; }
a.news-title{ color:var(--teal); text-decoration:underline; transition:.15s; }
a.news-title:hover{ color:var(--orange); }
.news-body{ font-size:14px; color:var(--muted); margin-top:6px; }
.news-empty{ text-align:center; color:var(--muted); font-size:15px; padding:20px 0; }

/* ===== Worries ===== */
.worries{ background:var(--cream); padding:64px 0; }
.worry-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.worry-card{
  background:#fff; border-radius:var(--radius); padding:26px 14px; text-align:center;
  box-shadow:0 3px 10px rgba(0,0,0,.05);
}
.worry-card img{ width:48px; height:48px; margin:0 auto 14px; }
.worry-card p{ font-size:14px; font-weight:700; color:#333; }
.worries-lead{ text-align:center; margin-top:40px; font-size:22px; font-weight:900; color:var(--teal); }
.worries-lead em{ font-style:normal; color:var(--orange); border-bottom:3px solid var(--orange); padding-bottom:2px; }

/* ===== Reasons ===== */
.reasons{ padding:74px 0; }
.reason-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.reason-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:32px 22px; text-align:center; transition:.2s;
}
.reason-card:hover{ box-shadow:var(--shadow); transform:translateY(-4px); }
.reason-card img{ width:56px; height:56px; margin:0 auto 18px; }
.reason-card h3{ font-size:18px; color:var(--teal); font-weight:900; line-height:1.4; margin-bottom:12px; }
.reason-card p{ font-size:13.5px; color:var(--muted); text-align:left; }

/* ===== Cases ===== */
.cases{ padding:74px 0; background:var(--cream); }
.case-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.case-card{ background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column; }
.case-ba{ display:grid; grid-template-columns:1fr 1fr; gap:2px; background:#fff; }
.case-ba figure{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.case-ba figure img:first-child{ width:100%; height:100%; object-fit:cover; }
.ba-label{ position:absolute; top:8px; width:auto !important; height:22px; }
.ba-label--l{ left:8px; }
.ba-label--r{ right:8px; }
.case-body{ padding:22px 20px; display:flex; flex-direction:column; flex:1; }
.case-tag{
  display:inline-block; align-self:flex-start; background:var(--teal); color:#fff;
  font-size:13px; font-weight:700; padding:5px 14px; border-radius:4px; margin-bottom:16px;
}
.case-spec{ border:1px solid var(--line); border-radius:6px; overflow:hidden; margin-bottom:16px; }
.case-spec > div{ display:grid; grid-template-columns:90px 1fr; }
.case-spec > div:not(:last-child){ border-bottom:1px solid var(--line); }
.case-spec dt{ background:#f7f4ee; padding:8px 12px; font-size:12.5px; font-weight:700; color:#555; }
.case-spec dd{ padding:8px 12px; font-size:13px; }
.case-detail{ margin-bottom:20px; }
.case-detail > div{ margin-bottom:12px; }
.case-detail dt{ font-size:12px; font-weight:700; color:var(--orange); margin-bottom:2px; }
.case-detail dd{ font-size:13px; color:#444; }
.case-body .btn{ margin-top:auto; }

/* ===== Voice ===== */
.voice{ padding:74px 0; }
.voice-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.voice-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px; }
.voice-head{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.voice-head img{ width:46px; height:46px; }
.voice-meta{ font-size:12px; color:var(--muted); }
.voice-title{ font-size:17px; font-weight:900; color:var(--teal); margin-bottom:12px; line-height:1.5; }
.voice-body{ font-size:14px; color:#444; }
.voice-note{ text-align:center; font-size:12px; color:var(--muted); margin-top:26px; }

/* ===== 代表あいさつ ===== */
.greeting{ padding:74px 0; background:#fff; }
.greeting-inner{ display:grid; grid-template-columns:300px 1fr; gap:44px; align-items:start; }
.greeting-visual{ text-align:center; position:sticky; top:120px; }
.greeting-photo{
  width:100%; max-width:280px; margin:0 auto; height:auto;
  background:radial-gradient(circle at 50% 40%, #fbf7ef 0%, var(--cream) 78%);
  border-radius:14px;
}
.greeting-name{ margin-top:16px; }
.greeting-role{ display:block; font-size:13px; color:var(--muted); }
.greeting-person{
  display:inline-block; font-family:"Yuji Mai", "Yuji Syuku", serif;
  font-size:40px; font-weight:400; color:#1f1a17; letter-spacing:.12em;
  margin-top:8px; transform:rotate(-3deg); line-height:1;
}
.greeting-body{ padding-top:4px; font-family:"Yuji Syuku", "Noto Sans JP", serif; }
.greeting-catch{
  font-size:27px; font-weight:400; color:var(--teal); line-height:1.75;
  margin-bottom:24px; padding-bottom:18px; border-bottom:2px solid var(--line);
}
.greeting-body p{ font-size:17px; color:#3a3a3a; line-height:2.05; margin-bottom:16px; }

/* ===== 企業理念 ===== */
.philosophy{ padding:74px 0; background:#fff; }
.phil-lead{
  background:linear-gradient(135deg, var(--teal) 0%, #12564a 100%);
  color:#fff; border-radius:14px; padding:44px 40px; text-align:center; box-shadow:var(--shadow);
}
.phil-catch{ font-size:27px; font-weight:900; line-height:1.6; }
.phil-desc{ font-size:14.5px; line-height:1.9; margin-top:20px; color:#eaf3f0; max-width:760px; margin-left:auto; margin-right:auto; }
.phil-subtitle{
  font-size:22px; font-weight:900; color:var(--teal); margin-bottom:18px;
  display:flex; align-items:baseline; gap:12px;
}
.phil-subtitle.center{ justify-content:center; }
.phil-subtitle .en{ font-size:13px; letter-spacing:.16em; color:var(--orange); font-weight:700; }
.phil-mission{ max-width:820px; margin:44px auto 0; }
.phil-mission p{ font-size:15px; color:#3a3a3a; margin-bottom:14px; }
.phil-group{ margin-top:52px; }
.phil-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.phil-card{
  display:grid; grid-template-columns:auto 1fr; gap:16px; align-items:start;
  background:var(--cream); border-radius:10px; padding:22px 24px;
}
.phil-num{
  width:42px; height:42px; flex-shrink:0; border-radius:50%;
  background:var(--orange); color:#fff; font-weight:900; font-size:18px;
  display:flex; align-items:center; justify-content:center;
}
.phil-card h4{ font-size:16.5px; color:var(--teal); font-weight:900; line-height:1.5; margin-bottom:6px; }
.phil-card p{ font-size:14px; color:#444; }

/* ===== Flow ===== */
.flow{ padding:74px 0; background:var(--cream); }
.flow-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.flow-step{ background:#fff; border-radius:var(--radius); padding:26px 14px 22px; text-align:center; position:relative; }
.flow-num{ width:46px; height:46px; margin:0 auto 12px; }
.flow-icon{ width:40px; height:40px; margin:0 auto 12px; }
.flow-step h3{ font-size:15px; font-weight:900; color:var(--teal); margin-bottom:8px; }
.flow-step p{ font-size:12px; color:var(--muted); text-align:left; }

/* ===== CTA ===== */
.cta{ background:linear-gradient(90deg,var(--orange) 0%,#f0983a 100%); padding:48px 0; }
.cta-inner{
  max-width:1080px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; gap:32px; flex-wrap:wrap; justify-content:center;
}
.cta-badge{ width:110px; height:110px; flex-shrink:0; }
.cta-main{ color:#fff; text-align:center; flex:1; min-width:280px; }
.cta-heading{ font-size:22px; font-weight:900; margin-bottom:6px; }
.cta-phone{ display:inline-flex; align-items:center; gap:12px; }
.cta-phone img{ width:44px; height:44px; filter:brightness(0) invert(1); }
.cta-nums{ display:flex; flex-direction:column; align-items:center; gap:2px; }
.cta-num{ font-size:37px; font-weight:900; color:#fff; letter-spacing:1px; line-height:1.15; text-decoration:none; }
a.cta-num:hover{ opacity:.85; }
.cta-hours{ font-size:15px; font-weight:700; margin-top:4px; }
.cta-sub{ font-size:13px; margin-top:6px; opacity:.95; }
.cta-btn{ flex-shrink:0; font-size:16px; padding:18px 34px; box-shadow:0 6px 16px rgba(0,0,0,.2); }

/* ===== Contact form ===== */
.form-sec{ padding:74px 0; background:var(--cream); }
.form-intro{ text-align:center; font-size:15px; color:#444; margin-bottom:40px; }
.form-intro strong{ color:var(--orange); }
.form-intro a{ color:var(--teal); font-weight:700; text-decoration:underline; }
.contact-form{
  max-width:820px; margin:0 auto; background:#fff; border-radius:14px;
  padding:44px 48px; box-shadow:var(--shadow);
}
.form-row{ display:grid; grid-template-columns:210px 1fr; gap:18px; padding:20px 0; border-bottom:1px solid var(--line); }
.form-row:first-child{ padding-top:0; }
.form-label{ font-size:15px; font-weight:700; color:var(--teal); padding-top:10px; }
.req{ display:inline-block; background:var(--orange); color:#fff; font-size:11px; font-weight:700; padding:2px 8px; border-radius:3px; margin-left:6px; vertical-align:middle; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea{
  width:100%; font-family:inherit; font-size:15px; color:var(--text);
  padding:12px 14px; border:1.5px solid var(--line); border-radius:6px; background:#fdfcfa;
  transition:.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{ outline:none; border-color:var(--orange); background:#fff; box-shadow:0 0 0 3px rgba(232,130,30,.12); }
.form-field textarea{ resize:vertical; }
.radio-group, .check-group{ display:flex; flex-wrap:wrap; gap:10px 22px; padding-top:8px; }
.radio-group label, .check-group label{ display:inline-flex; align-items:center; gap:7px; font-size:14.5px; cursor:pointer; }
.radio-group input, .check-group input{ width:17px; height:17px; accent-color:var(--orange); }
.form-row--consent{ grid-template-columns:1fr; justify-items:center; border-bottom:none; }
.consent{ display:inline-flex; align-items:center; gap:9px; font-size:14.5px; cursor:pointer; }
.consent input{ width:18px; height:18px; accent-color:var(--orange); }
.consent a{ color:var(--teal); text-decoration:underline; }
.form-error{ text-align:center; color:#d33; font-weight:700; font-size:14px; margin:6px 0 0; }
.form-row.has-error input,
.form-row.has-error select{ border-color:#e2726e; background:#fff6f5; }
.form-submit{ text-align:center; margin-top:28px; }
.form-submit .btn{ min-width:280px; }
.form-note{ font-size:12px; color:var(--muted); margin-top:16px; line-height:1.7; }

/* ===== Legal (privacy) page ===== */
.legal{ padding:56px 0 80px; background:#fff; }
.legal .container{ max-width:880px; }
.legal-head{ text-align:center; margin-bottom:14px; }
.legal-head h1{ font-size:30px; font-weight:900; color:var(--teal); }
.legal-head .en{ display:block; font-size:12px; letter-spacing:.2em; color:var(--orange); font-weight:700; margin-top:6px; }
.legal-lead{ font-size:15px; color:#444; margin:26px 0 34px; }
.legal-block{ margin-bottom:32px; }
.legal-block h2{
  font-size:18px; font-weight:900; color:var(--teal); margin-bottom:12px;
  padding-left:12px; border-left:4px solid var(--orange); line-height:1.4;
}
.legal-block p{ font-size:14.5px; color:#333; margin-bottom:10px; }
.legal-block ul, .legal-block ol{ margin:8px 0 8px 1.4em; }
.legal-block li{ font-size:14.5px; color:#333; margin-bottom:6px; }
.legal-contact{ background:var(--cream); border-radius:10px; padding:22px 26px; }
.legal-contact dl > div{ display:grid; grid-template-columns:120px 1fr; padding:6px 0; font-size:14.5px; }
.legal-contact dt{ font-weight:700; color:var(--teal); }
.legal-contact a{ color:var(--teal); text-decoration:underline; }
.legal-date{ text-align:right; font-size:13.5px; color:var(--muted); margin-top:30px; }
.legal-back{ text-align:center; margin-top:40px; }
.back-home{ font-size:13px; font-weight:700; color:var(--muted); }
.back-home:hover{ color:var(--orange); }
@media (max-width:768px){
  .legal-head h1{ font-size:24px; }
  .legal-contact{ padding:18px 16px; }
  .legal-contact dl > div{ grid-template-columns:1fr; gap:0; padding:8px 0; }
  .legal-contact dt{ margin-bottom:2px; }
}

/* ===== アクセス・案内地図 ===== */
.access{ padding:74px 0; background:var(--cream); }
.access-inner{ display:grid; grid-template-columns:1.5fr 1fr; gap:32px; align-items:stretch; }
.access-map{ position:relative; width:100%; padding-bottom:56%; border-radius:12px; overflow:hidden; box-shadow:var(--shadow); }
.access-map iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.access-info{ background:#fff; border-radius:12px; padding:30px 28px; box-shadow:var(--shadow); display:flex; flex-direction:column; }
.access-name{ font-size:20px; font-weight:900; color:var(--teal); margin-bottom:16px; padding-bottom:14px; border-bottom:2px solid var(--line); }
.access-dl > div{ display:grid; grid-template-columns:76px 1fr; padding:8px 0; font-size:14.5px; }
.access-dl dt{ font-weight:700; color:var(--teal); }
.access-dl dd{ color:#3a3a3a; }
.access-dl a{ color:var(--teal); text-decoration:underline; }
.access-btn{ width:100%; margin-top:22px; }

/* ===== Footer ===== */
.site-footer{ background:linear-gradient(160deg,var(--navy) 0%,var(--navy-dark) 100%); color:#cfd8e0; }
.footer-inner{
  max-width:1180px; margin:0 auto; padding:56px 24px 40px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px;
}
.footer-brand-head{ display:inline-block; background:#fff; border-radius:10px; padding:18px 24px; }
.footer-logo{ height:84px; width:auto; display:block; }
.footer-lead{ font-size:13px; margin-top:18px; color:#a9b8c4; }
.footer-col h4{ font-size:16px; color:#fff; font-weight:700; margin-bottom:18px; border-left:3px solid var(--orange); padding-left:10px; }
.footer-dl > div{ display:grid; grid-template-columns:88px 1fr; font-size:13px; margin-bottom:10px; }
.footer-dl dt{ color:#9fb0bf; }
.footer-dl dd{ color:#e4ebf1; }
.footer-dl--contact > div{ grid-template-columns:70px 1fr; }
.footer-area-note{ font-size:13px; color:#a9b8c4; margin-bottom:16px; }
.area-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.area-tags span{ background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); border-radius:4px; padding:6px 12px; font-size:12.5px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12); padding:18px 24px;
  display:flex; justify-content:space-between; align-items:center; max-width:1180px; margin:0 auto;
  font-size:12px; color:#9fb0bf; flex-wrap:wrap; gap:8px;
}
.footer-links a:hover{ color:#fff; }
.footer-links span{ margin:0 8px; }

/* ===== Mobile sticky bar ===== */
.sticky-bar{ display:none; position:fixed; bottom:0; left:0; right:0; z-index:200;
  grid-template-columns:1fr 1fr; box-shadow:0 -2px 12px rgba(0,0,0,.15); }
.sticky-bar a{ display:flex; align-items:center; justify-content:center; gap:8px; padding:14px 8px; font-size:14px; font-weight:700; color:#fff; }
.sticky-bar img{ width:22px; height:22px; filter:brightness(0) invert(1); }
.sticky-phone{ background:var(--teal); }
.sticky-quote{ background:var(--orange); }

/* ===== Responsive ===== */
@media (max-width:1024px){
  .global-nav{ display:none; }
  .header-cta{ display:none; }
  .hamburger{ display:block; }
  .worry-grid{ grid-template-columns:repeat(3,1fr); }
  .reason-grid{ grid-template-columns:repeat(2,1fr); }
  .case-grid{ grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .flow-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width:1024px){
  /* mobile nav drawer */
  .global-nav.open{
    display:flex; flex-direction:column; gap:0;
    position:absolute; top:100%; left:0; right:0; background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.12); margin:0; padding:8px 0;
  }
  .global-nav.open a{ padding:14px 24px; border-bottom:1px solid var(--line); color:#333; }
  .global-nav.open a:hover{ color:var(--orange); }
}
@media (max-width:768px){
  .sec-title{ font-size:24px; }
  .header-phone-text .hours{ display:none; }
  .header-phone-text .num{ font-size:17px; }
  .header-phone img{ width:22px; height:22px; }
  .brand-logo{ height:56px; }
  .hero-inner{ padding:40px 20px 48px; }
  .hero-photo::after{ background:linear-gradient(180deg, rgba(245,239,228,.45) 0%, rgba(245,239,228,.9) 45%, rgba(245,239,228,.98) 100%); }
  .hero-card{ padding:0; background:transparent; }
  .hero-title{ font-size:28px; }
  .hero-eyebrow{ font-size:12px; }
  .hero-btns .btn{ width:100%; }
  .stats-inner{ grid-template-columns:repeat(2,1fr); gap:0; }
  .stat{ border-right:none !important; border-bottom:1px solid var(--line); }
  .stat:nth-child(even){ border-left:1px solid var(--line); }
  .worry-grid{ grid-template-columns:repeat(2,1fr); }
  .news-item{ grid-template-columns:1fr; gap:8px; padding:16px 4px; }
  .news-title{ font-size:15px; }
  .reason-grid{ grid-template-columns:1fr; }
  .reason-card p{ text-align:center; }
  .flow-grid{ grid-template-columns:repeat(2,1fr); }
  .flow-step p{ text-align:center; }
  .voice-grid{ grid-template-columns:1fr; }
  .access-inner{ grid-template-columns:1fr; gap:20px; }
  .access-map{ padding-bottom:70%; }
  .phil-lead{ padding:30px 20px; }
  .phil-catch{ font-size:20px; }
  .phil-grid{ grid-template-columns:1fr; }
  .phil-subtitle{ font-size:19px; }
  .greeting-inner{ grid-template-columns:1fr; gap:22px; }
  .greeting-visual{ position:static; top:auto; }
  .greeting-photo{ max-width:200px; }
  .greeting-catch{ font-size:20px; text-align:center; }
  .cta-inner{ flex-direction:column; gap:18px; }
  .cta-num{ font-size:38px; }
  .cta-btn{ width:100%; max-width:360px; }
  .footer-inner{ grid-template-columns:1fr; gap:28px; padding:40px 24px 32px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .contact-form{ padding:26px 18px; }
  .form-row{ grid-template-columns:1fr; gap:8px; padding:16px 0; }
  .form-label{ padding-top:0; }
  .form-submit .btn{ min-width:0; width:100%; }
  .sticky-bar{ display:grid; }
  body{ padding-bottom:56px; }
  html{ scroll-padding-top:64px; }
}
@media (max-width:420px){
  .worry-grid{ grid-template-columns:1fr; }
  .flow-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   ここから：改善提案書（改善前後比較）対応の追加スタイル
   ============================================================ */

/* ===== Hero（改善後イメージ準拠） ===== */
.hero-area{
  margin-top:14px; font-size:16px; font-weight:700; color:var(--teal);
}
.hero-tags{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.hero-tags span{
  background:#fff; border:1.5px solid var(--orange); color:var(--orange);
  font-size:13px; font-weight:700; padding:5px 14px; border-radius:4px;
}
.hero-lead{ margin-top:18px; }
.hero-phone{
  display:inline-grid; width:auto;
  grid-template-columns:auto auto; align-items:center; justify-content:start;
  margin-top:24px; gap:4px 14px;
  background:#fff; border:2px solid var(--line); border-radius:12px;
  padding:18px 30px 16px; box-shadow:0 4px 16px rgba(0,0,0,.08);
}
.hero-phone img{ width:44px; height:44px; }
.hero-phone .hp-num{ font-size:42px; letter-spacing:1px; line-height:1.15; }
.hero-phone .hp-num--sub{ font-size:26px; }
.hero-phone .hp-hours{ font-size:13px; width:auto; grid-column:1 / -1; padding-left:58px; margin-top:2px; }
.hero-btns{ margin-top:26px; justify-content:center; }
.hero-btns .btn-orange{
  font-size:22px; padding:24px 52px; border-radius:8px; gap:14px;
  box-shadow:0 8px 22px rgba(232,130,30,.45);
}
.hero-btns .btn-orange .arw{ font-size:24px; }

/* ヒーロー写真上の円形バッジ */
.hero-badges{
  position:absolute; top:36px; right:44px; z-index:1;
  display:flex; gap:16px;
}
.hero-badge{
  width:118px; height:118px; border-radius:50%;
  background:rgba(255,255,255,.94); border:3px solid var(--orange);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; line-height:1.2; box-shadow:0 4px 14px rgba(0,0,0,.15);
}
.hero-badge .hb-label{ font-size:11px; font-weight:700; color:var(--teal); }
.hero-badge .hb-value{ font-size:32px; font-weight:900; color:var(--orange); }
.hero-badge .hb-value small{ font-size:14px; font-weight:700; }
.hero-badge .hb-foot{ font-size:11px; font-weight:700; color:var(--teal); }
@media (max-width:1024px){
  .hero-badges{ display:none; }
}

/* ===== Stats（濃緑帯・白文字） ===== */
.stats{ background:var(--teal); }
.stats .stat img{ filter:brightness(0) invert(1); }
.stats .stat-label{ color:#cfe3dd; }
.stats .stat-value{ color:#fff; }
.stats .stat:not(:last-child){ border-right:1px solid rgba(255,255,255,.22); }
.stats-note{
  max-width:1000px; margin:0 auto; padding:0 24px 16px;
  font-size:11.5px; color:#bcd6cf; line-height:1.7;
}
@media (max-width:768px){
  .stats .stat{ border-bottom:1px solid rgba(255,255,255,.22); }
  .stats .stat:nth-child(even){ border-left:1px solid rgba(255,255,255,.22); }
}

/* ===== お知らせ（画像付きカード） ===== */
.news-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.news-card{
  display:flex; flex-direction:column; background:#fff;
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  box-shadow:0 3px 10px rgba(0,0,0,.05); transition:.2s;
}
a.news-card:hover{ box-shadow:var(--shadow); transform:translateY(-3px); }
.news-card-photo{ position:relative; aspect-ratio:16/10; overflow:hidden; margin:0; }
.news-card-photo img{ width:100%; height:100%; object-fit:cover; }
/* 種別POPは右上。写真に入っている文字（見出し帯など）と重ならないようにするため */
.news-card-photo .news-cat{
  position:absolute; top:10px; right:10px; left:auto; border-radius:4px;
  box-shadow:0 1px 4px rgba(0,0,0,.25);
}
.news-card-main{ display:flex; flex-direction:column; flex:1; padding:16px 16px 14px; }
.news-card-title{ font-size:15px; font-weight:700; color:#333; line-height:1.6; }
/* 本文は省略せず全文表示（同じ行のカードは自動で高さがそろいます） */
.news-card-body{
  font-size:12.5px; color:var(--muted); margin-top:8px; line-height:1.7;
}
.news-card .news-date{ margin-top:auto; padding-top:12px; font-size:12.5px; }
.news-card-link{
  display:inline-flex; align-items:center; gap:7px; align-self:flex-start;
  margin-top:12px; font-size:12.5px; font-weight:700; color:var(--teal);
  text-decoration:underline; text-underline-offset:3px;
}
a.news-card:hover .news-card-link{ color:var(--orange); }
.news-card-links{ display:flex; flex-direction:column; align-items:flex-start; gap:9px; margin-top:12px; }
.news-card-links .news-card-link{ margin-top:0; }
a.news-card-link:hover{ color:var(--orange); }
.news-ext-mark{ font-size:11px; text-decoration:none; }
.news-pdf-badge{
  display:inline-block; padding:2px 7px; border-radius:3px;
  background:#c0392b; color:#fff; font-size:10.5px; font-weight:700;
  letter-spacing:.04em; text-decoration:none;
}
@media (max-width:1024px){
  .news-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px){
  .news-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
}

/* ===== お悩みカード（写真化） ===== */
.worry-card--photo{
  position:relative; overflow:hidden; background-size:cover; background-position:center;
  padding:34px 14px 28px; border-radius:var(--radius);
}
.worry-card--photo::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(14,45,40,.45) 0%, rgba(14,45,40,.72) 100%);
}
.worry-card--photo .worry-icon{
  position:relative; z-index:1; width:46px; height:46px; margin:0 auto 14px;
  filter:brightness(0) invert(1);
}
.worry-card--photo p{ position:relative; z-index:1; color:#fff; text-shadow:0 1px 4px rgba(0,0,0,.4); }

/* ===== 選ばれる理由（淡色カード） ===== */
.reason-card{ background:#fbf8f2; border-color:#eee5d6; }

/* ===== 費用・見積りの考え方 ===== */
.pricing{ padding:74px 0; background:#fff; }
.pricing-intro{ text-align:center; font-size:15px; color:#444; margin-bottom:40px; }
.pricing-intro strong{ color:var(--orange); }
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pricing-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 24px; display:flex; flex-direction:column;
}
.pricing-card--main{ border:2px solid var(--orange); box-shadow:var(--shadow); }
.pricing-rank{
  display:inline-block; align-self:flex-start; font-size:11px; font-weight:700;
  letter-spacing:.14em; color:var(--orange); border:1px solid var(--orange);
  border-radius:3px; padding:2px 10px; margin-bottom:12px;
}
.pricing-card h3{ font-size:19px; font-weight:900; color:var(--teal); margin-bottom:10px; }
.pricing-card > p{ font-size:13.5px; color:#444; margin-bottom:14px; }
.pricing-card ul{ list-style:none; margin-top:auto; }
.pricing-card li{
  font-size:13px; color:#3a3a3a; padding:7px 0 7px 22px; position:relative;
  border-top:1px dashed var(--line);
}
.pricing-card li::before{ content:"✓"; position:absolute; left:2px; color:var(--orange); font-weight:900; }
.pricing-factors{
  margin-top:36px; background:var(--cream); border-radius:12px; padding:30px 32px;
}
.pricing-factors h3{ font-size:17px; font-weight:900; color:var(--teal); margin-bottom:10px; }
.pricing-factors > p{ font-size:14px; color:#444; }
.factor-tags{ display:flex; flex-wrap:wrap; gap:10px; margin:16px 0; }
.factor-tags span{
  background:#fff; border:1px solid var(--line); border-radius:20px;
  font-size:13px; font-weight:700; color:var(--teal); padding:6px 16px;
}
.pricing-note{ font-size:12.5px; color:var(--muted); }
@media (max-width:1024px){ .pricing-grid{ grid-template-columns:1fr; max-width:520px; margin:0 auto; } }
@media (max-width:768px){ .pricing-factors{ padding:22px 18px; } }

/* ===== FAQ ===== */
.faq{ padding:74px 0; background:var(--cream); }
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{
  background:#fff; border:1px solid var(--line); border-radius:10px;
  margin-bottom:12px; overflow:hidden;
}
.faq-item summary{
  list-style:none; cursor:pointer; display:flex; align-items:baseline; gap:12px;
  font-size:15.5px; font-weight:700; color:var(--teal); padding:18px 22px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::before{ content:"Q."; color:var(--orange); font-weight:900; flex-shrink:0; }
.faq-item summary::after{
  content:"＋"; margin-left:auto; color:var(--orange); font-weight:900; transition:.2s;
}
.faq-item[open] summary::after{ content:"－"; }
.faq-item p{
  font-size:14px; color:#444; padding:0 22px 20px 50px; line-height:1.9;
}
@media (max-width:768px){
  .faq-item summary{ font-size:14.5px; padding:15px 16px; }
  .faq-item p{ padding:0 16px 16px 40px; }
}

/* ===== サポート・各種ご案内 ===== */
.support{ padding:74px 0; background:#fff; }
.support-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.support-card{
  background:#fbf8f2; border:1px solid #eee5d6; border-radius:var(--radius);
  padding:28px 26px; display:flex; flex-direction:column;
}
.support-icon{ width:46px; height:46px; margin-bottom:14px; }
.support-card h3{ font-size:18px; font-weight:900; color:var(--teal); margin-bottom:10px; }
.support-card p{ font-size:13.5px; color:#444; margin-bottom:14px; }
.support-card p strong{ color:var(--orange); }
.support-link{
  margin-top:auto; align-self:flex-start; font-size:14px; font-weight:700;
  color:var(--orange); border-bottom:2px solid var(--orange); padding-bottom:2px; transition:.15s;
}
.support-link:hover{ opacity:.75; }
.support-note{ font-size:11.5px !important; color:var(--muted) !important; margin-top:12px; margin-bottom:0 !important; }
.todo-mark{ font-size:12px; color:#b3541e; background:#fdeee0; border-radius:4px; padding:1px 6px; }
@media (max-width:768px){ .support-grid{ grid-template-columns:1fr; } }

/* ===== フォーム追加要素 ===== */
.field-note{ font-size:12px; color:var(--muted); margin-top:8px; line-height:1.7; }
.form-field input[type="file"]{
  width:100%; font-size:13.5px; padding:10px 12px;
  border:1.5px dashed var(--line); border-radius:6px; background:#fdfcfa;
}
.form-success{
  text-align:center; color:#1d7a43; font-weight:700; font-size:14.5px;
  background:#eaf7ef; border:1px solid #bfe3cc; border-radius:8px;
  padding:14px 16px; margin:14px 0 0;
}

/* ===== 特別割引券ページ（coupon.html） ===== */
.coupon-page{ background:var(--cream); padding:44px 0 72px; }
.coupon-wrap{ max-width:680px; }
.coupon-head{ text-align:center; margin-bottom:22px; }
.coupon-head h1{ font-size:28px; font-weight:900; color:var(--teal); line-height:1.4; }
.coupon-head .en{
  display:block; font-size:12px; font-weight:700; letter-spacing:.14em;
  color:var(--orange); margin-top:4px;
}
.coupon-lead{ font-size:15px; margin-top:14px; line-height:1.9; }

/* 券本体 */
.coupon-ticket{
  position:relative; margin:0; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); background:#fff;
}
.coupon-ticket img{ width:100%; height:auto; }
.coupon-ticket.is-used img{ filter:grayscale(.85) contrast(.9); opacity:.55; }
.coupon-stamp{
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px; text-align:center;
}
.coupon-stamp-mark{
  font-size:min(13vw,58px); font-weight:900; letter-spacing:.08em; color:#c0392b;
  border:6px solid #c0392b; border-radius:10px; padding:6px 22px;
  transform:rotate(-11deg); background:rgba(255,255,255,.82);
}
.coupon-stamp-time{
  font-size:min(3.6vw,15px); font-weight:700; color:#8c2c20;
  background:rgba(255,255,255,.88); border-radius:5px; padding:3px 12px;
}

/* 状態と操作 */
.coupon-action{ text-align:center; margin-top:24px; }
.coupon-state{ font-size:15px; margin-bottom:16px; }
.coupon-state--ready b{ color:#1d7a43; }
.coupon-state--used{
  color:#8c2c20; background:#fdeceb; border:1px solid #f2c9c5;
  border-radius:8px; padding:12px 16px; margin-bottom:0;
}
.coupon-btn{ width:100%; max-width:420px; font-size:17px; padding:18px 26px; }
.coupon-note{ font-size:12.5px; color:var(--muted); margin-top:12px; line-height:1.8; }

/* 利用条件 */
.coupon-terms{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:24px 26px; margin-top:32px;
}
.coupon-terms h2{ font-size:17px; font-weight:700; color:var(--teal); margin-bottom:12px; }
.coupon-terms ul{ list-style:none; }
.coupon-terms li{
  position:relative; padding-left:18px; font-size:13.5px; line-height:1.9; color:#4a4a4a;
}
.coupon-terms li + li{ margin-top:8px; }
.coupon-terms li::before{
  content:""; position:absolute; left:2px; top:11px;
  width:6px; height:6px; border-radius:50%; background:var(--orange);
}

/* 確認ダイアログ */
.coupon-modal{
  position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.55); padding:24px;
}
.coupon-modal[hidden]{ display:none; }
.coupon-modal-box{
  background:#fff; border-radius:var(--radius); padding:28px 26px 24px;
  max-width:420px; width:100%; text-align:center; box-shadow:0 12px 40px rgba(0,0,0,.3);
}
.coupon-modal-title{ font-size:18px; font-weight:700; color:var(--teal); }
.coupon-modal-body{ font-size:13.5px; color:var(--muted); line-height:1.9; margin-top:12px; }
.coupon-modal-btns{ display:flex; gap:12px; margin-top:22px; }
.coupon-modal-btns .btn{ flex:1; padding:14px 16px; font-size:15px; }
.coupon-modal-cancel{ background:#fff; color:var(--muted); border:1.5px solid var(--line); }
.coupon-modal-cancel:hover{ background:#f4f2ee; }

@media (max-width:600px){
  .coupon-page{ padding:32px 0 56px; }
  .coupon-head h1{ font-size:23px; }
  .coupon-terms{ padding:20px 18px; }
}

/* ===== Hero 電話番号・CTAボタン（スマホ調整） ===== */
@media (max-width:768px){
  .hero-phone{ display:flex; width:100%; gap:10px; padding:16px 18px 14px; justify-content:center; }
  .hero-phone img{ width:34px; height:34px; }
  .hero-phone .hp-hours{ text-align:center; padding-left:0; }
  .hero-phone .hp-num{ font-size:33px; }
  .hero-phone .hp-num--sub{ font-size:21px; }
  .hero-btns .btn-orange{ font-size:18px; padding:20px 18px; }
  .hero-btns .btn-orange .arw{ font-size:20px; }
}
