/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #00909d;
  --teal-light: #00c7ce;
  --orange:     #f29c2c;
  --navy:       #1a2950;
  --pink:       #e85599;
  --bg-blue:    #eaf6fb;
  --bg-teal:    #e1fafa;
  --bg-grey:    #f5f5f5;
  --text:       #333;
  --text-sub:   #555;
  --grad-teal:  linear-gradient(135deg, #00909d 0%, #00c7ce 100%);
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== INNER ===== */
.inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 22px;
}
@media (max-width: 767px) {
  .inner { padding: 64px 5%; }
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #000;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, #005a63 0%, #00909d 25%, #00c7ce 65%, #5fe3ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.15s;
  box-shadow: 3px 4px 2px rgba(0,0,0,0.5);
}
.btn:hover { opacity: 0.92; }
.btn::after {
  content: '›';
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding-bottom: 6px;
  padding-left: 1px;
}

.btn-orange {
  background: linear-gradient(180deg, #ffb347 0%, #f29c2c 60%, #e07f10 100%);
  color: #fff;
}
.btn-white  {
  background: linear-gradient(180deg, #ffffff 0%, #d8e4e6 100%);
  color: var(--teal);
}
.btn-white::after { background: rgba(0,144,157,0.18); color: var(--teal); }
.btn-teal   { background: var(--teal); color: #fff; }

/* ===== NAVBAR ===== */
.owl-navbar {
  background: rgba(0,144,157,0.2);
  backdrop-filter: blur(6px);
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.owl-navbar-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.owl-navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.owl-navbar-logo img {
  height: 32px;
  width: auto;
}
.owl-navbar-btns { display: flex; gap: 8px; }
.btn-nav {
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 2px 3px 2px rgba(0,0,0,0.5);
}
.btn-nav-orange {
  background: linear-gradient(180deg, #ffb347 0%, #f29c2c 60%, #e07f10 100%);
  color: #fff;
}
.btn-nav-white {
  background: linear-gradient(180deg, #ffffff 0%, #d8e4e6 100%);
  color: var(--teal);
}
.btn-nav::after {
  content: '›';
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  padding-left: 1px;
}
.btn-nav-white::after { background: rgba(0,144,157,0.18); color: var(--teal); }

/* ===== S01 HERO ===== */
.s01-hero {
  background: linear-gradient(-30deg, #00909d 0%, #00c7ce 50%, #00909d 100%);
  color: #fff;
  overflow: hidden;
}
.s01-hero .inner {
  max-width: 980px;
  width: 100%;
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: 24px;
  align-items: center;
  padding: 40px 22px;
}
@media (max-width: 767px) {
  .s01-hero .inner {
    grid-template-columns: 1fr;
    padding: 32px 5%;
  }
}

.hero-h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 28px;
}
.hero-yellow { color: #fff100; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  max-width: 520px;
}
.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  color: var(--teal);
  box-shadow: 3px 4px 2px rgba(0,0,0,0.5);
}
.stat-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  white-space: nowrap;
}
.stat-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; max-width: 520px; }
.hero-btns .btn { padding: 12px 22px; font-size: 15px; flex: 1; justify-content: center; }
.hero-hashtags { font-size: 13px; opacity: 0.95; margin-bottom: 30px; }

/* Hero right side */
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap img {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .hero-img-wrap { margin-top: 16px; }
  .hero-img-wrap img { max-width: 300px; }
}

/* ===== S02 PROBLEM ===== */
.s02-problem { background: #fff; }

.problem-body {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .problem-body { grid-template-columns: 1fr; }
  .problem-body .illust { display: none; }
}
.problem-body .illust img { width: 100%; object-fit: contain; }

.problem-checklist { list-style: none; }
.problem-checklist li {
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.problem-checklist li:last-child { border-bottom: none; }
.problem-checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.problem-banner {
  background: var(--grad-teal);
  border-radius: 20px;
  padding: 28px 36px;
  text-align: center;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
}
@media (max-width: 767px) {
  .problem-banner { font-size: 15px; padding: 18px 20px; }
}

/* ===== S03 TASK ===== */
.s03-task { background: var(--bg-blue); }

.task-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 767px) { .task-cards { grid-template-columns: 1fr; } }

.task-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 6px 28px rgba(0,144,157,0.09);
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767px) {
  .task-card { grid-template-columns: 1fr 80px; }
}
.task-card h3 {
  font-size: 23px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.task-card p { font-size: 16px; color: var(--text-sub); line-height: 1.75; }
.task-card .task-img img {
  width: 100%;
  object-fit: contain;
}
.task-note {
  text-align: center;
  font-size: 16px;
  color: var(--text-sub);
}

/* ===== S04 REASONS ===== */
.s04-reasons { background: #fff; }

.reasons-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) { .reasons-cards { grid-template-columns: 1fr; } }

.reason-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.reason-card .reason-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.reason-card .reason-body { padding: 24px; }
.reason-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.reason-card p { font-size: 14px; color: var(--text-sub); line-height: 1.75; }

/* ===== S05 ABOUT ===== */
.s05-about { background: var(--bg-teal); }

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 767px) { .about-cols { grid-template-columns: 1fr; gap: 24px; } }

.about-cols img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,144,157,0.15);
}
.about-text .section-label { color: #000; }
.about-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  background: linear-gradient(120deg, #005a63 0%, #00909d 25%, #00c7ce 65%, #5fe3ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  margin: 8px 0 24px;
}
.about-text p { font-size: 15px; color: var(--text-sub); line-height: 1.85; }

/* ===== S06 COMPARISON ===== */
.s06-comparison { background: #fff; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
.comparison-table th {
  background: var(--teal);
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  text-align: center;
}
.comparison-table th:first-child { background: #f0f0f0; color: var(--text); }
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.comparison-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: var(--text);
  background: #fafafa;
}
.comparison-table td.owl-val { color: var(--teal); font-weight: 700; }
.comparison-table tbody tr:nth-child(even) td { background: #f9fbfc; }
.comparison-table tbody tr:nth-child(even) td:first-child { background: #f2f5f7; }

.comparison-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 28px;
  line-height: 1.8;
}
.comparison-cta { text-align: center; }

/* ===== S07 CTA BAND ===== */
.s07-cta-band {
  background: var(--grad-teal);
  text-align: center;
}
.s07-cta-band .inner { padding: 64px 0; }
.s07-cta-band h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.s07-cta-band p { color: rgba(255,255,255,0.9); font-size: 15px; margin-bottom: 28px; }

/* ===== S08 MERITS ===== */
.s08-merits { background: var(--bg-grey); }

.merits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) { .merits-grid { grid-template-columns: 1fr; } }

.merit-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: flex-start;
}
.merit-card img { width: 110px; object-fit: contain; }
.merit-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.merit-card p { font-size: 14px; color: var(--text-sub); line-height: 1.75; }

/* ===== S09 VOICE ===== */
.s09-voice { background: #fff; }

.voice-slider-wrapper { position: relative; }
.voice-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.voice-slider::-webkit-scrollbar { display: none; }

.voice-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal);
  z-index: 2;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.voice-nav.prev { left: -22px; }
.voice-nav.next { right: -22px; }
.voice-nav:hover { background: var(--teal); color: #fff; }

.voice-card {
  flex: 0 0 296px;
  width: 296px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}
.voice-card-bottom {
  background: #fff100;
  height: 8px;
  width: 100%;
  flex-shrink: 0;
}
.voice-area {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.voice-card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.voice-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  object-fit: cover;
  flex-shrink: 0;
}
.voice-card h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}
.voice-card h3 em {
  font-style: normal;
  color: var(--pink);
}
.voice-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 767px) {
  /* ラッパーをinnerの外まで広げて両端ちらみを実現 */
  .s09-voice .voice-slider-wrapper {
    margin-left: -5vw;
    margin-right: -5vw;
  }
  .voice-slider { padding: 0 10vw; }
  .voice-card { flex: 0 0 80vw; width: 80vw; }
  .voice-nav { width: 36px; height: 36px; font-size: 22px; }
  .voice-nav.prev { left: 4px; }
  .voice-nav.next { right: 4px; }
}

/* ===== S10 PLANS ===== */
.s10-plans { background: var(--grad-teal); }
.s10-plans .section-label { color: rgba(255,255,255,0.7); text-align: left; }
.s10-plans .section-title {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  text-align: left;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  margin-top: 60px;
}
@media (max-width: 767px) { .plans-grid { grid-template-columns: 1fr; max-width: 320px; margin: 60px auto 36px; } }

.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 0 20px 60px;
  position: relative;
  text-align: center;
  border: 2px solid transparent;
}
.plan-card.popular { border-color: var(--pink); }
.plans-grid .plan-card:first-child { border-color: #6dcfcf; }
.plans-grid .plan-card:last-child { border-color: var(--navy); }

.plan-char {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: -55px auto 16px;
  display: block;
  position: relative;
  z-index: 1;
}
.plan-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.plan-profit-label { font-size: 12px; color: #888; }
.plan-profit {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 12px;
}
.plan-features {
  list-style: none;
  text-align: left;
  font-size: 13px;
  color: var(--text-sub);
}
.plan-features li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.plan-badge {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.plan-badge.mint  { background: #6dcfcf; }
.plan-badge.pink  { background: var(--pink); }
.plan-badge.navy  { background: var(--navy); }

.plans-note {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin: 24px 0 28px;
  text-align: center;
}
.s10-plans > .inner > .btn {
  display: inline-flex;
  margin: 0 auto;
}
.s10-plans .inner { text-align: center; }
.s10-plans .section-label,
.s10-plans .section-title { text-align: left; display: block; }
.s10-plans .plans-grid { text-align: left; }

/* ===== S11 FLOW ===== */
.s11-flow { background: var(--bg-blue); }

.flow-steps { margin-top: 40px; }
.flow-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  margin-bottom: 0;
  position: relative;
}
.flow-step:not(:last-child) {
  padding-bottom: 32px;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 31px;
  top: 64px;
  width: 2px;
  bottom: 0;
  background: var(--teal);
  opacity: 0.4;
}
.step-left { position: relative; }
.step-circle {
  width: 64px;
  height: 64px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}
.step-circle span { font-size: 18px; line-height: 1; }
.step-body { padding-top: 14px; }
.step-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-body p { font-size: 14px; color: var(--text-sub); line-height: 1.75; }

/* ===== S12 FAQ ===== */
.s12-faq { background: var(--bg-grey); }

.faq-items { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}
.faq-q-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal-light);
  flex-shrink: 0;
  line-height: 1.3;
}
.faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.faq-a {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  padding-left: 32px;
}

/* ===== S13 CTA ===== */
.s13-contact { background: #fff; }
.s13-contact .inner { text-align: center; padding: 100px 22px; }
@media (max-width: 767px) { .s13-contact .inner { padding: 70px 5%; } }

.s13-contact .section-label { text-align: left; }
.s13-contact h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  background: linear-gradient(120deg, #005a63 0%, #00909d 25%, #00c7ce 65%, #5fe3ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 8px 0 24px;
  text-align: left;
}
.s13-contact .sub { font-size: 15px; color: var(--text-sub); margin-bottom: 40px; }
.contact-form-wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.contact-iframe {
  width: 100%;
  border: none;
  display: block;
  height: 1100px;
}
.contact-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-btns .btn {
  min-width: 240px;
}

/* ===== S14 FOOTER ===== */
.s14-footer { background: var(--grad-teal); }
.s14-footer .section-label { color: rgba(255,255,255,0.7); }
.s14-footer h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 32px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}
@media (max-width: 767px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-info p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 2;
}
.footer-building {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
.footer-bottom a, .footer-bottom p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.footer-bottom a { text-decoration: underline; display: block; margin-bottom: 6px; }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,30,40,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  background: #fff;
  border-radius: 22px;
  width: 92%;
  max-width: 640px;
  height: 80vh;
  max-height: 720px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal.is-open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: #333;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s;
}
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* スマホ専用改行 / PC専用改行 */
.sp-br { display: none; }
.pc-br { display: block; }

/* ===== MOBILE OVERRIDES (max-width: 767px) ===== */
@media (max-width: 767px) {

  .sp-br { display: block; }
  .pc-br { display: none; }

  /* ナビバー: 白ボタン非表示・オレンジを95%縮小 */
  .btn-nav-white { display: none; }
  .btn-nav-orange { transform: scale(0.95); transform-origin: right center; }

  /* ヒーロー: タイトルサイズ */
  .hero-h1 { font-size: 33px; }

  /* ヒーロー: キャラをタイトル直下に移動 */
  .s01-hero .inner { display: flex; flex-direction: column; }
  .hero-left { display: contents; }
  .hero-top { order: 1; margin-bottom: -30px; }
  .hero-img-wrap { order: 2; margin-top: 0; }
  .hero-bottom { order: 3; }

  /* ヒーロー: バッジ文字縮小 */
  .stat-box { padding: 10px 6px; }
  .stat-label { font-size: 12px; }
  .stat-num { font-size: 20px; }
  .stat-sub { font-size: 11px; }
  .hero-stats { max-width: 100%; }

  /* ヒーロー: CTAボタン縦並び */
  .hero-btns { flex-direction: column; max-width: 100%; }
  .hero-btns .btn { width: 100%; box-sizing: border-box; }

  /* 比較表: フォント・パディング縮小 */
  .comparison-table { font-size: 11px; table-layout: fixed; }
  .comparison-table th,
  .comparison-table td { padding: 8px 5px; }

  /* ボタン: フォント・パディング縮小 */
  .btn { font-size: 13px; padding: 14px 20px; }
  .btn::after { font-size: 22px; width: 24px; height: 24px; }

  /* S07 CTA帯: 左右パディング追加 */
  .s07-cta-band .inner { padding: 64px 5%; }

  /* PLANSカード: バッジとキャラの重なり防止 */
  .plans-grid { gap: 100px; margin-bottom: 70px; }
}
