/* ============================================================
   CrossMake Theme - Main CSS
   White × Blue design / Mobile-first responsive
============================================================ */

:root {
  --white:    #FFFFFF;
  --blue:     #3498DB;
  --blue-dk:  #2176ae;
  --blue-lt:  #EBF5FB;
  --blue-mid: #c8e6f7;
  --text:     #333333;
  --text-lt:  #666666;
  --text-mu:  #999999;
  --border:   #e0eef8;
  --bg-lt:    #f7fbff;
  --green-line:#06C755;
  --shadow:   0 4px 20px rgba(52,152,219,.10);
  --shadow-lg:0 12px 48px rgba(52,152,219,.18);
  --r:        16px;
  --r-sm:     10px;
  --r-lg:     28px;
}

/* ── SKIP LINK ── */
.skip-link { position:absolute; left:-9999px; }
.skip-link:focus { left:6px; top:6px; z-index:999; background:#fff; padding:8px 16px; border-radius:4px; text-decoration:none; color:var(--blue); }

/* ── ACCESSIBILITY ── */
:focus-visible { outline:3px solid var(--blue); outline-offset:3px; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  height:70px;
  box-shadow:0 2px 16px rgba(52,152,219,.07);
}
.header-inner {
  max-width:1280px; margin:0 auto; height:100%;
  padding:0 32px;
  display:flex; align-items:center; gap:16px;
}
.header-logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none; flex:1;
}
.logo-icon {
  width:38px; height:38px; background:var(--blue);
  border-radius:9px; display:grid; place-items:center;
  flex-shrink:0;
}
.logo-name {
  font-size:19px; font-weight:900; color:var(--text);
  letter-spacing:-.02em;
}
.logo-name span { color:var(--blue); }
.header-center {
  display:flex; flex-direction:column; align-items:center;
  gap:2px;
}
.header-tel-label { font-size:11px; color:var(--text-mu); }
.header-tel {
  font-size:20px; font-weight:900; color:var(--text);
  letter-spacing:.04em; text-decoration:none;
  transition:color .2s;
}
.header-tel:hover { color:var(--blue); }
.header-hours { font-size:11px; color:var(--text-mu); }
.header-right { display:flex; align-items:center; gap:10px; flex:1; justify-content:flex-end; }
.btn-header {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--blue); color:white;
  padding:10px 20px; border-radius:50px;
  font-size:13px; font-weight:700;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(52,152,219,.3);
  transition:all .25s; white-space:nowrap;
}
.btn-header:hover { background:var(--blue-dk); transform:translateY(-1px); }
.btn-header--line { background:var(--green-line); box-shadow:0 4px 14px rgba(6,199,85,.3); }
.btn-header--line:hover { background:#05a848; }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:6px; border:none; background:none;
  z-index:200; flex-shrink:0;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--text); border-radius:2px; transition:all .3s;
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display:none; position:fixed; inset:0;
  background:rgba(255,255,255,.98); z-index:150;
  flex-direction:column; align-items:center; justify-content:center;
  gap:24px; padding:80px 32px 32px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-size:19px; font-weight:700; color:var(--text);
  text-decoration:none; padding:12px 0;
  border-bottom:1px solid var(--border); width:100%; text-align:center;
  transition:color .2s;
}
.mobile-nav a:hover { color:var(--blue); }
.mobile-nav .mobile-cta {
  background:var(--blue); color:white!important;
  border-radius:50px; border-bottom:none;
  padding:15px 32px; width:auto;
  box-shadow:0 6px 24px rgba(52,152,219,.35);
}
.mobile-nav .mobile-line {
  background:var(--green-line); color:white!important;
  border-radius:50px; border-bottom:none;
  padding:13px 28px; width:auto;
  display:flex; align-items:center; gap:8px; justify-content:center;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
  display:none; position:fixed; bottom:0; left:0; right:0;
  z-index:90; background:white;
  border-top:1px solid var(--border);
  padding:10px 14px;
  box-shadow:0 -4px 20px rgba(52,152,219,.12);
  gap:8px;
}
.mcta-btn {
  flex:1; display:flex; align-items:center; justify-content:center;
  gap:6px; padding:13px 10px; border-radius:50px;
  font-size:13px; font-weight:700; text-decoration:none;
}
.mcta-primary { background:var(--blue); color:white; box-shadow:0 4px 14px rgba(52,152,219,.35); }
.mcta-tel     { background:var(--bg-lt); color:var(--blue); border:1.5px solid var(--blue-mid); }
.mcta-line    { background:var(--green-line); color:white; }

/* LINE フローティングボタン */
.line-float-btn {
  position:fixed; bottom:80px; right:20px; z-index:89;
  width:64px; height:64px; border-radius:50%;
  background:var(--green-line);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:2px; box-shadow:0 4px 20px rgba(6,199,85,.4);
  text-decoration:none; color:white;
  transition:transform .25s, box-shadow .25s;
}
.line-float-btn:hover { transform:translateY(-3px) scale(1.05); box-shadow:0 8px 28px rgba(6,199,85,.5); }
.line-float-text { font-size:10px; font-weight:700; line-height:1.2; text-align:center; }

/* ============================================================
   SECTION COMMONS
============================================================ */
section { padding:96px 48px; }
.sec-inner { max-width:1200px; margin:0 auto; }
.sec-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; color:var(--blue);
  letter-spacing:.12em; text-transform:uppercase; margin-bottom:14px;
}
.sec-label::before { content:''; width:22px; height:2px; background:var(--blue); border-radius:2px; }
.sec-title { font-size:38px; font-weight:900; line-height:1.3; letter-spacing:-.025em; margin-bottom:14px; }
.sec-title .hl { color:var(--blue); }
.sec-lead { font-size:16px; color:var(--text-lt); line-height:1.85; max-width:560px; }
.sec-header { margin-bottom:60px; }
.sec-header.center { text-align:center; }
.sec-header.center .sec-label { justify-content:center; }
.sec-header.center .sec-lead { margin:0 auto; }

/* ── Fade-in ── */
.fi { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.fi.vis { opacity:1; transform:none; }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top:70px; min-height:100vh;
  background:linear-gradient(160deg,#f0f9ff 0%,#e8f4fd 50%,#f5fbff 100%);
  display:flex; align-items:center; position:relative; overflow:hidden;
}
.hero-bg-circle { position:absolute; border-radius:50%; pointer-events:none; }
.hero-bg-circle.c1 { width:700px;height:700px;top:-200px;right:-200px; background:radial-gradient(circle,rgba(52,152,219,.09) 0%,transparent 65%); }
.hero-bg-circle.c2 { width:400px;height:400px;bottom:-100px;left:-100px; background:radial-gradient(circle,rgba(52,152,219,.06) 0%,transparent 65%); }
.hero-inner {
  max-width:1200px; margin:0 auto; padding:72px 48px;
  display:grid; grid-template-columns:55fr 45fr; gap:72px;
  align-items:center; position:relative; z-index:2; width:100%;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(52,152,219,.12); color:var(--blue);
  border:1px solid rgba(52,152,219,.25);
  padding:7px 16px; border-radius:50px;
  font-size:13px; font-weight:700; letter-spacing:.04em; margin-bottom:24px;
}
.hero-eyebrow::before {
  content:''; width:7px; height:7px; background:var(--blue);
  border-radius:50%; animation:blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero h1 { font-size:50px; font-weight:900; line-height:1.25; letter-spacing:-.03em; color:var(--text); margin-bottom:20px; }
.hero h1 .line2 { color:var(--blue); display:block; }
.hero-sub { font-size:16px; color:var(--text-lt); line-height:1.9; margin-bottom:32px; padding:14px 18px; background:rgba(52,152,219,.06); border-left:3px solid var(--blue); border-radius:0 8px 8px 0; }
.hero-authority { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px; }
.auth-badge { display:flex; flex-direction:column; align-items:center; background:white; border:1.5px solid var(--border); border-radius:12px; padding:12px 18px; box-shadow:var(--shadow); min-width:110px; }
.auth-num { font-size:24px; font-weight:900; color:var(--blue); line-height:1; }
.auth-num span { font-size:13px; font-weight:700; }
.auth-label { font-size:11px; color:var(--text-mu); font-weight:500; margin-top:4px; text-align:center; }
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--blue); color:white;
  padding:17px 32px; border-radius:50px;
  font-size:16px; font-weight:700; text-decoration:none;
  box-shadow:0 8px 32px rgba(52,152,219,.38); transition:all .3s;
}
.btn-primary:hover { background:var(--blue-dk); transform:translateY(-3px); box-shadow:0 12px 40px rgba(52,152,219,.48); }
.btn-primary svg { transition:transform .2s; }
.btn-primary:hover svg { transform:translateX(3px); }
.btn-secondary-outline {
  display:inline-flex; align-items:center; gap:8px;
  border:2px solid var(--blue); color:var(--blue);
  padding:15px 28px; border-radius:50px;
  font-size:15px; font-weight:700; text-decoration:none; transition:all .25s;
}
.btn-secondary-outline:hover { background:var(--blue-lt); }
/* BA visual */
.hero-visual { position:relative; }
.ba-frame { border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg); position:relative; aspect-ratio:4/3; }
.ba-before, .ba-after {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:10px; font-size:15px; font-weight:700;
  transition:opacity .5s;
}
.ba-before { background:linear-gradient(135deg,#c0b8b0,#a09890); color:rgba(255,255,255,.9); }
.ba-after  { background:linear-gradient(135deg,#eef8ff,#d6eefa); color:var(--blue); opacity:0; }
.ba-frame:hover .ba-before { opacity:0; }
.ba-frame:hover .ba-after, .ba-frame.touch-hover .ba-after { opacity:1; }
.ba-frame.touch-hover .ba-before { opacity:0; }
.ba-label { position:absolute; top:14px; padding:5px 14px; border-radius:50px; font-size:12px; font-weight:700; letter-spacing:.06em; z-index:3; }
.ba-label.before-tag { left:14px; background:rgba(0,0,0,.45); color:white; transition:opacity .5s; }
.ba-label.after-tag  { right:14px; background:var(--blue); color:white; opacity:0; transition:opacity .5s; }
.ba-frame:hover .ba-label.after-tag, .ba-frame.touch-hover .ba-label.after-tag { opacity:1; }
.ba-frame:hover .ba-label.before-tag, .ba-frame.touch-hover .ba-label.before-tag { opacity:0; }
.ba-hint { text-align:center; margin-top:10px; font-size:12px; color:var(--text-mu); }
.room-icon { font-size:72px; }

/* ============================================================
   PROBLEMS
============================================================ */
.problems { background:var(--bg-lt); }
.problems-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:64px; }
.problem-card {
  background:white; border:1.5px solid var(--border); border-radius:var(--r);
  padding:32px 24px; text-align:center; transition:all .3s;
}
.problem-card:hover { border-color:rgba(52,152,219,.4); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.problem-icon { font-size:48px; margin-bottom:16px; display:block; }
.problem-check {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--blue); font-size:13px; font-weight:700; margin-bottom:10px;
  background:var(--blue-lt); padding:4px 12px; border-radius:50px;
}
.problem-check::before { content:'✓'; font-weight:900; }
.problem-card p { font-size:15px; font-weight:700; color:var(--text); line-height:1.5; }
.solve-arrow { text-align:center; margin-bottom:48px; }
.solve-arrow-inner { display:inline-flex; flex-direction:column; align-items:center; gap:8px; }
.arrow-down { width:0; height:0; border-left:24px solid transparent; border-right:24px solid transparent; border-top:28px solid var(--blue); opacity:.7; }
.solve-label { font-size:15px; color:var(--text-lt); font-weight:500; }
.solution-headline { text-align:center; margin-bottom:48px; }
.solution-headline h2 { font-size:34px; font-weight:900; letter-spacing:-.02em; }
.solution-headline h2 span { color:var(--blue); }
.reasons-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.reason-card {
  background:white; border-radius:var(--r); padding:36px 28px;
  border:1.5px solid var(--border); transition:all .3s; position:relative; overflow:hidden;
}
.reason-card::after { content:''; position:absolute; top:0;left:0;right:0; height:4px; background:var(--blue); transform:scaleX(0); transition:transform .3s; transform-origin:left; }
.reason-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:rgba(52,152,219,.3); }
.reason-card:hover::after { transform:scaleX(1); }
.reason-icon-wrap { width:64px;height:64px; background:var(--blue-lt); border-radius:14px; display:grid; place-items:center; margin-bottom:20px; font-size:32px; }
.reason-num-label { font-size:11px; font-weight:900; color:var(--blue); letter-spacing:.1em; margin-bottom:10px; }
.reason-card h3 { font-size:20px; font-weight:700; margin-bottom:14px; line-height:1.4; }
.reason-card p { font-size:14px; color:var(--text-lt); line-height:1.85; margin-bottom:20px; }
.compare-mini { background:var(--bg-lt); border-radius:var(--r-sm); padding:14px 16px; font-size:12px; border:1px solid var(--border); }
.compare-row { display:flex; justify-content:space-between; align-items:center; padding:5px 0; border-bottom:1px solid var(--border); gap:8px; }
.compare-row:last-child { border-bottom:none; }
.compare-label { color:var(--text-mu); flex:1; }
.compare-bad  { color:#e74c3c; font-weight:700; }
.compare-good { color:var(--blue); font-weight:700; }

/* ============================================================
   WORKS
============================================================ */
.works { background:var(--white); }
.category-tabs { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; justify-content:center; }
.cat-btn { padding:9px 22px; border-radius:50px; border:1.5px solid var(--border); background:white; color:var(--text-lt); font-size:14px; font-weight:700; cursor:pointer; transition:all .2s; }
.cat-btn.active,.cat-btn:hover { background:var(--blue); color:white; border-color:var(--blue); }
.works-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:0; }
.work-card { border-radius:var(--r); overflow:hidden; border:1.5px solid var(--border); transition:all .3s; }
.work-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-5px); border-color:rgba(52,152,219,.3); }
.work-thumb { aspect-ratio:4/3; position:relative; overflow:hidden; cursor:pointer; }
.wt-before,.wt-after { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; transition:opacity .4s; font-size:13px; font-weight:700; }
.wt-before { background:linear-gradient(135deg,#b0b8c1,#8a95a0); color:rgba(255,255,255,.9); }
.wt-after  { background:linear-gradient(135deg,#e8f5ff,#cce8f8); color:var(--blue); opacity:0; }
.work-thumb:hover .wt-before, .work-thumb.touch-hover .wt-before { opacity:0; }
.work-thumb:hover .wt-after, .work-thumb.touch-hover .wt-after { opacity:1; }
.wt-icon { font-size:40px; }
.wt-badge { position:absolute; bottom:10px; left:10px; background:rgba(0,0,0,.5); color:white; padding:4px 10px; border-radius:50px; font-size:11px; font-weight:700; z-index:2; letter-spacing:.04em; transition:background .3s; }
.work-thumb:hover .wt-badge, .work-thumb.touch-hover .wt-badge { background:var(--blue); }
.work-info { padding:18px 20px 20px; }
.work-tag { display:inline-block; background:var(--blue-lt); color:var(--blue); padding:3px 12px; border-radius:50px; font-size:12px; font-weight:700; margin-bottom:8px; }
.work-info h3 { font-size:15px; font-weight:700; margin-bottom:4px; }
.work-info p { font-size:13px; color:var(--text-lt); line-height:1.7; }
.work-link { display:inline-block; margin-top:10px; font-size:13px; font-weight:700; color:var(--blue); text-decoration:none; }
.work-link:hover { text-decoration:underline; }
.reviews-headline { text-align:center; margin:60px 0 36px; }
.reviews-headline h2 { font-size:30px; font-weight:900; letter-spacing:-.02em; }
.reviews-headline h2 span { color:var(--blue); }
.reviews-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.review-card { background:var(--bg-lt); border-radius:var(--r); padding:28px; border:1.5px solid var(--border); display:flex; gap:20px; transition:all .3s; position:relative; overflow:hidden; }
.review-card::before { content:'"'; position:absolute; top:8px; right:20px; font-size:80px; color:var(--blue-mid); font-family:Georgia,serif; line-height:1; font-weight:700; }
.review-card:hover { border-color:rgba(52,152,219,.35); box-shadow:var(--shadow); }
.review-avatar { width:64px; height:64px; border-radius:50%; background:var(--blue-lt); display:grid; place-items:center; font-size:32px; flex-shrink:0; border:2px solid var(--blue-mid); overflow:hidden; }
.review-avatar img { width:100%; height:100%; object-fit:cover; }
.review-body { flex:1; }
.review-stars { display:flex; gap:2px; margin-bottom:10px; }
.star { color:#f4c430; font-size:15px; }
.star--empty { color:#ddd; }
.review-title { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--text); }
.review-text { font-size:13px; color:var(--text-lt); line-height:1.85; margin-bottom:14px; }
.review-user { font-size:12px; color:var(--text-mu); font-weight:500; }

/* ============================================================
   SERVICE DETAIL
============================================================ */
.service { background:var(--bg-lt); }
.compare-section { margin-bottom:72px; }
.compare-title { font-size:26px; font-weight:900; margin-bottom:24px; text-align:center; letter-spacing:-.02em; }
.compare-title span { color:var(--blue); }
.table-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; border-radius:var(--r); box-shadow:var(--shadow); }
.compare-table { width:100%; border-collapse:collapse; font-size:14px; min-width:500px; }
.compare-table thead th { padding:18px 20px; text-align:center; font-weight:700; font-size:15px; }
.compare-table thead th:first-child { background:#f0f4f8; color:var(--text-lt); text-align:left; }
.compare-table thead th.featured-col { background:var(--blue); color:white; }
.badge-rec { display:block; font-size:11px; opacity:.85; margin-top:2px; }
.compare-table thead th:not(.featured-col):not(:first-child) { background:#e8edf2; color:var(--text-lt); }
.compare-table tbody tr { border-bottom:1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom:none; }
.compare-table tbody td { padding:15px 20px; text-align:center; background:white; }
.compare-table tbody th { padding:15px 20px; text-align:left; font-weight:700; background:#f7fbff; color:var(--text-lt); font-size:13px; }
.compare-table tbody td.featured-col { background:#f0f8ff; font-weight:700; color:var(--blue); }
.c-circle { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:50%; font-size:16px; font-weight:900; }
.c-ok  { background:var(--blue-lt); color:var(--blue); }
.c-ng  { background:#fdf0f0; color:#e74c3c; }
.c-mid { background:#fffbf0; color:#e67e22; }
/* Flow */
.flow-section { margin-bottom:72px; }
.flow-title { font-size:26px; font-weight:900; margin-bottom:40px; text-align:center; letter-spacing:-.02em; }
.flow-title span { color:var(--blue); }
.flow-steps { display:flex; gap:0; align-items:flex-start; padding:0; list-style:none; }
.flow-connector { flex:1; height:2px; background:var(--blue-mid); margin-top:44px; min-width:12px; }
.flow-step { display:flex; flex-direction:column; align-items:center; text-align:center; width:160px; flex-shrink:0; }
.flow-circle { width:88px; height:88px; border-radius:50%; background:white; border:3px solid var(--blue); box-shadow:0 0 0 6px var(--blue-lt); display:flex; flex-direction:column; align-items:center; justify-content:center; margin-bottom:16px; }
.flow-step-num { font-size:10px; font-weight:900; color:var(--blue); letter-spacing:.08em; }
.flow-step-icon { font-size:28px; }
.flow-step h3 { font-size:14px; font-weight:700; margin-bottom:6px; line-height:1.4; }
.flow-step p { font-size:12px; color:var(--text-lt); line-height:1.7; }
/* FAQ */
.faq-section { }
.faq-title { font-size:26px; font-weight:900; margin-bottom:28px; text-align:center; letter-spacing:-.02em; }
.faq-title span { color:var(--blue); }
.faq-list { max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { border:1.5px solid var(--border); border-radius:var(--r-sm); background:white; overflow:hidden; transition:border-color .2s; }
.faq-item.open { border-color:rgba(52,152,219,.4); }
.faq-q { padding:20px 22px; display:flex; align-items:flex-start; gap:14px; cursor:pointer; font-size:15px; font-weight:700; line-height:1.6; user-select:none; justify-content:space-between; }
.faq-q-left { display:flex; gap:14px; align-items:flex-start; }
.faq-q-icon { width:28px;height:28px; background:var(--blue); color:white; border-radius:6px; display:grid; place-items:center; font-size:13px; font-weight:900; flex-shrink:0; margin-top:2px; }
.faq-toggle { width:24px;height:24px; border:2px solid var(--border); border-radius:50%; display:grid; place-items:center; font-size:16px; color:var(--blue); flex-shrink:0; transition:transform .3s; margin-top:4px; }
.faq-item.open .faq-toggle { transform:rotate(45deg); }
.faq-a { display:none; padding:0 22px 20px 64px; font-size:14px; color:var(--text-lt); line-height:1.85; }
.faq-item.open .faq-a { display:block; }

/* ============================================================
   CLOSING / CTA
============================================================ */
.closing {
  background:linear-gradient(145deg,var(--blue) 0%,#1a7fc4 100%);
  padding:100px 48px; text-align:center; position:relative; overflow:hidden;
}
.closing::before { content:''; position:absolute; top:-120px;right:-120px; width:500px;height:500px; background:rgba(255,255,255,.06); border-radius:50%; }
.closing::after  { content:''; position:absolute; bottom:-80px;left:-80px; width:360px;height:360px; background:rgba(255,255,255,.04); border-radius:50%; }
.closing-visual { max-width:360px; margin:0 auto 36px; border-radius:var(--r-lg); overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.2); position:relative; z-index:2; aspect-ratio:16/9; background:linear-gradient(135deg,#e0f0fb,#c8e6f8); display:flex; align-items:center; justify-content:center; }
.closing-visual-inner { font-size:72px; }
.closing h2 { font-size:38px; font-weight:900; color:white; margin-bottom:14px; line-height:1.35; letter-spacing:-.02em; position:relative; z-index:2; }
.closing p { font-size:16px; color:rgba(255,255,255,.85); margin-bottom:40px; line-height:1.8; position:relative; z-index:2; }
.closing-ctas { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; position:relative; z-index:2; }
.btn-white { display:inline-flex; align-items:center; gap:10px; background:white; color:var(--blue); padding:18px 36px; border-radius:50px; font-size:16px; font-weight:900; text-decoration:none; box-shadow:0 8px 28px rgba(0,0,0,.15); transition:all .3s; }
.btn-white:hover { transform:translateY(-3px); box-shadow:0 14px 40px rgba(0,0,0,.22); }
.btn-outline-w { display:inline-flex; align-items:center; gap:10px; border:2px solid rgba(255,255,255,.65); color:white; padding:16px 32px; border-radius:50px; font-size:15px; font-weight:700; text-decoration:none; transition:all .3s; }
.btn-outline-w:hover { background:rgba(255,255,255,.12); border-color:white; }
.closing-tel { margin-top:28px; position:relative; z-index:2; color:rgba(255,255,255,.9); font-size:14px; display:flex; flex-direction:column; align-items:center; gap:4px; }
.closing-tel .tel-num { font-size:36px; font-weight:900; letter-spacing:.06em; color:white; text-decoration:none; }
.closing-tel .tel-num:hover { text-decoration:underline; }
.closing-tel .hours { font-size:13px; opacity:.7; }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form-section { background:white; }
.contact-form { max-width:720px; margin:0 auto; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:24px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group--full { grid-column:1/-1; }
.form-group label { font-size:14px; font-weight:700; color:var(--text); }
.required { color:#e74c3c; margin-left:4px; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width:100%; padding:13px 16px;
  border:1.5px solid var(--border); border-radius:var(--r-sm);
  font-size:15px; font-family:inherit; color:var(--text);
  transition:border-color .2s, box-shadow .2s;
  background:white;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(52,152,219,.15); outline:none; }
.radio-group { display:flex; flex-wrap:wrap; gap:10px; }
.radio-label { display:flex; align-items:center; gap:8px; cursor:pointer; font-size:14px; padding:8px 16px; border:1.5px solid var(--border); border-radius:50px; transition:all .2s; }
.radio-label:hover { border-color:var(--blue); }
.radio-label input[type="radio"] { accent-color:var(--blue); }
.radio-label:has(input:checked) { background:var(--blue-lt); border-color:var(--blue); color:var(--blue); font-weight:700; }
.checkbox-label { display:flex; align-items:flex-start; gap:10px; font-size:14px; cursor:pointer; }
.checkbox-label input { accent-color:var(--blue); width:16px; height:16px; flex-shrink:0; margin-top:2px; }
.form-line-suggestion { display:flex; align-items:center; gap:8px; background:#f0fff4; border:1.5px solid rgba(6,199,85,.3); border-radius:var(--r-sm); padding:12px 16px; font-size:13px; }
.form-line-suggestion a { color:var(--green-line); font-weight:700; text-decoration:underline; }
.form-submit {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:18px; border:none; border-radius:50px;
  background:var(--blue); color:white;
  font-size:17px; font-weight:900; font-family:inherit;
  cursor:pointer; box-shadow:0 8px 28px rgba(52,152,219,.35);
  transition:all .3s; letter-spacing:.01em;
}
.form-submit:hover { background:var(--blue-dk); transform:translateY(-2px); box-shadow:0 12px 36px rgba(52,152,219,.45); }
.form-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.form-message { padding:14px 16px; border-radius:var(--r-sm); font-size:14px; font-weight:700; margin-bottom:16px; display:none; }
.form-message.success { background:#e9f7ef; color:#1e7e34; border:1.5px solid #b8dfc7; display:block; }
.form-message.error   { background:#fdf0f0; color:#c0392b; border:1.5px solid #f5c6cb; display:block; }

/* ============================================================
   COMPANY
============================================================ */
.company { background:white; }
.company-inner { max-width:900px; margin:0 auto; display:grid; grid-template-columns:1fr 2fr; gap:60px; align-items:start; }
.company-photo { aspect-ratio:3/4; border-radius:var(--r); background:linear-gradient(135deg,#e8f5fd,#c8e6f7); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; box-shadow:var(--shadow); overflow:hidden; }
.company-photo img { width:100%; height:100%; object-fit:cover; }
.company-photo-icon { font-size:72px; }
.company-photo-label { font-size:13px; font-weight:700; color:var(--blue); }
.company-info h3 { font-size:24px; font-weight:900; margin-bottom:14px; letter-spacing:-.02em; }
.company-greeting { font-size:14px; color:var(--text-lt); line-height:1.9; margin-bottom:28px; padding:16px; background:var(--bg-lt); border-radius:var(--r-sm); border-left:3px solid var(--blue); font-style:normal; }
.company-table { width:100%; border-collapse:collapse; font-size:14px; }
.company-table tr { border-bottom:1px solid var(--border); }
.company-table td, .company-table th { padding:12px 8px; vertical-align:top; line-height:1.7; }
.company-table th { width:100px; color:var(--text-mu); font-weight:700; white-space:nowrap; text-align:left; }

/* ============================================================
   LINE SECTION
============================================================ */
.line-section { background:linear-gradient(135deg,#06C755 0%,#05a848 100%); padding:80px 48px; }
.line-section-inner { max-width:1000px; margin:0 auto; display:flex; align-items:center; gap:60px; }
.line-section-content { display:flex; align-items:flex-start; gap:24px; flex:1; }
.line-section-icon { width:80px; height:80px; background:rgba(255,255,255,.2); border-radius:50%; display:grid; place-items:center; flex-shrink:0; }
.line-section-title { font-size:26px; font-weight:900; color:white; margin-bottom:16px; line-height:1.35; }
.line-section-title span { text-decoration:underline; text-underline-offset:3px; }
.line-benefits { display:flex; flex-direction:column; gap:8px; }
.line-benefits li { color:rgba(255,255,255,.95); font-size:14px; line-height:1.7; }
.line-section-cta { display:flex; flex-direction:column; align-items:center; gap:16px; flex-shrink:0; }
.line-register-btn {
  display:flex; align-items:center; gap:10px;
  background:white; color:var(--green-line);
  padding:16px 28px; border-radius:50px;
  font-size:15px; font-weight:900; text-decoration:none;
  box-shadow:0 6px 24px rgba(0,0,0,.15); transition:all .3s;
  white-space:nowrap;
}
.line-register-btn:hover { transform:translateY(-3px); box-shadow:0 10px 32px rgba(0,0,0,.2); }
.line-qr { width:120px; height:120px; border-radius:12px; background:white; padding:8px; }
.line-note { font-size:11px; color:rgba(255,255,255,.7); text-align:center; max-width:180px; }

/* LINE CTAボタン（ショートコード用）*/
.line-cta-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--green-line); color:white;
  padding:14px 28px; border-radius:50px;
  font-size:15px; font-weight:700; text-decoration:none;
  box-shadow:0 4px 16px rgba(6,199,85,.35); transition:all .3s;
}
.line-cta-btn:hover { background:#05a848; transform:translateY(-2px); }

/* ============================================================
   INSTAGRAM SECTION
============================================================ */
.instagram-section { background:var(--bg-lt); }
.insta-icon-title { vertical-align:middle; margin-right:8px; }
.instagram-feed-placeholder { max-width:600px; margin:0 auto 32px; text-align:center; }
.instagram-notice { font-size:13px; color:var(--text-mu); line-height:1.8; background:white; border-radius:var(--r-sm); padding:16px; border:1.5px dashed var(--border); }
.instagram-follow-btn-wrap { text-align:center; }
.instagram-follow-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color:white; padding:14px 28px; border-radius:50px;
  font-size:15px; font-weight:700; text-decoration:none;
  box-shadow:0 4px 16px rgba(220,39,67,.3); transition:all .3s;
}
.instagram-follow-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(220,39,67,.4); }

/* ============================================================
   SOCIAL SHARE
============================================================ */
.social-share { display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-top:32px; }
.social-share__label { font-size:13px; color:var(--text-mu); font-weight:500; }
.social-share__btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 16px; border-radius:50px; font-size:13px; font-weight:700;
  text-decoration:none; transition:all .25s;
}
.social-share__btn--line { background:var(--green-line); color:white; }
.social-share__btn--twitter { background:#000; color:white; }
.social-share__btn--facebook { background:#1877F2; color:white; }
.social-share__btn:hover { opacity:.85; transform:translateY(-1px); }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb { padding:12px 48px; background:var(--bg-lt); border-bottom:1px solid var(--border); }
.breadcrumb ol { max-width:1200px; margin:0 auto; display:flex; flex-wrap:wrap; align-items:center; gap:4px; list-style:none; }
.breadcrumb li { font-size:12px; color:var(--text-mu); }
.breadcrumb a { color:var(--blue); text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background:var(--text); color:rgba(255,255,255,.7); padding:60px 48px 32px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-logo-text { font-size:20px; font-weight:700; color:white; margin-bottom:12px; }
.footer-logo-text span { color:var(--blue); }
.footer-desc { font-size:13px; line-height:1.8; max-width:280px; margin-bottom:20px; }
.footer-sns { display:flex; gap:12px; }
.footer-sns-link { width:36px; height:36px; border-radius:8px; background:rgba(255,255,255,.1); display:grid; place-items:center; transition:background .2s; }
.footer-sns-link:hover { background:rgba(255,255,255,.2); }
.footer-sns-link--instagram:hover { background:linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.footer-sns-link--line:hover { background:var(--green-line); }
.footer-sns-link--facebook:hover { background:#1877F2; }
.footer-col-title { color:white; font-size:14px; font-weight:700; margin-bottom:16px; letter-spacing:.04em; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { color:rgba(255,255,255,.6); font-size:13px; text-decoration:none; transition:color .2s; }
.footer-col ul li a:hover { color:white; }
.footer-address { font-style:normal; display:flex; flex-direction:column; gap:6px; font-size:13px; }
.footer-address a { color:rgba(255,255,255,.6); text-decoration:none; }
.footer-address a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; font-size:12px; }
.footer-copy { color:rgba(255,255,255,.4); }
.footer-links { display:flex; gap:20px; flex-wrap:wrap; }
.footer-links a { color:rgba(255,255,255,.4); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:rgba(255,255,255,.8); }

/* ============================================================
   RESPONSIVE — TABLET 768〜1024
============================================================ */
@media (max-width:1024px) {
  header { padding:0 24px; }
  .header-center { display:none; }
  section { padding:72px 32px; }
  .hero-inner { grid-template-columns:1fr; gap:40px; padding:56px 32px; }
  .hero h1 { font-size:40px; }
  .hero-visual { max-width:520px; margin:0 auto; width:100%; }
  .problems-grid { grid-template-columns:repeat(2,1fr); }
  .reasons-grid { grid-template-columns:1fr 1fr; }
  .works-grid { grid-template-columns:1fr 1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .company-inner { grid-template-columns:1fr; gap:32px; }
  .company-photo { aspect-ratio:16/7; flex-direction:row; gap:16px; }
  .flow-steps { flex-wrap:wrap; justify-content:center; gap:20px; }
  .flow-connector { display:none; }
  .flow-step { width:calc(33% - 16px); }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .line-section-inner { flex-direction:column; gap:36px; }
  .line-section-cta { flex-direction:row; align-items:center; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤767
============================================================ */
@media (max-width:767px) {
  .site-header { height:60px; }
  .header-inner { padding:0 16px; }
  .header-center,.header-right { display:none; }
  .hamburger { display:flex; }
  .logo-name { font-size:17px; }
  .mobile-cta-bar { display:flex; }
  .line-float-btn { bottom:90px; }
  section { padding:56px 16px; }
  .sec-title { font-size:26px; }
  .sec-lead { font-size:14px; }
  .sec-header { margin-bottom:36px; }
  .hero { padding-top:60px; }
  .hero-inner { grid-template-columns:1fr; gap:28px; padding:36px 16px 90px; }
  .hero h1 { font-size:30px; }
  .hero-sub { font-size:14px; padding:12px 14px; }
  .hero-authority { gap:10px; }
  .auth-badge { min-width:88px; padding:10px 12px; }
  .auth-num { font-size:20px; }
  .hero-ctas { flex-direction:column; }
  .btn-primary,.btn-secondary-outline { font-size:14px; padding:14px 22px; justify-content:center; }
  .problems-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .problem-card { padding:20px 14px; }
  .problem-icon { font-size:36px; margin-bottom:10px; }
  .problem-card p { font-size:13px; }
  .reasons-grid { grid-template-columns:1fr; gap:16px; }
  .solution-headline h2 { font-size:22px; }
  .works-grid { grid-template-columns:1fr; gap:16px; }
  .cat-btn { padding:7px 14px; font-size:13px; }
  .reviews-grid { grid-template-columns:1fr; }
  .review-card { flex-direction:column; gap:14px; }
  .review-avatar { width:48px; height:48px; font-size:24px; }
  .reviews-headline h2 { font-size:22px; }
  .closing { padding:60px 16px 100px; }
  .closing h2 { font-size:26px; }
  .closing p { font-size:14px; }
  .closing-ctas { flex-direction:column; align-items:center; }
  .btn-white,.btn-outline-w { font-size:14px; padding:14px 24px; }
  .closing-tel .tel-num { font-size:28px; }
  .closing-visual { max-width:240px; }
  .form-grid { grid-template-columns:1fr; }
  .company-inner { grid-template-columns:1fr; gap:24px; }
  .company-photo { aspect-ratio:4/2; flex-direction:row; }
  .company-photo-icon { font-size:48px; }
  .company-info h3 { font-size:20px; }
  .flow-steps { flex-direction:column; align-items:center; }
  .flow-connector { display:block; width:2px; height:24px; margin:0; }
  .flow-step { width:100%; max-width:280px; }
  .compare-title,.flow-title,.faq-title { font-size:22px; }
  .faq-q { font-size:14px; padding:16px 14px; }
  .faq-a { padding:0 14px 16px 52px; font-size:13px; }
  .line-section { padding:60px 16px; }
  .line-section-inner { flex-direction:column; gap:28px; }
  .line-section-content { flex-direction:column; }
  .line-section-title { font-size:22px; }
  .line-section-cta { flex-direction:column; width:100%; align-items:center; }
  .line-register-btn { width:100%; justify-content:center; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .site-footer { padding:40px 16px 80px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .breadcrumb { padding:10px 16px; }
}

@media (max-width:375px) {
  .hero h1 { font-size:26px; }
  .problems-grid { grid-template-columns:1fr; }
  .auth-badge { min-width:78px; }
}
