/* ============================================
   MODERATION LP — Page-specific styles
   依存: style.css（共通CSS）を先に読み込むこと
   ============================================ */

/* Header: IG gradient hero override */
header:not(.scrolled) .header-logo {
  filter: brightness(0) invert(1);
}
header:not(.scrolled) .btn-ghost {
  border-color: rgba(255, 255, 255, .3) !important;
  color: rgba(255, 255, 255, .8) !important;
  background: rgba(255, 255, 255, .08) !important;
}
header:not(.scrolled) .btn-ghost:hover {
  border-color: rgba(255, 255, 255, .6) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .16) !important;
}

/* ── HERO animation ── */
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(50px, -40px) scale(1.15); }
  70%       { transform: translate(-30px, 50px) scale(0.9); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-45px, 30px) scale(1.12); }
  75%       { transform: translate(35px, -45px) scale(0.88); }
}

/* ── HERO ── */
.m-hero {
  background: #000;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 96px;
}

/* 動画背景 */
.m-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.m-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* 動画の上にダークオーバーレイ（テキスト可読性確保） */
.m-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(60,0,80,.55) 50%,
    rgba(0,0,0,.72) 100%
  );
}

/* 光のブロブ（浮遊） */
.m-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .22) 0%, transparent 60%);
  top: -200px;
  right: -100px;
  pointer-events: none;
  animation: blobFloat1 14s ease-in-out infinite;
}

.m-hero::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 80%, rgba(255, 255, 255, .12) 0%, transparent 55%);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
  animation: blobFloat2 18s ease-in-out infinite;
}

.m-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.m-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
}

.m-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.m-h1 {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 28px;
}

/* Hero h1 em: IG gradient背景上ではゴールドで表示 */
.m-h1 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #FFE066;
  background-clip: initial;
  text-shadow: 0 0 32px rgba(255, 220, 80, .45);
}

/* その他セクションのh2 em: IGグラデテキスト */
.m-sec-h2 em {
  font-style: normal;
  background: var(--ig-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-desc {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 400;
  color: rgba(255, 255, 255, .88);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.m-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.m-hero-cta .btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.m-hero-cta .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

/* Hero desc 強調テキスト */
.m-desc-em {
  font-size: 1.18em;
  font-weight: 700;
  color: #fff;
}

/* Hero CTAボタン: グラデ背景上では白ボタン */
.m-hero .btn-solid {
  background: #fff !important;
  color: #C13584 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

.m-free-note {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .08em;
  margin-top: 20px;
  text-transform: uppercase;
}

/* ── PAIN ── */
.m-pain {
  background: #F7F7F7;
  padding: 100px 40px;
}

.m-pain-inner {
  max-width: 960px;
  margin: 0 auto;
}

.m-sec-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E1306C;
  margin-bottom: 14px;
}

.m-sec-h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--ink);
}

.m-sec-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--mid);
  margin-top: 14px;
  line-height: 1.75;
}

.m-pain-stat {
  font-size: 1.6em;
  font-weight: 900;
  line-height: 1;
  background: var(--ig-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-pain-footnote {
  margin-top: 28px;
  font-family: var(--ff-body);
  font-size: 11px;
  color: var(--mid);
  opacity: .6;
}

.m-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.m-pain-card {
  background: #fff;
  border: 1px solid rgba(15, 15, 15, .06);
  border-radius: 18px;
  padding: 32px 26px;
}

.m-pain-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.m-pain-icon svg {
  width: 72px;
  height: 72px;
}

.m-pain-title {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.m-pain-body {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── SOLUTION ── */
.m-solution {
  background: #fff;
  padding: 100px 40px;
}

.m-solution-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.m-solution-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
  margin-top: 0;
}

.m-detect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.m-detect-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink2);
}

.m-detect-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFF0F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.m-screen {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .12);
  border: 1px solid rgba(15, 15, 15, .06);
}

.m-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* 透過PNG用：カード枠・影を除去 */
.m-screen--transparent {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
}

/* ── STEPS ── */
.m-steps {
  background: #0D0D0D;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.m-steps::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 58, 180, .18) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.m-steps-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.m-steps-inner .m-sec-label { color: rgba(225, 48, 108, .9); }
.m-steps-inner .m-sec-h2 { color: #fff; }
.m-steps-inner .m-sec-sub { color: rgba(255, 255, 255, .45); }

.m-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.m-steps-img {
  margin: 52px auto 0;
  max-width: 340px;
  width: 100%;
}

.m-steps-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
}

.m-steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, #E1306C, #833AB4);
  opacity: .25;
}

.m-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.m-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ig-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.m-step-title {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
}

.m-step-body {
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
}

/* ── PLAN ── */
.m-plan {
  background: #F7F7F7;
  padding: 100px 40px;
}

.m-plan-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.m-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.m-plan-card {
  background: #fff;
  border: 1.5px solid rgba(15, 15, 15, .08);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: box-shadow .2s;
}

.m-plan-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, .07);
}

.m-plan-card.featured {
  border-color: #E1306C;
  background: #FFFAFC;
}

.m-plan-rec {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ig-grad);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.m-plan-name {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
}

.m-plan-price {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.m-plan-price span {
  font-size: 14px;
  font-family: var(--ff-body);
  color: var(--mid);
  font-weight: 400;
}

.m-plan-limit {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: .05em;
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 15, 15, .06);
}

.m-plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.m-plan-feats li {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.m-plan-feats li::before {
  content: '✓';
  color: #E1306C;
  font-weight: 700;
  flex-shrink: 0;
}

.m-plan-feats li.na { color: var(--faint); }
.m-plan-feats li.na::before { content: '—'; color: var(--faint); }

/* ── MORE FEATURES ── */
.m-more {
  background: #0D0D0D;
  padding: 100px 0 0;
}

.m-more-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px 64px;
}

.m-more-inner .m-sec-label { color: rgba(225, 48, 108, .9); }
.m-more-inner .m-sec-h2 { color: #fff; }
.m-more-inner .m-sec-sub { color: rgba(255, 255, 255, .45); }

/* 横スクロール誘導 */
.m-scroll-hint {
  display: none;
}

.m-more-scroll-wrap {
  position: relative;
  margin-top: 0;
  background: #F7F7F7;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 64px;
}

.m-more-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 40px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15,15,15,.12) transparent;
}

.m-more-scroll::-webkit-scrollbar { height: 4px; }
.m-more-scroll::-webkit-scrollbar-track { background: transparent; }
.m-more-scroll::-webkit-scrollbar-thumb {
  background: rgba(15,15,15,.12);
  border-radius: 4px;
}

.m-more-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, .06);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.m-more-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.m-more-img {
  width: 100%;
  background: #F5F5F5;
  border-top: 1px solid rgba(15,15,15,.04);
}

.m-more-img img {
  width: 100%;
  height: auto;
  display: block;
}

.m-more-body {
  padding: 20px 22px 24px;
  background: linear-gradient(150deg, #FDF0F6 0%, #F3EEFF 100%);
}

.m-more-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C0186A;
  background: rgba(225, 48, 108, .08);
  border: 1px solid rgba(225, 48, 108, .15);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.m-more-title {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.m-more-desc {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── FAQ ── */
.m-allfeats {
  background: #fff;
  padding: 80px 0;
}
.m-allfeats .m-sec-h2 em {
  background: var(--ig-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-faq {
  background: #fff;
  padding: 88px 40px;
}

.m-faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.m-faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.m-faq-item {
  background: #F7F7F7;
  border-radius: 14px;
  padding: 22px 26px;
}

.m-faq-q {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.m-faq-a {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.m-cta {
  background: #0D0D0D;
  padding: 112px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.m-cta::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 48, 108, .18) 0%, rgba(131, 58, 180, .12) 40%, transparent 70%);
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.m-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.m-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 6vw, 60px);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.m-cta h2 em {
  font-style: normal;
  background: var(--ig-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-cta p {
  font-family: var(--ff-body);
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 44px;
  line-height: 1.8;
}

/* ── FOOTER ── */
.m-footer {
  background: #0A0A0A;
  padding: 44px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.m-footer-logo {
  height: 200px;
  opacity: .7;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.m-footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

.m-footer-links a {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .28);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s;
}

.m-footer-links a:hover { color: rgba(255, 255, 255, .55); }

.m-footer-copy {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .06em;
}

/* カーソル非表示を無効化（style.css の cursor:none 上書き） */
* { cursor: auto !important; }

/* ── RESPONSIVE: 680px以下（スマホ） ── */
@media(max-width:679px) {
  /* Hero */
  .m-hero { padding: 100px 20px 64px; min-height: 100svh; }
  .m-h1 { font-size: clamp(28px, 7.5vw, 38px); line-height: 1.15; }
  .m-desc { font-size: 15px; line-height: 1.7; }
  .m-hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .m-hero-cta .btn-ghost-dark { text-align: center; }
  .m-free-note { font-size: 11px; }

  /* Header logo: FV で小さく */
  .header-logo { height: 46px !important; }
  header.scrolled .header-logo { height: 38px !important; }

  /* Pain */
  .m-pain { padding: 64px 20px; }
  .m-pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .m-pain-card { padding: 24px 20px; text-align: center; }
  .m-pain-icon svg { width: 56px; height: 56px; }
  .m-pain-title { font-size: 16px; }
  .m-pain-body { font-size: 15px; line-height: 1.65; }
  .m-sec-sub { font-size: 15px; line-height: 1.7; }

  /* Solution */
  .m-solution { padding: 64px 20px; }
  .m-solution-grid { grid-template-columns: 1fr; gap: 32px; }
  .m-solution-grid .m-sec-h2 { font-size: clamp(24px, 7vw, 34px); }
  .m-detect-item { font-size: 15px; }

  /* Steps */
  .m-steps { padding: 64px 20px; }
  .m-steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .m-steps-grid::before { display: none; }
  .m-steps-img { max-width: 260px; }

  /* Plan */
  .m-plan { padding: 64px 20px; }
  .m-plan-grid { grid-template-columns: 1fr; gap: 24px; }
  .m-plan-card { padding: 28px 20px; }
  .m-plan-feats li { font-size: 14px; }

  /* More Features */
  .m-more { padding: 64px 0 0; }
  .m-more-inner { padding: 0 20px 40px; }
  .m-more-scroll-wrap { padding-top: 32px; padding-bottom: 40px; }
  .m-more-scroll { padding: 8px 20px 20px; }
  .m-more-card { flex: 0 0 260px; }
  .m-more-desc { font-size: 13px; }

  /* 横スクロール誘導ヒント */
  .m-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .65);
  }
  /* 右端フェードで続きがあることを示す */
  .m-more-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(to right, transparent, #F7F7F7);
    pointer-events: none;
  }

  /* FAQ */
  .m-faq { padding: 64px 20px; }
  .m-faq-item { padding: 18px 20px; }

  /* CTA */
  .m-cta { padding: 72px 20px; }
  .m-cta h2 { font-size: clamp(28px, 8vw, 40px); }
  .m-cta p { font-size: 15px; }
  .m-cta .btn { width: 100%; min-height: 56px; }

  /* Footer */
  .m-footer { padding: 36px 20px; }
  .m-footer-links { flex-wrap: wrap; gap: 16px; }

  /* mobile header: IG gradient hero で常に表示（style.css の opacity:0 を上書き） */
  header:not(.scrolled) {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  header:not(.scrolled) .header-inner {
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* Sticky CTA: FVでは非表示、スクロール後にスライドアップ */
  .mobile-sticky-cta {
    transform: translateY(calc(100% + 8px));
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.3s ease;
  }
  .mobile-sticky-cta.sticky-visible {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── RESPONSIVE: 360px以下（iPhone SE） ── */
@media(max-width:359px) {
  .m-hero { padding: 96px 16px 56px; }
  .m-h1 { font-size: 26px; }
  .m-pain { padding: 56px 16px; }
  .m-solution { padding: 56px 16px; }
  .m-steps { padding: 56px 16px; }
  .m-plan { padding: 56px 16px; }
  .m-faq { padding: 56px 16px; }
  .m-cta { padding: 64px 16px; }
  .m-more-inner { padding: 0 16px 36px; }
  .m-more-scroll { padding: 8px 16px 16px; }
}

/* ── RESPONSIVE: タブレット（680〜960px） ── */
@media(min-width:680px) and (max-width:960px) {
  .m-solution-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .m-plan-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ============ MOBILE HAMBURGER MENU ============ */
.m-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer !important;
  padding: 4px;
  flex-shrink: 0;
}

.m-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

/* Dark hero state: white spans */
header:not(.scrolled) .m-ham span {
  background: rgba(255, 255, 255, 0.85);
}

/* Open state: X animation */
.m-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.m-ham.open span:nth-child(2) { opacity: 0; }
.m-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer (hidden by default) */
.m-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 4px 20px 16px;
  background: rgba(247, 247, 247, 0.97);
  border-top: 1px solid rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.m-mobile-nav.open {
  display: flex;
}

.m-mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
}

.m-mobile-nav a:last-child {
  border-bottom: none;
}

/* IG gradient hero: 紺色グラデ nav drawer */
header:not(.scrolled) .m-mobile-nav {
  background: linear-gradient(160deg, #1C0B35 0%, #0E1545 100%);
  border-top-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

header:not(.scrolled) .m-mobile-nav a {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

@media(max-width:679px) {
  /* Show hamburger, hide solid CTA button (sticky bottom replaces it) */
  .m-ham { display: flex; }
  .hcta .btn-solid { display: none; }
  .hcta .btn-ghost { display: none; }
}

/* ── Voice Section ── */
.m-voice { padding: 80px 0; background: #f8f9fb; }
.m-voice-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.m-voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
@media(max-width:679px) { .m-voice-grid { grid-template-columns: 1fr; } }

.m-voice-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.m-voice-ba { display: flex; flex-direction: column; gap: 10px; }
.m-voice-ba-block { padding: 12px 14px; border-radius: 10px; }
.m-voice-ba-block.before { background: #fef2f2; }
.m-voice-ba-block.after  { background: #f0fdf4; }
.m-voice-ba-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.m-voice-ba-label.before { background: #fecaca; color: #b91c1c; }
.m-voice-ba-label.after  { background: #bbf7d0; color: #15803d; }
.m-voice-ba-text { font-size: 13px; line-height: 1.65; margin: 0; }

.m-voice-quote { border-top: 1px solid #eee; padding-top: 14px; }
.m-voice-quote-text {
  font-size: 13px;
  line-height: 1.75;
  color: #444;
  font-style: italic;
  margin: 0 0 12px;
}
.m-voice-meta { display: flex; align-items: center; gap: 10px; }
.m-voice-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg,#5b51d8,#a78bfa);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.m-voice-name { font-size: 13px; font-weight: 700; display: block; }
.m-voice-role { font-size: 11px; color: #888; display: block; }
