/* ============================================================
   PC Pro ハビス 公式サイト  スタイル
   ブランド：ダークスレート #2C404C × LINEグリーン #06c755
   ============================================================ */
:root{
  --slate:#2C404C; --slate-deep:#1f2e37;
  --green:#06c755; --green-deep:#06904a;
  --ink:#212121; --body:#45525a; --muted:#77848b;
  --line:#e8ebed; --soft:#f5f7f8; --card:#ffffff;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:#fff; color:var(--body); line-height:1.9;
  font-family:'Noto Sans JP', system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:var(--green-deep); text-decoration:none; }
a:hover{ color:#05733b; }
h1,h2,h3{ font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif; color:var(--ink); margin:0; }
.container{ max-width:1200px; margin:0 auto; padding:0 24px; }
.section{ padding:72px 0; }
.section--soft{ background:var(--soft); }
.section--slate{ background:var(--slate); color:#fff; }
.section--green{ background:var(--green); color:#fff; }
.sec-head{ text-align:center; margin-bottom:40px; }
.kicker{ font-family:'Zen Kaku Gothic New',sans-serif; font-weight:700; font-size:12px; letter-spacing:.14em; color:var(--green-deep); }
.section--slate .kicker{ color:#4fe28d; }
.sec-head h2{ font-weight:900; font-size:clamp(26px,4vw,34px); margin:6px 0; }
.sec-head p{ margin:0; font-size:15px; color:var(--muted); }
.section--slate .sec-head p{ color:#cfd7dc; }
.section--slate .sec-head h2{ color:#ffffff; }          /* 暗背景でも見出しを白く（視認性） */
.section--slate .sec-head h2 .accent-green{ color:#5df29a; }  /* 強調行はさらに明るい緑で目立たせる */
.accent-green{ color:#06904a; }

/* buttons */
.btn{ display:inline-flex; align-items:center; gap:10px; font-weight:700; font-size:16px;
  padding:15px 28px; border-radius:10px; border:0; cursor:pointer; line-height:1; }
.btn--line{ background:var(--green); color:#fff; }
.btn--line:hover{ background:var(--green-deep); color:#fff; }
.btn--ghost{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover{ color:#fff; background:rgba(255,255,255,.08); }
.btn--outline{ background:#fff; color:var(--slate); border:1.5px solid #d4dbde; }
.btn svg{ width:18px; height:18px; }

/* header */
.site-header{ position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid var(--line); }
.site-header .inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; max-width:1200px; margin:0 auto; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand-logo{ height:44px; width:auto; display:block; }
.brand-mark{ width:42px; height:42px; border-radius:10px; background:var(--slate); color:#fff; display:flex; align-items:center; justify-content:center; }
.brand-name{ font-family:'Zen Kaku Gothic New',sans-serif; font-weight:900; font-size:20px; color:var(--ink); line-height:1.15; }
.brand-sub{ font-size:11px; color:var(--muted); }
.site-nav{ display:flex; align-items:center; gap:26px; }
.site-nav a{ color:var(--body); font-weight:500; font-size:15px; }
.nav-line{ display:inline-flex; align-items:center; gap:8px; background:var(--green); color:#fff !important; font-weight:700; padding:11px 20px; border-radius:999px; }
.nav-line svg{ width:18px; height:18px; }

/* hero */
.hero{ background:var(--slate); color:#fff; padding:74px 0 82px; }
.hero .grid{ display:grid; grid-template-columns:1.15fr 1fr; gap:52px; align-items:center; }
.hero h1{ color:#fff; font-weight:900; font-size:clamp(30px,4.4vw,46px); line-height:1.38; }
.hero h1 .accent{ color:#4fe28d; }
.hero p{ font-size:17px; color:#cfd7dc; margin:0; }
.chip{ display:inline-flex; align-items:center; gap:8px; background:rgba(6,199,85,.15); color:#4fe28d; font-weight:700; font-size:13px; padding:7px 14px; border-radius:999px; }
.chip svg{ width:16px; height:16px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:26px; flex-wrap:wrap; color:#cfd7dc; font-size:14px; }
.hero-trust span{ display:inline-flex; align-items:center; gap:9px; }
.hero-trust svg{ width:18px; height:18px; stroke:#4fe28d; }
.hero-col{ display:flex; flex-direction:column; gap:22px; align-items:flex-start; }
.hero-card{ background:#fff; border-radius:18px; padding:26px; box-shadow:0 24px 60px rgba(0,0,0,.3); }
.hero-card .ph{ aspect-ratio:4/3; background:#eef1f3; border-radius:12px; display:flex; align-items:center; justify-content:center; color:#aeb8be; }
.hero-card .row{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.hero-card .ic{ width:40px; height:40px; border-radius:999px; background:#eafaf0; color:var(--green-deep); display:flex; align-items:center; justify-content:center; }
.hero-card .t1{ font-weight:700; color:var(--ink); font-size:15px; }
.hero-card .t2{ font-size:13px; color:var(--muted); }

/* generic grids */
.grid-3{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }

/* merit / info cards */
.card{ background:#fff; border-radius:14px; padding:30px 26px; display:flex; flex-direction:column; gap:13px; }
.card .ic{ width:56px; height:56px; border-radius:14px; background:#eafaf0; color:var(--green-deep); display:flex; align-items:center; justify-content:center; }
.card h3{ font-weight:700; font-size:20px; }
.card p{ margin:0; font-size:15px; color:#6b7880; }

/* warranty */
.warr{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:26px 20px; display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.warr svg{ width:34px; height:34px; stroke:#4fe28d; }
.warr h3{ color:#fff; font-weight:700; font-size:17px; }
.warr p{ margin:0; font-size:13px; color:#b6c0c6; line-height:1.8; }

/* stores */
.store{ border:1px solid var(--line); border-radius:16px; overflow:hidden; background:#fff; }
.store .ph{ aspect-ratio:16/7; background:#eef1f3; display:flex; align-items:center; justify-content:center; color:#aeb8be; }
.store .body{ padding:26px; display:flex; flex-direction:column; gap:10px; }
.store h3{ font-weight:900; font-size:22px; }
.store .meta{ font-size:14px; color:#6b7880; }

/* voice */
.voice{ background:#fff; border-radius:14px; padding:28px; display:flex; flex-direction:column; gap:14px; }
.voice svg{ width:30px; height:30px; }
.voice p{ margin:0; font-size:14px; color:var(--body); }
.voice .who{ font-size:13px; color:var(--muted); font-weight:700; }

/* Google クチコミ */
.gr-summary{ max-width:600px; margin:0 auto 30px; background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px 26px; display:flex; align-items:center; justify-content:center; gap:22px; flex-wrap:wrap; }
.g-logo{ font-family:'Zen Kaku Gothic New',sans-serif; font-weight:700; font-size:22px; letter-spacing:.5px; }
.g-logo .b{color:#4285F4;} .g-logo .r{color:#EA4335;} .g-logo .y{color:#FBBC05;} .g-logo .g{color:#34A853;}
.gr-score{ display:flex; flex-direction:column; align-items:center; line-height:1.2; }
.gr-score .num{ font-family:'Zen Kaku Gothic New',sans-serif; font-weight:900; font-size:30px; color:var(--ink); }
.stars{ color:#FBBC05; letter-spacing:2px; font-size:18px; }
.gr-count{ font-size:13px; color:var(--muted); }
.grev{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px; display:flex; flex-direction:column; gap:12px; }
.grev-head{ display:flex; align-items:center; gap:12px; }
.grev-av{ width:44px; height:44px; border-radius:999px; background:var(--slate); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:18px; flex:none; }
.grev-name{ font-weight:700; color:var(--ink); font-size:15px; }
.grev-meta{ font-size:12px; color:var(--muted); }
.grev-stars{ color:#FBBC05; letter-spacing:1px; font-size:14px; }
.grev p{ margin:0; font-size:14px; color:var(--body); line-height:1.9; }
.gr-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:30px; }

/* FAQ（アコーディオン） */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:10px; }
.faq-cat{ max-width:820px; margin:26px auto 4px; font-family:'Zen Kaku Gothic New',sans-serif; font-weight:700; color:var(--green-deep); font-size:14px; letter-spacing:.04em; }
.faq-cat:first-of-type{ margin-top:0; }
.faq-item{ border:1px solid var(--line); border-radius:12px; background:#fff; overflow:hidden; }
.faq-item summary{ list-style:none; cursor:pointer; padding:16px 20px; display:flex; align-items:flex-start; gap:12px; font-weight:700; color:var(--ink); font-size:15px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:hover{ background:var(--soft); }
.faq-item summary .qm{ font-family:'Zen Kaku Gothic New',sans-serif; font-weight:900; color:var(--green-deep); font-size:17px; line-height:1.5; flex:none; }
.faq-item summary .plus{ margin-left:auto; flex:none; width:20px; height:20px; position:relative; transition:transform .2s ease; color:var(--muted); }
.faq-item summary .plus::before, .faq-item summary .plus::after{ content:""; position:absolute; background:currentColor; border-radius:2px; }
.faq-item summary .plus::before{ top:9px; left:2px; right:2px; height:2px; }
.faq-item summary .plus::after{ left:9px; top:2px; bottom:2px; width:2px; }
.faq-item[open] summary .plus{ transform:rotate(45deg); }
.faq-a{ padding:2px 20px 18px 47px; font-size:14px; color:#6b7880; line-height:1.95; }

/* line cta */
.linecta{ display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.linecta h2{ color:#fff; font-weight:900; font-size:clamp(22px,3.4vw,30px); }
.linecta p{ margin:0; font-size:16px; color:rgba(255,255,255,.92); }
.btn--white{ background:#fff; color:var(--green-deep); font-weight:900; font-size:18px; padding:18px 34px; border-radius:12px; }
.btn--white svg{ width:24px; height:24px; }

/* footer */
.site-footer{ background:var(--slate-deep); color:#aeb8be; padding:54px 0 40px; }
.foot-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.foot-brand{ max-width:420px; display:flex; flex-direction:column; gap:10px; }
.foot-brand .n{ font-family:'Zen Kaku Gothic New',sans-serif; font-weight:900; font-size:20px; color:#fff; }
.foot-brand .slogan{ font-size:15px; color:#7f8d95; font-style:italic; }
.foot-cols{ display:flex; gap:52px; }
.foot-col{ display:flex; flex-direction:column; gap:10px; font-size:14px; }
.foot-col a{ color:#cdd5da; }
.foot-bottom{ border-top:1px solid rgba(255,255,255,.1); margin-top:34px; padding-top:18px; font-size:12px; color:#6b7880; }

/* ---------- responsive ---------- */
@media (max-width:900px){
  .hero .grid{ grid-template-columns:1fr; gap:34px; }
  .grid-4{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .grid-3{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .site-nav a:not(.nav-line){ display:none; }
}
@media (max-width:620px){
  .section{ padding:52px 0; }
  .container{ padding:0 18px; }
  .grid-2{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ justify-content:center; }
  .linecta{ flex-direction:column; align-items:stretch; text-align:center; }
  .btn--white{ justify-content:center; }
  .foot-cols{ gap:36px; }
}
@media (max-width:420px){
  .grid-4{ grid-template-columns:1fr; }
}
