/* ── Variables ────────────────────────── */
:root {
  --accent-coral: #e07a5a;
  --bg: #f7faf9;
  --bg-alt: #f6fdfc;
  --card: #ffffff;
  --cta-ghost-hover: #f3fbf8;
  --foot-border: #1f2d31;
  --foot-dim: #6b797d;
  --foot-muted: #ccd1d7;
  --hero-bg: #eaf4f0;
  --ink-300: #8a9aa0;
  --ink-500: #54676d;
  --ink-700: #2a3b41;
  --ink-900: #0e1a1e;
  --line: #e3ebe9;
  --r-lg: 20px;
  --service-border-hover: #cfdfd9;
  --shadow-sm: 0 1px 2px rgba(15, 30, 30, .04), 0 2px 8px rgba(15, 30, 30, .04);
  --shadow-md: 0 6px 24px rgba(15, 30, 30, .07), 0 2px 6px rgba(15, 30, 30, .04);
  --staff-photo-bg: #dceee8;
  --teal-100: #d3ece5;
  --teal-25: #ccfbf1;
  --teal-50: #eaf6f3;
  --teal-500: #1f9e84;
  --teal-600: #16876f;
  --teal-700: #0f6b58;
  --teal-800: #0b5343;
  --teal-muted: #cfe6df;
  --warn: #e9b949;
  --white: #fff;
  --spacing-sm: 12px;
  --spacing-md: 22px;
  --spacing-lg: 32px;
  --spacing-xl: 36px;
  --spacing-2xl: 48px;
}

/* ── Reset & base ─────────────────────── */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--white);
  color: var(--ink-900);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}
h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
}
h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0;
}
h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
h5,
h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: .2s;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}
.icon {
  display: inline-block;
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vertical-align: -0.15em;
  width: 1em;
}

.in-bl {
  display: inline-block;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ── Header ───────────────────────────── */
header.site {
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  align-items: center;
  display: flex;
  gap: 32px;
  height: 72px;
}
.brand {
  align-items: center;
  display: flex;
  font-size: clamp(17px, 2vw, 18px);
  font-weight: 700;
  gap: 10px;
  letter-spacing: .02em;
  margin: 0;
}
.brand a {
  align-items: center;
  display: flex;
  gap: 10px;
}
.brand-mark {
  background: var(--teal-600);
  border-radius: 9px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .12);
  color: var(--white);
  display: grid;
  font-weight: 700;
  height: 40px;
  place-items: center;
  width: 40px;
}
.brand-mark .icon {
  height: 22px;
  width: 22px;
}

.brand .brand-name {
  line-height: 1.5;
}
.brand small {
  color: var(--ink-500);
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.nav-links {
  display: none;
}

@media (min-width: 1025px) {
  .nav-links {
    color: var(--ink-700);
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 28px;
    margin-left: auto;
  }
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-700);
}
.nav-links a.active {
  font-weight: 600;
}
.nav-cta {
  display: none;
}

@media (min-width: 1025px) {
  .nav-cta {
    align-items: center;
    background: var(--teal-600);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    padding: 8px 25px;
    transition: background .15s;
  }
}

.nav-cta:hover {
  background: var(--teal-700);
}
.menu-toggle {
  display: none;
}
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  margin-left: auto;
  padding: 8px;
  width: 40px;
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  background: var(--ink-700);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle:checked ~ header .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle:checked ~ header .hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked ~ header .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  background: var(--white);
  bottom: 0;
  box-shadow: 0 8px 24px rgba(15, 30, 30, .08);
  display: flex;
  flex-direction: column;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 8px 24px 40px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 72px;
  transform: translateY(-100%);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  visibility: hidden;
  z-index: 49;
}
.menu-toggle:checked ~ .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav a {
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
  font-weight: 500;
  padding: 22px 0;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--teal-700);
}
.mobile-nav a.active {
  font-weight: 600;
}

/* ── Shared section base ──────────────── */
section {
  padding: 64px 0;
}

@media (min-width: 1025px) {
  section {
    padding: 80px 0;
  }
}

:where(section:nth-of-type(odd)) {
  background: var(--bg);
}

.section-eyebrow {
  color: var(--teal-700);
  display: block;
  font-weight: bold;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title {
  display: inline-block;
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 16px;
}
.section-head {
  margin-bottom: 48px;
  text-align: center;
}
.section-head .section-eyebrow {
  margin-bottom: 10px;
}
.section-head p.sub {
  color: var(--ink-500);
  margin: 0 auto;
  max-width: 600px;
}
@media (max-width: 599px) {
  .section-head p.sub {
    text-align: left;
  }
}
.narrow {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────── */
.btn {
  align-items: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  padding: 14px 26px;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.btn-primary {
  background: var(--teal-500);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
}

/* ── Components ────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.card--lift {
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card--lift:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.check-badge {
  background: var(--teal-500);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  flex: 0 0 22px;
  font-size: 14px;
  height: 22px;
  place-items: center;
}
/* ===================================
   Grid Systems
   =================================== */

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

.grid--2 {
  gap: var(--spacing-xl) var(--spacing-2xl);
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.icn-box {
  background: var(--teal-25);
  color: var(--teal-700);
  display: grid;
  place-items: center;
}

/* ── Hero (index) ─────────────────────── */
.hero {
  background: var(--hero-bg);
  color: var(--ink-900);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  background: url("../img/top/hero-alt.jpg") center/cover no-repeat;
  filter: saturate(.85) brightness(1.0);
  inset: 0;
  position: absolute;
  z-index: -2;
}
.hero-bg::after {
  background: linear-gradient(95deg, rgba(255, 255, 255, .92) 45%, rgba(255, 255, 255, .72) 80%);
  content: "";
  inset: 0;
  position: absolute;
}

@media (min-width: 768px) {
  .hero-bg::after {
    background: linear-gradient(95deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 40%, rgba(255, 255, 255, .45) 65%, rgba(255, 255, 255, 0) 100%);
  }
}
.hero-inner {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding: 72px 0 90px;
  width: 95%;
}

@media (min-width: 1025px) {
  .hero-inner {
    grid-template-columns: minmax(0, 600px) 1fr;
    padding: 96px 0 110px;
  }
}

.eyebrow {
  align-items: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 999px;
  color: var(--teal-700);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: .12em;
  margin-bottom: 22px;
  padding: 7px 16px;
}
.hero h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: .01em;
  line-height: 1.25;
  margin: 0 0 22px;
}
.hero h2 .accent {
  color: var(--teal-600);
  display: block;
}
.hero p.lead {
  color: var(--ink-700);
  line-height: 1.9;
  margin: 0 0 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-outline {
  background: var(--white);
  border: 1.5px solid var(--teal-600);
  color: var(--teal-700);
}
.btn-outline:hover {
  background: var(--teal-50);
}
.hero-info {
  align-items: center;
  color: var(--ink-700);
  display: flex;
  gap: 22px;
  margin-top: 35px;
}
.hero-info .icon {
  color: var(--teal-500);
}

/* ── Feature pills ────────────────────── */
.features {
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
.features-grid {
  box-shadow: var(--shadow-md);
  gap: 0 var(--spacing-md);
  padding: 30px 20px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 12px;
}
.feature:not(:first-child) {
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
  .feature:nth-child(2) {
    border-top: none;
    /* padding-top: 8px; */
  }
}
@media (min-width: 1025px) {
  .feature {
    padding: 8px 30px;
  }

  .feature + .feature {
    border-left: 1px solid var(--line);
    border-top: none;
  }
}

.feature-icn {
  border-radius: 11px;
  font-size: 20px;
  height: 42px;
  width: 42px;
}
.feature h2 {
  color: var(--ink-900);
  font-size: 17px;
  margin: 6px 0 0;
}
.feature p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.7;
}

/* ── About ────────────────────────────── */
.about {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .about {
    gap: 64px;
    grid-template-columns: 1fr 1.05fr;
  }
}

.about-copy p {
  color: var(--ink-700);
  line-height: 2;
  margin: 0 0 18px;
}
.about-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.about-list li {
  align-items: flex-start;
  color: var(--ink-700);
  display: flex;
  font-size: 14px;
  gap: 12px;
}
.about-list li h3 {
  color: var(--ink-900);
  margin: 0 0 3px;
}
.about-list li p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.6;
}
.about-list .check {
  margin-top: 5px;
}
.about-photo {
  position: relative;
}
.about-photo img {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -20px rgba(11, 53, 45, .35);
  object-fit: cover;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-photo img {
    aspect-ratio: 16 / 9;
  }
}

.badge-stat {
  background: var(--teal-600);
  border-radius: 0 18px 18px 0;
  bottom: -28px;
  box-shadow: 0 18px 36px -10px rgba(11, 53, 45, .45);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  left: -28px;
  padding: 22px 26px;
  position: absolute;
}
@media (min-width: 1025px) {
  .badge-stat {
    border-radius: 18px;
  }
}

.badge-stat .num {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
.badge-stat .num sup {
  font-size: 18px;
  margin-left: 2px;
}
.badge-stat .lab {
  font-size: 14px;
  letter-spacing: .08em;
  margin-top: 6px;
  opacity: .85;
}

/* ── Services ─────────────────────────── */
.service-card {
  background: var(--white);
  padding: 30px;
}
.service-card:hover {
  border-color: var(--service-border-hover);
}
.service-icn {
  border-radius: 12px;
  font-size: 22px;
  height: 46px;
  margin-bottom: 18px;
  width: 46px;
}
.service-card h3 {
  margin: 0 0 8px;
}
.service-card p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.85;
}

/* ── CTA ──────────────────────────────── */
.cta {
  background: var(--teal-700);
  color: var(--white);
  padding: 80px 0;
}
@media (min-width: 500px) {
  .cta {
    text-align: center;
  }
}

.cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 14px;
}
.cta p {
  margin: 0 0 32px;
}
.cta-btn {
  gap: 14px;
  margin-inline: auto;
  width: min(500px, 85%);
}

.cta .btn {
  margin-inline: auto;
  width: min(300px, 95%);
}
.cta .btn-ghost {
  background: var(--white);
  border-color: var(--white);
  color: var(--teal-700);
}
.cta .btn-ghost:hover {
  background: var(--cta-ghost-hover);
}
.cta .cta-hours {
  font-size: 14px;
  margin: 30px 0 0;
}

/* ── Footer ───────────────────────────── */
footer.site {
  background: var(--ink-900);
  color: var(--foot-muted);
  font-size: 14px;
  padding: 64px 0 28px;
}
.foot-grid {
  display: grid;
  gap: 65px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

@media (min-width: 1025px) {
  .foot-grid {
    gap: 48px;
    grid-template-columns: 1fr 1.2fr;
  }
}

.foot-nav {
  display: grid;
  gap: 32px;
}

@media (max-width: 1024px) {
  .foot-nav {
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .foot-nav {
    gap: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .foot-nav {
    max-width: 500px;
  }
}

.foot-brand {
  color: var(--white);
}
.foot-brand .brand {
  margin-bottom: 14px;
}

.foot-brand .brand-name {
  color: var(--white);
}
.foot-brand .brand small {
  color: var(--foot-muted);
}
.foot-brand p {
  color: var(--foot-muted);
}
.foot-col .foot-nav__heading {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  margin: 0 0 20px;
}
.foot-col ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot-col a:hover {
  color: var(--white);
}

.foot-contact ul {
  gap: 12px;
}

.foot-contact li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.foot-contact li:first-child {
  font-size: 15px;
}
.foot-contact li:first-child .icon {
  transform: translateY(-7px);
}
.foot-contact .icon {
  color: var(--teal-500);
  height: 17px;
  width: 17px;
}
.foot-contact li small {
  color: var(--foot-dim);
  display: block;
  font-size: 14px;
  line-height: 1.3;
}
.foot-bot {
  border-top: 1px solid var(--foot-border);
  color: var(--foot-dim);
  font-size: 14px;
  padding-top: 22px;
}

/* ── Page Hero (sub-pages) ────────────── */
.page-hero {
  background: var(--bg-alt);
  overflow: hidden;
  padding: 72px 0 60px;
  position: relative;
}
.page-hero .inner {
  position: relative;
  text-align: center;
}
.page-hero .label {
  background: var(--teal-25);
  border-radius: 999px;
  color: var(--teal-700);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .15em;
  margin-bottom: 14px;
  padding: 8px 25px;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: .04em;
  line-height: 1.3;
  margin: 0 0 14px;
}
.page-hero .lead {
  color: var(--ink-500);
  margin: 0 auto;
  max-width: 600px;
}
@media (max-width: 599px) {
  .page-hero p.lead {
    text-align: left;
  }

  .page-hero .lead br {
    display: none;
  }
}

.crumbs {
  align-items: center;
  background: var(--white);
  color: var(--ink-500);
  display: flex;
  font-size: 14px;
  gap: 8px;
  justify-content: flex-start;
  letter-spacing: .06em;
  padding: 14px 0 0 24px;
}
.crumbs a:hover {
  color: var(--teal-700);
}
.crumbs .sep {
  opacity: .4;
}

/* ── Stats (why) ──────────────────────── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 50px 0 60px;
}
.stats-grid {
  gap: var(--spacing-lg);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1025px) {
  .stats-grid {
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 8px 16px;
  position: relative;
  text-align: center;
}

.stat-icn {
  border-radius: 50%;
  font-size: 22px;
  height: 48px;
  margin: 0 auto 14px;
  width: 48px;
}
.stat .num {
  color: var(--teal-700);
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: .02em;
  line-height: 1;
}
.stat .num sup {
  font-size: 18px;
  margin-left: 2px;
}
.stat .lab {
  color: var(--ink-500);
  font-size: 14px;
  letter-spacing: .08em;
  margin-top: 8px;
}

/* ── Reasons (why) ────────────────────── */
.reasons {
  padding: 64px 0;
}

@media (min-width: 1025px) {
  .reasons {
    padding: 90px 0 80px;
  }
}

.reason {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: clamp(80px, 10vw, 120px);
}
.reason:nth-child(even) {
  grid-template-columns: 1fr;
}
.reason:last-child {
  margin-bottom: 30px;
}

@media (min-width: 1025px) {
  .reason {
    gap: 48px;
    grid-template-columns: 1.1fr 1fr;
  }
  .reason:nth-child(even) {
    grid-template-columns: 1fr 1.1fr;
  }
  .reason:nth-child(even) .reason-photo {
    order: 1;
  }
  .reason:nth-child(even) .reason-text {
    order: 2;
  }
}

.reason-photo {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 50px -22px rgba(11, 53, 45, .3);
  overflow: hidden;
}
.reason-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.reason-num {
  align-items: center;
  color: var(--teal-700);
  display: inline-flex;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  gap: 10px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.reason h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 10px 0 14px;
}
.reason .h2-icn {
  border: 2px solid var(--teal-500);
  border-radius: 50%;
  font-size: 20px;
  height: 42px;
  width: 42px;
}
.reason p.desc {
  color: var(--ink-700);
  line-height: 1.95;
  margin: 0 0 22px;
}
.reason-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.reason-list li {
  align-items: flex-start;
  color: var(--ink-700);
  display: flex;
  font-size: 14px;
  gap: 12px;
  line-height: 1.85;
}
.reason-list .check {
  margin-top: 3px;
}

/* ── Flow / ご相談の流れ (why) ────────── */
.flow {
  background: var(--white);
  padding: 90px 0;
}
.flow-grid {
  position: relative;
}

.flow-card {
  padding: 30px 24px;
  position: relative;
  text-align: left;
}
.flow-card:not(:last-child)::after {
  display: none;
}

@media (min-width: 1025px) {
  .flow-card:not(:last-child)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9e84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 34px;
    position: absolute;
    right: -20px;
    top: 118px;
    width: 34px;
    z-index: 2;
  }
}

.flow-step {
  color: var(--teal-100);
  font-family: 'Roboto', sans-serif;
  font-size: clamp(50px, 6vw, 60px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.flow-icn {
  background: var(--teal-500);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  font-size: 18px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  width: 44px;
}
.flow-card h3 {
  margin: 0 0 8px;
}
.flow-card p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.85;
}

/* ── Philosophy / 経営理念 (company) ──── */
.philosophy {
  padding: 90px 0 70px;
}
.phil-grid {
  margin-top: 18px;
}

.phil-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 24px;
  text-align: left;
}
.phil-card:hover {
  box-shadow: none;
  transform: translateY(0);
}
.phil-card p {
  margin-top: auto;
}
.phil-card a {
  display: block;
  font-size: 15px;
  margin-top: 20px;
  text-decoration: underline;
}
.phil-card a:hover {
  color: var(--teal-600);
}
.phil-icn {
  border-radius: 12px;
  font-size: 22px;
  height: 46px;
  margin: 0 auto 18px;
  width: 46px;
}
.phil-card h3 {
  margin: 0 0 8px;
  text-align: center;
}
.phil-card p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.85;
}

/* ── Philosophy Statement (company) ──── */
.philosophy-statement {
  margin: clamp(60px, 8vw, 90px) 0;
}

@media (min-width: 768px) {
  .philosophy-statement {
    grid-template-columns: 1fr 1.7fr;
  }
}

.stmt-copy {
  color: var(--ink-900);
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
}

.stmt-intro {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.stmt-label {
  color: var(--teal-700);
  font-size: clamp(22px, 3vw, 26px);
  margin-bottom: 16px;
}

.stmt-list {
  color: var(--ink-700);
  counter-reset: stmt;
  line-height: 1.85;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stmt-list li {
  border-top: 1px solid var(--teal-muted);
  counter-increment: stmt;
  display: flex;
  gap: 5px;
  padding: 23px 0;
}

.stmt-list li:first-child {
  border-top: none;
}

.stmt-list li:last-child {
  padding-bottom: 0;
}

.stmt-list li::before {
  color: var(--teal-600);
  content: counter(stmt) "．";
  font-size: 18px;
  font-weight: 600;
}

.stmt-promise {
  background: var(--white);
  border: 3px solid var(--teal-muted);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

/* ── 会社概要 (company) ───────────────── */
.overview .section-head {
  text-align: left;
}

.overview-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .overview-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.overview-card {
  background: var(--white);
  padding: 36px clamp(25px, 3vw, 40px);
}
.overview-card h3 {
  margin: 0 0 22px;
}
.info-table {
  border-collapse: collapse;
  font-size: clamp(14px, 2vw, 16px);
  width: 100%;
}
.info-table th,
.info-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  background: transparent;
  color: var(--ink-700);
  font-weight: 600;
  white-space: nowrap;
  width: clamp(110px, 16vw, 140px);
}
.info-table td {
  color: var(--ink-700);
  line-height: 1.85;
  word-break: break-all;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table .small {
  color: var(--ink-500);
  display: block;
  font-size: 15px;
  margin-top: 4px;
}
.access-card p {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 16px;
}
.access-card .map {
  border-radius: 12px;
  height: 300px;
  margin-top: 16px;
  overflow: hidden;
}
.access-card .map iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.partner-list {
  display: grid;
  gap: 6px 18px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
.partner-list li {
  align-items: center;
  color: var(--ink-700);
  display: flex;
  font-size: 14px;
  gap: 6px;
}
.partner-list li::before {
  color: var(--teal-500);
  content: "・";
}
.insure-cat {
  color: var(--teal-600);
  font-weight: 700;
  margin: 12px 0 6px;
}
.insure-cat:first-child {
  margin-top: 0;
}
.insure-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.insure-list li {
  font-size: 14px;
  padding: 2px 0;
}
.insure-list li::before {
  content: "・";
}
.insure-list a {
  color: var(--ink-700);
  text-decoration: underline;
}
.insure-list a:hover {
  color: var(--teal-600);
}
.access-list {
  font-size: clamp(14px, 2vw, 16px);
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}
.access-list li {
  align-items: flex-start;
  color: var(--ink-700);
  display: flex;
  gap: 10px;
  line-height: 1.65;
  padding: 12px 0;
}
.access-list li:last-child {
  border-bottom: none;
}
.access-list .aicn {
  align-items: center;
  background: var(--teal-50);
  border-radius: 50%;
  color: var(--teal-700);
  display: flex;
  flex-shrink: 0;
  height: 26px;
  justify-content: center;
  margin-top: 1px;
  width: 26px;
}

/* ── Staff (company) ──────────────────── */
.staff-grid {
  gap: 24px;
}

.staff-card {
  padding: 36px 28px;
  text-align: center;
}

.staff-card h3 {
  font-size: 20px;
  margin: 0 0 4px;
}
.staff-card .yomi {
  color: var(--ink-400);
  font-size: 14px;
  margin-bottom: 8px;
}
.staff-card .role {
  color: var(--teal-600);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.staff-card .exp {
  color: var(--ink-500);
  font-size: 14px;
  margin-bottom: 16px;
}
.staff-card p.bio {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.85;
  text-align: left;
}

/* ── Activity (company) ───────────────── */
.act-card {
  background: var(--white);
  padding: 28px 22px;
}
.act-icn {
  border-radius: 12px;
  font-size: 22px;
  height: 46px;
  margin: 0 auto 16px;
  width: 46px;
}
.act-card h3 {
  margin: 0 0 6px;
  text-align: center;
}
.act-card p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.8;
}

/* ── History / 沿革 (company) ─────────── */
.history-table {
  margin: 0 auto;
  max-width: 820px;
}
.history-row {
  align-items: start;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
  padding: 22px 0;
}

@media (min-width: 1025px) {
  .history-row {
    gap: 24px;
    grid-template-columns: 160px 1fr;
  }
}

.history-year {
  color: var(--teal-700);
  font-weight: 700;
}
.history-event {
  color: var(--ink-700);
  line-height: 1.85;
  margin: 0;
}

/* ── Contact methods (contact) ────────── */
.methods {
  background: var(--white);
  padding: 64px 0 48px;
}
@media (min-width: 1025px) {
  .methods-grid {
    gap: var(--spacing-md);
  }
}

.method {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  text-align: center;
}
.method:hover {
  border-color: var(--teal-100);
}
.method-icn {
  border-radius: 50%;
  font-size: 24px;
  height: 54px;
  margin: 0 auto 18px;
  width: 54px;
}
.method h3 {
  font-size: 14px;
  letter-spacing: .04em;
  margin: 0 0 6px;
}
.method .sub {
  color: var(--ink-500);
  font-size: 14px;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.method .big {
  color: var(--teal-700);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 10px;
  word-break: break-all;
}
.method .meta {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.7;
  margin-top: auto;
  padding-top: 14px;
}

/* ── Form (contact) ───────────────────── */
.form-section {
  padding: 90px 0;
}
.form-card {
  background: var(--white);
  margin: 0 auto;
  max-width: 760px;
  padding: 32px 24px;
}

@media (min-width: 1025px) {
  .form-card {
    padding: 48px 56px;
  }
}

.form-row {
  margin-bottom: 22px;
}
.form-row label {
  color: var(--ink-700);
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.req {
  color: var(--accent-coral);
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
}
.opt {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-500);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-left: 8px;
  padding: 2px 8px;
  vertical-align: 1px;
}
.field {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink-900);
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(31, 158, 132, .12);
  outline: none;
}
.field::placeholder {
  color: var(--foot-muted);
}
textarea.field {
  line-height: 1.85;
  min-height: 140px;
  resize: vertical;
}
select.field {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2354676d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-position: right 18px center;
  background-repeat: no-repeat;
  padding-right: 44px;
  -webkit-appearance: none;
}
.form-grid-2 {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.checkbox-row {
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-700);
  display: flex;
  font-size: 14px;
  gap: 12px;
  line-height: 1.85;
  margin-bottom: 24px;
  padding: 14px 16px;
}
.checkbox-row input {
  accent-color: var(--teal-600);
  flex: 0 0 16px;
  height: 16px;
  margin-top: 5px;
  width: 16px;
}
.checkbox-row a {
  color: var(--teal-700);
  text-decoration: underline;
}
.submit-btn {
  align-items: center;
  background: var(--teal-600);
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 22px -6px rgba(31, 158, 132, .55);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 17px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  padding: 20px 28px;
  transition: background .15s, transform .15s, box-shadow .15s;
  width: 100%;
}
.submit-btn:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
}

.form-note {
  color: var(--ink-500);
  font-size: 14px;
  margin: 14px 0 40px;
  text-align: center;
}

/* ── Contact Form 7 上書きスタイル ────────
   WordPress「追加CSS」に貼り付ける場合はこのブロックごとコピーしてください
   ──────────────────────────────────────── */

/* CF7 ラッパーをフォームカード化 */
.form-section .wpcf7 {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin: 0 auto;
  max-width: 760px;
  padding: 32px 24px;
}

@media (min-width: 1025px) {
  .form-section .wpcf7 {
    padding: 48px 56px;
  }
}

/* CF7 が生成する span をブロック表示にして幅を確保 */
.wpcf7-form-control-wrap {
  display: block;
}

/* 承認チェックボックスを .checkbox-row 相当にスタイリング */
.wpcf7-acceptance {
  display: block;
  margin-bottom: 40px;
}
.wpcf7-acceptance label {
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-700);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  gap: 12px;
  line-height: 1.85;
  margin-bottom: 0;
  padding: 14px 16px;
}
.wpcf7-acceptance label input[type="checkbox"] {
  accent-color: var(--teal-600);
  flex: 0 0 16px;
  height: 16px;
  margin-top: 5px;
  width: 16px;
}
.wpcf7-acceptance label a {
  color: var(--teal-700);
  text-decoration: underline;
}

/* 送信ボタン（CF7 は input[type=submit] を生成するため .submit-btn を上書き） */
input.submit-btn[type="submit"] {
  appearance: none;
  cursor: pointer;
  display: block;
  font-family: inherit;
  -webkit-appearance: none;
}
input.submit-btn[type="submit"]:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
}

/* バリデーションエラー */
.wpcf7-not-valid.field {
  border-color: var(--accent-coral);
  box-shadow: 0 0 0 4px rgba(239, 83, 80, .10);
}
.wpcf7-not-valid-tip {
  color: var(--accent-coral);
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

/* 送信後レスポンスメッセージ */
.wpcf7-response-output {
  border-radius: 8px;
  margin-top: 16px;
  padding: 12px 16px;
}

.recaptcha {
  a {
    font-weight: bold;
  }
}

/* ── Access (contact) ─────────────────── */
.access-section {
  padding: 90px 0;
}
.access-grid {
  align-items: stretch;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .access-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.access-map {
  border-radius: var(--r-lg);
  min-height: 280px;
  overflow: hidden;
}
.access-map iframe {
  display: block;
  height: 100%;
  min-height: 280px;
  width: 100%;
}

@media (min-width: 1025px) {
  .access-map,
  .access-map iframe {
    min-height: 380px;
  }
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 38px;
}
.access-row {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}
.access-row .ricn {
  border-radius: 50%;
  flex: 0 0 38px;
  font-size: 18px;
  height: 38px;
  width: 38px;
}
.access-row h4 {
  font-size: 14px;
  margin: 0 0 6px;
}
.access-row p {
  color: var(--ink-500);
  font-size: 14px;
}

/* ── Animation ────────────────────────── */
@keyframes ping {
  0% {
    opacity: .6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}
