/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --primary: #1F8A70;
  --primary-dark: #176c57;
  --primary-light: #2ba787;
  --navy: #1E3A5F;
  --navy-dark: #14283f;
  --navy-light: #2c4f7d;
  --line-green: #06C755;
  --line-green-dark: #05a548;
  --bg-light: #f5f7fa;
  --bg-soft: #eef2f6;
  --text: #1a2332;
  --text-muted: #5a6878;
  --text-light: #8a96a4;
  --border: #e3e8ee;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(30, 58, 95, 0.06), 0 1px 2px rgba(30, 58, 95, 0.04);
  --shadow-md: 0 4px 12px rgba(30, 58, 95, 0.08), 0 2px 4px rgba(30, 58, 95, 0.04);
  --shadow-lg: 0 10px 30px rgba(30, 58, 95, 0.12), 0 4px 10px rgba(30, 58, 95, 0.06);
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
  background: var(--white);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* PC/SP 改行出し分けユーティリティ（既定=PC表示） */
.br-sp { display: none; } /* SP専用改行：PCでは改行しない */

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

/* =========================================
   Header
   ========================================= */
.header {
  position: sticky;
  top: 0;
  background: #d9d9d9;
  z-index: 100;
  height: 100px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.logo-text { line-height: 1.2; }
.logo-tag {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
}
.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.nav { display: flex; gap: 10px; align-items: center; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-tel { line-height: 1.2; text-align: right; }
.header-tel-time { font-size: 14px; color: var(--text-muted); }
.header-tel-num {
  font-size: 25px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.header-tel-num svg { width: 25px; height: 25px; }
.btn-quote-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.btn-quote-header:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-quote-header svg { width: 25px; height: 25px; }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
  height: 653px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background:
    url("/images/mv_pc.png") right top / contain no-repeat;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  /* grid-template-columns: fr; */
  gap: 50px;
  align-items: center;
}
.hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--navy);
  margin: 24px 0;
}
.hero-subcopy { background-color: #FFFFFF70; box-shadow: 6px 6px 8px #FFFFFF30; width: fit-content; }
.highlight { color: #C08D49;}
.hero-title .small {
  font-family: "Noto Sans JP", sans-serif;
}
.hero-title .small { font-size: 0.45em; font-weight: 700; display: block; margin: 20px 0; }
.hero-title .accent {
  color: var(--primary);
  background: linear-gradient(transparent 65%, rgba(31, 138, 112, 0.18) 65%);
  padding: 0 4px;
  font-size: 1.5em;
}
.hero-label { background: #02274D; color: #FFF; width: fit-content; padding: 10px 20px;}
.hero-lead {  font-size: 20px;  color: #02274D; font-weight: 700; line-height: 2.2;  margin-bottom: 15px; background-color: #FFFFFF80; border-radius: 10px; width: fit-content; padding: 15px;}
.hero-checks { margin-bottom: 28px; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
}
.hero-checks .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-checks .check-icon svg { width: 12px; height: 12px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-sp { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 10px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30, 58, 95, 0.3); }
.btn-line {
  background: var(--line-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
}
.btn-line:hover { background: var(--line-green-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(6, 199, 85, 0.3); }
.btn svg { width: 18px; height: 18px; }

/* Hero Right (image collage) */
.hero-visual {
  position: relative;
  height: 460px;
}
.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-before, .hero-img-after {
  position: absolute;
  bottom: 0;
  width: 32%;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-img-before { right: 33%; }
.hero-img-after { right: 0; }
.hero-img-before img, .hero-img-after img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
}
.hero-badge {
  position: absolute;
  bottom: 175px;
  left: 6%;
  width: 130px;
  height: 130px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.18);
  animation: badge-pop 0.6s 0.3s backwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-badge .top { font-size: 13px; color: var(--primary); margin-bottom: 2px; }
.hero-badge .mid { font-size: 18px; line-height: 1.2; }
.hero-badge .bot { font-size: 18px; line-height: 1.2; }
@keyframes badge-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =========================================
   Stats Bar
   ========================================= */
.stats {
  background: var(--navy);
  padding: 20px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 8px 12px;
  text-align: center;
  border-right: 2px dotted rgba(30, 58, 95, 0.45);
}
.stat:last-child { border-right: none; }
.stat-icon { display: inline-flex; color: var(--navy); }
.stat-icon svg { width: 60px; height: 60px; }
.stat-label {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* =========================================
   Services
   ========================================= */
.services { padding: 80px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-icon-circle {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(31, 138, 112, 0.35);
  border: 3px solid var(--white);
  margin: -25px auto 0;
  position: relative;
  z-index: 1;
}
.service-icon-circle svg { width: 22px; height: 22px; }
.service-body { padding: 16px 24px 24px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.service-name { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: 0.05em; }
.service-desc { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; flex: 1; text-align: left; }
.service-tag {
  display: inline-block;
  align-self: center;
  padding: 6px 14px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* =========================================
   Pricing
   ========================================= */
.pricing { padding: 80px 0; background: var(--white); }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 15px; margin-bottom: 36px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 16px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card-head {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.price-amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0 20px;
  letter-spacing: 0.02em;
}
.price-amount .yen { font-size: 18px; font-weight: 500; }
.price-amount .tilde { font-size: 18px; }
.price-quote {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 20px;
}
.price-rows { font-size: 14px; }
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}
.price-row:first-child { border-top: none; }
.price-row .lbl { color: var(--text-muted); }
.price-row .val { color: var(--text); font-weight: 500; }
.price-disclaimer {
  text-align: center;
  font-size: 15px;
  color: #333;
  margin-top: 28px;
}
.price-disclaimer .accent { color: var(--primary); }

/* =========================================
   Cases (Carousel)
   ========================================= */
.cases { padding: 80px 0; background: var(--bg-light); }
.cases-wrapper { position: relative; padding: 0 50px; }
.cases-track-container { overflow: hidden; }
.cases-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.case-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}
.case-imgs > div { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.case-imgs img { width: 100%; height: 100%; object-fit: cover; }
.case-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.case-body { padding: 18px 20px 20px; }
.case-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.case-spec { font-size: 14px; }
.case-spec-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: var(--text-muted);
}
.case-spec-row .dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.case-spec-row .lbl { flex: 1; }
.case-spec-row .val { color: var(--text); font-weight: 500; }
.case-result {
  margin-top: 14px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-result .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 3px;
}
.case-result .price { font-size: 22px; font-weight: 900; color: var(--primary); }
.case-result.refund .price { color: #d32f2f; }
.case-result.refund .price small { font-size: 10px; font-weight: 500; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover { background: var(--navy); color: var(--white); }
.carousel-btn.prev { left: -15px; }
.carousel-btn.next { right: -15px; }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.carousel-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* =========================================
   Process Flow
   ========================================= */
.process { padding: 70px 0 80px; background: var(--white); }

/* =========================================
   理念ページ導線（CTAバナー）
   ========================================= */
.rinen { padding: 0 0 80px; background: var(--white); }
.rinen-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
}
.rinen-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(30, 58, 95, .16), 0 6px 14px rgba(30, 58, 95, .08);
}
.rinen-cta:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.rinen-cta-media {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.rinen-cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}
.rinen-cta:hover .rinen-cta-media img { transform: scale(1.05); }
.rinen-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 138, 112, 0) 55%, rgba(31, 138, 112, .12) 100%);
  pointer-events: none;
}

.rinen-cta-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(130% 150% at 100% 0%, rgba(31, 138, 112, .07), transparent 60%),
    var(--white);
}
.rinen-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--primary);
  margin-bottom: 18px;
}
.rinen-cta-label::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}
.rinen-cta-title {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.3rem);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--navy);
}
.rinen-cta-text {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}
.rinen-cta-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(30, 58, 95, .22);
  transition: background .25s ease, box-shadow .25s ease;
}
.rinen-cta:hover .rinen-cta-btn {
  background: var(--navy-light);
  box-shadow: 0 6px 18px rgba(30, 58, 95, .3);
}
.rinen-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}
.rinen-cta:hover .rinen-cta-btn svg { transform: translateX(4px); }

@media (max-width: 768px) {
  .rinen { padding: 0 0 60px; }
  .rinen-cta { grid-template-columns: 1fr; border-radius: 16px; }
  .rinen-cta-media { min-height: 200px; }
  .rinen-cta-body { padding: 28px 22px 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .rinen-cta,
  .rinen-cta-media img,
  .rinen-cta-btn,
  .rinen-cta-btn svg { transition: none; }
  .rinen-cta:hover { transform: none; }
  .rinen-cta:hover .rinen-cta-media img { transform: none; }
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(31, 138, 112, 0.3);
}
.process-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 14px;
}
.process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.process-icon svg { width: 28px; height: 28px; }
.process-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: left;
}

/* =========================================
   Reasons
   ========================================= */
.reasons { padding: 70px 0 80px; background: var(--navy); color: var(--white); }
.reasons .section-title { color: var(--white); }
.reasons .section-subtitle { color: rgba(255, 255, 255, 0.65); }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.reason {
  text-align: center;
}
.reason-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.25s;
}
.reason:hover .reason-icon { background: var(--primary); border-color: var(--primary); }
.reason-icon svg { width: 30px; height: 30px; }
.reason-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.reason-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  text-align: left;
}

/* =========================================
   Voice (Testimonials)
   ========================================= */
.voice { padding: 80px 0; background: var(--bg-light); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.voice-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.voice-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-soft);
  overflow: hidden;
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-avatar.is-navy { background: var(--navy); }
.voice-avatar.is-green { background: var(--primary); }
.voice-avatar.is-navy-light { background: var(--navy-light); }
.voice-silhouette { width: 100%; height: 100%; display: block; }
.voice-content { flex: 1; }
.voice-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}
.voice-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.voice-meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 16px;
}

/* =========================================
   FAQ
   ========================================= */
.faq { padding: 80px 0; background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q-mark {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-q-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: transform 0.3s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q-toggle { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 18px 18px 40px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* =========================================
   CTA Block
   ========================================= */
.cta-block {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  position: relative;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  min-height: 200px;
}
.cta-tel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  position: relative;
  background: var(--navy);
}
.cta-tel-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
}
.cta-tel-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-tel-text { flex: 1; }
.cta-tel-headline {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  text-align: center;
}
.cta-tel-headline .em { font-weight: 700; }
.cta-tel-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
}
.cta-tel-tags span {
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 8px;
  border-radius: 3px;
}
.cta-tel-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.cta-tel-num svg { width: 24px; height: 24px; }
.cta-tel-time { text-align: center; font-size: 12px; color: rgba(255, 255, 255, 0.7); }

.cta-form, .cta-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-form-title, .cta-line-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.cta-form-sub, .cta-line-sub { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.cta-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-form-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); }
.cta-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--line-green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, background 0.2s;
}
.cta-line-btn:hover { background: var(--line-green-dark); transform: translateY(-2px); }
.cta-form-btn svg, .cta-line-btn svg { width: 16px; height: 16px; }

/* =========================================
   Footer
   ========================================= */
.footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.85); padding: 50px 0 28px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 40px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255, 255, 255, 0.6); }
.footer-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.95;
  margin-top: 16px;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.footer-nav-col li,
.footer-nav-col li span {
  font-size: 14px;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-nav-col li span {
  font-size: 13px;
  cursor: auto;
}
.footer-nav-col li:hover { color: var(--primary-light); }
.footer-contact { text-align: right; }
.footer-tel-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 4px;
}
.footer-tel-num svg { width: 18px; height: 18px; }
.footer-tel-time { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.footer-line {
  width: 36px;
  height: 36px;
  background: var(--line-green);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-example {
  display: none;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-tel-num { font-size: 18px; }
  /* .hero-inner { grid-template-columns: 1fr; } */
  .hero-visual { height: 400px; max-width: 600px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat:nth-child(2) { border-right: none; }
  .services-grid, .pricing-grid, .voice-grid, .reasons-grid { grid-template-columns: 1fr 1fr; }
  .case-card { flex: 0 0 calc((100% - 20px) / 2); }
  .process-flow { grid-template-columns: repeat(5, 1fr); gap: 0; }
  .process-step:not(:last-child)::after { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-form, .cta-line { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
  .footer-tel-num { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .header { height: 80px; }
  .header-tel { display: none; }
  .header-cta .btn-quote-header { padding: 8px 12px; font-size: 11px; }
  /* SP: ロゴを縮めてCTAボタンの収まりを確保 */
  .header-inner { gap: 8px; padding: 0 0; justify-content: space-around; }
  .logo { gap: 7px; }
  .logo-tag { display: none; }
  .logo-name { font-size: 15px; }
  .logo-mark { width: 80px; height: 80px; }
  .hero { padding: 0 0 0; height: auto; }
  .hero::before { display: none; }
  .hero-inner { padding: 0 0; gap: 0; }

  /* SP: 写真を背景に、コピーを上部・価格カードを表領域へオーバーレイ */
  .hero-img-sp {
    position: relative;
    display: block;
    margin: 0;
    line-height: 0;
  }
  .hero-img-sp img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-md);
  }

  /* テキスト群は通常フロー。コピーは写真上部へ絶対配置、ボタンは写真の下へ */
  .hero-text {
    position: static;
    max-width: none;
    margin: 0;
    display: block;
  }
  .hero-catchcopy {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
  }

  /* 価格カード（mv_sp.png 焼き込み表をコード化・同領域に重ねる） */
  .hero-example {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    width: 95%;
    margin: 0 auto;
    top: 65.5%;
    bottom: 16%;
    left: 1%;
    right: 0.8%;
    z-index: 2;
    padding: 6px 8px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.12);
    line-height: 1.3;
  }
  .hero-example-head {
    text-align: center;
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
  }
  .hero-example-room { font-size: 15px; }
  .hero-example-cols { display: flex; }
  .hero-example-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 0 2px;
    text-align: center;
  }
  .hero-example-col + .hero-example-col { border-left: 1px solid #dfe4ea; }
  .hero-example-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.2;
    white-space: nowrap;
  }
  .hero-example-price {
    font-size: 18px;
    font-weight: 700;
    color: #072046;
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  /* 整理費用 80,000円 → #072046（既定）／買取査定額 -30,000円 → #2D8052／実際のお支払い 50,000円 → #B48541 */
  .hero-example-col:nth-child(2) .hero-example-price { color: #2D8052; }
  .hero-example-col:nth-child(3) .hero-example-price { color: #B48541; font-size: 25px; }
  .hero-example-price .yen { font-size: 10px; font-weight: 700; margin-left: 1px; }

  /* コピー群（サブコピー + タイトル + 帯 + リード）を画像上部にまとめてオーバーレイ */
  .hero-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 18px 20px 0;
    text-align: left;
  }
  .hero-title {
    margin: 0;
    text-align: center;
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.35;
  }
  .hero-title .hero-subcopy {
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 6px 14px;
    font-size: 13.5px;
  }
  .hero-title .hero-label {
    display: inline-block;
    margin: 12px 0 0;
    padding: 9px 16px;
    font-size: 13.5px;
    line-height: 1.35;
    border-radius: 6px;
  }

  /* リード文は写真上に左寄せ・背景なしで重ねる */
  .hero-lead {
    width: fit-content;
    margin: 14px auto 0;
    padding: 0;
    background: none;
    border-radius: 0;
    font-size: 15px;
    line-height: 1.75;
    text-align: center;
  }

  /* ボタンは写真(表)の下に配置 */
  .hero-buttons { flex-wrap: nowrap; gap: 10px; margin: -76px 0 0; padding: 0 20px 4px; position: relative; z-index: 3; }
  .hero-buttons .btn { flex: 1; padding: 14px 10px; font-size: 12px; }
  .stats { padding: 20px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 15px 0; }
  .stat { gap: 14px; }
  .stat-icon svg { width: 44px; height: 44px; }
  .stat-label { font-size: 15px; }
  .services, .pricing, .cases, .process, .reasons, .voice, .faq { padding: 50px 0; }
  .services-grid, .pricing-grid, .voice-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .case-card { flex: 0 0 100%; }
  .cases-wrapper { padding: 0 10px; }
  .process-flow { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-tel { flex-direction: column; text-align: center; }
  .process-desc {text-align: left;}
  .br-sp { display: inline; } /* SPでは改行を有効化 */
  .br-pc { display: none; }   /* PC専用改行：SPでは改行しない */
  .reason-desc {text-align: left; font-size: 13px;}
  .price-disclaimer { text-align: left; font-size: 14px;}

}

/* =========================================
   Design Enhancements
   ========================================= */

/* Section title green accent underline */
.section-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Featured price card */
.price-card--featured {
  position: relative;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(31, 138, 112, 0.16);
}
.price-card--featured::before {
  content: "人気プラン";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.price-card--featured .price-card-head { color: var(--primary); }

/* Voice card decorative quote mark */
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 56px;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}

/* Stats entrance animation */
@keyframes stat-appear {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.stat { animation: stat-appear 0.45s ease backwards; }
.stat:nth-child(1) { animation-delay: 0.05s; }
.stat:nth-child(2) { animation-delay: 0.12s; }
.stat:nth-child(3) { animation-delay: 0.19s; }
.stat:nth-child(4) { animation-delay: 0.26s; }

/* Scroll reveal */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* Stagger delays for grid children */
.services-grid .fade-in:nth-child(2),
.pricing-grid .fade-in:nth-child(2),
.voice-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3),
.pricing-grid .fade-in:nth-child(3),
.voice-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.reasons-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.reasons-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.reasons-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.process-flow .fade-in:nth-child(2) { transition-delay: 0.07s; }
.process-flow .fade-in:nth-child(3) { transition-delay: 0.14s; }
.process-flow .fade-in:nth-child(4) { transition-delay: 0.21s; }
.process-flow .fade-in:nth-child(5) { transition-delay: 0.28s; }
.stat {
  flex-direction: column;
}


/* =========================================
   下層ページ共通：パンくず
   ========================================= */
.breadcrumb { background: var(--bg-light); border-bottom: 1px solid var(--border); }
.breadcrumb-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-light); font-size: 12px; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 700; }

/* =========================================
   理念：セクション見出し（英字＋日本語）
   ========================================= */
.sec-head { text-align: center; margin-bottom: clamp(36px, 4vw, 48px); }
.sec-head h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 30px);
  letter-spacing: 0.06em;
  color: var(--navy);
}
.sec-head h2 .slash { color: var(--primary); font-weight: 500; margin: 0 4px; }
.sec-head h2 .ja { font-size: 0.62em; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }
.sec-head .bar { display: inline-block; width: 52px; height: 3px; background: var(--primary); border-radius: 2px; }
.sec-head--light h2 { color: var(--white); }
.sec-head--light h2 .ja { color: rgba(255, 255, 255, 0.7); }

/* =========================================
   理念：ページヒーロー
   ========================================= */
.page-hero {
  position: relative;
  background: var(--bg-light) url("/images/rinen-mv.png") center / cover no-repeat;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.35) 64%, rgba(255, 255, 255, 0) 82%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: clamp(380px, 46vw, 520px);
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: clamp(40px, 5vw, 72px) clamp(18px, 7vw, 60px);
}
.page-hero-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.page-hero-label .ln { width: 26px; height: 1px; background: var(--primary); opacity: 0.55; flex: 0 0 auto; }
.page-hero-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.page-hero-lead { font-size: 16px; line-height: 2.1; color: #333; font-weight: 500; }
.page-hero-lead p { margin: 0; }

/* =========================================
   理念：MISSION・VISION
   ========================================= */
.mv { padding: clamp(56px, 7vw, 84px) 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(32px, 3.6vw, 44px) clamp(15px, 3vw, 42px);
  overflow: hidden;
}
.mv-cap { text-align: center; color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; margin-bottom: 14px; }
.mv-cap span { color: var(--primary-light); }
.mv-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(15px, 2.2vw, 23px);
  line-height: 1.6;
  color: var(--navy);
  text-align: center;
  margin-bottom: 22px;
}
.mv-text { position: relative; z-index: 1; font-size: 13px; line-height: 2; color: var(--text-muted); text-align: left; }
.mv-text p { margin: 0 0 2px; }
.mv-deco { position: absolute; right: 22px; bottom: 18px; opacity: 0.08; color: var(--navy); }
.mv-deco svg { width: 120px; height: 120px; }

/* =========================================
   理念：VALUE（大切にしている価値観）
   ========================================= */
.value { padding: 8px 0 clamp(56px, 7vw, 84px); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card-body { padding: 24px 22px 20px; }
.value-head { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.value-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.value-name { font-weight: 700; font-size: 16px; color: var(--navy); }
.value-desc { font-size: 14px; line-height: 1.95; color: var(--text-muted); text-align: left; }
.value-img { margin-top: auto; height: 150px; overflow: hidden; }
.value-img img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================
   理念：STRENGTH（私たちの強み）
   ========================================= */
.strength { background: var(--navy); padding: clamp(56px, 7vw, 80px) 0; }
.strength-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.strength-card-head { display: flex; align-items: center; gap: 11px; min-height: 52px; margin-bottom: 14px; }
.strength-card-head svg { width: 30px; height: 30px; stroke: var(--primary-light); flex: 0 0 auto; }
.strength-name { font-weight: 700; font-size: 16px; color: var(--white); line-height: 1.4; }
.strength-img { height: 128px; border-radius: 6px; overflow: hidden; }
.strength-img img { width: 100%; height: 100%; object-fit: cover; }
.strength-desc { margin-top: 14px; font-size: 13.5px; line-height: 1.9; color: rgba(255, 255, 255, 0.78); text-align: left; }

/* =========================================
   理念：実績＋循環
   ========================================= */
.achv { padding: clamp(56px, 7vw, 78px) 0; }
.achv-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 4vw, 56px); align-items: start; }
.achv-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 25px);
  line-height: 1.55;
  color: var(--navy);
  text-align: center;
  margin-bottom: 34px;
}
.achv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 18px; max-width: 420px; margin: 0 auto; }
.achv-stats .achv-stat:first-child { grid-column: 1 / -1; }
.achv-stat { text-align: center; }
.achv-stat-cap { font-size: 14px; color: var(--text-muted); margin-bottom: 13px; }
.achv-num-row { display: flex; justify-content: center; }
.achv-num-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 12px 4px 4px;
}
.achv-num-laurel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  height: 125px;
  width: auto;
  max-width: none;
  pointer-events: none;
}
.achv-num { position: relative; z-index: 1; font-family: "Noto Serif JP", serif; font-weight: 700; font-size: clamp(32px, 4vw, 40px); color: #c0a15c; line-height: 1; }
.achv-num small { font-size: 0.55em; }
.achv-unit { font-size: 13px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.achv-unit--sub { font-weight: 400; color: var(--text-light); }
.achv-note { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 24px; }
.achv-cycle { border-left: 1px solid var(--border); padding-left: clamp(28px, 4vw, 56px); }
.cycle-title { font-family: "Noto Serif JP", serif; font-weight: 700; font-size: clamp(19px, 2.2vw, 23px); color: var(--navy); text-align: center; margin-bottom: 14px; }
.cycle-bar { text-align: center; margin-bottom: 12px; }
.cycle-bar span { display: inline-block; width: 40px; height: 2px; background: var(--primary); }
.cycle-lead { font-size: 14px; line-height: 2; color: var(--text-muted); text-align: center; margin-bottom: 28px; }

/* 縦型フロー（買取で生まれる新しい価値） */
.flow { margin-top: 4px; }
.flow-step { position: relative; display: flex; align-items: center; gap: 16px; padding-bottom: 24px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 58px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(var(--primary-light), var(--border));
  opacity: 0.55;
}
.flow-ic {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(31, 138, 112, 0.14);
}
.flow-ic svg { width: 24px; height: 24px; }
.flow-text { display: flex; flex-direction: column; gap: 2px; }
.flow-no { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--primary); }
.flow-label { font-size: 17px; font-weight: 700; color: var(--navy); }
.flow-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 13px 16px;
  background: var(--bg-light);
  border: 1px dashed var(--primary-light);
  border-radius: 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}
.flow-loop svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--primary); }

/* =========================================
   理念：代表メッセージ
   ========================================= */
.message { background: var(--bg-light); }
.message-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.25fr; align-items: stretch; }
.message-visual { position: relative; min-height: 360px; }
.message-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.message-text { background: var(--white); display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 4.5vw, 60px) clamp(28px, 4vw, 64px); }
.message-title { font-family: "Noto Serif JP", serif; font-weight: 700; font-size: clamp(22px, 2.6vw, 26px); color: var(--navy); margin-bottom: 24px; }
.message-body { font-size: 15px; line-height: 2.05; color: var(--text); text-align: left; }
.message-body p { margin: 0 0 14px; }
.message-body p:last-child { margin-bottom: 0; }
.message-sign { text-align: right; margin-top: 26px; font-size: 14px; color: var(--navy); }

/* =========================================
   理念：CTAバナー
   ========================================= */
.cta-banner { background: var(--navy); }
.cta-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(15px, 3vw, 34px) 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner-lead { display: flex; align-items: center; gap: 18px; }
.cta-banner-lead svg { width: 46px; height: 46px; stroke: var(--primary-light); flex: 0 0 auto; opacity: 0.95; }
.cta-banner-title { font-family: "Noto Serif JP", serif; font-weight: 700; font-size: clamp(18px, 2.2vw, 23px); color: var(--white); line-height: 1.55; }
.cta-banner-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-banner-btns .btn { padding: 16px 28px; white-space: nowrap; }
.btn-light { background: var(--white); color: var(--navy); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); }
.btn-light:hover { background: #f4f7fa; transform: translateY(-2px); }

/* =========================================
   理念：レスポンシブ
   ========================================= */
@media (max-width: 1024px) {
  .page-hero { background-position: 72% center; }
  .value-grid, .strength-grid { grid-template-columns: 1fr 1fr; }
  .achv-inner { grid-template-columns: 1fr; }
  .achv-cycle { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 36px; }
  .message-inner { grid-template-columns: 1fr; }
  .message-visual { min-height: 260px; }
}
@media (max-width: 640px) {
  .page-hero::before { background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0.4) 100%); }
  .mv-grid { grid-template-columns: 1fr; }
  .value-grid, .strength-grid { grid-template-columns: 1fr; }
  .achv-stats { grid-template-columns: 1fr 1fr; gap: 26px 16px; max-width: 360px; margin: 0 auto; }
  .achv-stats .achv-stat:first-child { grid-column: 1 / -1; }
  .cta-banner-inner { flex-direction: column; align-items: center; text-align: center; gap: 22px; }
  .cta-banner-btns { flex-direction: column; flex-wrap: nowrap; width: 90%; gap: 12px; }
  .cta-banner-btns .btn { width: 100%; padding: 15px 20px; }
  .page-hero-lead { font-size: 13px; }
  .page-hero-label{ font-size: 14px;}
}
