/* ==========================
   PC遠隔サポートひなた / Editorial Studio
   Type-driven, monochrome, single accent
   ========================== */
:root {
  --bg: #ffffff;
  --bg-2: #f8fafc;          /* 淡いスレート（メインサイトと同じ）*/
  --bg-3: #eff3f7;
  --paper: #ffffff;
  --ink: #04384c;           /* メインサイト ダーク藍 */
  --ink-2: #0d2f5e;
  --line: rgba(4,56,76,0.14);
  --line-2: rgba(4,56,76,0.08);
  --muted: #475569;
  --muted-2: #64748b;
  --brand: #1e73be;         /* メインサイト プライマリ青 */
  --brand-2: #74b1e2;       /* 薄青 */
  --brand-3: #04384c;       /* 濃い藍 */
  --pink: #0d9488;          /* メインサイト ティール（CTA用）*/
  --pink-2: #14b8a6;
  --teal: #0d9488;
  --sky: #74b1e2;
  --lime: #5eaa34;
  --line-green: #06c755;    /* LINE 緑（特殊用途）*/
  --sea: #1e73be;
  --sea-2: #74b1e2;
  --accent: #1e73be;        /* メイン → 青 */
  --accent-2: #0d9488;      /* CTA → ティール */
  --sun: #16a34a;           /* グリーン */
  --shadow: 0 30px 80px -20px rgba(10,10,10,0.15);
  --shadow-sm: 0 8px 24px -8px rgba(10,10,10,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", sans-serif;
  font-weight: 400; color: var(--ink); background: var(--bg);
  line-height: 1.85; letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s; }

/* HEADER */
/* HEADER (3 layers: topbar + main + subbar) */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  border-bottom: none;
  display: block;
  box-shadow: none;
}
.topbar {
  background: linear-gradient(135deg, #1e73be 0%, #338df4 100%);
  color: #fff;
  padding: 10px clamp(16px, 4vw, 48px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
}
.topbar-text {
  color: #fff; letter-spacing: 0.02em;
  font-size: clamp(0.92em, 1.15vw, 1.02em); font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 800px) { .topbar-text { display: none; } }
.topbar-social { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.topbar-social a { color: #fff; opacity: 0.85; transition: opacity 0.2s, transform 0.2s; display: inline-flex; align-items: center; }
.topbar-social a svg { width: 16px; height: 16px; }
.topbar-social a:hover { opacity: 1; transform: translateY(-1px); }
.header-main {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 clamp(20px, 4vw, 48px);
}
.subbar {
  background: linear-gradient(135deg, #1e73be 0%, #338df4 100%);
  color: #fff; padding: 10px 0;
  font-size: 0.86em; font-weight: 700; letter-spacing: 0.04em;
  overflow: hidden;
  position: relative;
}
.subbar::before, .subbar::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none;
}
.subbar::before { left: 0; background: linear-gradient(90deg, #1e73be 0%, transparent 100%); }
.subbar::after { right: 0; background: linear-gradient(270deg, #338df4 0%, transparent 100%); }
.subbar-track {
  display: inline-flex; white-space: nowrap; align-items: center;
  animation: subbarScroll 30s linear infinite;
  will-change: transform;
}
.subbar:hover .subbar-track { animation-play-state: paused; }
.subbar-track span {
  padding: 0 28px; position: relative; flex-shrink: 0;
}
.subbar-track span::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 14px; background: rgba(255,255,255,0.4);
}
@keyframes subbarScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .subbar { font-size: 0.72em; }
  .subbar-track span { padding: 0 18px; }
  .subbar-track { animation-duration: 22s; }
}
@media (prefers-reduced-motion: reduce) {
  .subbar-track { animation: none; }
}
.page-hero { padding-top: 200px !important; }
.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink); padding: 4px 0;
}
.brand-mark {
  width: 8px; height: 52px; flex-shrink: 0; border-radius: 4px;
  background: linear-gradient(180deg, #06C755 0%, #1e73be 55%, #fb8500 100%);
  box-shadow: 0 4px 12px rgba(30,115,190,0.25);
}
@media (max-width: 900px) {
  .brand-mark { width: 6px; height: 40px; }
}
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-size: 1.18em; font-weight: 900; letter-spacing: 0;
  color: var(--ink); white-space: nowrap;
  font-feature-settings: "palt"; line-height: 1.1;
}
@media (max-width: 1100px) { .brand-name { font-size: 1em; } }
@media (max-width: 900px) { .brand-name { font-size: 0.88em; } }
.brand-name .accent-dot { color: var(--accent); }
.brand-sub {
  font-size: 0.64em; font-weight: 500; letter-spacing: 0.14em;
  color: var(--muted); margin-top: 5px; white-space: nowrap;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.nav { display: flex; align-items: center; gap: clamp(8px, 1.4vw, 18px); }
.nav a {
  color: var(--ink); transition: all 0.3s ease;
  position: relative; line-height: 1.2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 14px 12px;
  border-radius: 10px;
  overflow: hidden;
}
.nav a::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,115,190,0.06) 0%, rgba(13,148,136,0.04) 100%);
  opacity: 0; transition: opacity 0.3s;
  z-index: 0; border-radius: 10px;
}
.nav a:hover::before { opacity: 1; }
.nav a > * { position: relative; z-index: 1; }
.nav a .en {
  font-family: "Inter", sans-serif;
  font-size: 0.56em; font-weight: 700;
  letter-spacing: 0.2em; color: var(--brand);
  opacity: 0.55; text-transform: uppercase;
  transition: all 0.3s;
}
.nav a .jp { font-size: 0.9em; font-weight: 700; letter-spacing: 0.04em; transition: all 0.3s; }
.nav a:hover .en, .nav a.is-current .en { opacity: 1; transform: translateY(-2px); }
.nav a:hover .jp, .nav a.is-current .jp { color: var(--brand); }
.nav a::after {
  content: ""; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 28px; height: 2px; background: linear-gradient(90deg, var(--brand) 0%, var(--teal) 100%);
  border-radius: 999px; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.nav a:hover::after, .nav a.is-current::after { transform: translateX(-50%) scaleX(1); }
/* nothing — keep clean */
.nav-cta {
  padding: 12px 22px; background: var(--teal); color: #fff !important;
  border: 2px solid var(--teal); font-weight: 700;
  border-radius: 999px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(13,148,136,0.32);
  flex-direction: row !important; gap: 8px !important;
}
.nav-cta .en { color: rgba(255,255,255,0.85) !important; opacity: 1 !important; font-size: 0.6em !important; letter-spacing: 0.16em; }
.nav-cta .jp { font-size: 0.88em !important; color: #fff !important; }
.nav-cta:hover { background: var(--pink-2); border-color: var(--pink-2); transform: translateY(-2px); }
.nav-cta:hover .jp { color: #fff !important; }
.nav-cta::after { display: none !important; }
@media (max-width: 1100px) { .nav { gap: 18px; } }
@media (max-width: 900px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand-logo { width: 36px; height: 36px; }
  .brand-name { font-size: 0.9em; }
  .brand-sub { font-size: 0.56em; }
  .nav .nav-link { display: none; }
}

/* PAGE HERO (sub-pages) */
.page-hero {
  position: relative; min-height: 44vh;
  background: var(--bg-2);
  color: var(--ink); overflow: hidden;
  display: flex; align-items: center;
  padding: 200px clamp(20px, 5vw, 60px) 80px;
}
.page-hero[data-hero] {
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  background-color: #0f1e3a;
}
.page-hero[data-hero]::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(15,30,58,0.78) 0%, rgba(30,115,190,0.55) 60%, rgba(51,141,244,0.45) 100%);
}
.page-hero[data-hero]::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
}
.page-hero[data-hero] h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.28); }
.page-hero[data-hero] p { color: rgba(255,255,255,0.94); text-shadow: 0 1px 6px rgba(0,0,0,0.32); }
.page-hero[data-hero] .eng { color: #ffd166; }
.page-hero[data-hero] .eng::before { background: #ffd166; }
.page-hero[data-hero] ~ .breadcrumb,
.page-hero[data-hero] .breadcrumb { z-index: 3; }
.page-hero[data-hero] .breadcrumb,
.page-hero[data-hero] .breadcrumb a { color: rgba(255,255,255,0.92) !important; }
.page-hero[data-hero] .breadcrumb a:hover { color: #ffd166 !important; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }
.page-hero .eng {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.74em, 1.2vw, 0.84em); font-weight: 600; letter-spacing: 0.32em;
  color: var(--accent); margin-bottom: 24px;
  text-transform: uppercase; display: flex; align-items: center; gap: 14px;
}
.page-hero .eng::before {
  content: ""; width: 40px; height: 1px; background: var(--accent);
}
.page-hero h1 {
  font-size: clamp(1.9em, 4.4vw, 3.4em); font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 22px;
  font-feature-settings: "palt";
}
.page-hero p {
  font-size: clamp(0.92em, 1.5vw, 1.04em);
  color: var(--muted); max-width: 680px;
  line-height: 1.9; letter-spacing: 0.02em; margin: 0;
}
.breadcrumb {
  position: absolute; top: 110px; left: clamp(20px, 5vw, 60px); z-index: 3;
  font-size: 0.74em; letter-spacing: 0.14em; color: var(--muted-2);
  text-transform: uppercase;
}
.breadcrumb a { color: var(--ink); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent); }

/* HERO FULL (HOME) — セゾン風KV */
.hero-full {
  position: relative; min-height: auto;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 260px clamp(24px, 5vw, 80px) 160px;
  text-align: center;
}
.hero-bg { display: none; }
.hero-bg-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-slides .hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroSlide 28s infinite;
  will-change: opacity;
}
.hero-bg-slides .hero-slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
.hero-bg-slides .hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-bg-slides .hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-bg-slides .hero-slide:nth-child(4) { animation-delay: 21s; }
@keyframes heroSlide {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  25%  { opacity: 1; }
  28%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero-full::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at center, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.15) 90%, rgba(255,255,255,0) 100%);
  display: block;
}
.hero-full::after { display: none; }
/* Friendly floating orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.hero-orbs .orb {
  position: absolute; border-radius: 50%;
  filter: blur(36px); opacity: 0.55; mix-blend-mode: screen;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orbs .orb-1 { width: 260px; height: 260px; background: #ffb703; top: 8%; left: -4%; animation-delay: 0s; }
.hero-orbs .orb-2 { width: 200px; height: 200px; background: #06C755; top: 56%; right: 6%; animation-delay: 2s; animation-duration: 18s; }
.hero-orbs .orb-3 { width: 180px; height: 180px; background: #1e73be; bottom: 8%; left: 28%; animation-delay: 5s; animation-duration: 16s; }
.hero-orbs .orb-4 { width: 150px; height: 150px; background: #fb8500; top: 28%; right: 22%; animation-delay: 7s; animation-duration: 20s; }
.hero-orbs .orb-5 { width: 130px; height: 130px; background: #74b1e2; bottom: 30%; left: 6%; animation-delay: 9s; animation-duration: 22s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -28px) scale(1.08); }
  50% { transform: translate(-18px, 22px) scale(0.95); }
  75% { transform: translate(22px, 12px) scale(1.04); }
}
.hero-sun {
  position: absolute; top: -8%; right: -8%; z-index: 0;
  width: clamp(280px, 38vw, 520px); height: auto;
  opacity: 0.22;
  filter: blur(2px);
  pointer-events: none;
}
.hero-stripes { display: none; }
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 880px; color: var(--ink); order: 1;
  margin: 0 auto; text-align: center;
}
.hero-eng {
  display: inline-block; padding: 6px 18px;
  background: var(--brand); color: #fff; border-radius: 999px;
  font-size: clamp(0.72em, 1.1vw, 0.8em); font-weight: 700; letter-spacing: 0.18em;
  margin-bottom: 24px;
}
.hero-eng::before { display: none; }
.hero-full h1 {
  font-size: clamp(1.8em, 4.4vw, 3.2em); font-weight: 800;
  color: var(--ink); line-height: 1.85; letter-spacing: 0.01em;
  margin-bottom: 48px;
  font-feature-settings: "palt";
}
.hero-full h1 br { display: block; content: ""; margin-bottom: 0.12em; }
.hero-full h1 .accent {
  color: var(--brand); font-style: normal; font-weight: 900;
  background: linear-gradient(transparent 65%, rgba(13,148,136,0.28) 65%);
  padding: 0 4px;
}
.hero-full h1 .sub-line {
  display: block; font-size: 0.55em; font-weight: 700; color: var(--muted);
  letter-spacing: 0.02em; margin-top: 14px;
}
.hero-full p {
  font-size: clamp(0.96em, 1.5vw, 1.08em);
  color: var(--ink); max-width: 600px; margin-bottom: 32px;
  line-height: 2; letter-spacing: 0.02em;
}
.hero-full p strong { color: var(--pink); font-weight: 700; }

.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin: 0 auto; padding: 0;
  border: none;
  max-width: 760px;
}
.hero-badge { padding: 14px 22px !important; }
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-size: clamp(0.84em, 1.4vw, 0.93em); font-weight: 600; letter-spacing: 0.02em;
  background: #fff; border: 1px solid var(--line-2); padding: 10px 14px; border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.hero-badge .dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 12px; font-weight: 700;
  margin-right: 0; vertical-align: middle;
}
.hero-badge .dot::before { content: "✓"; }

.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.scroll-cue {
  position: absolute; bottom: 32px; right: clamp(24px, 5vw, 80px);
  z-index: 3; color: rgba(255,255,255,0.55); font-size: 0.72em;
  letter-spacing: 0.32em; font-weight: 600; font-family: "Inter", sans-serif;
  writing-mode: vertical-rl; text-orientation: mixed;
}
.scroll-cue::after {
  content: ""; display: block; width: 1px; height: 56px; background: rgba(255,255,255,0.4);
  margin: 12px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* BUTTONS — セゾン風（角丸pill + 影） */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 18px 40px; font-weight: 700;
  letter-spacing: 0.06em; font-size: clamp(0.9em, 1.5vw, 1em);
  border: 2px solid transparent; cursor: pointer; transition: all 0.3s;
  border-radius: 999px; min-width: 220px; line-height: 1.2;
}
.btn-line {
  background: #06C755; color: #fff; border-color: #06C755;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 32px; font-weight: 700; font-size: clamp(0.9em, 1.5vw, 1em);
  border-radius: 999px; min-width: 200px; line-height: 1.2;
  transition: all 0.3s; border: 2px solid #06C755;
  box-shadow: 0 8px 18px rgba(6,199,85,0.32);
}
.btn-line:hover { background: #05a847; border-color: #05a847; transform: translateY(-2px); }
.btn-line svg { flex-shrink: 0; }
.btn-sun svg { flex-shrink: 0; }
.hero-badge .bicon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
  color: #fff; font-weight: 800; font-size: 0.86em;
  flex-shrink: 0;
}
.hero-badge .bicon svg { width: 16px; height: 16px; }
.hero-badge .bicon.line { background: #06C755; }
.hero-badge .bicon.rs { background: #1e73be; }
.hero-badge .bicon.yen { background: #fb8500; }
.hero-badge .bicon.check { background: #0d9488; }
.hero-badge .bicon.shield { background: #1e73be; }
.hero-badge .bicon.tech { background: #6e4880; }
.hero-badge { display: inline-flex; align-items: center; }
.hero-badge .dot { display: none; }
.btn-sun { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 8px 18px rgba(232,84,119,0.28); }
.btn-sun:hover { background: var(--pink-2); border-color: var(--pink-2); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(232,84,119,0.4); }
.btn-sea { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 8px 18px rgba(144,100,162,0.28); }
.btn-sea:hover { background: var(--brand-3); border-color: var(--brand-3); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(6px); }

/* SECTION BASE */
section { position: relative; }
.section-pad { padding: clamp(96px, 13vw, 180px) clamp(20px, 5vw, 80px); }
.container { max-width: 1280px; margin: 0 auto; }
.section-head { margin-bottom: clamp(64px, 8vw, 100px); max-width: 880px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eng {
  font-family: "Inter", sans-serif;
  font-size: 0.78em; font-weight: 700;
  letter-spacing: 0.18em; color: var(--brand);
  margin-bottom: 18px; display: block;
  text-transform: uppercase;
}
.section-head.center { text-align: center; }
.section-head .eng::before { display: none; }
.section-head .jp {
  font-size: clamp(1.6em, 4vw, 2.6em);
  color: var(--ink); letter-spacing: 0; display: block; font-weight: 800;
  line-height: 1.5; font-feature-settings: "palt";
}
.section-head .lead {
  font-size: clamp(0.96em, 1.6vw, 1.08em); color: var(--muted);
  max-width: 640px; margin: 28px 0 0; line-height: 2; letter-spacing: 0.02em;
}
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head .divider { display: none; }

.sec-dark { background: var(--bg); }
.sec-dark-2 { background: var(--bg-2); }
.sec-dark-3 { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%); color: #fff; }
.sec-dark-3 .section-head .eng { color: rgba(255,255,255,0.85); }
.sec-dark-3 .section-head .jp { color: #fff; }
.sec-dark-3 .section-head .lead { color: rgba(255,255,255,0.85); }

/* CONCEPT */
.concept-body {
  font-size: clamp(1.1em, 2.4vw, 1.6em);
  line-height: 1.95; color: var(--ink);
  max-width: 920px; margin: 0 auto; text-align: center;
  letter-spacing: 0.02em; font-weight: 500;
}
.concept-body strong { color: var(--accent); font-weight: 700; }

/* HOME MENU GRID — セゾン風ふんわりカード */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  background: transparent;
  border: none;
}
.menu-card {
  display: block; background: var(--paper);
  padding: clamp(32px, 4vw, 40px) clamp(24px, 3vw, 32px);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
  border-radius: 14px; border: 1px solid var(--line-2);
  box-shadow: 0 4px 14px rgba(144,100,162,0.05);
}
.menu-card:hover { transform: translateY(-6px); border-color: var(--brand-2); box-shadow: 0 16px 36px rgba(144,100,162,0.18); }
.menu-card .eng {
  font-family: "Inter", sans-serif;
  font-size: 0.72em; font-weight: 700; color: var(--brand);
  letter-spacing: 0.18em; margin-bottom: 14px; display: block;
  text-transform: uppercase;
}
.menu-card h3 {
  font-size: clamp(1.15em, 2.2vw, 1.32em); font-weight: 800;
  color: var(--ink); margin-bottom: 14px; letter-spacing: -0.005em;
  line-height: 1.5; font-feature-settings: "palt";
}
.menu-card p {
  font-size: clamp(0.88em, 1.5vw, 0.94em); color: var(--muted);
  line-height: 1.95; letter-spacing: 0.02em;
}
.menu-card .more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 0.84em; font-weight: 700;
  color: var(--pink); letter-spacing: 0.04em;
  transition: gap 0.3s;
}
.menu-card:hover .more { gap: 14px; }
.menu-card .more::after { content: "→"; transition: transform 0.3s; }
.menu-card:hover .more::after { transform: translateX(4px); }

/* NUMBERS */
.numbers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0;
}
.number-item { padding: 40px 20px; border-right: 1px solid rgba(250,250,247,0.12); text-align: center; }
.number-item:last-child { border-right: none; }
.sec-dark-3 .number-item .eng {
  font-family: "Inter", sans-serif; font-size: 0.74em; font-weight: 600;
  color: var(--accent-2); letter-spacing: 0.32em; margin-bottom: 28px;
  text-transform: uppercase;
}
.sec-dark-3 .number-item .value {
  font-family: "Inter", sans-serif; font-size: clamp(3.6em, 9vw, 6em);
  font-weight: 800; color: var(--bg); line-height: 0.95;
  letter-spacing: -0.04em; margin-bottom: 22px;
}
.sec-dark-3 .number-item .value .unit {
  font-size: 0.26em; color: var(--accent-2); font-weight: 700;
  letter-spacing: 0.08em; margin-left: 10px;
}
.sec-dark-3 .number-item .desc {
  color: rgba(250,250,247,0.62); font-size: clamp(0.84em, 1.7vw, 0.92em);
  letter-spacing: 0.1em;
}
@media (max-width: 700px) {
  .number-item { border-right: none; border-bottom: 1px solid rgba(250,250,247,0.12); }
  .number-item:last-child { border-bottom: none; }
}

/* FINAL CTA */
.final-cta {
  position: relative;
  background: var(--ink) url('https://m-pns.jp/wp-content/uploads/2020/08/IMG_5503-scaled.jpg') center/cover;
  text-align: center; color: var(--bg);
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 100%);
  z-index: 1;
}
.final-cta-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.final-cta .eng {
  font-family: "Inter", sans-serif; font-size: 0.78em; font-weight: 600;
  letter-spacing: 0.4em; color: var(--accent-2); margin-bottom: 32px;
  text-transform: uppercase;
}
.final-cta h2 {
  font-size: clamp(2em, 5vw, 3.4em); font-weight: 800;
  color: var(--bg); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 36px;
  font-feature-settings: "palt";
}
.final-cta p {
  font-size: clamp(0.96em, 1.7vw, 1.08em);
  color: rgba(250,250,247,0.78); line-height: 1.95; margin: 0 auto 56px; max-width: 600px;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 20px 36px; min-width: 220px;
  color: var(--bg); font-weight: 600; letter-spacing: 0.08em; font-size: clamp(0.9em, 1.5vw, 0.96em);
  transition: all 0.3s; border: 1px solid rgba(250,250,247,0.35);
  border-radius: 999px;
}
.cta-btn.primary { background: var(--accent-2); color: var(--ink); border-color: var(--accent-2); }
.cta-btn.primary:hover { background: var(--bg); border-color: var(--bg); transform: translateY(-2px); }
.cta-btn.secondary { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.cta-btn.secondary:hover { background: transparent; color: var(--bg); }
.cta-btn.ghost:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* FOOTER — bright blue, card-style */
.site-footer {
  background: linear-gradient(135deg, #338df4 0%, #1e73be 100%);
  color: #fff;
  padding: clamp(56px, 6vw, 80px) clamp(20px, 5vw, 48px) 0;
}
.footer-top { max-width: 1280px; margin: 0 auto; padding-bottom: clamp(40px, 5vw, 56px); }
.ft-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: clamp(24px, 3vw, 36px); }
@media (max-width: 900px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-brand h3 { color: #fff; font-size: clamp(1.1em, 2.2vw, 1.32em); font-weight: 800; margin-bottom: 14px; letter-spacing: 0.02em; }
.ft-tagline { color: rgba(255,255,255,0.88); margin-bottom: 24px; font-size: 0.92em; line-height: 1.85; }
.ft-social { display: flex; gap: 10px; flex-wrap: wrap; }
.ft-social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  overflow: hidden;
}
.ft-social a svg { width: 22px; height: 22px; }
.ft-social a:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,0.2); }
.ft-social a.sn-line { color: #06C755; }
.ft-social a.sn-line:hover { background: #06C755; color: #fff; }
.ft-social a.sn-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.ft-social a.sn-x { background: #000; color: #fff; }
.ft-social a.sn-yt { color: #FF0000; }
.ft-social a.sn-yt:hover { background: #FF0000; color: #fff; }
.ft-card {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border-radius: 16px; padding: clamp(24px, 3vw, 32px);
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.18);
}
.ft-card-head {
  font-weight: 800; font-size: 1.04em; color: #fff;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.ft-tag {
  display: inline-block; background: rgba(255,255,255,0.9); color: #1e73be;
  font-size: 0.72em; font-weight: 700; padding: 3px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.ft-row {
  color: rgba(255,255,255,0.95); font-size: 0.92em;
  line-height: 1.8; margin-bottom: 12px;
  display: flex; gap: 10px; align-items: flex-start;
}
.ft-row .ic { flex-shrink: 0; opacity: 0.95; }
.ft-buttons { margin-top: auto; padding-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.ft-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 0.86em;
  letter-spacing: 0.04em; transition: all 0.25s;
}
.ft-btn-light { background: #fff; color: #1e73be; }
.ft-btn-light:hover { background: rgba(255,255,255,0.88); transform: translateY(-2px); }
.ft-btn-grad { background: linear-gradient(135deg, #fb8500 0%, #ffb703 100%); color: #fff; }
.ft-btn-grad:hover { transform: translateY(-2px); }
.footer-bottom-bar {
  background: rgba(0,0,0,0.18); margin: 0 calc(-1*clamp(20px,5vw,48px));
  padding: 28px clamp(20px, 5vw, 48px);
}
.ft-links {
  max-width: 1280px; margin: 0 auto 18px;
  display: flex; flex-wrap: wrap; gap: 0 28px; justify-content: center;
}
.ft-links a {
  color: rgba(255,255,255,0.92); font-size: 0.88em; font-weight: 500;
  padding: 6px 0; transition: opacity 0.2s;
}
.ft-links a:hover { opacity: 0.75; }
.ft-copy {
  max-width: 1280px; margin: 0 auto;
  text-align: center; color: rgba(255,255,255,0.72); font-size: 0.78em; letter-spacing: 0.06em;
}
.site-footer .footer-inner,
.site-footer .footer-grid,
.site-footer .footer-brand-name,
.site-footer .footer-brand-text,
.site-footer .footer-col,
.site-footer .footer-col h4,
.site-footer .footer-col ul,
.site-footer .footer-col li,
.site-footer .footer-bottom { all: revert; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(250,250,247,0.1);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand-name { color: var(--bg); font-weight: 800; font-size: 1.2em; letter-spacing: 0.02em; margin-bottom: 20px; }
.footer-brand-text { font-size: 0.86em; line-height: 1.95; letter-spacing: 0.02em; }
.footer-col h4 {
  color: var(--bg); font-size: 0.74em; font-weight: 600;
  letter-spacing: 0.22em; margin-bottom: 22px; font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; font-size: 0.88em; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 0.78em; letter-spacing: 0.04em;
}
.footer-bottom a:hover { color: var(--accent-2); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s ease, transform 1s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(56px, 6vw, 96px); align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  background: url('https://m-pns.jp/wp-content/uploads/2020/08/IMG_5503-scaled.jpg') center/cover;
  position: relative; filter: grayscale(15%);
}
.about-image::after {
  content: "01"; position: absolute; bottom: 24px; left: 24px;
  font-family: "Inter", sans-serif; font-size: 0.84em; font-weight: 600;
  color: var(--bg); background: var(--ink); padding: 8px 14px;
  letter-spacing: 0.16em;
}
.about-text .eng {
  font-family: "Inter", sans-serif; font-size: 0.78em; font-weight: 600;
  color: var(--accent); letter-spacing: 0.3em; margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
  text-transform: uppercase;
}
.about-text .eng::before {
  content: ""; width: 40px; height: 1px; background: var(--accent);
}
.about-text h2 {
  font-size: clamp(1.9em, 4.2vw, 2.8em); font-weight: 800;
  color: var(--ink); line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 36px;
  font-feature-settings: "palt";
}
.about-text p {
  font-size: clamp(0.96em, 1.7vw, 1.04em); color: var(--muted);
  line-height: 2.05; margin-bottom: 22px; letter-spacing: 0.02em;
}
.about-text strong { color: var(--ink); font-weight: 700; }

/* Strengths */
.strengths-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px; background: var(--line-2); border: 1px solid var(--line-2);
}
.strength-card {
  background: var(--paper); padding: clamp(40px, 4.5vw, 56px) clamp(28px, 4vw, 40px);
  transition: all 0.4s;
}
.strength-card:hover { background: var(--ink); color: var(--bg); }
.strength-num {
  font-family: "Inter", sans-serif; font-size: 2.2em; font-weight: 800;
  color: var(--accent); letter-spacing: -0.04em; margin-bottom: 24px;
  transition: color 0.4s;
}
.strength-card:hover .strength-num { color: var(--accent-2); }
.strength-card h3 {
  font-size: clamp(1.08em, 2.1vw, 1.22em); font-weight: 700;
  color: inherit; margin-bottom: 16px; letter-spacing: -0.005em;
}
.strength-card p {
  font-size: clamp(0.88em, 1.6vw, 0.94em);
  color: var(--muted); line-height: 1.95; letter-spacing: 0.02em;
  transition: color 0.4s;
}
.strength-card:hover p { color: rgba(250,250,247,0.65); }

/* Shop */
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
}
.shop-card {
  background: var(--paper); padding: clamp(32px, 4vw, 40px);
  border: 1px solid var(--line-2);
  transition: all 0.3s;
}
.shop-card:hover { border-color: var(--ink); transform: translateY(-4px); }
.shop-card .tag {
  display: inline-block; padding: 5px 12px; background: var(--ink); color: var(--bg);
  font-size: 0.7em; font-weight: 600; letter-spacing: 0.18em; margin-bottom: 18px;
  font-family: "Inter", sans-serif; text-transform: uppercase;
}
.shop-card.sub .tag { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.shop-card h3 { font-size: clamp(1.08em, 2.1vw, 1.2em); font-weight: 700; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.005em; }
.shop-card p { font-size: clamp(0.88em, 1.6vw, 0.94em); color: var(--muted); line-height: 1.95; letter-spacing: 0.02em; }

/* SERVICES */
.troubles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0; margin-bottom: clamp(64px, 8vw, 96px);
  border-top: 1px solid var(--line-2);
}
.trouble {
  background: transparent; padding: 22px 4px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--line-2);
  transition: all 0.25s;
}
.trouble:hover { background: var(--bg-2); padding-left: 20px; padding-right: 20px; }
.trouble-icon { display: none; }
.trouble-label { color: var(--ink); font-weight: 600; font-size: clamp(0.92em, 1.7vw, 1em); letter-spacing: 0.02em; position: relative; padding-left: 24px; }
.trouble-label::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
}

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1px; background: var(--line-2); border: 1px solid var(--line-2);
}
.service-card {
  background: var(--paper); padding: clamp(40px, 4.5vw, 56px) clamp(28px, 4vw, 40px);
  transition: all 0.4s;
}
.service-card:hover { background: var(--ink); color: var(--bg); }
.service-card .label {
  font-family: "Inter", sans-serif; font-size: 0.74em; font-weight: 600;
  color: var(--muted); letter-spacing: 0.22em; margin-bottom: 18px;
  text-transform: uppercase; transition: color 0.4s;
}
.service-card:hover .label { color: var(--accent-2); }
.service-card h3 {
  font-size: clamp(1.2em, 2.4vw, 1.42em); font-weight: 800;
  color: inherit; margin-bottom: 18px; letter-spacing: -0.01em; line-height: 1.35;
  font-feature-settings: "palt";
}
.service-card p {
  font-size: clamp(0.9em, 1.6vw, 0.96em); color: var(--muted);
  line-height: 2; letter-spacing: 0.02em;
  transition: color 0.4s;
}
.service-card:hover p { color: rgba(250,250,247,0.65); }

/* FLOW */
.flow-list { display: flex; flex-direction: column; gap: 0; max-width: 1080px; margin: 0 auto; }
.flow-row {
  display: grid; grid-template-columns: clamp(80px, 12vw, 160px) 1fr;
  gap: clamp(24px, 4vw, 64px); align-items: start;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line-2);
}
.flow-row:last-child { border-bottom: none; }
.flow-num-big {
  font-family: "Inter", sans-serif; font-size: clamp(3.2em, 8vw, 5.6em);
  font-weight: 800; color: var(--ink); line-height: 0.9; letter-spacing: -0.06em;
}
.flow-row.final .flow-num-big { color: var(--accent); }
.flow-content .label {
  font-family: "Inter", sans-serif; font-size: 0.76em;
  color: var(--accent); letter-spacing: 0.26em; font-weight: 600; margin-bottom: 18px;
  text-transform: uppercase;
}
.flow-content h3 {
  font-size: clamp(1.3em, 2.8vw, 1.7em); font-weight: 800;
  color: var(--ink); margin-bottom: 20px; letter-spacing: -0.01em; line-height: 1.4;
  font-feature-settings: "palt";
}
.flow-content p {
  font-size: clamp(0.94em, 1.7vw, 1.02em); color: var(--muted);
  line-height: 2.05; letter-spacing: 0.02em;
}
.flow-content strong { color: var(--ink); font-weight: 700; }
.flow-content a { color: var(--accent); border-bottom: 1px solid var(--accent); font-weight: 600; }
.flow-content a:hover { opacity: 0.7; }

/* PAYMENT */
.payment-promise {
  background: var(--ink); color: var(--bg);
  padding: clamp(36px, 4.5vw, 56px);
  margin-bottom: clamp(56px, 7vw, 80px);
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  border-left: 4px solid var(--accent);
}
.payment-promise-icon {
  width: 56px; height: 56px; background: var(--accent); color: var(--bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.6em; flex-shrink: 0;
  font-family: "Inter", sans-serif;
}
.payment-promise-text { flex: 1; min-width: 260px; }
.payment-promise-title { color: var(--bg); font-weight: 800; font-size: clamp(1.2em, 2.4vw, 1.5em); letter-spacing: -0.01em; margin-bottom: 12px; }
.payment-promise-desc { color: rgba(250,250,247,0.78); font-size: clamp(0.92em, 1.6vw, 1em); line-height: 1.9; letter-spacing: 0.02em; }

.payment-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1px; background: var(--line-2); border: 1px solid var(--line-2);
}
.payment-method {
  background: var(--paper); padding: clamp(36px, 4vw, 48px) 28px;
  text-align: left; transition: all 0.4s;
}
.payment-method:hover { background: var(--ink); color: var(--bg); }
.payment-icon { font-size: 2.2em; margin-bottom: 18px; opacity: 0.85; }
.payment-method h3 { font-size: clamp(1.04em, 2vw, 1.16em); font-weight: 700; color: inherit; margin-bottom: 12px; letter-spacing: -0.005em; }
.payment-method p { font-size: clamp(0.88em, 1.6vw, 0.92em); color: var(--muted); line-height: 1.85; letter-spacing: 0.02em; transition: color 0.4s; }
.payment-method:hover p { color: rgba(250,250,247,0.65); }

/* CASES */
.cases-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(32px, 4vw, 56px);
}
.case-card { display: block; background: transparent; transition: all 0.3s; }
.case-card:hover { transform: translateY(-6px); }
.case-thumb { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; overflow: hidden; filter: grayscale(10%); transition: filter 0.4s; }
.case-card:hover .case-thumb { filter: grayscale(0%); }
.case-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--bg); color: var(--ink); padding: 6px 14px;
  font-size: 0.7em; font-weight: 700; letter-spacing: 0.18em; font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.case-body { padding: 28px 0 0; }
.case-meta { font-size: 0.78em; color: var(--muted); letter-spacing: 0.14em; margin-bottom: 14px; font-weight: 600; font-family: "Inter", sans-serif; text-transform: uppercase; }
.case-card h3 { font-size: clamp(1.18em, 2.4vw, 1.36em); font-weight: 800; color: var(--ink); line-height: 1.5; margin-bottom: 16px; letter-spacing: -0.01em; font-feature-settings: "palt"; }
.case-card p { font-size: clamp(0.9em, 1.6vw, 0.96em); color: var(--muted); line-height: 1.95; letter-spacing: 0.02em; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 920px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item {
  background: transparent; border-bottom: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 36px) clamp(12px, 2vw, 24px);
  cursor: pointer; transition: all 0.25s;
}
.faq-item:hover { background: var(--bg-2); }
.faq-item[open] { background: var(--bg-2); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; gap: 24px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-mark {
  width: 40px; flex-shrink: 0; font-family: "Inter", sans-serif;
  font-size: 0.84em; color: var(--accent); font-weight: 700; letter-spacing: 0.18em;
  padding-top: 4px;
}
.faq-q-mark::after { content: "."; }
.faq-q-text { flex: 1; font-size: clamp(1em, 1.9vw, 1.18em); font-weight: 700; color: var(--ink); line-height: 1.6; letter-spacing: -0.005em; font-feature-settings: "palt"; }
.faq-toggle { color: var(--ink); font-size: 1.4em; font-weight: 400; transition: transform 0.3s; flex-shrink: 0; font-family: "Inter", sans-serif; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer { margin-top: 24px; padding-left: 64px; }
.faq-answer p { font-size: clamp(0.9em, 1.6vw, 0.98em); color: var(--muted); line-height: 2.1; margin-bottom: 12px; letter-spacing: 0.02em; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); font-weight: 700; }

/* CONTACT */
.contact-methods {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1px; margin-bottom: clamp(56px, 7vw, 80px);
  background: var(--line-2); border: 1px solid var(--line-2);
}
.contact-method {
  background: var(--paper); padding: clamp(40px, 4.5vw, 56px);
  text-align: left; transition: all 0.4s;
}
.contact-method:hover { background: var(--ink); color: var(--bg); }
.contact-method-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6em; color: var(--ink); margin-bottom: 28px;
  border: 1px solid var(--line);
  transition: all 0.4s;
}
.contact-method:hover .contact-method-icon { color: var(--bg); border-color: rgba(250,250,247,0.3); }
.contact-method .label {
  font-family: "Inter", sans-serif; font-size: 0.74em;
  color: var(--accent); letter-spacing: 0.22em; font-weight: 600; margin-bottom: 10px;
  text-transform: uppercase;
}
.contact-method:hover .label { color: var(--accent-2); }
.contact-method .big {
  font-size: clamp(1.4em, 3vw, 1.8em); font-weight: 800;
  color: inherit; margin-bottom: 8px; letter-spacing: -0.02em;
  font-feature-settings: "palt";
}
.contact-method .sub { font-size: 0.86em; color: var(--muted); letter-spacing: 0.02em; transition: color 0.4s; }
.contact-method:hover .sub { color: rgba(250,250,247,0.65); }

.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(32px, 4vw, 48px); align-items: start; }
.area-tag {
  font-size: 0.74em; font-weight: 600; letter-spacing: 0.22em;
  padding: 6px 14px; margin-bottom: 20px; display: inline-block;
  font-family: "Inter", sans-serif; color: var(--bg); text-transform: uppercase;
}
.area-tag.mz { background: var(--ink); }
.area-tag.ky { background: var(--accent); }
.area-list {
  background: var(--paper); border: 1px solid var(--line-2);
  padding: clamp(24px, 3.5vw, 36px); color: var(--ink);
  line-height: 2.1; font-size: clamp(0.94em, 1.7vw, 1em); letter-spacing: 0.02em;
}
.area-list strong { color: var(--ink); display: block; margin-bottom: 12px; font-weight: 700; font-size: 1.1em; }

/* ============================
   SAISON-style sections (kurashi-saison風)
   ============================ */
/* お悩みカード */
.troubles-call {
  background: linear-gradient(135deg, #f0f9f7 0%, #e6f0f9 100%);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 56px);
  text-align: center;
  border: 2px dashed var(--brand-2); border-radius: 24px;
}
.troubles-call-head {
  font-size: clamp(1.4em, 3vw, 1.8em); font-weight: 800; color: var(--ink);
  margin-bottom: 36px; letter-spacing: -0.01em; line-height: 1.5;
}
.troubles-call-head .accent { color: var(--accent); }
.troubles-call ul {
  list-style: none; max-width: 720px; margin: 0 auto 40px;
  display: grid; gap: 14px;
}
.troubles-call li {
  background: var(--paper); padding: 18px 24px; border-radius: 6px;
  font-weight: 600; color: var(--ink); font-size: clamp(0.96em, 1.85vw, 1.06em);
  letter-spacing: 0.02em; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.troubles-call li::before {
  content: "✓"; color: #fff; font-weight: 700; font-size: 0.9em; flex-shrink: 0;
  width: 28px; height: 28px; background: var(--brand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.troubles-conclusion {
  font-size: clamp(1.1em, 2.4vw, 1.4em); font-weight: 800; color: var(--ink);
  margin-top: 24px; line-height: 1.6; letter-spacing: -0.01em;
}
.troubles-conclusion .accent { color: var(--accent); }

/* POINTカード — セゾン風 紫テーマ */
.points-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.point-card {
  background: var(--paper); border-radius: 16px;
  padding: clamp(36px, 4vw, 48px) clamp(28px, 3.5vw, 36px);
  transition: all 0.3s; box-shadow: 0 6px 20px rgba(144,100,162,0.08);
  position: relative; border: 2px solid transparent;
}
.point-card:hover { transform: translateY(-6px); border-color: var(--brand); box-shadow: 0 18px 40px rgba(144,100,162,0.2); }
.point-card .point-num {
  display: inline-block; font-family: "Inter", sans-serif;
  font-size: 0.78em; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
  padding: 8px 18px; border-radius: 999px;
  letter-spacing: 0.14em; margin-bottom: 22px;
  box-shadow: 0 4px 10px rgba(144,100,162,0.3);
}
.point-card h3 {
  font-size: clamp(1.2em, 2.4vw, 1.4em); font-weight: 800;
  color: var(--ink); line-height: 1.5; margin-bottom: 18px; letter-spacing: -0.005em;
  font-feature-settings: "palt";
}
.point-card h3 .accent {
  color: var(--brand);
  background: linear-gradient(transparent 65%, rgba(232,84,119,0.2) 65%);
  padding: 0 2px;
}
.point-card p {
  font-size: clamp(0.94em, 1.65vw, 1em); color: var(--muted);
  line-height: 2.05; letter-spacing: 0.02em;
}

/* 料金表 */
.price-table {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden;
  margin-bottom: 32px;
}
.price-table-head {
  background: var(--ink); color: var(--bg); padding: 22px clamp(24px, 3vw, 32px);
  font-weight: 800; font-size: clamp(1.04em, 2vw, 1.16em); letter-spacing: 0.02em;
}
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  padding: 22px clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--line-2);
}
.price-row:last-child { border-bottom: none; }
.price-row dt { color: var(--ink); font-weight: 600; font-size: clamp(0.94em, 1.7vw, 1em); letter-spacing: 0.02em; }
.price-row dd { color: var(--ink); font-weight: 800; font-size: clamp(1em, 1.9vw, 1.12em); font-family: "Inter", "Hiragino Sans", sans-serif; letter-spacing: -0.01em; white-space: nowrap; }
.price-row.highlight { background: var(--bg-2); }
.price-row.highlight dd { color: var(--accent); }
.price-note {
  font-size: 0.85em; color: var(--muted-2); line-height: 1.85;
  padding: 20px 0; letter-spacing: 0.02em;
}

/* お客様の声 */
.voices-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.voice-card {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 16px;
  padding: clamp(28px, 3.5vw, 36px); transition: all 0.3s;
  box-shadow: 0 6px 18px rgba(144,100,162,0.06);
}
.voice-card:hover { transform: translateY(-4px); border-color: var(--brand-2); box-shadow: 0 14px 30px rgba(144,100,162,0.15); }
.voice-tag {
  display: inline-block; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%); color: #fff;
  padding: 6px 14px; border-radius: 999px; font-size: 0.78em; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 18px;
}
.voice-card h3 {
  font-size: clamp(1.1em, 2.2vw, 1.24em); font-weight: 800;
  color: var(--ink); line-height: 1.6; margin-bottom: 18px; letter-spacing: -0.005em;
  font-feature-settings: "palt";
}
.voice-quote {
  color: var(--muted); line-height: 1.95; font-size: clamp(0.9em, 1.65vw, 0.96em);
  letter-spacing: 0.02em; margin-bottom: 22px;
  padding-left: 16px; border-left: 3px solid var(--pink);
}
.voice-meta {
  display: flex; gap: 16px; font-size: 0.82em; color: var(--muted-2);
  border-top: 1px solid var(--line-2); padding-top: 16px;
  flex-wrap: wrap;
}
.voice-meta span strong { color: var(--ink); font-weight: 700; margin-right: 4px; }

/* 大きな電話CTA — メインサイト風（白＋ティール枠）*/
.tel-cta-banner {
  background: linear-gradient(135deg, #f0f9f7 0%, #fff 100%);
  border: 3px solid var(--teal); border-radius: 24px;
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 4vw, 48px); text-align: center;
  max-width: 880px; margin: 0 auto;
  box-shadow: 0 20px 50px rgba(13,148,136,0.18);
  position: relative;
}
.tel-cta-banner::before {
  content: "丁寧な説明で安心！"; position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; padding: 6px 24px; border-radius: 999px;
  font-size: 0.84em; font-weight: 700; letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(13,148,136,0.4);
}
.tel-cta-banner .lead {
  font-size: clamp(1.04em, 2vw, 1.2em); font-weight: 700; color: var(--ink);
  margin: 12px 0 18px; letter-spacing: -0.005em;
}
.tel-cta-banner .lead .accent { color: var(--pink); }
.tel-cta-banner .tel-num {
  display: inline-flex; align-items: center; gap: 14px; margin: 12px 0 18px;
  font-family: "Inter", "Hiragino Sans", sans-serif;
  font-size: clamp(2.2em, 7vw, 3.8em); font-weight: 800;
  color: var(--pink); letter-spacing: -0.02em;
  text-decoration: none;
}
.tel-cta-banner .tel-num::before {
  content: "📞"; font-size: 0.7em; color: var(--pink);
}
.tel-cta-banner .tel-num:hover { color: var(--pink-2); }
.tel-cta-banner .tel-hours {
  font-size: 0.92em; color: var(--muted); letter-spacing: 0.02em;
  padding-top: 12px; border-top: 1px solid var(--line-2); margin-top: 18px;
}
.tel-cta-banner .tel-hours strong { color: var(--ink); font-weight: 700; }
.tel-cta-banner .checklist {
  list-style: none; margin-top: 24px; display: grid; gap: 8px;
  max-width: 460px; margin-left: auto; margin-right: auto; text-align: left;
}
.tel-cta-banner .checklist li {
  font-size: 0.92em; color: var(--muted); padding-left: 24px; position: relative;
}
.tel-cta-banner .checklist li::before {
  content: "・"; position: absolute; left: 8px; color: var(--accent); font-weight: 800;
}

/* TIPS吹き出し */
.tips-block {
  background: var(--bg-2); border-radius: 12px; padding: clamp(28px, 4vw, 40px);
  margin-top: 32px; position: relative;
}
.tips-block::before {
  content: "TIPS"; display: inline-block; background: var(--accent); color: var(--bg);
  padding: 4px 14px; border-radius: 999px; font-family: "Inter", sans-serif;
  font-size: 0.72em; font-weight: 700; letter-spacing: 0.18em; margin-bottom: 16px;
}
.tips-block h3 { font-size: clamp(1.04em, 2vw, 1.16em); font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.tips-block p { color: var(--muted); line-height: 2; font-size: clamp(0.9em, 1.65vw, 0.96em); letter-spacing: 0.02em; }

/* STEP flow simplified */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.step-card {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px;
  padding: clamp(28px, 3.5vw, 36px); text-align: center;
  transition: all 0.3s; position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,29,61,0.08); }
.step-card { border-radius: 16px; }
.step-card .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%); color: #fff;
  font-family: "Inter", sans-serif; font-size: 1.4em; font-weight: 800;
  margin-bottom: 20px; letter-spacing: 0;
  box-shadow: 0 6px 16px rgba(144,100,162,0.3);
}
.step-card .step-label {
  font-family: "Inter", sans-serif; font-size: 0.72em; font-weight: 700;
  color: var(--brand); letter-spacing: 0.22em; margin-bottom: 10px;
}
.step-card h3 { font-size: clamp(0.98em, 1.95vw, 1.08em); font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.5; letter-spacing: -0.005em; }
.step-card p { color: var(--muted); line-height: 1.85; font-size: 0.9em; letter-spacing: 0.02em; }

/* ==========================
   お問い合わせフォーム
   ========================== */
.cform { display: flex; flex-direction: column; gap: 22px; max-width: 720px; margin: 0 auto; }
.cform .cf-row { display: flex; flex-direction: column; gap: 8px; }
.cform label {
  font-size: 0.96em; font-weight: 700; color: var(--ink);
  letter-spacing: 0.02em; display: flex; align-items: center; gap: 10px;
}
.cform label .req {
  background: #d93030; color: #fff; font-size: 0.68em; font-weight: 700;
  padding: 3px 8px; border-radius: 3px; letter-spacing: 0.04em;
}
.cform input[type="text"],
.cform input[type="email"],
.cform input[type="tel"],
.cform select,
.cform textarea {
  width: 100%; padding: 14px 16px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 4px;
  font-size: 1em; font-family: inherit; color: var(--ink);
  line-height: 1.55; transition: border 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30,115,190,0.12);
}
.cform textarea { resize: vertical; min-height: 160px; }
.cform select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23666'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 11px;
  padding-right: 40px;
}
.cform .cf-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.cform .cf-agree label {
  font-size: 0.92em; font-weight: 500; color: var(--ink);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.7; cursor: pointer;
}
.cform .cf-agree input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; cursor: pointer; }
.cform .cf-agree a { color: var(--brand); text-decoration: underline; font-weight: 600; }
.cform .cf-submit {
  margin-top: 14px; padding: 18px 36px;
  background: linear-gradient(135deg, #1e73be 0%, #338df4 100%);
  color: #fff; border: none; border-radius: 4px;
  font-size: 1.08em; font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(30,115,190,0.28);
}
.cform .cf-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(30,115,190,0.36); }
.cform .cf-submit:active { transform: translateY(0); }
.cform-note {
  text-align: center; color: var(--muted); font-size: 0.88em;
  margin-top: 24px; line-height: 1.8; letter-spacing: 0.02em;
}
