/* ================================
   Marriage Design Strategy Office Osaka LP - Design 02
   Friendly & Approachable Version
   ================================ */

:root {
  --color-bg: #FAFBF7;
  --color-bg-warm: #F5F7F2;
  --color-white: #ffffff;
  --color-text: #2C2C2C;
  --color-text-light: #5A5A5A;
  --color-green: #06C755;
  --color-green-dark: #05A347;
  --color-green-light: #E8F5E9;
  --color-green-soft: #F0FAF2;
  --color-coral: #E87A5D;
  --color-coral-light: #FDF0ED;
  --color-cream: #F9F6F0;
  --color-blue-soft: #E8F4F8;
  --color-gray: #8A8A8A;
  --color-gray-light: #E8ECE8;
  --color-gray-border: #E0E6E0;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  --shadow-sm: 0 4px 12px rgba(6, 199, 85, 0.06);
  --shadow-md: 0 8px 28px rgba(6, 199, 85, 0.1);
  --shadow-lg: 0 20px 50px rgba(6, 199, 85, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 100px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================
   Header
   ================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6, 199, 85, 0.08);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
}

.header__logo {
  display: flex;
  flex-direction: column;
}

.header__logo-en {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-green);
  font-weight: 500;
  text-transform: uppercase;
}

.header__logo-ja {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-list a {
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
  transition: var(--transition);
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* ================================
   Hero
   ================================ */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 124px 40px 64px;
}

/* パネル */
.hero__panel {
  position: relative;
  max-width: 640px;
  padding: 38px 46px 38px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--color-green);
  box-shadow: 0 24px 60px rgba(6, 199, 85, 0.14);
}

.hero__tag {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--color-green-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding: 7px 16px;
  background: var(--color-green-soft);
  border-radius: var(--radius-pill);
}

.hero__headline {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.hero__tate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
  flex-shrink: 0;
}

.hero__tate span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--color-green-dark);
}

.hero__tate i {
  display: block;
  width: 3px;
  flex: 1;
  min-height: 46px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-green), transparent);
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero__title-line {
  display: block;
}

.hero__subtitle {
  font-size: 0.92rem;
  letter-spacing: 0.15em;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: none;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn__arrow {
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.4);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-green);
}

.btn--secondary:hover {
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.btn--large {
  padding: 22px 48px;
  font-size: 1.05rem;
}

.hero__trust {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__trust li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 220px;
}

.hero__trust svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-green);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.hero__trust strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 2px;
}

.hero__trust span {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ================================
   Section common
   ================================ */

.section {
  padding: 120px 0;
}

.section--navy {
  background: var(--color-cream);
  color: var(--color-text);
}

.section--light {
  background: var(--color-bg-warm);
}

.section__num {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--color-green-dark);
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
}

.section__num::before {
  content: '';
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-green);
  flex-shrink: 0;
}

.section__num--center {
  justify-content: center;
}

.section__num span {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-green);
}

.section__num--light {
  color: var(--color-text-light);
}

.section__num--light::before {
  background: var(--color-coral);
}

.section__num--light span {
  color: var(--color-coral);
}

.section__title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.section__title--light {
  color: var(--color-text);
}

.section__title--center {
  text-align: center;
}

.section__bar {
  width: 50px;
  height: 4px;
  background: var(--color-green);
  border-radius: 2px;
  margin: 28px 0;
}

.section__lead {
  text-align: center;
  color: var(--color-text-light);
  max-width: 640px;
  margin: -8px auto 64px;
  font-size: 1rem;
}

.section--navy .section__lead {
  color: var(--color-text-light);
}

/* ================================
   Concept
   ================================ */

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1.85fr;
  gap: 60px;
  align-items: start;
}

.concept__text {
  position: sticky;
  top: 140px;
}

.concept__lead {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 2;
}

.concept__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.concept-card {
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  padding: 40px 18px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.concept-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.concept-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.concept-card__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-green);
  stroke-width: 1.5;
}

.concept-card__en {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.concept-card__title {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 700;
}

.concept-card__bar {
  width: 30px;
  height: 3px;
  background: var(--color-green);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.concept-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ================================
   Problem
   ================================ */

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px 24px;
  margin-top: 56px;
}

/* 吹き出し（悩みカード） */
.fukidashi {
  position: relative;
  background: var(--color-white);
  border: 2px solid var(--color-coral-light);
  border-radius: var(--radius-md);
  padding: 26px 26px 26px 64px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

/* 枠線つきの吹き出し尻尾（外枠＋内側の2枚重ね） */
.fukidashi::before,
.fukidashi::after {
  content: '';
  position: absolute;
  left: 40px;
  border-style: solid;
  border-color: transparent;
  border-bottom: 0;
}

.fukidashi::before {
  bottom: -15px;
  border-width: 15px 15px 0;
  border-top-color: var(--color-coral-light);
}

.fukidashi::after {
  bottom: -12px;
  border-width: 12px 12px 0;
  border-top-color: var(--color-white);
  margin-left: 3px;
}

.fukidashi:hover {
  border-color: var(--color-coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fukidashi__num {
  position: absolute;
  left: 24px;
  top: 26px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6;
  color: var(--color-coral);
}

.fukidashi p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.75;
}

.problem__closing {
  max-width: 660px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
}

/* ================================
   Services
   ================================ */

/* 交互配置（ジグザグ） */
.services__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.service-row:nth-child(even) .service-row__media {
  order: 2;
}

.service-row__media {
  position: relative;
  padding: 0 0 14px 14px;
}

.service-row__media::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-md);
}

.service-row:nth-child(even) .service-row__media::before {
  border-color: var(--color-coral);
}

.service-row__media img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.service-row__num {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-green-dark);
  margin-bottom: 6px;
}

.service-row__num b {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-green);
}

.service-row__title {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.5;
}

.service-row__desc {
  font-size: 0.97rem;
  color: var(--color-text-light);
  line-height: 2;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__content {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green);
  opacity: 0.3;
  margin-bottom: 8px;
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ================================
   Difference
   ================================ */

.diff {
  background: var(--color-cream);
}

.diff .section__num {
  color: var(--color-coral);
}

.diff .section__num span {
  color: var(--color-coral);
}

.diff__table-wrap {
  overflow-x: auto;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.diff__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
}

.diff__table th,
.diff__table td {
  padding: 22px 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-gray-border);
  vertical-align: middle;
}

.diff__table thead th {
  background: var(--color-gray-light);
  color: var(--color-text-light);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border-bottom: none;
}

.diff__table thead th:first-child {
  width: 22%;
}

.diff__table thead th.is-ours {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 800;
}

.diff__table tbody th {
  text-align: left;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-bg-warm);
  white-space: nowrap;
}

.diff__table td {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.diff__table td.is-ours {
  background: var(--color-green-soft);
  color: var(--color-text);
  font-weight: 600;
}

.diff__table tr:last-child th,
.diff__table tr:last-child td {
  border-bottom: none;
}

/* ◎△ マーク */
.mark {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.mark--maru {
  color: var(--color-green);
}

.mark--sankaku {
  color: #BFC4BF;
}

/* ================================
   Plans
   ================================ */

.plans {
  background: var(--color-bg-warm);
}

.plans .section__num span {
  color: var(--color-green);
}

.plans .section__title {
  color: var(--color-text);
}

.plans .section__lead {
  color: var(--color-text-light);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.plan-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.plan-card--recommended {
  border: 2px solid var(--color-green);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
}

.plan-card--recommended:hover {
  transform: translateY(-18px);
  box-shadow: var(--shadow-lg);
}

.plan-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.15em;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.plan-card__name {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 8px;
  font-weight: 800;
}

.plan-card__target {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: 28px;
}

.plan-card__price {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-border);
  margin-bottom: 24px;
}

.plan-card__price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.plan-card__price-main {
  font-family: var(--font-sans);
  font-size: 2.6rem;
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.1;
  margin: 8px 0 10px;
}

.plan-card--recommended .plan-card__price-main {
  color: var(--color-green);
}

.plan-card__yen {
  font-size: 1.4rem;
  margin-right: 4px;
  font-weight: 600;
}

.plan-card__price-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.plan-card__month {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card__features li {
  font-size: 0.92rem;
  color: var(--color-text-light);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 7px;
  border-left: 3px solid var(--color-green);
  border-bottom: 3px solid var(--color-green);
  border-radius: 1px;
  transform: rotate(-45deg);
}

.plans__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 48px;
}

/* ================================
   Flow
   ================================ */

.flow {
  background: var(--color-cream);
}

.flow .section__num {
  color: var(--color-coral);
}

.flow .section__num span {
  color: var(--color-coral);
}

/* 縦タイムライン */
.flow__list {
  position: relative;
  max-width: 840px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow__list::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-coral) 0%, rgba(232, 122, 93, 0.2) 100%);
}

.flow__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.flow__marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--color-coral) 0%, #D9633F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
  box-shadow: 0 0 0 7px var(--color-cream), var(--shadow-sm);
}

.flow__card {
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.flow__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.flow__card h3 {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.6;
}

.flow__card p {
  font-size: 0.87rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-top: 6px;
}

/* ================================
   FAQ
   ================================ */

.faq__container {
  max-width: 900px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__item[open] {
  border-color: var(--color-green);
}

.faq__item summary {
  padding: 22px 28px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__q {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.faq__item summary span:not(.faq__q) {
  flex: 1;
}

.faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 3px solid var(--color-green);
  border-bottom: 3px solid var(--color-green);
  border-radius: 2px;
  transform: rotate(45deg) translate(-3px, -3px);
  transition: var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(-135deg) translate(-3px, -3px);
}

.faq__item summary:hover {
  background: var(--color-green-soft);
}

.faq__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 26px;
  margin: 0 28px;
  border-top: 2px dashed var(--color-gray-light);
}

.faq__a-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 20px;
  border-radius: 50%;
  background: var(--color-coral-light);
  color: var(--color-coral);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.faq__a p {
  color: var(--color-text-light);
  font-size: 0.93rem;
  line-height: 2;
  padding-top: 18px;
}

/* ================================
   CTA
   ================================ */

.cta {
  overflow: hidden;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 64px 48px 56px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* 隅飾り */
.cta__inner::before,
.cta__inner::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border: 3px solid var(--color-green);
}

.cta__inner::before {
  top: 14px;
  left: 14px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 8px 0 0 0;
}

.cta__inner::after {
  bottom: 14px;
  right: 14px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 8px 0;
}

.cta__label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--color-green);
  font-weight: 700;
  margin-bottom: 18px;
}

.cta__title {
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 26px;
  line-height: 1.55;
}

.cta__text {
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.cta__note {
  color: var(--color-gray);
  font-size: 0.8rem;
  margin-top: 24px;
}

/* ================================
   Footer
   ================================ */

.footer {
  background: var(--color-cream);
  color: var(--color-text);
  padding: 64px 0 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-gray-border);
}

.footer__logo {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-green);
  margin-bottom: 4px;
}

.footer__name {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--color-green);
}

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* ================================
   Inline CTA banner
   ================================ */

.inline-cta {
  display: flex;
  justify-content: center;
  padding: 40px 24px;
  background: var(--color-bg);
}

.inline-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-green);
  padding-bottom: 4px;
  transition: var(--transition);
}

.inline-cta__link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-green);
}

.inline-cta__link:hover {
  color: var(--color-green-dark);
}

/* ================================
   Concept — nested comparison table
   ================================ */

.diff__table-wrap--nested {
  margin: 100px auto 0;
  padding-top: 80px;
  border-top: 1px solid var(--color-gray-border);
  box-shadow: none;
  border-radius: 0;
}

.diff__subtitle {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 16px;
}

/* ================================
   Audience — For Men
   ================================ */

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.audience__media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.audience__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}

.audience__list li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
}

.audience__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

/* ================================
   Women support (understated)
   ================================ */

/* 男性向け(bg-warm)と料金(bg-warm)に挟まれるため、背景を変えて区切る */
.women-support {
  padding: 72px 0;
  background: var(--color-bg);
}

.women-support__inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.women-support .section__title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.women-support__text {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.women-support__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-coral);
  padding-bottom: 2px;
}

.women-support__link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-coral);
}

/* ================================
   Consultation intro CTA
   ================================ */

.consult-intro__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.consult-intro__text {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ================================
   Founder
   ================================ */

.founder {
  position: relative;
  overflow: hidden;
}

.founder__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.founder__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(150deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* 環は擬似要素だと overflow:hidden で切られるため box-shadow で描く。
     box-shadow は overflow の影響を受けず、border-radius にも追従する。 */
  box-shadow:
    0 0 0 12px var(--color-bg-warm),
    0 0 0 14px var(--color-green-light),
    0 8px 28px rgba(6, 199, 85, 0.12);
}

/* 4:5の縦位置写真を円形に切り抜く。
   素のcoverだと頭部が円の38%にしかならず引きすぎるため、上端基準で1.35倍に寄せて
   頭部が円の約半分を占めるようにしている（顔の中心が円の約42%の位置にくる）。 */
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.35);
  transform-origin: center top;
}

.founder__bio {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 2.1;
  margin-bottom: 22px;
}

/* 署名 */
.founder__sign {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid var(--color-gray-light);
}

.founder__name {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.08em;
}

.founder__name small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-green);
  margin-bottom: 4px;
}

/* ================================
   Plans campaign
   ================================ */

.plans__campaign {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
  border: 1px solid rgba(232, 122, 93, 0.35);
  background: var(--color-coral-light);
  padding: 28px 32px;
  border-radius: var(--radius-md);
}

.plans__campaign-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-coral);
  margin-bottom: 10px;
}

.plans__campaign-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ================================
   Mobile fixed CTA
   ================================ */

.mobile-fixed-cta {
  display: none;
}

/* ================================
   Section dividers (decorative)
   ================================ */

.highlights,
.problem,
.flow,
.cta {
  position: relative;
}

.inline-cta {
  position: relative;
  overflow: visible;
}

/* 波形ディバイダは和モダン化に伴い廃止 */
.section-divider {
  display: none;
}

/* ================================
   Highlights bar
   ================================ */

.highlights {
  background: var(--color-bg-warm);
  padding: 88px 0 92px;
}

.highlights__head {
  text-align: center;
  margin-bottom: 8px;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlights__item {
  position: relative;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 44px 26px 38px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.highlights__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.highlights__icon {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

/* 漢数字バッジ */
.highlights__kanji {
  position: absolute;
  top: -7px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-coral);
  color: var(--color-coral);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   Stats strip
   ================================ */

.stats {
  position: relative;
  background: var(--color-cream);
  padding: 62px 0;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(6, 199, 85, 0.07) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(6, 199, 85, 0.07) 0 1px, transparent 1px 26px);
  pointer-events: none;
}

.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  text-align: center;
  padding: 0 20px;
  border-left: 2px solid var(--color-gray-light);
}

.stats__item:first-child {
  border-left: none;
}

.stats__num {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 800;
  color: var(--color-green-dark);
  line-height: 1;
  margin-bottom: 14px;
}

.stats__num span {
  font-size: 1.05rem;
  font-weight: 700;
  margin-left: 3px;
}

.stats__label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.highlights__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.highlights__item h3 {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.highlights__item p {
  font-size: 0.87rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ================================
   IBJ — 正規加盟店セクション
   ================================ */

/* 認定マーク */
.ibj__mark {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
}

.ibj__mark img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.ibj__lead {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 2;
}

/* 数値4点 */
.ibj__figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 940px;
  margin: 0 auto 64px;
}

.ibj__figure {
  text-align: center;
  padding: 0 18px;
  border-left: 2px solid var(--color-gray-light);
}

.ibj__figure:first-child {
  border-left: none;
}

.ibj__figure-num {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-green-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.ibj__figure-num span {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 2px;
}

.ibj__figure-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 4px;
}

.ibj__figure-note {
  font-size: 0.7rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* メダル3点 */
.ibj__medals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.ibj__medal {
  position: relative;
  padding: 0 0 10px 10px;
  margin: 0;
}

.ibj__medal::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-md);
}

.ibj__medal img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.ibj__note {
  max-width: 820px;
  margin: 44px auto 0;
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

.ibj__note + .ibj__note {
  margin-top: 10px;
}

/* ================================
   IBJ 公式インフォメーション帯
   ================================ */

.ibj-info {
  background: var(--color-bg-warm);
  padding: 56px 0;
  border-top: 1px solid var(--color-gray-border);
}

.ibj-info__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}

.ibj-info__text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.ibj-info__banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  justify-items: center;
}

.ibj-info__banners img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-border);
}

/* フッターの認定マーク */
.footer__ibj {
  display: inline-block;
  margin-top: 18px;
}

.footer__ibj img {
  display: block;
  height: 34px;
  width: auto;
  border-radius: 6px;
}

/* ================================
   Concept supporting photo
   ================================ */

.concept__photo {
  position: relative;
  margin-top: 72px;
  padding: 0 0 12px 12px;
}

.concept__photo::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-md);
}

.concept__photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ================================
   和 — Japanese design system (Friendly tone)
   ================================ */

/* 飾り罫（菱形＋フェード罫） */
.jp-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 180px;
  margin: 0 auto 44px;
}

.jp-rule span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--color-green));
}

.jp-rule span:last-child {
  background: linear-gradient(90deg, var(--color-green), transparent);
}

.jp-rule i {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--color-coral);
  transform: rotate(45deg);
}

.jp-rule--left {
  margin: 0 0 28px;
  width: 140px;
}

/* ＼ キャッチ ／ */
.kakko {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-green-dark);
  margin-bottom: 16px;
}

.kakko::before,
.kakko::after {
  content: '';
  width: 3px;
  height: 1.5em;
  background: var(--color-green);
  border-radius: 2px;
}

.kakko::before { transform: rotate(-22deg); }
.kakko::after  { transform: rotate(22deg); }

.kakko--light { color: var(--color-coral); }

.kakko--light::before,
.kakko--light::after { background: var(--color-coral); }

.kakko--left { justify-content: flex-start; }

/* 傍点 */
.bouten {
  -webkit-text-emphasis: '・' currentColor;
  text-emphasis: '・' currentColor;
  -webkit-text-emphasis-position: over right;
  text-emphasis-position: over right;
}

/* 蛍光マーカー */
.marker {
  background: linear-gradient(transparent 58%, rgba(6, 199, 85, 0.28) 58%);
  padding: 0 2px;
}

/* ▼ 誘導矢印 */
.arrow-guide {
  display: block;
  width: 0;
  height: 0;
  margin: 44px auto 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 18px solid var(--color-coral);
}

.sp-only { display: none; }

/* 菱格子（和柄） */
.wa-lattice {
  position: relative;
  overflow: hidden;
}

.wa-lattice > * {
  position: relative;
  z-index: 1;
}

.wa-lattice::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(6, 199, 85, 0.07) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(6, 199, 85, 0.07) 0 1px, transparent 1px 26px);
  pointer-events: none;
  z-index: 0;
}

/* 女性向け — 囲み */
.women-support__inner {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 52px 48px 46px;
  max-width: 760px;
}

.women-support__inner::before,
.women-support__inner::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid var(--color-coral);
}

.women-support__inner::before {
  top: 14px;
  left: 14px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 6px 0 0 0;
}

.women-support__inner::after {
  bottom: 14px;
  right: 14px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 6px 0;
}

/* 男性向け — 画像の枠オフセット */
.audience__media {
  position: relative;
  padding: 0 14px 14px 0;
}

.audience__media::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 2px solid var(--color-coral);
  border-radius: var(--radius-md);
}

.audience__media img {
  position: relative;
}

/* コンセプト — 横型カード（ハイライトの縦型と対比させる） */
.concept__cards {
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: start;
}

.concept__cards .concept-card {
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
  padding: 28px 34px;
}

.concept__cards .concept-card__icon {
  margin: 0;
  flex-shrink: 0;
}

.concept__cards .concept-card__body {
  flex: 1;
  min-width: 0;
}

.concept__cards .concept-card__title {
  margin-bottom: 12px;
}

.concept__cards .concept-card__bar {
  margin: 0 0 14px;
}

/* ================================
   Animations
   ================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   Responsive
   ================================ */

/* タブレット幅ではヘッダーを圧縮して折り返しを防ぐ */
@media (max-width: 1100px) {
  .header__inner {
    padding: 14px 22px;
    gap: 18px;
  }

  .header__logo-en {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .header__logo-ja {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .header__nav-list {
    gap: 18px;
  }

  .header__nav-list a {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .header__cta {
    padding: 10px 18px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
  .concept__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .concept__text {
    position: static;
  }

  .concept__cards {
    grid-template-columns: 1fr;
  }

  .services__grid,
  .plans__grid,
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .audience__grid,
  .founder__grid,
  .consult-fit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder__photo {
    width: 160px;
    margin: 0 auto;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-row:nth-child(even) .service-row__media {
    order: 0;
  }

  .services__list {
    gap: 56px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 12px 20px;
  }

  .header__logo-en {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .header__logo-ja {
    font-size: 1rem;
    white-space: nowrap;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .header.is-open .header__nav {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--color-bg);
    padding: 40px 24px;
  }

  .header.is-open .header__nav-list {
    flex-direction: column;
    gap: 24px;
  }

  .header.is-open .header__nav-list a {
    font-size: 1.1rem;
  }

  .header.is-open .header__menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header.is-open .header__menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .header.is-open .header__menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(250, 251, 247, 0.88) 0%, rgba(250, 251, 247, 0.55) 45%, rgba(250, 251, 247, 0.2) 100%);
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 92px 20px 44px;
  }

  .hero__tag {
    font-size: 0.72rem;
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: 1.95rem;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .hero__actions {
    margin-bottom: 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* 全幅ボタンなので左右パディングを詰め、CTA文言の折り返しを防ぐ */
  .btn {
    width: 100%;
    padding: 16px 20px;
  }

  .hero__trust {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .concept__cards,
  .services__grid,
  .plans__grid,
  .problem__grid,
  .highlights__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlights {
    padding: 12px 0 48px;
  }

  .stats {
    padding: 40px 0;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .stats__item:nth-child(3) {
    border-left: none;
  }

  .ibj__figures {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    margin-bottom: 48px;
  }

  .ibj__figure:nth-child(3) {
    border-left: none;
  }

  .ibj__medals {
    gap: 16px;
  }

  .ibj__lead {
    margin-bottom: 40px;
  }

  .ibj-info__banners {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: none;
    padding: 26px 20px 26px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
  }

  .hero__tate {
    display: none;
  }

  .highlights {
    padding: 64px 0 68px;
  }

  .fukidashi {
    padding: 22px 22px 22px 56px;
  }

  .fukidashi p {
    font-size: 0.98rem;
  }

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

  .flow__list::before {
    left: 21px;
  }

  .flow__item {
    gap: 18px;
  }

  .flow__marker {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
    box-shadow: 0 0 0 6px var(--color-cream), var(--shadow-sm);
  }

  .flow__card {
    padding: 16px 20px;
  }

  .flow__card h3 {
    font-size: 0.98rem;
  }

  .service-row__num b {
    font-size: 2.3rem;
  }

  .service-row__title {
    font-size: 1.4rem;
  }

  .service-row__media,
  .concept__photo {
    padding: 0 0 8px 8px;
  }

  .audience__media {
    padding: 0 8px 8px 0;
  }

  .service-row__media::before,
  .concept__photo::before,
  .audience__media::before {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }

  .women-support__inner,
  .cta__inner {
    padding: 40px 24px 36px;
  }

  .jp-rule {
    width: 150px;
    margin-bottom: 32px;
  }

  .kakko {
    font-size: 0.9rem;
    gap: 12px;
  }

  .diff__table .mark {
    font-size: 1.4rem;
  }

  .faq__a {
    margin: 0 20px;
  }

  .faq__item summary {
    padding: 18px 20px;
  }

  .sp-only {
    display: inline;
  }

  .diff__table-wrap {
    max-width: none;
    margin: 0 -24px;
    border-radius: 0;
  }

  .diff__table {
    min-width: auto;
    width: 100%;
  }

  .diff__table th,
  .diff__table td {
    padding: 14px 16px;
    font-size: 0.82rem;
  }

  .diff__table th:first-child {
    width: auto;
    white-space: nowrap;
  }

  .diff__table td:first-child {
    white-space: nowrap;
  }

  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer__nav {
    gap: 16px;
  }

  .diff__table-wrap--nested {
    margin-top: 64px;
    padding-top: 56px;
  }

  .inline-cta {
    padding: 28px 24px;
  }

  .women-support .section__title {
    font-size: 1.2rem;
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-fixed-cta {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-border);
    box-shadow: 0 -4px 20px rgba(6, 199, 85, 0.12);
  }

  .mobile-fixed-cta__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.9rem;
  }

  /* メダルは3カラムだと文字が潰れるため1カラムに */
  .ibj__medals {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 280px;
  }

  .ibj__mark img {
    height: 34px;
  }

  .concept-card,
  .service-card,
  .plan-card,
  .problem-card {
    padding: 32px 20px;
  }

  .service-card__content {
    padding: 24px 20px;
  }
}
