/* ===== RESET & TOKENS ===== */
:root {
  /* brand colors */
  --color-ink: #22252a;
  --color-navy: #22252a;
  --color-navy-rgb: 34, 37, 42;
  --color-teal: #8a6e42;
  --color-teal-rgb: 203, 177, 138;
  --color-coral: #9b7264;
  --color-coral-rgb: 186, 150, 138;
  --color-line: #06c755;
  --color-line-rgb: 6, 199, 85;

  /* neutrals */
  --color-muted: #76736e;
  --color-muted-2: #a4a19c;
  --color-muted-3: #585550;
  --color-border: #edeae5;
  --color-cloud: #f8f6f3;

  /* structure */
  --radius-pill: 100px;
  --duration-fast: 0.2s;
  --duration-normal: 0.28s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: var(--color-ink);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-tint {
  background: var(--color-cloud);
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav-in {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New";
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-navy);
}
.logo img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo em {
  color: var(--color-teal);
  font-style: normal;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #665c4f;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast);
}
.nav-links a:hover {
  color: var(--color-teal);
}
.nav-cta {
  background: var(--color-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  transition:
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--color-navy-rgb), 0.24);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
.m-menu {
  position: fixed;
  inset: 70px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-120%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 190;
  padding: 12px 0 24px;
}
.m-menu.open {
  transform: translateY(0);
}
.m-menu a {
  display: block;
  padding: 15px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #33353a;
  border-bottom: 1px solid #f7f5f3;
}
.m-menu .m-cta {
  margin: 18px 40px 0;
  background: var(--color-navy);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-pill);
  padding: 15px;
  font-weight: 700;
  border: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-cloud) 0%, #f3f0ec 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--color-teal-rgb), 0.12),
    transparent 68%
  );
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--color-coral-rgb), 0.09),
    transparent 68%
  );
}
.hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: center;
  padding: 92px 40px 100px;
  max-width: 1120px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e8e4de;
  color: var(--color-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
  box-shadow: 0 4px 14px rgba(var(--color-teal-rgb), 0.08);
}
.badge b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-navy);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero h1 b {
  color: var(--color-teal);
  position: relative;
  font-weight: 900;
}
.hero h1 .u {
  position: relative;
  white-space: nowrap;
}
.hero h1 .u::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 6px;
  height: 12px;
  background: rgba(var(--color-teal-rgb), 0.16);
  z-index: -1;
  border-radius: 3px;
}
.hero p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1;
  color: var(--color-muted-3);
  margin-bottom: 40px;
}
.hero .btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-p {
  background: var(--color-coral);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 17px 36px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  box-shadow: 0 10px 26px rgba(var(--color-coral-rgb), 0.28);
  transition:
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}
.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(var(--color-coral-rgb), 0.36);
}
.btn-t {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  padding: 14px 8px;
}
.btn-t svg {
  transition: transform var(--duration-fast);
}
.btn-t:hover svg {
  transform: translateX(4px);
}
.hero-teaser {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: var(--color-navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition:
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}
.hero-teaser:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(var(--color-navy-rgb), 0.25);
}
.hero-teaser s {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  font-weight: 500;
}
.hero-visual {
  position: relative;
}
.hero-photo-frame {
  position: relative;
  padding: 14px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(var(--color-navy-rgb), 0.18);
}
@media (min-width: 961px) {
  .hero-photo-frame {
    margin: 0 -220px 0 -24px;
  }
}
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-border);
}
.hero-badge-chip {
  position: absolute;
  left: -18px;
  bottom: -18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(var(--color-navy-rgb), 0.32);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 230px;
}
.hero-badge-chip svg {
  flex-shrink: 0;
  color: var(--color-teal);
}

/* ===== SECTION BASE ===== */
section {
  padding: 110px 0;
  scroll-margin-top: 86px;
}
.sh {
  text-align: center;
  margin-bottom: 64px;
}
.sh .lbl {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--color-teal);
  margin-bottom: 14px;
}
.sh h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-bottom: 14px;
}
.sh p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 2;
}

/* ===== IBJ NETWORK ===== */
.ibj-authority {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
}
.ibj-authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(var(--color-navy-rgb), 0.18);
  transition: transform var(--duration-fast);
}
.ibj-authority-badge:hover {
  transform: translateY(-2px);
}
.ibj-authority-badge.is-teal {
  background: var(--color-teal);
  box-shadow: 0 10px 24px rgba(var(--color-teal-rgb), 0.18);
}
.ibj-authority-badge svg {
  flex-shrink: 0;
}
.ibj-authority-badge span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.35;
  font-size: 12.5px;
  font-weight: 800;
}
.ibj-authority-badge b {
  font-weight: 900;
}
.ibj-authority-badge small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.82;
  letter-spacing: 0.01em;
}

.ibj-bento {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.ibj-hero-stat {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(var(--color-coral-rgb), 0.09), #fff 65%);
  border: 1px solid rgba(var(--color-coral-rgb), 0.2);
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform var(--duration-normal),
    box-shadow var(--duration-normal);
}
.ibj-hero-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(var(--color-coral-rgb), 0.16);
}
.ibj-hero-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -70px;
  right: -80px;
  border: 22px solid rgba(var(--color-coral-rgb), 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.ibj-hero-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(var(--color-coral-rgb), 0.12);
  color: var(--color-coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.ibj-hero-label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-muted-3);
  margin-bottom: 4px;
}
.ibj-hero-num {
  position: relative;
  z-index: 1;
  font-size: 56px;
  font-weight: 900;
  color: var(--color-coral);
  letter-spacing: -0.02em;
}
.ibj-hero-num small {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-muted-2);
  margin-left: 2px;
}
.ibj-hero-sub {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-muted-3);
  line-height: 1.8;
}

.ibj-sub-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
}
.ibj-stat {
  background: #fff;
  padding: 26px 20px;
  text-align: center;
  transition:
    transform var(--duration-normal),
    box-shadow var(--duration-normal);
}
.ibj-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(var(--color-navy-rgb), 0.08);
  position: relative;
  z-index: 1;
}
.ibj-stat-ico {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: rgba(var(--color-teal-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ibj-stat-n {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
.ibj-stat-n small {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-muted-2);
}
.ibj-stat-k {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-muted-3);
  margin-top: 6px;
  line-height: 1.5;
}

.ibj-journey {
  max-width: 560px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 32px 8px;
}
.ibj-journey-head {
  text-align: center;
  margin-bottom: 22px;
}
.ibj-journey-head h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.ibj-journey-head p {
  font-size: 12px;
  color: var(--color-muted);
}
.ibj-journey-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ibj-journey-table {
  width: 100%;
  min-width: 280px;
  table-layout: fixed;
  border-collapse: collapse;
}
.ibj-journey-table th:first-child,
.ibj-journey-table td:first-child {
  width: 46%;
}
.ibj-journey-table th,
.ibj-journey-table td {
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid #f5f2ef;
  word-break: break-word;
}
.ibj-journey-table thead th {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-muted-2);
}
.ibj-journey-table th:first-child,
.ibj-journey-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 12.5px;
}
.ibj-journey-table tbody td:not(:first-child) {
  font-weight: 800;
  color: var(--color-navy);
  font-variant-numeric: tabular-nums;
}
.ibj-journey-table tbody tr:last-child td {
  border-bottom: none;
}
.ibj-journey-cards {
  display: none;
}
.ibj-journey-card + .ibj-journey-card {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f5f2ef;
}
.ibj-journey-card-h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-muted-2);
  margin-bottom: 8px;
}
.ibj-journey-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #f5f2ef;
  font-size: 12.5px;
}
.ibj-journey-row:last-child {
  border-bottom: none;
}
.ibj-journey-row span {
  color: var(--color-navy);
  font-weight: 700;
}
.ibj-journey-row b {
  color: var(--color-navy);
  font-weight: 800;
}
.ibj-note {
  text-align: center;
  font-size: 11px;
  color: var(--color-muted-2);
  max-width: 640px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ===== WALK TOGETHER (susume) ===== */
.susume-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.susume-col {
  border-radius: 24px;
  padding: 34px 30px;
}
.susume-col.is-alone {
  background: var(--color-cloud);
  border: 1px dashed var(--color-border);
}
.susume-col.is-together {
  background: linear-gradient(165deg, rgba(var(--color-teal-rgb), 0.07), #fff 55%);
  border: 1px solid rgba(var(--color-teal-rgb), 0.25);
  box-shadow: 0 22px 46px rgba(var(--color-navy-rgb), 0.1);
  transform: scale(1.03);
}
.susume-col-h {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 58, 90, 0.08);
}
.susume-col-h span {
  font-size: 17px;
  font-weight: 900;
}
.is-alone .susume-col-h span {
  color: var(--color-muted-3);
}
.is-together .susume-col-h span {
  color: var(--color-navy);
}
.susume-vs-mark {
  align-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(var(--color-navy-rgb), 0.25);
}
.susume-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.susume-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.7;
}
.is-alone .susume-list li {
  color: var(--color-muted);
}
.is-together .susume-list li {
  color: var(--color-ink);
  font-weight: 500;
}
.susume-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.susume-ico.is-x {
  background: #f2f1ef;
}
.susume-ico.is-o {
  background: var(--color-teal);
}
.susume-note {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 720px;
  margin: 44px auto 0;
  background: var(--color-cloud);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 16px 26px;
  text-align: center;
  font-size: 12.5px;
  color: var(--color-muted-3);
  transition:
    transform var(--duration-fast),
    box-shadow var(--duration-fast),
    border-color var(--duration-fast);
}
.susume-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(var(--color-navy-rgb), 0.1);
  border-color: transparent;
}
.susume-note-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(var(--color-teal-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.susume-note-link {
  color: var(--color-teal);
  font-weight: 800;
  white-space: nowrap;
}

/* ===== CONCERNS (worry) ===== */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.worry-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 22px rgba(var(--color-coral-rgb), 0.06);
}
.worry-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--color-coral-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.worry-card p {
  font-size: 14.5px;
  font-weight: 500;
  color: #4a4c52;
  line-height: 1.85;
}
.worry-card p b {
  color: var(--color-coral);
  font-weight: 700;
}
.worry-lead {
  text-align: center;
  font-size: 15px;
  color: var(--color-muted-3);
  line-height: 2.1;
  margin-top: 40px;
  font-weight: 400;
}
.worry-lead b {
  color: var(--color-navy);
  font-weight: 700;
}

/* ===== FEATURES ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feat-card {
  background: #fff;
  border: 1px solid #f3f0ec;
  border-radius: 22px;
  padding: 44px 32px;
  text-align: center;
  transition:
    transform var(--duration-normal),
    box-shadow var(--duration-normal),
    border-color var(--duration-normal);
}
.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(var(--color-navy-rgb), 0.12);
  border-color: transparent;
}
.feat-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.feat-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #d5cfc6;
  margin-bottom: 10px;
}
.feat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 14px;
  line-height: 1.5;
}
.feat-card p {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 2.05;
}

.feat-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #f5f2ef;
}
.feat-proof span {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted-3);
  background: #f9f7f5;
  border: 1px solid #f0ede8;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
}

/* ===== COMPARISON ===== */
.cmp-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(var(--color-navy-rgb), 0.07);
  background: #fff;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.cmp-table th,
.cmp-table td {
  padding: 18px 16px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid #f5f2ef;
}
.cmp-table thead th {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-navy);
  background: #fdfcfa;
  padding: 20px 16px;
  letter-spacing: 0.02em;
}
.cmp-table thead th.cmp-hl {
  background: var(--color-navy);
  color: #fff;
  position: relative;
}
.cmp-table thead th.cmp-hl::after {
  content: "おすすめ";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px;
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: 0.14em;
}
.cmp-table td.cmp-hl {
  background: rgba(var(--color-teal-rgb), 0.05);
}
.cmp-table tbody tr:last-child td {
  border-bottom: none;
}
.cmp-item {
  text-align: left !important;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 12.5px;
  background: #fdfcfa;
  white-space: nowrap;
}
.cmp-o,
.cmp-t,
.cmp-x {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 12.5px;
}
.cmp-o {
  color: var(--color-teal);
}
.cmp-t {
  color: var(--color-muted-2);
}
.cmp-x {
  color: #b9a0a0;
}
.cmp-o::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--color-teal);
  flex-shrink: 0;
}
.cmp-t::before {
  content: "";
  width: 14px;
  height: 2.5px;
  background: #d2ccc5;
  border-radius: 2px;
  flex-shrink: 0;
}
.cmp-x::before {
  content: "";
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background:
    linear-gradient(
      45deg,
      transparent 44%,
      #c9b4b4 44%,
      #c9b4b4 56%,
      transparent 56%
    ),
    linear-gradient(
      -45deg,
      transparent 44%,
      #c9b4b4 44%,
      #c9b4b4 56%,
      transparent 56%
    );
}
.cmp-note {
  text-align: center;
  font-size: 14px;
  color: var(--color-muted-3);
  line-height: 2.1;
  margin-top: 36px;
}
.cmp-note b {
  color: var(--color-navy);
  font-weight: 700;
}
.cmp-hint {
  display: none;
  text-align: center;
  font-size: 11.5px;
  color: var(--color-muted-2);
  margin-top: 10px;
  font-weight: 600;
}

/* ===== SERVICES ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  transition:
    transform var(--duration-normal),
    box-shadow var(--duration-normal);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(var(--color-navy-rgb), 0.12);
}
.svc-top {
  background: linear-gradient(135deg, var(--color-navy), #3a3d44);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.svc-top::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.18);
}
.svc-top h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  position: relative;
  z-index: 1;
}
.svc-top p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}
.svc-body {
  padding: 26px 28px;
}
.svc-body li {
  list-style: none;
  font-size: 13px;
  color: #6d6050;
  padding-left: 26px;
  position: relative;
  margin-bottom: 13px;
  line-height: 1.7;
}
.svc-body li:last-child {
  margin-bottom: 0;
}
.svc-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.14);
}
.svc-body li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  transform: rotate(42deg);
}

/* ===== FLOW ===== */
.flow-sec {
  background: #ffffff;
}
.flow-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
.flow-step {
  text-align: center;
  padding: 0 6px;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #cfc7bd;
  border-right: 2px solid #cfc7bd;
  transform: rotate(45deg);
}
.flow-num {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  color: var(--color-teal);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(var(--color-teal-rgb), 0.14);
}
.flow-step h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.85;
}

/* ===== PRICING ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  padding: 38px 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--duration-normal),
    box-shadow var(--duration-normal);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(var(--color-navy-rgb), 0.12);
}
.price-card.rec {
  border: 2px solid var(--color-teal);
  box-shadow: 0 20px 46px rgba(var(--color-teal-rgb), 0.16);
}
.rec-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(var(--color-teal-rgb), 0.3);
}
.price-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-muted-2);
  margin-bottom: 14px;
}
.price-amt {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amt small {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted-2);
}
.price-note {
  font-size: 11.5px;
  color: var(--color-muted-2);
  margin-bottom: 24px;
}
.price-div {
  height: 1px;
  background: #f3f1ee;
  margin: 6px 0 22px;
}
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex: 1;
}
.price-list li {
  font-size: 13px;
  color: #6d6050;
  padding-left: 24px;
  position: relative;
  margin-bottom: 13px;
  line-height: 1.6;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.14);
}
.price-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  transform: rotate(42deg);
}
.price-costs {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  background: var(--color-cloud);
  border-radius: 14px;
  padding: 16px 18px;
}
.price-costs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: #6d6050;
  padding: 6px 0;
}
.price-costs li + li {
  border-top: 1px dashed #e8e4df;
}
.price-costs li b {
  color: var(--color-navy);
  font-weight: 800;
}
.price-desc {
  font-size: 12.5px;
  color: #857c6f;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 24px;
}
.pbtn {
  display: block;
  padding: 15px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}
.pbtn:hover {
  transform: translateY(-2px);
}
.pbtn-out {
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
}
.pbtn-out:hover {
  background: var(--color-navy);
  color: #fff;
}
.pbtn-fill {
  background: var(--color-coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(var(--color-coral-rgb), 0.26);
}

/* ===== STAFF ===== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.staff-card {
  text-align: center;
}
.staff-card-photo {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 20px 44px rgba(var(--color-navy-rgb), 0.16);
}
.staff-card-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}
.staff-role {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-teal);
  margin-bottom: 5px;
}
.staff-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.staff-card p {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 1.9;
  text-align: left;
}

/* ===== SEIKON (success stories, currently disabled) ===== */
.seikon-sec {
  background: var(--color-cloud);
}
.seikon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.seikon-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(var(--color-navy-rgb), 0.08);
  display: flex;
  flex-direction: column;
}
.seikon-head {
  padding: 26px 26px 20px;
  border-bottom: 1px solid #f5f2ef;
}
.seikon-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.seikon-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.seikon-who {
  font-size: 12px;
  color: var(--color-muted-2);
  font-weight: 500;
}
.seikon-period {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-teal);
  background: #f4f0eb;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-top: 3px;
}
.seikon-quote {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.6;
}
.seikon-body {
  padding: 20px 26px;
  font-size: 12.5px;
  color: var(--color-muted);
  line-height: 1.95;
  flex: 1;
}
.seikon-stats {
  margin: 0 26px 26px;
  background: var(--color-cloud);
  border-radius: 14px;
  padding: 16px 18px;
}
.seikon-stats-t {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-muted-2);
  margin-bottom: 12px;
}
.seikon-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 12.5px;
}
.seikon-stats-row + .seikon-stats-row {
  border-top: 1px solid #f2efeb;
}
.seikon-stats-row .k {
  color: var(--color-muted-3);
}
.seikon-stats-row .v {
  font-weight: 900;
  color: var(--color-navy);
  font-size: 15px;
}
.seikon-more {
  text-align: center;
  margin-top: 44px;
}
.seikon-more a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  transition: var(--duration-fast);
}
.seikon-more a:hover {
  background: var(--color-navy);
  color: #fff;
}

/* ===== FAQ ===== */
.faq-sec {
  background-color: var(--color-cloud);
}
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
details {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--duration-fast);
}
details[open] {
  box-shadow: 0 14px 32px rgba(var(--color-navy-rgb), 0.08);
}
summary {
  padding: 22px 26px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker {
  display: none;
}
summary .q-ico {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--duration-fast);
}
summary .q-ico::before,
summary .q-ico::after {
  content: "";
  position: absolute;
  background: var(--color-teal);
  border-radius: 2px;
}
summary .q-ico::before {
  width: 11px;
  height: 2px;
}
summary .q-ico::after {
  width: 2px;
  height: 11px;
  transition: transform 0.25s;
}
details[open] summary .q-ico::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-body {
  padding: 0 26px 24px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 2.1;
}

/* ===== BLOG (currently disabled) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition:
    transform var(--duration-normal),
    box-shadow var(--duration-normal);
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(var(--color-navy-rgb), 0.12);
}
.blog-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}
.blog-body {
  padding: 22px;
}
.blog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  background: #f4f0eb;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 10px;
}
.blog-date {
  font-size: 11.5px;
  color: #bab3a9;
  font-weight: 500;
}
.blog-more {
  text-align: center;
  margin-top: 44px;
}
.blog-more a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  transition: var(--duration-fast);
}
.blog-more a:hover {
  background: var(--color-navy);
  color: #fff;
}

/* ===== MESSAGE (counselor) ===== */
.msg-sec {
  padding: 110px;
  background: #ffffff;
}
.msg-box {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  border: 1px solid #f3f0ec;
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 20px 50px rgba(var(--color-navy-rgb), 0.08);
}
.msg-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(var(--color-navy-rgb), 0.16);
}
.msg-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 12%;
}
.msg-lbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--color-teal);
  margin-bottom: 14px;
}
.msg-box h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 22px;
}
.msg-box p {
  font-size: 14px;
  color: var(--color-muted-3);
  line-height: 2.05;
  margin-bottom: 14px;
}
.msg-name {
  margin-top: 22px;
  font-size: 13px;
  color: var(--color-muted-2);
}
.msg-name b {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--color-navy);
  margin-top: 4px;
}

/* ===== TRUST BADGES ===== */
.trust-sec {
  background: var(--color-cloud);
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 28px 32px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 260px;
}
.trust-ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(var(--color-teal-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.trust-item p {
  font-size: 12px;
  color: var(--color-muted-2);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-sec {
  padding: 100px 0;
  scroll-margin-top: 100px;
}
.cta-box {
  max-width: 1120px;
  margin: 0 auto;
  /* 濃色のフッターが直後に続くため、ここは明るい地にして
     暗い塊が二段重なるのを避けている */
  background: linear-gradient(135deg, var(--color-cloud), #f1ede6);
  box-shadow: inset 0 0 0 1px rgba(var(--color-teal-rgb), 0.55);
  border-radius: 32px;
  padding: 76px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--color-teal-rgb), 0.38),
    transparent 70%
  );
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--color-coral-rgb), 0.24),
    transparent 70%
  );
}
.cta-box h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--color-ink);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}
.cta-box p {
  font-size: 14.5px;
  /* 明るい地に変えたため --color-muted では 4.4:1 とAAを下回る。
     一段濃いグレーで 6.4:1 を確保 */
  color: var(--color-muted-3);
  margin-bottom: 38px;
  line-height: 2;
  position: relative;
  z-index: 1;
}
.cta-box .btn-p {
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
footer {
  background: #24262b;
  padding: 64px 0 30px;
}
.foot-in {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.foot-logo {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
}
.foot-logo em {
  color: var(--color-teal);
  font-style: normal;
}
.foot-tagline {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.95;
}
.foot-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.foot-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 16px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col ul li a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--duration-fast);
}
.foot-col ul li a:hover {
  color: var(--color-teal);
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 24px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
}

/* ===== SHARED: LINE BUTTON VARIANT ===== */
.btn-line {
  background: var(--color-line) !important;
  box-shadow: 0 10px 26px rgba(var(--color-line-rgb), 0.3) !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.btn-line:hover {
  box-shadow: 0 16px 34px rgba(var(--color-line-rgb), 0.4) !important;
}
.btn-line-lg {
  font-size: 15px;
  padding: 18px 44px;
}
.nav-cta-line {
  background: var(--color-line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta-line:hover {
  box-shadow: 0 8px 20px rgba(var(--color-line-rgb), 0.3);
}
.m-cta-line {
  background: var(--color-line) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ============ RESPONSIVE ============ */

/* -- ≤960px -- */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-in {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 40px 76px;
  }
  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-badge-chip {
    max-width: 170px;
    font-size: 11.5px;
    padding: 11px 16px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .ibj-bento {
    grid-template-columns: 1fr;
  }
  .ibj-hero-stat {
    padding: 28px 26px;
  }
  .ibj-authority-badge span {
    font-size: 12px;
  }
  .susume-vs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .susume-vs-mark {
    justify-self: center;
  }
  .susume-col.is-together {
    transform: none;
  }
  .feat-grid,
  .svc-grid,
  .price-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .flow-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px 14px;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .staff-grid > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
  }
  .worry-grid,
  .seikon-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .msg-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 32px;
  }
  .msg-photo {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* -- ≤560px -- */
@media (max-width: 560px) {
  .wrap,
  .nav-in,
  .hero-in {
    padding-left: 22px;
    padding-right: 22px;
  }
  .ibj-sub-stats {
    grid-template-columns: 1fr;
  }
  .ibj-stat {
    padding: 20px 20px;
  }
  .ibj-hero-num {
    font-size: 44px;
  }
  .ibj-hero-stat {
    padding: 26px 22px;
  }
  .ibj-authority-badge {
    padding: 9px 16px;
  }
  .susume-col {
    padding: 26px 22px;
  }
  .susume-note {
    padding: 14px 20px;
    font-size: 12px;
  }
  .ibj-journey {
    padding: 24px 18px;
  }
  .ibj-journey-scroll {
    display: none;
  }
  .ibj-journey-cards {
    display: block;
  }
  .staff-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
  .staff-grid > *:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }
  section {
    padding: 72px 0;
  }
  .hero-in {
    padding: 48px 22px 60px;
  }
  .hero h1 {
    font-size: 33px;
    line-height: 1.45;
  }
  .hero p {
    font-size: 14.5px;
  }
  .btn-p {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero .btns {
    width: 100%;
  }
  .btn-t {
    width: 100%;
    justify-content: center;
  }
  .sh h2 {
    font-size: 26px;
  }
  .cta-box {
    padding: 56px 26px;
    border-radius: 24px;
  }
  .cta-box h2 {
    font-size: 26px;
  }
  .flow-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .foot-in {
    flex-direction: column;
    gap: 36px;
  }
  .foot-cols {
    gap: 40px;
  }
  .msg-box {
    padding: 32px 22px;
    border-radius: 24px;
  }
  .msg-box h2 {
    font-size: 23px;
  }
  .trust-item {
    min-width: 100%;
  }
  .cmp-table th,
  .cmp-table td {
    padding: 14px 12px;
    font-size: 12px;
  }
  .cmp-note {
    font-size: 13px;
    text-align: left;
  }
}

/* -- 601–960px (tablet 2-col) -- */
@media (min-width: 601px) and (max-width: 960px) {
  .feat-grid,
  .svc-grid,
  .price-grid,
  .blog-grid,
  .worry-grid,
  .seikon-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
  .feat-grid > *:last-child:nth-child(odd),
  .worry-grid > *:last-child:nth-child(odd),
  .seikon-grid > *:last-child:nth-child(odd) {
    grid-column: 1/-1;
    max-width: calc(50% - 12px);
    margin: 0 auto;
  }
  .trust-grid {
    gap: 18px;
  }
}

/* -- ≤700px (comparison table hint) -- */
@media (max-width: 700px) {
  .cmp-hint {
    display: block;
  }
  .cmp-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    pointer-events: none;
    background: linear-gradient(
      to left,
      rgba(255, 255, 255, 0.95),
      transparent
    );
    border-radius: 0 20px 20px 0;
  }
}


/* ==========================================================
   追記1 — LINEボタンはブランドの緑（#06c755）のまま。
   グリフは currentColor = 白 を継承する
   ========================================================== */

/* ==========================================================
   追記2 — トップ（案E「光と白」）
   既存の .hero 系ルールとは別クラスなので衝突しない
   ========================================================== */
.hero-light {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(56px, 7vw, 92px);
  overflow: hidden;
  background: var(--color-cloud);
}
.hx-img { position: absolute; inset: 0; }
.hx-img img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 40%; }
/* 写真を白へ溶かし、文字の居場所をつくる */
.hx-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.3) 24%, rgba(255,255,255,0) 46%),
    linear-gradient(92deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.66) 34%, rgba(255,255,255,.06) 66%),
    linear-gradient(0deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.1) 26%);
}
.hx-hair {
  position: absolute;
  left: 40px;
  top: 0;
  width: 1px;
  height: clamp(90px, 14vw, 190px);
  z-index: 4;
  background: linear-gradient(180deg, transparent, #cbb18a);
}
.hx-in { position: relative; z-index: 4; width: 100%; }
/* Marcellus は和文グリフを持たず「加盟・結婚相談所」が別書体に
   落ちていたため、本文書体で組み直す。細罫のチップにして一段強調 */
.hx-lbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #8a6e42;
  border: 1px solid rgba(203, 177, 138, .8);
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(6px);
  padding: 9px 18px;
  margin-bottom: 28px;
}
.hx-lbl::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbb18a;
  flex-shrink: 0;
}
.hero-light h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(29px, 4.6vw, 58px);
  line-height: 1.78;
  letter-spacing: .09em;
  color: var(--color-ink);
  margin-bottom: 28px;
  word-break: auto-phrase;
}
.hero-light h1 b { font-weight: 600; }
.hx-lead {
  font-size: 14.5px;
  line-height: 2.3;
  color: var(--color-muted);
  margin-bottom: 38px;
}
.hx-acts { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 32px; }
.hx-teaser {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 5px;
  transition: border-color var(--duration-normal), color var(--duration-normal);
}
.hx-teaser s { color: var(--color-muted-2); }
.hx-teaser:hover { border-bottom-color: #cbb18a; color: var(--color-ink); }

@media (max-width: 900px) {
  .hero-light { min-height: min(94vh, 780px); }
  /* ふたりを右上へ寄せ、文字の下は白へ抜く */
  .hx-img img { object-position: 70% 20%; }
  .hx-img::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.2) 20%, rgba(255,255,255,0) 38%),
      linear-gradient(0deg, rgba(255,255,255,1) 44%, rgba(255,255,255,.9) 58%, rgba(255,255,255,.45) 72%, rgba(255,255,255,0) 88%);
  }
  .hx-hair { left: 20px; }

  /* ボタンの揃えを見出しに合わせる（主ボタンだけ全幅） */
  .hx-acts { display: block; margin-bottom: 26px; }
  .hx-acts .btn-p { width: 100%; justify-content: center; margin-bottom: 20px; }
  .hx-acts .btn-t { width: auto; justify-content: flex-start; }
}


/* ==========================================================
   追記3 — 配色とは無関係の不具合修正（現行サイトにも存在）
   .msg-sec の padding:110px が四辺に効いており、モバイル用の
   上書きが無いため、390px幅では左右220pxを取られて本文が
   幅170pxに潰れていた。左右だけ他セクションに揃える。
   ========================================================== */
.msg-sec { padding: 110px 40px; }
@media (max-width: 960px) { .msg-sec { padding: 80px 32px; } }
@media (max-width: 700px) { .msg-sec { padding: 64px 20px; } }
