/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

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

:root {
  --red:        #e60039;
  --black:      #040000;
  --text:       #333333;
  --gray:       #7f7f7f;
  --border:     #d6dde1;
  --bg:         #eff4f7;
  --white:      #ffffff;

  --font-body:  'Noto Sans JP', sans-serif;
  --font-en:    'Josefin Sans', sans-serif;

  /* radius tokens */
  --r-sm:   8px;
  --r-lg:   30px;
  --r-full: 9999px;

  /* anchor offset for fixed header */
  --anchor-offset: 96px;
  --page-max-width: 1240px;
  --page-wide-width: 1320px;
  --page-gutter-desktop: 20px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: var(--black);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.mobile-only { display: none; }

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter-desktop);
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 36px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, opacity 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover  { opacity: 0.88; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover  { background: var(--red); color: var(--white); opacity: 1; }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); opacity: 1; }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--text); border-color: var(--text); opacity: 1; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(25.6px, 3vw, 38.4px);
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 52px;
  color: var(--black);
}
.section-title--white { color: var(--white); }
.highlight     { color: var(--red); }
.highlight-red { color: var(--red); }

/* ===== BLUR CIRCLES ===== */
.blur-circle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: none;
  opacity: 0.5;
}
.blur-circle img { width: 420px; }
.blur-circle--left        { left: -140px; top: 40px; }
.blur-circle--right       { right: 36px; left: auto; top: 120px; }
.blur-circle--right img   { width: 360px; }
.blur-circle--solution-left { left: 60px; top: 52px; }
.blur-circle--solution-left img { width: 360px; }
.blur-circle--solution-focus { right: 18px; top: -56px; }
.blur-circle--solution-focus img { width: 580px; }
.blur-circle--solution-channels-focus { left: -40px; top: 430px; }
.blur-circle--solution-channels-focus img { width: 620px; }
.blur-circle--center-left { left: -100px; top: 50%; transform: translateY(-50%); }
.blur-circle--pillars-focus { left: -40px; top: -12px; }
.blur-circle--pillars-focus img { width: 620px; }
.blur-circle--pricing-focus { left: 140px; top: -150px; }
.blur-circle--pricing-focus img { width: 560px; }
.blur-circle--right-low   { right: -120px; bottom: 40px; }
.blur-circle--left-low    { left: -120px; bottom: 40px; }
.blur-circle--problems-focus {
  left: -150px;
  top: 150px;
  display: block;
  opacity: 0.5;
}
.blur-circle--problems-focus img {
  width: 560px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(239, 244, 247, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 24px;
  background: linear-gradient(to bottom, rgba(239,244,247,0.18) 0%, transparent 100%);
  pointer-events: none;
}
.header-inner {
  max-width: var(--page-wide-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  flex-shrink: 0;
}
.header-logo {
  display: block;
  width: 64px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
}
.header-logo img {
  height: 48px;
  width: auto;
  max-width: none;
}

.header-tagline {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0;
  white-space: nowrap;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--black); }

/* ログインボタン：枠線付きブラック */
.nav-login {
  padding: 10px 22px;
  border: 1.5px solid var(--black);
  border-radius: var(--r-sm);
  background: var(--black);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, opacity 0.2s;
}
.nav-login:hover {
  background: var(--text);
  color: var(--white) !important;
  opacity: 0.88;
  transform: translateY(-2px);
}
.nav-login:active { transform: translateY(0); }
.nav-register {
  padding: 10px 22px !important;
  font-size: 16px;
  border-radius: var(--r-sm);
  color: var(--white) !important;
}

.hamburger {
  display: none;
  grid-template-columns: repeat(3, 5px);
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1200;
  transition: opacity 0.2s;
}
.hamburger:hover { opacity: 0.7; }
.hamburger span {
  display: block;
  width: 5px;
  height: 5px;
  background: #aaaaaa;
  border-radius: 50%;
  transition: background 0.2s;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 1050;
}
.mobile-menu-backdrop.open { display: block; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: auto;
  width: 67%;
  z-index: 1100;
  background: var(--white);
  flex-direction: column;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3),
.hamburger.active span:nth-child(5),
.hamburger.active span:nth-child(7),
.hamburger.active span:nth-child(9) { background: var(--red); }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  flex-shrink: 0;
}
.mobile-menu-logo img { height: 44px; width: auto; }
.mobile-menu-dots {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 5px;
}
.mobile-menu-dots span {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu-link {
  display: block;
  padding: 16px 0;
  font-size: 16.8px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-link:first-child { border-top: 1px solid var(--border); }
.mobile-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  flex-shrink: 0;
}
.mobile-menu-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--r-sm);
}
.mobile-kicker-logo img {
  height: 65px;
  width: auto;
  max-width: none;
  margin-bottom: 20px;
}

/* メニューオープン時：ヘッダーを透明にしドットボタンだけ浮かせる */
body.menu-open .site-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none;
  z-index: 1200;
  transform: translateY(0) !important;
}
body.menu-open .header-logo,
body.menu-open .header-tagline,
body.menu-open .header-nav,
body.menu-open .site-header::after {
  visibility: hidden;
}
/* オーバーレイ内のドットはヘッダーのドットと重複するので非表示 */
body.menu-open .mobile-menu-dots { visibility: hidden; }

/* ===== TOP STAGE ===== */
.top-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 50%, rgba(230,0,57,0.18) 0%, rgba(230,0,57,0.10) 8%, rgba(230,0,57,0.05) 13%, transparent 22%),
    linear-gradient(180deg,
      #ffffff 0%,
      #f2f6f8 8%,
      #e8eef1 20%,
      #d0d9dd 32%,
      #bbc4c8 40%,
      #8f969b 52%,
      #6f6e72 64%,
      #555255 76%,
      #403d40 88%,
      #333333 100%
    );
}
.top-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg,
      transparent 0%,
      transparent 34%,
      rgba(0,0,0,0.16) 48%,
      rgba(0,0,0,0.28) 60%,
      rgba(0,0,0,0.36) 74%,
      rgba(51,51,51,0.52) 88%,
      rgba(51,51,51,0.62) 100%
    ),
    linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.24) 28%, rgba(255,255,255,0.14) 50%, transparent 72%),
    radial-gradient(ellipse 70% 30% at 50% 12%, rgba(255,255,255,0.24) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 110px 0 150px;
  overflow: visible;
  background: transparent;
}
.hero::after {
  display: none;
}
.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(62vw, 900px);
  height: 100%;
  max-width: none;
  opacity: 0.88;
  mix-blend-mode: screen;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,0.32) 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,0.32) 78%, transparent 100%);
  pointer-events: none;
}
.hero-bg--left {
  left: 0;
  object-position: left top;
}
.hero-bg--right {
  right: 0;
  object-position: right top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 0 28px;
  width: 100%;
  max-width: var(--page-wide-width);
  margin: 0 auto;
}
.hero-text {
  flex: 0 0 auto;
  width: 540px;
  padding-top: 12px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.hero-logo {
  width: 136px;
  height: 102px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-logo img {
  height: 102px;
  width: auto;
  max-width: none;
}

.hero-label {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.hero-label-accent { color: var(--red); }
.hero-eyebrow {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  color: #8a929b;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.hero-title {
  font-size: clamp(40px, 3.5vw, 56px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.hero-title-line { white-space: nowrap; }
.hero-title .highlight {
  color: var(--red);
  text-decoration: none;
}
.hero-marugoto-wrap {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}
.hero-marugoto {
  position: relative;
  z-index: 1;
}
.hero-marugoto-line-wrap {
  position: absolute;
  left: calc(50% + 0.14em);
  bottom: -0.18em;
  width: 128%;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-marugoto-line-wrap.is-drawn {
  /* no-op; animation is applied to the image itself */
}
.hero-marugoto-line {
  display: block;
  width: 100%;
  max-width: none;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}
.hero-marugoto-line-wrap.is-drawn .hero-marugoto-line {
  animation: hero-marugoto-draw 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-sub {
  font-size: 16px;
  color: #757e88;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 4px;
}
.hero-desc {
  font-size: 16px;
  color: #7e8791;
  margin-bottom: 18px;
  line-height: 1.68;
}
.hero-channel-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.channel-tag {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.82);
  letter-spacing: 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(233,239,242,0.88) 0%, rgba(224,231,235,0.82) 100%);
  color: #31353a;
  box-shadow:
    0 0 10px rgba(255,255,255,0.18),
    0 0 22px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.50),
    inset 0 0 16px rgba(255,255,255,0.20),
    inset 0 1px 0 rgba(255,255,255,0.74),
    0 10px 24px rgba(4,0,0,0.08);
}
.channel-instagram { }
.channel-seo       { }
.channel-meo       { }
.channel-tag-sub {
  font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #98a1ab;
  letter-spacing: 0.01em;
}

.hero-cta {
  display: block;
  text-align: center;
  padding: 17px 34px;
  font-size: 16px;
  width: 100%;
  max-width: 414px;
  min-height: 50px;
  border-radius: 8px;
  background: #e61d4d;
  border-color: #e61d4d;
  box-shadow: 0 14px 30px rgba(230,29,77,0.18);
  letter-spacing: 0.06em;
}

.hero-image {
  position: absolute;
  right: 32px;
  bottom: 24px;
  width: min(56vw, 710px);
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 0;
  margin-right: -24px;
  margin-bottom: -30px;
  isolation: isolate;
}
.hero-image::before {
  content: "";
  position: absolute;
  top: -170px;
  right: 24px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 57, 0.34) 0%, rgba(230, 0, 57, 0.2) 30%, rgba(230, 0, 57, 0.08) 56%, transparent 76%);
  filter: blur(30px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}
.hero-image picture,
.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@keyframes hero-marugoto-draw {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ===== STATS ===== */
.stats {
  position: relative;
  z-index: 4;
  margin-top: -88px;
  background: transparent;
  padding: 24px 24px 70px;
}
.stats-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  background:
    radial-gradient(circle at 10% 28%, rgba(255,255,255,0.12) 0%, transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(255,255,255,0.20) 0%, transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.66);
  border-radius: 18px;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 28px;
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  box-shadow:
    0 16px 34px rgba(4,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.56);
}
.stats-inner::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.12) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  filter: blur(16px);
  opacity: 0.58;
  pointer-events: none;
}
.stats-inner::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: -6px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.12) 42%, transparent 78%);
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
}
.stats-inner > * {
  position: relative;
  z-index: 1;
}
.stat-item {
  flex: 0 0 152px;
  width: 152px;
  min-height: 152px;
  aspect-ratio: 1 / 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px 12px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 76% 58% at 24% 14%, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.07) 40%, transparent 72%),
    radial-gradient(ellipse 120% 78% at 50% 100%, rgba(255,255,255,0.07) 0%, transparent 58%),
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.05);
  border: 1.3px solid rgba(255,255,255,0.70);
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -10px 18px rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(255,255,255,0.12),
    0 12px 26px rgba(4,0,0,0.10),
    0 3px 8px rgba(4,0,0,0.06);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.stat-item:first-child {
  background:
    radial-gradient(ellipse 76% 58% at 24% 14%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 38%, transparent 68%),
    radial-gradient(ellipse 120% 78% at 50% 100%, rgba(255,255,255,0.05) 0%, transparent 56%),
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.05);
}
.stat-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 18%, rgba(255,255,255,0.14) 0%, transparent 38%);
  filter: blur(9px);
  opacity: 0.4;
  pointer-events: none;
}
.stat-item::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -4px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.14) 44%, transparent 78%);
  filter: blur(8px);
  opacity: 0.18;
  transform: translateY(2px) scaleX(0.88);
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
  pointer-events: none;
}
.stat-item > * {
  position: relative;
  z-index: 1;
}
.stat-item:hover {
  transform: scale(0.95) translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.56),
    inset 0 -10px 16px rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(255,255,255,0.10),
    0 6px 14px rgba(4,0,0,0.14);
}
.stat-item:hover::after {
  opacity: 0.9;
  transform: translateY(8px) scaleX(1.02);
  filter: blur(12px);
}
.stat-item:active {
  transform: scale(0.93) translateY(4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -8px 14px rgba(255,255,255,0.03),
    inset 0 -1px 0 rgba(255,255,255,0.08),
    0 1px 4px rgba(4,0,0,0.16);
}
.stat-item:active::after {
  opacity: 0.52;
  transform: translateY(5px) scaleX(0.96);
  filter: blur(10px);
}
.stat-num {
  font-family: var(--font-en);
  font-size: 79.2px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.08em;
  text-shadow: 0 2px 10px rgba(4,0,0,0.20);
  display: inline-flex;
  align-items: flex-end;
  line-height: 0.82;
}
.stat-num small {
  font-size: 48px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: -0.1em;
  line-height: 1;
  margin-bottom: 1px;
  margin-left: -4px;
  position: relative;
  z-index: 2;
}
.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(4,0,0,0.78);
  text-align: center;
  line-height: 1.32;
}
.stat-label--two-line {
  line-height: 1.25;
}
.stat-label--two-line .stat-label-line {
  white-space: nowrap;
}
.stat-divider { display: none; }

/* ===== PROBLEMS ===== */
.problems {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background: transparent;
}
.problems::after {
  content: "";
  position: absolute;
  right: -240px;
  bottom: -8px;
  width: min(400px, 30vw);
  aspect-ratio: 690 / 620;
  background: url("../image/恐竜.png") right bottom / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}
.problems .blur-circle { display: none; }
.problems .blur-circle--problems-focus { display: none; z-index: 1; }
.problems-inner {
  display: block;
  width: min(860px, 100%);
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  min-height: 700px;
  position: relative;
}
.problems-content {
  width: 560px;
  min-width: 0;
  max-width: 560px;
  margin-left: 0;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
.problems-title {
  text-align: left !important;
  color: var(--white) !important;
  font-size: 41px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
  white-space: nowrap;
}
.problems-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 84px);
  height: 1px;
  background: var(--red);
  transform: none;
}
.problems-dino { display: none; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 186px);
  gap: 20px 42px;
  justify-content: start;
}
.problem-card {
  width: 188px;
  height: 188px;
  background: #eff4f7;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--red);
  padding: 20px 16px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.28s, background 0.28s, box-shadow 0.28s;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    0 0 28px rgba(230,0,57,0.22);
  opacity: 1;
  transform: none;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 0 16px 4px rgba(230,0,57,0.24),
    0 0 52px 18px rgba(230,0,57,0.18);
}
.problem-icon {
  width: 92px;
  height: 86px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-icon img {
  width: 86px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}
.problem-card p {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.32;
  color: #333333;
  white-space: nowrap;
}
.problem-card:nth-child(1) .problem-icon img,
.problem-card:nth-child(4) .problem-icon img {
  width: 102px;
  height: 96px;
}

@media (min-width: 912px) and (max-width: 1199px) {
  .hero-text {
    position: relative;
    z-index: 2;
  }

  .hero-channel-group {
    width: max-content;
    max-width: 100%;
  }

  .hero-channels {
    position: relative;
    z-index: 3;
    width: 100%;
  }

  .hero-image {
    right: 32px;
    bottom: 24px;
    width: min(56vw, 710px);
    z-index: 1;
  }

  .channel-tag {
    position: relative;
    z-index: 3;
  }

  .hero-cta {
    width: 100%;
    max-width: none;
  }

  .problems::after {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .hero-channel-group {
    width: max-content;
    max-width: 100%;
  }

  .hero-channels,
  .hero-cta {
    width: 100%;
  }

  .hero-cta {
    max-width: none;
  }

  .problems::after {
    display: none;
  }
}

@media (min-width: 1500px) {
  .hero-channel-group {
    width: max-content;
    max-width: 100%;
  }

  .hero-channels,
  .hero-cta {
    width: 100%;
  }

  .hero-cta {
    max-width: none;
  }

  .problems::after {
    display: none;
  }

}

@media (min-width: 1200px) {
  .problems::after {
    display: block;
    left: calc(50% + 250px);
    right: auto;
    bottom: 78px;
    width: min(720px, 36vw);
  }

  .problems-dino {
    display: none;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .solution {
    margin-bottom: -1px;
  }

  .pillars {
    top: -1px;
    padding-top: 23px;
  }

  .pricing {
    margin-top: 0;
  }

  .solution .blur-circle--solution-channels-focus {
    display: none;
  }

  .problems {
    overflow: visible;
  }

  .problems .blur-circle--problems-focus {
    left: -210px;
    top: -620px;
    opacity: 0.42;
  }
}

/* ===== SOLUTION ===== */
.solution {
  position: relative;
  padding: 86px 0 88px;
  overflow: hidden;
  background: var(--bg);
}
.solution .blur-circle--solution-focus {
  display: block;
  z-index: 0;
  opacity: 0.9;
}
.solution .blur-circle--solution-channels-focus {
  display: block;
  z-index: 0;
  opacity: 0.9;
}
.solution-inner {
  max-width: var(--page-max-width);
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}
.solution-title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #1a1a1a;
  width: min(100%, 936px);
  margin-left: auto;
  margin-right: auto;
}
.solution-title .highlight-red {
  font-size: 77px;
  margin-right: -0.08em;
  font-weight: 800;
}
.solution-nowrap {
  white-space: nowrap;
  letter-spacing: -0.03em;
}
.brand-word {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-word-ruby {
  position: relative;
  display: inline-block;
}
.brand-word-ruby-text {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  margin-bottom: 0.08em;
  font-family: var(--font-body);
  font-size: 0.3em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #7f7f7f;
  white-space: nowrap;
}
.solution-showcase {
  display: grid;
  grid-template-columns: minmax(0, 620px) 304px;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 50px;
  width: min(100%, 936px);
  margin-left: auto;
  margin-right: auto;
}
.solution-photo {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 18px 40px rgba(4,0,0,0.08);
  background: rgba(255,255,255,0.74);
}
.solution-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.solution-summary {
  min-height: 262px;
  padding: 24px 20px 20px;
  border-radius: 30px;
  background:
    radial-gradient(ellipse 72% 28% at 50% 100%, rgba(230,0,57,0.26) 0%, rgba(230,0,57,0.10) 34%, transparent 70%),
    linear-gradient(180deg, #41373a 0%, #372f33 58%, #3e222b 100%);
  border: 2px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 22px 38px rgba(4,0,0,0.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-summary-ttl {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 12px;
}
.solution-summary-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 50px;
  line-height: 0.9;
  margin-right: 2px;
}
.solution-summary-key,
.solution-summary-tail {
  display: inline-block;
}
.solution-summary-row {
  display: inline-flex;
  align-items: flex-end;
  white-space: nowrap;
}
.solution-summary-line {
  display: inline-block;
  white-space: nowrap;
}
.solution-summary-desc {
  font-size: 16px;
  line-height: 1.58;
  color: rgba(255,255,255,0.94);
}
.solution-summary-em {
  color: var(--red);
  font-weight: 900;
  font-size: 16px;
}
.solution-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 936px);
  margin-left: auto;
  margin-right: auto;
}
.solution-channel {
  position: relative;
  min-height: 212px;
  padding: 0 12px 12px 0;
  overflow: hidden;
  isolation: isolate;
}
.solution-ch-num {
  position: absolute;
  right: -10px;
  top: 58px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.solution-ch-num img {
  display: block;
  width: auto;
  height: clamp(180px, 15vw, 228px);
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.65;
}
.solution-channel:nth-child(3) .solution-ch-num {
  right: -4px;
  top: 56px;
}
.solution-channel:nth-child(1) .channel-name > .channel-title {
  margin-bottom: 0;
}
.solution-channel:nth-child(1) .channel-title-jp {
  position: relative;
  top: -4px;
}
.solution-channel:nth-child(2) .channel-title-jp {
  position: relative;
  top: -4px;
}
.channel-name {
  display: grid;
  grid-template-rows: 44px 32px;
  align-content: start;
  font-size: clamp(32px, 2.6vw, 36px);
  font-weight: 900;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: var(--text);
  line-height: 1;
}
.channel-name > .channel-title {
  color: var(--red);
  display: inline-flex;
  align-items: flex-end;
  gap: 0.02em;
  min-height: 44px;
  margin-bottom: 0;
  max-width: 100%;
}
.channel-title-en {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.channel-title-jp {
  font-family: var(--font-body);
  font-size: 0.85em;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.channel-title--single .channel-title-en {
  letter-spacing: -0.02em;
}
.channel-sub {
  display: flex;
  align-items: flex-end;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 900;
  color: var(--text);
  min-height: 32px;
  margin-top: 2px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.channel-rule,
.channel-purpose,
.channel-desc {
  position: relative;
  z-index: 1;
}
.channel-rule {
  height: 1px;
  background: var(--red);
  margin: 10px 0 16px;
  border: none;
}
.channel-purpose {
  display: flex;
  align-items: flex-start;
  min-height: 34px;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.channel-desc {
  font-size: 17px;
  font-weight: 300;
  color: #6d737c;
  line-height: 1.65;
}

/* ===== PILLARS ===== */
.pillars {
  position: relative;
  padding: 80px 0 112px;
  margin-top: 0;
  z-index: 1;
  background:
    radial-gradient(circle 310px at 88% 48%, rgba(230,0,57,0.18) 0%, rgba(230,0,57,0.10) 34%, rgba(230,0,57,0.04) 58%, transparent 76%),
    var(--bg);
  overflow: hidden;
}
.pillars .blur-circle--pillars-focus {
  display: block;
  z-index: 0;
  opacity: 0.9;
}
.pillars .section-title {
  text-align: center;
  margin-bottom: 0;
}
.pillars-title {
  font-size: clamp(32.8px, 3.6vw, 45.76px);
  font-weight: 900;
  color: #333333;
  line-height: 1.2;
  letter-spacing: 0;
}
.pillars-title-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.48em;
  font-weight: 700;
  line-height: 0.8;
  vertical-align: -0.06em;
  margin-right: 2px;
}
.pillars-line {
  text-align: center;
  margin-top: -18px;
  margin-bottom: 48px;
  opacity: 1;
  transform: none;
  overflow: hidden;
}
.pillars-line.is-drawn {
  /* no-op; animation is applied to the image itself */
}
.pillars-line img {
  width: min(900px, 92%);
  max-width: none;
  margin: 0 auto;
  display: block;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}
.pillars-line.is-drawn img {
  animation: pillars-line-draw 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pillars-line-draw {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(100%, 1040px);
  margin: 0 auto;
  align-items: stretch;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 30px 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.92);
  transition: transform 0.22s, box-shadow 0.22s;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow:
    0 14px 18px rgba(230, 0, 57, 0.21),
    0 0 18px rgba(230, 0, 57, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 24px rgba(230, 0, 57, 0.26),
    0 0 22px rgba(230, 0, 57, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}
.pillar-badge {
  display: none;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pillar-badge--live     { background: var(--red);   color: var(--white); }
.pillar-badge--soon     { background: var(--red);    color: var(--white); }
.pillar-badge--upcoming { background: var(--gray);   color: var(--white); }

.pillar-title {
  font-size: clamp(25.6px, 2vw, 30.4px);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--black);
  line-height: 1.24;
}
.pillar-title span {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: baseline;
}
.pillar-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.42;
  min-height: 4.3em;
}
.pillar-list { display: flex; flex-direction: column; gap: 6px; }
.pillar-list li {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.42;
  word-break: keep-all;
  overflow-wrap: normal;
}
.pillar-plus {
  width: 11px;
  height: 11px;
  margin: 7px 0 0;
  background: url("../image/キラキラ.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 1;
  flex-shrink: 0;
  transform: none;
}
.pillar-card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 236px;
}
.pillar-card--wide .pillar-title {
  min-height: auto;
  display: block;
}
.pillar-card--wide .pillar-sub {
  min-height: auto;
}
.pillars-mascot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 208px;
  position: relative;
  left: -38px;
  top: -34px;
}
.pillars-mascot img { max-width: 204px; }

/* ===== TARGETS ===== */
.targets-grid {
  max-width: 1040px;
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.target-card {
  border-radius: var(--r-lg);
  padding: 30px 56px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  overflow: hidden;
  position: relative;
  background: var(--black);
  color: var(--white);
}
.target-text { flex: 1; }
.target-label {
  font-size: 18.88px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.target-plus {
  width: 15px;
  height: 15px;
  background: url("../image/キラキラ.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 1;
  flex-shrink: 0;
}
.target-arrow { opacity: 0.6; font-size: 1.1em; }
.target-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 16px;
  color: var(--white);
}
.target-card--wide .target-title--large {
  font-size: 40px;
  line-height: 1.22;
}
.target-title-line {
  display: block;
  white-space: nowrap;
}
.target-desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
}
.keep-together {
  white-space: nowrap;
}

/* ===== PRICING ===== */
.pricing {
  position: relative;
  padding: 104px 0 80px;
  background: var(--bg);
  overflow: visible;
  --pricing-gap: 8px;
  --pricing-feature-col: clamp(172px, 18vw, 228px);
  --pricing-side-col: var(--pricing-feature-col);
  --pricing-plan-col: clamp(176px, 19.5vw, 244px);
  --pricing-table-width: calc(var(--pricing-side-col) + (var(--pricing-plan-col) * 3) + (var(--pricing-gap) * 3));
}
.pricing .blur-circle--pricing-focus {
  display: block;
  z-index: 0;
  opacity: 0.9;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0 40px;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(230,0,57,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,0,57,0.12) 1px, transparent 1px);
  background-size: 33px 33px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  border: 2px solid rgba(230,0,57,0.88);
  z-index: 1;
}
.pricing .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 912px) {
  .pricing .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.pricing-main-title {
  width: min(var(--pricing-table-width), 100%);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--black);
  text-align: left;
  margin: 0 auto 10px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.pricing-main-title::before {
  content: "";
  position: absolute;
  left: -300px;
  top: -385px;
  width: 620px;
  height: 620px;
  background: url("../image/背景_ぼかした丸.png") center / contain no-repeat;
  opacity: 0.78;
  pointer-events: none;
  z-index: -1;
}
.blur-circle--solution-focus img,
.blur-circle--solution-channels-focus img,
.blur-circle--pillars-focus img,
.blur-circle--pricing-focus img {
  width: 620px;
}
.pricing-main-title-line {
  white-space: nowrap;
}
.pricing-main-sub {
  width: min(var(--pricing-table-width), 100%);
  font-size: 16px;
  color: rgba(4,0,0,0.72);
  margin: 0 auto 48px;
}
.pricing-table {
  width: min(var(--pricing-table-width), calc(100vw - 96px));
  margin: 0 auto;
  position: relative;
}
.pricing-table::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--pricing-side-col) + var(--pricing-plan-col) + (var(--pricing-gap) * 2));
  width: var(--pricing-plan-col);
  border: 2px solid var(--red);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 2;
}

/* Plan header row */
.ptable-head {
  display: grid;
  grid-template-columns: var(--pricing-side-col) repeat(3, var(--pricing-plan-col));
  column-gap: var(--pricing-gap);
  align-items: stretch;
}
.ptable-head-spacer { display: block; }
.ptable-plan-col {
  background: var(--white);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  min-height: 258px;
  padding: 32px 24px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--red);
  border-bottom: 0;
}
.ptable-plan-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.ptable-plan-col--popular {
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  border: 2px solid var(--red);
  border-bottom: 0;
  z-index: 4;
  box-shadow: none;
  outline: 0;
  text-align: center;
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  min-width: 116px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
  letter-spacing: 0;
  z-index: 4;
  padding-top: 2px;

}
.ptable-plan-col .plan-name {
  font-family: var(--font-en);
  font-size: 25.28px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  letter-spacing: 0;
  align-self: start;
}
.ptable-plan-col--popular .plan-name { color: var(--white); }
.ptable-plan-col .plan-target {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  align-self: start;
  min-height: calc(1.35em * 4);
  text-wrap: auto;
}
.ptable-plan-col--popular .plan-target { color: #eff4f7; }
.ptable-plan-col--popular .plan-target {
  text-align: left;
}
.ptable-plan-col .plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  align-self: center;
}
.ptable-plan-col .price-num {
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0;
}
.ptable-plan-col--popular .price-num { color: var(--white); }
.ptable-plan-col .price-per {
  font-size: 16px;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}
.ptable-plan-col--popular .price-per { color: var(--white); }
.ptable-plan-col .plan-catch {
  font-size: 14.5px;
  color: var(--red);
  margin: 0;
  line-height: 1.45;
  letter-spacing: -0.01em;
  align-self: start;
  min-height: 2.15em;
  text-wrap: auto;
}
.ptable-plan-col--popular .plan-catch { color: var(--white); }
.ptable-plan-col--popular .plan-catch {
  text-align: left;
}
.plan-catch--accent { color: var(--red) !important; }
.ptable-plan-col--popular .plan-catch--accent { color: var(--white) !important; }
.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  border-radius: var(--r-sm) !important;
}
.ptable-plan-col > .plan-btn { display: none; }

/* Feature groups */
.ptable-group {
  display: block;
}
.ptable-rows { width: 100%; }
.ptable-group + .ptable-group {
  margin-top: 0;
}
.ptable-row {
  display: grid;
  grid-template-columns: var(--pricing-feature-col) repeat(3, var(--pricing-plan-col));
  column-gap: var(--pricing-gap);
  min-height: 52px;
}
.ptable-row--section {
  height: 64px;
  min-height: 64px;
  margin-bottom: 0;
  align-items: stretch;
}
.ptable-row--section-minor {
  height: 64px;
  min-height: 64px;
  margin-top: 0;
  margin-bottom: 0;
}
.ptable-section-title {
  width: calc(100% - 28px);
  min-height: 40px;
  padding: 8px 14px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.ptable-row--section-minor .ptable-section-title {
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--red);
  justify-content: center;
  line-height: 1;
}
.ptable-row--section-minor .ptable-section-title--left {
  justify-content: flex-start;
  text-align: left;
  transform: translateY(10px);
  font-size: 18px;
}
.ptable-section-cell {
  height: auto;
  min-height: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--red);
  box-sizing: border-box;
  padding: 0 14px;
}
.ptable-section-cell--popular {
  background: var(--red);
  border-color: var(--red);
}
.ptable-section-fill {
  display: block;
  height: 40px;
  width: 100%;
  margin: 0 auto;
  background: #ea8aa7;
}
.ptable-section-fill--popular {
  background: #b02a3d;
}
.ptable-row--section-minor .ptable-section-fill--popular {
  background: #b22a3d;
}
.ptable-row--section-minor .ptable-section-fill {
  display: none;
}
.ptable-group--minor .ptable-row:last-child .ptable-feature::after,
.ptable-group--minor .ptable-row:last-child .ptable-cell::after {
  display: none;
}
.ptable-group:not(.ptable-group--primary):not(.ptable-group--minor) .ptable-row:last-child .ptable-feature::after,
.ptable-group:not(.ptable-group--primary):not(.ptable-group--minor) .ptable-row:last-child .ptable-cell::after {
  display: none;
}
.ptable-feature {
  position: relative;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--black);
  padding: 9px 12px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  --feature-line-shift: -6px;
}
.ptable-feature-text,
.ptable-feature-break {
  display: inline-block;
  line-height: 1.25;
  width: 82%;
  text-align: left;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  transform: translateX(var(--feature-line-shift));
}
.ptable-feature-text--centered {
  text-align: left;
  transform: translateX(-4px);
}
.ptable-feature::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 82%;
  height: 5px;
  background-image: radial-gradient(circle, rgba(230,0,57,0.72) 0 1.25px, transparent 1.52px);
  background-size: 10px 5px;
  background-repeat: space no-repeat;
  background-position: center bottom;
  transform: translateX(-50%);
  margin-left: var(--feature-line-shift);
}
.ptable-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px 4px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  background: var(--white);
  color: var(--black);
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
.ptable-cell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64%;
  height: 5px;
  background-image: radial-gradient(circle, var(--red) 0 1.25px, transparent 1.52px);
  background-size: 10px 5px;
  background-repeat: space no-repeat;
  background-position: center bottom;
  transform: translateX(-50%);
}
.ptable-cell--popular {
  background: var(--red);
  color: var(--white);
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}
.ptable-cell--popular::after {
  background-image: radial-gradient(circle, rgba(255,255,255,0.95) 0 1.25px, transparent 1.52px);
}
.check-img { width: 26px; height: 26px; object-fit: contain; display: block; }
.cell-dash { color: var(--red); font-size: 17.6px; }
.ptable-cell--popular.cell-dash { color: var(--red); }
.cell-val { color: var(--black); font-weight: 600; font-size: 16px; white-space: nowrap; }
.ptable-cell--popular.cell-val { color: var(--white); }
.ptable-footer {
  display: grid;
  grid-template-columns: var(--pricing-side-col) repeat(3, var(--pricing-plan-col));
  column-gap: var(--pricing-gap);
}
.ptable-footer-spacer { display: block; }
.ptable-footer-cell {
  background: var(--white);
  padding: 18px 20px 24px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.ptable-footer-cell--popular {
  background: var(--red);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
}
.ptable-footer-btn {
  width: 100%;
  padding: 9px 0;
  border-radius: var(--r-sm) !important;
  font-size: 16px;
  text-align: center;
}
.ptable-footer-btn--muted {
  background: #d1c6ac;
  border-color: #d1c6ac;
  color: var(--black);
}
.ptable-footer-note {
  font-size: 14px;
  line-height: 1.45;
  color: var(--black);
  text-align: center;
}

/* ===== ROADMAP ===== */
.roadmap {
  position: relative;
  background: var(--bg);
  margin-top: -60px;
  z-index: 2;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 96px;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(230,0,57,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,0,57,0.12) 1px, transparent 1px);
  background-size: 33px 33px;
  border-left: 2px solid rgba(230,0,57,0.88);
  border-right: 2px solid rgba(230,0,57,0.88);
  box-sizing: border-box;
  pointer-events: none;
}
.roadmap-bg {
  background: #333333;
  margin: 0 40px;
  padding: 80px 0 88px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
.roadmap-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(230,0,57,0.14) 0%, transparent 68%);
}
.roadmap .section-title {
  width: min(100%, 1080px);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: clamp(40px, 4.4vw, 53.6px);
  line-height: 1.22;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.roadmap-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 30px;
  padding: 24px 20px;
}
.roadmap-item--active {
  background:
    linear-gradient(rgba(230,0,57,0.06), rgba(230,0,57,0.06)),
    rgba(0,0,0,0.28);
  border-color: var(--red);
}
.roadmap-date {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.roadmap-date--active {
  color: var(--red);
}
.roadmap-badge {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 2px 14px;
  border-radius: 999px;
}
.roadmap-badge--live {
  color: #5bff8f;
  background: rgba(114, 132, 92, 0.36);
}
.roadmap-badge--soon {
  color: #ff3c68;
  background: rgba(92, 53, 65, 0.42);
}
.roadmap-badge--upcoming {
  color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.08);
}
.roadmap-item p:not(.roadmap-date):not(.roadmap-badge) {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}
.roadmap-blur-circle {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 620px;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: screen;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230,0,57,0.30) 0%,
    rgba(230,0,57,0.17) 34%,
    rgba(230,0,57,0.07) 58%,
    transparent 76%
  );
  filter: blur(34px);
}
.roadmap-blur-circle img { display: none; }

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 104px 0;
  background: linear-gradient(to top, rgba(4,0,0,0.38) 0%, transparent 32%), var(--red);
  overflow: hidden;
}
.contact-label-main {
  text-align: left;
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 48px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-label-main span {
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  color: rgba(255,255,255,0.85);
}
.contact-form { width: 100%; }
.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-col:first-child .form-group {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.contact-col:first-child .form-group label {
  width: 148px;
  flex-shrink: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
}
.contact-col:first-child .form-group input {
  flex: 1;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 17px; font-weight: 700; color: var(--white); }
.form-group--grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group--grow textarea {
  flex: 1;
  resize: none;
  min-height: 160px;
}
.required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(230,0,57,0.42), rgba(230,0,57,0.42)),
    rgba(4,0,0,0.58);
  color: var(--white);
  font-size: 17px;
  min-width: 3.1em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 5px;
  vertical-align: middle;
  letter-spacing: 0.03em;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  flex-shrink: 0;
}
.contact-col:first-child .form-group label .required {
  margin-left: auto;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: none;
  border-radius: var(--r-sm);
  font-size: 17px;
  font-family: var(--font-body);
  outline: none;
  transition: box-shadow 0.2s;
  background: var(--white);
  color: var(--text);
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M2 2l5 5 5-5' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 9px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}
.form-privacy {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
  flex-shrink: 0;
}
.privacy-note { font-size: 17px; color: rgba(255,255,255,0.72); margin-top: 5px; }
.privacy-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-thickness: 1.5px;
}
.privacy-note a:hover {
  color: #ffe4ec;
}
.form-submit  {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 84px;
  font-size: 21px;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  margin-inline: auto;
  text-align: center;
}
.btn-submit:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: var(--black);
  opacity: 1;
}

/* ===== FAQ ===== */
.faq { padding: 72px 0; background: var(--bg); }
.faq .container {
  max-width: 1080px;
}
.faq .section-title {
  text-align: left;
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 900;
}
.faq-inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  align-items: start;
}
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-cat {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray);
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}
.faq-cat--active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.faq-cat:not(.faq-cat--active):hover {
  border-color: var(--red);
  color: var(--red);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 18px 24px 20px;
}
.faq-item[hidden] { display: none; }
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.faq-a {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #333333;
  color: #7f7f7f;
  padding: 28px 0 12px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.footer-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
  min-width: 0;
}
.footer-logo img {
  width: 92px;
  height: auto;
}
.footer-company {
  padding-top: 2px;
}
.footer-company p {
  font-size: 16px;
  line-height: 1.42;
  font-weight: 400;
  color: #7f7f7f;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  justify-self: end;
  padding-top: 0;
  min-width: 112px;
}
.footer-links a {
  font-size: 16px;
  line-height: 1.22;
  font-weight: 400;
  color: #7f7f7f;
  transition: color 0.2s;
}
.footer-links a:hover { color: #9a9a9a; }
.sns-link {
  font-family: var(--font-en);
  font-size: 16px;
  color: #7f7f7f;
  font-weight: 500;
  letter-spacing: 0;
}
.footer-bottom {
  width: 100%;
  max-width: 1600px;
  margin: 10px auto 0;
  padding: 0 72px;
  text-align: center;
  border-top: none;
}
.footer-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 244px;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 18px;
  background: var(--gray);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-logo img {
  max-width: none;
}

/* ===== FADE-IN ANIMATION ===== */
[data-fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-fade].visible {
  opacity: 1;
  transform: none;
}
.problems .problem-card[data-fade] {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE PRICE CARDS (default: hidden on desktop) ===== */
.mobile-price-cards { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 911px) {
  html, body          { overflow-x: hidden; }
  .site-header { transform: translateY(-100%); transition: transform 0.3s ease; }
  .site-header.is-visible { transform: translateY(0); }
  .header-nav { display: none; }
  .mobile-menu { display: flex; }
  .hamburger   { display: grid; }
  .pricing-main-title::before { display: none; }
  .hero               { min-height: 100svh; padding: 20px 0 0; overflow: hidden; align-items: flex-start; }
  .hero-title-line    { white-space: normal; }
  .problems-title     { white-space: normal; }
  .hero-inner         { flex-direction: column; align-items: flex-start; text-align: left; padding: 32px 32px 0; gap: 20px; position: relative; z-index: 2; }
  .hero-text          { width: 100%; position: relative; z-index: 2; }
  .hero-kicker        { justify-content: flex-start; }
  .hero-image         { position: absolute; right: -92px; bottom: -212px; width: 96%; max-width: none; z-index: 0; margin: 0; flex: none; pointer-events: none; }
  .hero-image::before { display: none; }
  .hero-image img     { width: 100%; max-width: none; }
  .hero-channels      { flex-direction: column; align-items: flex-start; justify-content: flex-start; }
  .hero-cta           { display: none; }
  .stats              { margin-top: -102px; }
  .stats-inner        { max-width: 760px; gap: 16px; padding: 16px 18px; }
  .stat-item          { flex: 1 1 140px; min-height: 128px; }
  .problems-inner     { width: 100%; min-height: auto; padding-bottom: 0; }
  .problems-content   { flex: none; width: 100%; padding-bottom: 40px; }
  .problems-grid      { grid-template-columns: repeat(3, 1fr); justify-content: center; gap: 14px; }
  .problems-dino      { display: none; }
  .problems-title     { text-align: center !important; }
  .problems-title::after { left: 50%; width: min(448px, 100%); transform: translateX(-50%); }
  .problems           { overflow: visible; }
  .problems .blur-circle--problems-focus {
    left: -190px;
    top: -240px;
    opacity: 0.46;
  }
  .solution-inner     { max-width: 760px; }
  .solution-showcase  { grid-template-columns: 1fr; gap: 18px; }
  .solution-summary   { min-height: 0; }
  .solution-channels  { grid-template-columns: 1fr; gap: 34px; }
  .pillars-grid       { grid-template-columns: 1fr; }
  .pillar-card--wide  { grid-column: span 1; }
  .targets-grid       { grid-template-columns: 1fr; }
  .pricing-table      { display: none; }
  .pricing-main-title { color: var(--black); }
  .pricing-main-sub   { color: rgba(4,0,0,0.72); }
  .pricing            {
    background: var(--bg);
    margin-top: 0;
  }
  .mobile-price-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 4px 4px;
    margin-top: 32px;
  }
  .roadmap-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { flex-wrap: wrap; gap: 28px; }
  .footer-links       { margin-left: 0; }
}

@media (min-width: 641px) and (max-width: 911px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    min-height: clamp(640px, 84vw, 760px);
    padding-top: 18px;
  }

  .hero-inner {
    padding: 46px 44px 0;
  }

  .hero-text {
    max-width: 440px;
    position: relative;
    z-index: 2;
  }

  .hero-channels {
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1.18;
  }

  .hero-image {
    right: -240px;
    bottom: -52px;
    width: min(72vw, 620px);
    z-index: 0;
  }

  .stats {
    margin-top: -102px;
    padding-bottom: 42px;
  }

  .stats-inner {
    max-width: 720px;
    gap: 16px;
    padding: 18px 20px;
  }

  .stat-item {
    min-height: 136px;
  }

  .problems {
    padding-top: 46px;
  }

  .problems::after {
    display: none;
  }

  .problems-inner {
    display: block;
    max-width: 860px;
    padding-left: 32px;
    padding-right: 32px;
    min-height: auto;
  }

  .problems-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 712px;
    margin-left: auto;
    margin-right: auto;
  }

  .problems-content {
    width: min(712px, 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .problems-dino {
    right: -28px;
    bottom: 18px;
    width: min(28vw, 225px);
    margin-left: 0;
    transform: none;
  }

  .problem-card {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .solution-inner {
    max-width: 760px;
  }

  .solution-channels {
    width: min(100%, 620px);
    margin-left: auto;
    margin-right: auto;
  }

  .solution-card {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .pillars-grid {
    max-width: 720px;
    gap: 22px;
  }

  .pillar-card,
  .pillar-card--wide {
    aspect-ratio: auto;
    min-height: 0;
    padding: 34px 32px;
  }

  .pillar-title {
    font-size: 24px;
    min-height: auto;
    display: block;
  }

  .pillar-sub {
    font-size: 16px;
    min-height: auto;
  }

  .pillar-list li {
    font-size: 16px;
  }

  .pillars-mascot {
    display: none;
  }

  .mobile-price-cards {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing {
    padding: 68px 0 88px;
  }

  .pricing .container {
    max-width: 760px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .pricing::before {
    left: 32px;
    right: 32px;
    border-radius: 32px 32px 0 0;
    background-size: 30px 30px;
  }

  .pricing-main-title {
    width: auto;
    font-size: clamp(36.8px, 5.2vw, 49.6px);
    line-height: 1.18;
    margin-bottom: 2px;
  }

  .pricing-main-sub {
    width: auto;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 34px;
  }

  .mobile-price-card {
    border-radius: 28px;
  }

  .pricing::before {
    left: 32px;
    right: 32px;
  }

  .roadmap-bg {
    margin: 0 32px;
    padding: 72px 48px 72px;
    border-radius: 30px 30px 0 0;
  }

  .roadmap::before {
    left: 32px;
    right: 32px;
    height: 90px;
    background-size: 30px 30px;
  }

  .roadmap-bg .container {
    padding-left: 0;
    padding-right: 0;
  }

  .roadmap .section-title {
    text-align: left;
    font-size: clamp(37.6px, 4.8vw, 48px);
    margin-bottom: 44px;
  }

  .roadmap-grid {
    gap: 18px;
  }

  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
    gap: 24px;
  }

  .footer-left {
    min-width: 0;
    flex: 1 1 360px;
  }

  .footer-company {
    min-width: 0;
  }

  .footer-company p {
    overflow-wrap: anywhere;
  }

  .footer-links {
    margin-left: auto;
    min-width: 104px;
  }

  .footer-dl {
    min-width: 0;
    flex: 0 1 244px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 911px) {
  .hero-channels {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .solution-showcase {
    grid-template-columns: minmax(0, 1.28fr) minmax(250px, 0.72fr);
    gap: 16px;
    align-items: stretch;
  }

  .solution-channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 720px);
    gap: 18px;
  }

  .solution-channel {
    min-height: 186px;
    padding-right: 8px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .pillar-card--wide {
    grid-column: span 2;
  }

  .targets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    gap: 22px;
  }

  .pricing {
    --pricing-gap: 6px;
    --pricing-feature-col: clamp(138px, 17vw, 160px);
    --pricing-side-col: var(--pricing-feature-col);
    --pricing-plan-col: clamp(150px, calc((100vw - var(--pricing-feature-col) - 96px) / 3), 182px);
    --pricing-table-width: calc(var(--pricing-side-col) + (var(--pricing-plan-col) * 3) + (var(--pricing-gap) * 3));
  }

  .pricing-table {
    display: block;
    width: min(var(--pricing-table-width), calc(100vw - 72px));
  }

  .mobile-price-cards {
    display: none;
  }

  .pricing-main-title,
  .pricing-main-sub {
    width: min(var(--pricing-table-width), calc(100vw - 72px));
  }

  .ptable-plan-col {
    min-height: 226px;
    padding: 30px 16px 16px;
  }

  .ptable-plan-col .plan-name {
    font-size: 22px;
  }

  .ptable-plan-col .plan-target {
    font-size: 13px;
    min-height: calc(1.35em * 4.2);
  }

  .ptable-plan-col .price-num {
    font-size: 41px;
  }

  .ptable-plan-col .price-per {
    font-size: 15px;
  }

  .ptable-plan-col .plan-catch {
    font-size: 13px;
  }

  .ptable-cell,
  .cell-val {
    font-size: 13px;
  }

  .ptable-feature {
    padding-left: 10px;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .hero {
    min-height: clamp(560px, 74vw, 680px);
    padding-top: 18px;
    overflow: visible;
    align-items: center;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 32px 0;
  }

  .hero-text {
    width: min(430px, 52%);
    max-width: 430px;
  }

  .hero-title {
    font-size: clamp(32px, 5vw, 42px);
    line-height: 1.14;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-sub,
  .hero-desc {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-channels {
    max-width: 420px;
    gap: 10px;
  }

  .channel-tag {
    font-size: 15px;
    padding: 7px 14px;
  }

  .hero-image {
    right: -140px;
    bottom: -24px;
    width: min(62vw, 500px);
  }

  .stats {
    margin-top: -72px;
  }

  .solution-title {
    font-size: clamp(32px, 5.4vw, 42px);
    line-height: 1.18;
    margin-bottom: 28px;
  }

  .solution-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 700px);
  }

  .solution-channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 720px);
    gap: 18px;
  }

  .channel-purpose,
  .channel-desc {
    font-size: 15px;
  }

  .targets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    gap: 18px;
  }

  .target-card {
    padding: 26px 22px;
  }

  .target-label {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .target-title,
  .target-card--wide .target-title--large {
    font-size: 30px;
    line-height: 1.24;
    margin-bottom: 12px;
  }

  .target-desc {
    font-size: 15px;
    line-height: 1.56;
  }

  .pricing-table {
    display: none;
  }

  .mobile-price-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .mobile-price-cards .mobile-price-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .pricing-main-title,
  .pricing-main-sub {
    width: min(100%, 720px);
  }
}

@media (min-width: 912px) and (max-width: 1120px) {
  .pricing {
    --pricing-gap: 8px;
    --pricing-feature-col: clamp(166px, 18vw, 194px);
    --pricing-side-col: var(--pricing-feature-col);
    --pricing-plan-col: clamp(172px, calc((100vw - var(--pricing-feature-col) - 100px) / 3), 208px);
  }

  .pricing::before {
    left: 40px;
    right: 40px;
  }

  .pricing-main-title,
  .pricing-main-sub,
  .pricing-table {
    width: min(var(--pricing-table-width), calc(100vw - 96px));
  }

  .ptable-plan-col {
    min-height: 232px;
    padding: 35px 18px 16px;
  }

  .ptable-section-title {
    font-size: 14px;
    padding: 7px 12px;
    width: calc(100% - 24px);
  }

  .ptable-row--section {
    height: 54px;
    min-height: 54px;
    align-items: stretch;
  }

  .ptable-section-cell {
    height: auto;
    min-height: 100%;
    padding: 0 12px;
  }

  .ptable-row {
    min-height: 52px;
  }

  .ptable-row.ptable-row--section {
    height: 54px;
    min-height: 54px;
    align-items: stretch;
  }

  .ptable-row.ptable-row--section .ptable-section-cell {
    height: auto;
    min-height: 100%;
  }

  .ptable-row.ptable-row--section .ptable-section-fill {
    height: 36px;
  }

  .ptable-cell,
  .cell-val {
    font-size: 14px;
  }

  .ptable-feature {
    padding-left: 12px;
    --feature-line-shift: -4px;
  }

  .ptable-cell::after,
  .ptable-feature::after {
    width: 78%;
  }

  .ptable-feature-text,
  .ptable-feature-break {
    width: 78%;
  }

  .ptable-feature::after {
    width: 78%;
  }

  .ptable-plan-col .price-num {
    font-size: 43px;
  }

  .ptable-plan-col .price-per {
    font-size: 15px;
  }

  .problems-inner {
    width: min(760px, 100%);
    min-height: 0;
  }

  .problems-content {
    padding-bottom: 88px;
  }

  .problems-grid {
    justify-content: center;
  }

  .problems-title {
    text-align: center !important;
  }

  .problems-title::after {
    left: 50%;
    width: min(570px, 100%);
    transform: translateX(-50%);
  }

  .problems-content {
    width: min(712px, 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .problems-dino {
    right: clamp(-220px, -18vw, -150px);
    bottom: 84px;
    width: clamp(280px, 29vw, 325px);
  }

  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
    gap: 28px;
  }

  .footer-left {
    min-width: 0;
    flex: 1 1 420px;
  }

  .footer-dl {
    min-width: 0;
    flex: 0 1 244px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .mobile-only { display: block; }
  .header-inner { padding: 0 18px; }
  .header-brand { min-width: 0; }
  .header-logo { width: 56px; height: 42px; }
  .header-logo img { height: 42px; }
  .header-tagline {
    font-size: clamp(11px, 3.6vw, 16px);
    white-space: nowrap;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .header-nav { display: none; }
  .mobile-menu { display: flex; }
  .hamburger   { display: grid; }
  .hero          { padding-top: 20px; }
  .hero-title    { font-size: 36.48px; }
  .hero-sub,
  .hero-desc     { overflow-wrap: normal; }
  .hero-kicker   { gap: 14px; justify-content: flex-start; }
  .hero-logo     { width: 102px; height: 76px; }
  .hero-logo img { height: 76px; }
  .hero-label    { font-size: 18px; text-align: left; }
  .hero-cta      { display: none; }
  .channel-tag {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 6px;
  }
  .stats-inner   { flex-wrap: wrap; }
  .stat-divider  { display: none; }
  .stat-item     { flex: 0 0 calc(50% - 7px); min-height: 0; aspect-ratio: 1 / 1; }
  .stat-num      { font-size: 51.2px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .solution { padding: 72px 0; }
  .solution-inner { display: block; width: 100%; max-width: 100%; padding: 0 24px; overflow: hidden; }
  .solution-title,
  .solution-showcase,
  .solution-channels,
  .solution-summary { min-width: 0; max-width: 100%; }
  .solution-title { font-size: clamp(29.44px, 7.4vw, 35.2px); margin-bottom: 34px; overflow-wrap: anywhere; }
  .solution-showcase { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .solution-photo { border-radius: 18px; }
  .solution-summary { min-height: 0; padding: 30px 24px 24px; border-radius: 30px; }
  .solution-summary-ttl { font-size: 34px; line-height: 1.18; }
  .solution-summary-desc { font-size: 16px; line-height: 1.78; }
  .solution-channels {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    margin: 0 auto 34px;
  }
  .solution-channel { min-height: 164px; padding: 0 10px 0 0; text-align: left; }
  .solution-ch-num { right: -8px; bottom: -18px; }
  .solution-ch-num img { width: auto; height: 136px; }
  .channel-name { font-size: clamp(24px, 7vw, 30.4px); }
  .channel-purpose { font-size: 18px; }
  .channel-desc { font-size: 18px; }
  .form-row      { grid-template-columns: 1fr; }
  .roadmap-grid  { grid-template-columns: 1fr; }
  .roadmap-item  { display: flex; align-items: center; flex-wrap: wrap; column-gap: 10px; row-gap: 8px; }
  .roadmap-date,
  .roadmap-badge { margin-bottom: 0; }
  .roadmap-item p:not(.roadmap-date):not(.roadmap-badge) { width: 100%; }
  .target-card   { flex-direction: column; padding: 40px 28px; }
  .footer-inner  { display: flex; flex-direction: column; gap: 20px; }
  .footer-links  { margin-left: 0; }
  .footer-dl     { width: 100%; text-align: center; }
  /* 全体の横はみ出し防止 */
  .hero-desc     { font-size: 16px; }
  .hero-sub      { font-size: 16px; }
  .channel-tag   { font-size: 16px; }
  .pricing-main-title { font-size: clamp(25.6px, 7vw, 38.4px); }
  /* pillarsフォント調整 */
  .pillar-title  { font-size: 16px; }
  .pillar-sub    { font-size: 16px; }
  .pillar-list li { font-size: 16px; }
}

.mobile-price-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 2px solid var(--red);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mobile-price-card--popular {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding-top: 52px;
}
.mpc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  padding: 5px 22px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.mpc-name {
  font-family: var(--font-en);
  font-size: 24.32px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.mobile-price-card--popular .mpc-name { color: var(--white); }
.mpc-name span { color: var(--red); }
.mpc-target {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.6;
}
.mobile-price-card--popular .mpc-target { color: #eff4f7; }
.mpc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.mpc-num {
  font-family: var(--font-en);
  font-size: 35.2px;
  font-weight: 900;
  color: var(--black);
}
.mobile-price-card--popular .mpc-num { color: var(--white); }
.mpc-per {
  font-size: 16px;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}
.mobile-price-card--popular .mpc-per { color: var(--white); }
.mpc-catch {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.55;
}
.mpc-catch--accent { color: var(--red); }
.mobile-price-card--popular .mpc-catch { color: var(--white); }
.mpc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.mpc-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.mobile-price-card--popular .mpc-features li { color: var(--white); }
.mpc-features li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mpc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
}
.mobile-price-card:not(.mobile-price-card--popular) .mpc-btn {
  background: #d1c6ac;
  border-color: #d1c6ac;
  color: var(--black);
}
.mobile-price-card--popular .mpc-btn {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.mpc-btn--muted {
  background: #d1c6ac;
  border-color: #d1c6ac;
  color: var(--black);
}

/* ===== MOBILE ARTBOARD MATCH ===== */
@media (max-width: 640px) {
  :root {
    --r-lg: 22px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-stage {
    background:
      radial-gradient(circle at 27% 48%, rgba(230,0,57,0.16) 0%, rgba(230,0,57,0.09) 8%, rgba(230,0,57,0.045) 14%, transparent 26%),
      radial-gradient(ellipse 104% 44% at 8% 32%, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.22) 48%, transparent 80%),
      radial-gradient(ellipse 78% 30% at 58% 72%, rgba(4,0,0,0.10) 0%, transparent 74%),
      linear-gradient(168deg,
        #dfe8ea 0%,
        #edf2f2 20%,
        #e8eef0 42%,
        #b6bfc2 50%,
        #979da1 56%,
        #77777b 63%,
        #5f5b5e 72%,
        #464245 86%,
        #333333 100%
      );
  }

  .top-stage::before {
    background:
      linear-gradient(180deg, transparent 0%, transparent 46%, rgba(0,0,0,0.08) 58%, rgba(0,0,0,0.14) 68%, rgba(0,0,0,0.20) 82%, rgba(51,51,51,0.82) 100%),
      linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.24) 28%, rgba(255,255,255,0.14) 50%, transparent 72%),
      radial-gradient(ellipse 70% 30% at 50% 12%, rgba(255,255,255,0.24) 0%, transparent 70%);
    opacity: 0.58;
  }

  .hero {
    height: clamp(884px, 232vw, 944px);
    min-height: 0;
    padding: 0;
  }

  .hero::after {
    bottom: -110px;
    height: 280px;
    filter: blur(22px);
  }

  .hero-bg {
    opacity: 0.68;
    width: 106vw;
    mix-blend-mode: screen;
  }

  .hero-overlay {
    background: transparent;
  }

  .hero-inner {
    padding: 18px 22px 0;
    gap: 0;
  }

  .hero-text {
    isolation: isolate;
  }

  .hero-text::before {
    content: "";
    position: absolute;
    top: 58px;
    right: -56px;
    width: 290px;
    height: 290px;
    background: url("../image/背景_ぼかした丸.png") center / contain no-repeat;
    opacity: 0.76;
    pointer-events: none;
    z-index: -1;
  }

  .hero-kicker {
    gap: 22px;
    align-items: center;
    margin-bottom: 20px;
  }

  .solution-summary-row--first {
    gap: 4px;
  }

  .solution-summary-row--second {
    gap: 1px;
  }

  .hero-logo {
    width: 108px;
    height: 80px;
  }

  .hero-logo img {
    height: 80px;
  }

  .hero-label {
    font-size: 16.8px;
    line-height: 1.55;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.04;
    margin: 0 0 4px;
    letter-spacing: 0;
  }

  .hero-title .mobile-only {
    display: none;
  }

  .hero-title > br {
    display: none;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
    margin-bottom: 0;
  }

  .hero-ai,
  .hero-marugoto,
  .hero-diagnosis {
    display: block;
    letter-spacing: 0;
  }

  .hero-ai {
    font-size: 72px;
    line-height: 1.02;
    margin-top: 10px;
    margin-bottom: 6px;
  }

  .hero-marugoto {
    position: relative;
    display: inline-block;
    width: max-content;
    max-width: 100%;
    font-size: 72px;
    line-height: 1.02;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .hero-marugoto-wrap {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-bottom: 0;
    margin-left: -0.24em;
  }

  .hero-marugoto-line-wrap {
    left: 50%;
    bottom: -0.20em;
    width: 112%;
  }

  .hero-diagnosis {
    font-size: 72px;
    line-height: 1.02;
    margin-bottom: 22px;
  }

  .hero-eyebrow {
    max-width: none;
    font-size: 14px;
    line-height: 1.25;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: pretty;
    text-shadow:
      0 0 14px rgba(255,255,255,1),
      0 0 30px rgba(255,255,255,1),
      0 0 56px rgba(255,255,255,1),
      0 0 86px rgba(255,255,255,0.96),
      0 0 126px rgba(255,255,255,0.84);
  }

  .hero-sub {
    display: inline-block;
    font-size: 16px;
    line-height: 1.42;
    margin: 0 0 2px;
    white-space: nowrap;
    max-width: none;
    letter-spacing: -0.03em;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: pretty;
    text-shadow:
      0 0 14px rgba(255,255,255,1),
      0 0 30px rgba(255,255,255,1),
      0 0 56px rgba(255,255,255,1),
      0 0 88px rgba(255,255,255,0.96),
      0 0 130px rgba(255,255,255,0.84);
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.42;
    margin-bottom: 10px;
    max-width: 346px;
    letter-spacing: -0.01em;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: pretty;
    text-shadow:
      0 0 14px rgba(255,255,255,1),
      0 0 30px rgba(255,255,255,1),
      0 0 56px rgba(255,255,255,1),
      0 0 88px rgba(255,255,255,0.96),
      0 0 130px rgba(255,255,255,0.84);
  }

  .hero-channels {
    gap: 8px;
  }

  .channel-tag {
    font-size: 16px;
    padding: 6px 13px 2px;
    border: 1.5px solid rgba(255,255,255,0.80);
    background: linear-gradient(180deg, rgba(238,243,246,0.98) 0%, rgba(230,236,240,0.96) 100%);
    box-shadow:
      0 0 8px rgba(255,255,255,0.16),
      0 0 18px rgba(255,255,255,0.08),
      inset 0 0 0 1px rgba(255,255,255,0.46),
      inset 0 0 12px rgba(255,255,255,0.18),
      0 8px 18px rgba(4,0,0,0.08);
  }

  .hero-image {
    top: 560px;
    left: 67%;
    right: auto;
    bottom: auto;
    width: min(70vw, 500px);
    transform: translateX(-45%);
    opacity: 0.98;
  }

  .hero-image picture,
  .hero-image img {
    display: block;
    width: 100%;
    max-width: none;
  }

  @media (max-width: 430px) {
    .hero-inner {
      padding: 18px 18px 0;
    }

    .hero-kicker {
      gap: 14px;
      margin-bottom: 16px;
    }

    .hero-logo {
      width: 100px;
      height: 74px;
    }

    .hero-logo img {
      height: 74px;
    }

    .hero-label {
      font-size: 16px;
      line-height: 1.5;
      letter-spacing: 0.04em;
    }

    .hero-ai,
    .hero-marugoto,
    .hero-diagnosis {
      font-size: 66px;
    }

    .hero-ai {
      margin-top: 6px;
    }

    .hero-marugoto-wrap {
      margin-left: -0.18em;
    }

    .hero-diagnosis {
      margin-bottom: 18px;
    }

    .hero-sub,
    .hero-desc {
      font-size: 15px;
    }

    .hero-desc {
      max-width: 100%;
    }

    .channel-tag {
      font-size: 15px;
      padding: 6px 12px 2px;
    }

    .hero-image {
      top: 540px;
      left: 69%;
      /* width: min(94vw, 470px); */
    }
  }

  @media (max-width: 390px) {
    .header-inner {
      padding: 0 14px;
      gap: 8px;
    }

    .header-logo {
      width: 52px;
      height: 39px;
    }

    .header-logo img {
      height: 39px;
    }

    .header-tagline {
      font-size: clamp(12px, 4.4vw, 15px);
      letter-spacing: -0.02em;
    }

    .hero-inner {
      padding: 16px 16px 0;
    }

    .hero-kicker {
      gap: 10px;
      margin-bottom: 14px;
    }

    .hero-logo {
      width: 94px;
      height: 70px;
    }

    .hero-logo img {
      height: 70px;
    }

    .hero-label {
      font-size: 14px;
      line-height: 1.45;
      letter-spacing: 0.02em;
    }

    .hero-title {
      font-size: 28px;
    }

    .hero-ai,
    .hero-marugoto,
    .hero-diagnosis {
      font-size: 62px;
      line-height: 1;
    }

    .hero-ai {
      margin-top: 2px;
      margin-bottom: 4px;
    }

    .hero-marugoto {
      margin-bottom: 10px;
    }

    .hero-diagnosis {
      margin-bottom: 16px;
    }

    .hero-eyebrow {
      font-size: 13px;
    }

    .hero-sub,
    .hero-desc {
      font-size: 14px;
      line-height: 1.36;
    }

    .hero-channels {
      gap: 7px;
    }

    .channel-tag {
      font-size: 14px;
      padding: 6px 11px 2px;
    }

    .hero-image {
      top: 520px;
      left: 70%;
      width: min(92vw, 438px);
    }

    .problem-card {
      padding: 14px 7px 12px;
    }

    .problem-card p {
      max-width: 10em;
    }
  }

  .stats {
    margin-top: 16px;
    padding: 0 24px 46px;
  }

  .problems {
    background: transparent;
  }

  .stats-inner {
    width: 100%;
    box-sizing: border-box;
    max-width: 374px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 18px 22px;
    border-radius: 30px;
    background:
      radial-gradient(ellipse 86% 52% at 20% 6%, rgba(255,255,255,0.36) 0%, transparent 64%),
      linear-gradient(145deg, rgba(255,255,255,0.24), rgba(255,255,255,0.10)),
      rgba(128,128,128,0.22);
    border: 1.5px solid rgba(255,255,255,0.88);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.36),
      0 26px 54px rgba(4,0,0,0.24);
    backdrop-filter: blur(14px) saturate(112%);
    -webkit-backdrop-filter: blur(14px) saturate(112%);
  }

  .stat-item {
    flex: none;
    width: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background:
      radial-gradient(ellipse 82% 48% at 28% 8%, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.18) 52%, transparent 80%),
      linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.09)),
      rgba(148,148,148,0.18);
    border: 1.35px solid rgba(255,255,255,0.84);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.52),
      inset 0 -14px 28px rgba(255,255,255,0.06),
      0 10px 28px rgba(4,0,0,0.14);
  }

  .stat-num {
    font-size: 88.8px;
    line-height: 0.82;
    letter-spacing: -0.08em;
  }

  .stat-item:last-child {
    min-width: 0;
  }

  .stat-num small {
    font-size: 53.6px;
    margin-bottom: 1px;
    margin-left: -4px;
    letter-spacing: -0.1em;
    position: relative;
    z-index: 2;
  }

  .stat-label {
    font-size: 16px;
    line-height: 1.36;
    color: rgba(4,0,0,0.8);
  }

  .problems {
    padding: 30px 0 10px;
  }

  .problems-title {
    text-align: left !important;
    font-size: clamp(29.12px, 8.7vw, 33.28px);
    line-height: 1.46;
    margin: 0 0 45px;
  }

  .problems-title::after {
    left: 0;
    width: 100%;
    transform: none;
    bottom: -14px;
  }

  .problems-content {
    padding-bottom: 34px;
  }

  .problems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 410px;
    margin-left: auto;
    margin-right: auto;
    gap: 8px;
  }

  .problem-card {
    width: auto;
    min-width: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 16px 8px 12px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(230,0,57,0.32), inset 0 0 18px rgba(230,0,57,0.13);
  }

  .problem-icon {
    width: 90px;
    height: 82px;
    margin-bottom: 8px;
  }

  .problem-icon img {
    width: 88px;
    height: 82px;
  }

  .problem-card:nth-child(1) .problem-icon img {
    width: 102px;
    height: 94px;
  }

  .problem-card:nth-child(3) .problem-icon,
  .problem-card:nth-child(4) .problem-icon {
    width: 118px;
    height: 94px;
  }

  .problem-card:nth-child(4) .problem-icon img {
    width: 156px;
    height: auto;
  }

  .problem-card:nth-child(3) .problem-icon img {
    width: 92px;
    height: 86px;
  }

  .problem-card p {
    font-size: clamp(14px, 3.9vw, 16px);
    line-height: 1.3;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
    min-height: calc(1.3em * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 10.6em;
    margin-left: auto;
    margin-right: auto;
  }

  .problem-card:nth-child(3) p,
  .problem-card:nth-child(4) p {
    /* font-size: clamp(13px, 3.55vw, 15px); */
    line-height: 1.28;
    white-space: normal;
    letter-spacing: -0.02em;
    min-height: calc(1.28em * 3);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solution {
    padding: 58px 0 64px;
  }

  .solution-inner {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
  }

  .solution-title {
    font-size: 38px;
    line-height: 1.18;
    margin-bottom: 32px;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .solution-nowrap {
    display: inline;
    white-space: nowrap;
    letter-spacing: -0.04em;
  }

  .solution-title .highlight-red {
    display: inline-block;
    font-size: 56px;
    line-height: 1;
    margin-left: 0;
    margin-right: -0.18em;
  }

  .solution-showcase {
    display: contents;
  }

  .solution-photo {
    order: 1;
    width: min(100%, 388px);
    margin-left: auto;
    margin-right: auto;
  }

  .solution-channels {
    order: 2;
  }

  .solution-summary {
    order: 3;
    width: min(100%, calc(100vw - 40px));
    max-width: 362px;
    margin-left: auto;
    margin-right: auto;
  }

  .solution-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
    width: min(100%, 388px);
  }

  .solution-photo {
    border-radius: 0;
  }

  .solution-summary {
    min-height: 0;
    overflow: hidden;
    padding: 42px 28px 40px;
    border: 0;
    background:
      radial-gradient(ellipse 84% 38% at 50% 104%, rgba(230,0,57,0.52) 0%, rgba(230,0,57,0.22) 40%, transparent 76%),
      linear-gradient(180deg, #41373a 0%, #372f33 54%, #611e34 100%);
    box-shadow: none;
  }

  .solution-summary-ttl {
    font-size: 36px;
    line-height: 1.14;
  }

  .solution-summary-num {
    font-size: 74px;
    margin-right: 1px;
  }

  .solution-summary-key {
    font-size: 50px;
    line-height: 1;
  }

  .solution-summary-tail {
    font-size: 38px;
    line-height: 1.04;
  }

  .solution-summary-desc {
    font-size: 16px;
    line-height: 1.66;
  }

  .solution-summary-em {
    font-size: 20px;
    font-weight: 800;
  }

  .solution-channels {
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
  }

  .solution-channel {
    min-height: 0;
    padding: 0 6px 0 0;
    overflow: visible;
  }

  .solution-ch-num {
    left: auto;
    right: -6px;
    top: 18px;
    width: 208px;
    height: 208px;
    bottom: auto;
    transform: none;
  }
  .solution-ch-num img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.68;
  }

  .solution-channel:nth-child(3) .solution-ch-num {
    top: 8px;
    right: -2px;
  }

  .channel-name {
    display: flex;
    flex-wrap: nowrap;
    align-items: end;
    justify-content: start;
    gap: 8px;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 12px;
    white-space: nowrap;
  }

  .channel-name > .channel-title {
    display: inline-flex;
    align-items: flex-end;
    min-height: 0;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .channel-title-en,
  .channel-title-jp {
    display: block;
    line-height: 1;
  }

  .channel-title-jp {
    position: relative;
    top: -7px !important;
  }

  .channel-sub {
    min-height: 0;
    margin-top: 0;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    align-self: end;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .channel-rule {
    margin: 0 0 14px;
  }

  .channel-purpose {
    min-height: 0;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .channel-desc {
    font-size: 16px;
    line-height: 1.45;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }  
.channel-desc-line {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
  }

  .channel-desc br {
    display: inline;
  }

  @media (max-width: 430px) {
    .solution-title {
      font-size: 35px;
      line-height: 1.16;
    }

    .solution-nowrap {
      letter-spacing: -0.055em;
    }

    .solution-title .highlight-red {
      font-size: 1.42em;
      margin-right: -0.14em;
    }

    .solution-channels {
      width: min(100%, calc(100vw - 28px));
    }

    .solution-ch-num {
      right: -8px;
      top: 18px;
      width: 194px;
      height: 194px;
    }

    .solution-channel:nth-child(3) .solution-ch-num {
      top: 8px;
      right: -2px;
    }

    .channel-name {
      gap: 6px;
      font-size: 38px;
    }

    .channel-title-jp {
      top: -6px !important;
    }

    .channel-sub {
      font-size: 28px;
    }
  }

  @media (max-width: 390px) {
    .solution-title {
      font-size: 32px;
      line-height: 1.14;
    }

    .solution-nowrap {
      letter-spacing: -0.07em;
    }

    .solution-title .highlight-red {
      font-size: 1.38em;
      margin-right: -0.12em;
    }

    .solution-channels {
      width: min(100%, calc(100vw - 24px));
      gap: 28px;
    }

    .solution-ch-num {
      right: -10px;
      top: 20px;
      width: 178px;
      height: 178px;
    }

    .solution-channel:nth-child(3) .solution-ch-num {
      top: 10px;
      right: -4px;
    }

    .channel-name {
      gap: 5px;
      font-size: 34px;
      margin-bottom: 8px;
    }

    .channel-title-jp {
      top: -5px !important;
    }

    .channel-sub {
      font-size: 25px;
    }

    .channel-purpose {
      font-size: 20px;
    }
  }

  .solution-card {
    width: min(100%, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
    min-height: 432px;
    padding: 48px 24px 50px;
    border-radius: 28px;
    border: 0;
    box-shadow: none;
  }

  .solution-card-ttl {
    font-size: clamp(43.52px, 10.8vw, 48.8px);
    line-height: 1.22;
    margin-bottom: 22px;
  }

  .solution-card-num {
    font-size: 1.34em;
    line-height: 0.72;
  }

  .solution-card-desc {
    font-size: clamp(16px, 4.1vw, 17.28px);
    line-height: 1.85;
  }

  .pillars {
    padding: 22px 0 62px;
    margin-top: 0;
    background: var(--bg);
  }

  .pillars-title {
    text-align: center !important;
    font-size: clamp(41.6px, 10vw, 51.2px);
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .pillars-line {
    margin-top: -10px;
    margin-bottom: 28px;
    width: calc(100vw + 32px);
    margin-left: calc(50% - 50vw - 16px);
    margin-right: calc(50% - 50vw - 16px);
  }

  .pillars-line img {
    width: 100%;
    max-width: none;
  }

  .pillars-grid {
    gap: 22px;
    margin-top: 30px;
  }

  .pillar-card,
  .pillar-card--wide {
    aspect-ratio: auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
    padding: 28px 24px 30px;
    border-radius: 30px;
  }

  .pillar-title {
    font-size: 25.6px;
    line-height: 1.35;
    margin-bottom: 14px;
    min-height: auto;
    display: block;
  }

  .pillar-sub {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
    min-height: auto;
  }

  .pillar-list {
    gap: 10px;
  }

  .pillar-list li {
    font-size: 16px;
    line-height: 1.6;
  }

  .pillars-mascot {
    display: none;
  }

  .targets-grid {
    gap: 18px;
    margin-top: 34px;
  }

  .target-card {
    border-radius: 30px;
    padding: 28px 24px;
    min-width: 0;
    text-align: left;
  }

  .target-label {
    display: grid;
    grid-template-columns: auto max-content auto;
    align-items: start;
    justify-content: start;
    column-gap: 4px;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 18px;
    text-align: left;
  }

  .target-label-text {
    display: block;
  }

  .target-title,
  .target-card--wide .target-title--large {
    display: block;
    font-size: 30px;
    line-height: 1.28;
    margin-bottom: 14px;
    text-align: left;
  }

  .target-desc {
    font-size: 15px;
    line-height: 1.58;
    text-align: left;
  }

  .pricing {
    padding: 40px 0 110px;
  }

  .pricing .container {
    padding-left: 44px;
    padding-right: 44px;
  }

  .pricing::before {
    inset: 0 24px;
    border-width: 5px;
    border-radius: 30px 30px 0 0;
  }

  .roadmap {
    margin-top: -80px;
  }

  .pricing-main-title {
    font-size: 36px;
    line-height: 1.16;
    margin-bottom: 12px;
    padding: 0 16px;
  }

  .pricing-main-sub {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .mobile-price-cards {
    gap: 28px;
    margin-top: 0;
    padding: 0;
  }

  .mobile-price-card {
    border-radius: 18px;
    padding: 28px 20px;
    min-width: 0;
    width: 100%;
  }

  .mobile-price-card--popular {
    padding-top: 44px;
    border: 2px solid var(--red);
  }

  .mpc-name {
    font-size: 21.44px;
  }

  .mpc-num {
    font-size: 35.84px;
  }

  .mpc-features li {
    font-size: 16px;
  }

  .mpc-btn {
    white-space: normal;
  }

  .mobile-price-cards .mobile-price-card:first-child {
    padding: 42px clamp(20px, 6vw, 28px) 42px;
    border-radius: 30px;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-name,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-name {
    font-size: 27.52px;
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: 0;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-target,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-target {
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 300;
    color: #737373;
    margin-bottom: 12px;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-price,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-price,
  .mobile-price-cards .mobile-price-card:last-child .mpc-price {
    justify-content: center;
    margin-bottom: 2px;
    gap: 6px;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-num,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-num {
    font-size: 55px;
    line-height: 1;
    letter-spacing: 0;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-per,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-per {
    font-size: 21.12px;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-per {
    color: var(--black);
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-catch,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-catch {
    font-size: 15px;
    line-height: 1.62;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-catch {
    color: var(--red);
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-features,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-features {
    gap: 13px;
    margin-bottom: 32px;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-features li,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-features li {
    gap: 13px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-features li {
    color: var(--black);
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-features li img,
  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-features li img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .mobile-price-cards .mobile-price-card:first-child .mpc-btn {
    padding: 13px 18px;
    border-radius: 6px !important;
    background: #c9bea6;
    border-color: #c9bea6;
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
  }

  .mobile-price-cards .mobile-price-card:nth-child(2) {
    padding: 42px clamp(20px, 6vw, 28px) 38px;
    border-radius: 28px;
    border: 3px solid var(--red);
  }

  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-badge {
    top: -18px;
    background: var(--white);
    color: var(--red);
    font-size: 16px;
    font-weight: 900;
    padding: 6px 44px;
  }

  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-target {
    color: #eff4f7;
  }

  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-catch {
    color: #f7b2c4;
  }

  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-features li {
    color: var(--white);
  }

  .mobile-price-cards .mobile-price-card:nth-child(2) .mpc-btn {
    padding: 13px 18px;
    border-radius: 6px !important;
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
  }

  .mobile-price-cards .mobile-price-card:last-child {
    padding: 36px clamp(20px, 6vw, 28px) 42px;
    border-radius: 28px;
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-name {
    font-size: 27.52px;
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: 0;
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-target {
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 300;
    color: #737373;
    margin-bottom: 12px;
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-num {
    font-size: 55px;
    line-height: 1;
    letter-spacing: 0;
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-per {
    font-size: 21.12px;
    color: var(--black);
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-catch {
    font-size: 15px;
    line-height: 1.62;
    font-weight: 300;
    color: var(--red);
    margin-bottom: 24px;
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-features {
    gap: 13px;
    margin-bottom: 32px;
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-features li {
    gap: 13px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--black);
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-features li img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .mobile-price-cards .mobile-price-card:last-child .mpc-btn {
    padding: 13px 18px;
    border-radius: 6px !important;
    background: #c9bea6;
    border-color: #c9bea6;
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
  }

  .roadmap-bg {
    margin: 0 24px;
    padding: 54px 24px 44px;
    border-radius: 30px 30px 0 0;
  }

  .roadmap::before {
    left: 24px;
    right: 24px;
    height: 76px;
    border-left-width: 5px;
    border-right-width: 5px;
  }

  .roadmap-bg .container {
    padding-left: 0;
    padding-right: 0;
  }

  .roadmap .section-title {
    text-align: left;
    font-size: clamp(39.2px, 10vw, 48.8px);
    line-height: 1.18;
    margin-bottom: 24px;
  }

  .roadmap-grid {
    gap: 12px;
  }

  .roadmap-item {
    border-radius: 30px;
    padding: 20px 18px;
  }

  .contact {
    padding: 36px 0 46px;
  }

  .contact-label-main {
    display: block;
    font-size: 49.28px;
    line-height: 0.95;
    margin-bottom: 26px;
  }

  .contact-label-main span {
    display: block;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-top: 6px;
  }

  .contact-cols {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .contact-col {
    gap: 14px;
  }

  .contact-col:first-child .form-group {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }

  .contact-col:first-child .form-group label {
    width: auto;
    justify-content: flex-start;
  }

  .form-group label {
    font-size: 17px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border-radius: 5px;
    min-height: 40px;
  }

  .form-group textarea {
    min-height: 150px;
  }

  .form-privacy {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .privacy-note {
    text-align: left;
  }

  .btn-submit {
    width: 100%;
    max-width: 314px;
    border-radius: 5px;
    box-shadow: 0 8px 18px rgba(4,0,0,0.34);
  }

  .faq {
    padding: 38px 0 42px;
  }

  .faq .section-title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .faq-inner {
    display: block;
  }

  .faq-sidebar {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
  }

  .faq-cat {
    flex: 1;
    padding: 8px 6px;
    font-size: 14px;
    text-align: center;
    border-radius: 999px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-item {
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
  }

  .faq-q {
    font-size: 16px;
    position: relative;
    margin: 0;
    padding: 18px 52px 18px 20px;
    border-bottom: 0;
    cursor: pointer;
  }

  .faq-q::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2.5px solid var(--text);
    border-bottom: 2.5px solid var(--text);
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .faq-item.is-open .faq-q {
    border-bottom: 1px solid var(--border);
  }

  .faq-item.is-open .faq-q::after {
    transform: translateY(-25%) rotate(225deg);
  }

  .faq-a {
    font-size: 16px;
    display: none;
    padding: 14px 20px 18px;
  }

  .faq-item.is-open .faq-a {
    display: block;
  }

  .site-footer {
    padding: 18px 0 12px;
  }

  .footer-inner,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-left {
    min-width: 0;
    width: 100%;
    gap: 16px;
  }

  .footer-logo img {
    width: 84px;
  }

  .footer-company p,
  .footer-links a {
    font-size: 16px;
  }

  .site-footer {
    border-top: 1px solid rgba(255,255,255,0.16);
    padding: 16px 0 8px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
      "cta cta"
      "logo ."
      "company links";
    align-items: start;
    gap: 12px 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-dl {
    grid-area: cta;
    justify-self: center;
    width: min(100%, 324px);
    min-width: 0;
    padding: 15px 18px;
    border-radius: 6px;
    background: #8d8d8d;
    color: var(--white);
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .footer-left {
    display: contents;
  }

  .footer-logo {
    grid-area: logo;
  }

  .footer-logo img {
    width: 104px;
  }

  .footer-company {
    grid-area: company;
  }

  .footer-company p {
    font-size: 15px;
    line-height: 1.42;
    font-weight: 500;
    color: #7f7f7f;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .footer-company p:first-child {
    white-space: nowrap;
  }

  .footer-links {
    grid-area: links;
    align-items: flex-end;
    align-self: start;
    justify-self: end;
    width: auto;
    min-width: max-content;
    margin-left: 0;
  }

  .footer-links a {
    font-size: 15px;
    line-height: 1.22;
    font-weight: 500;
    text-align: right;
    color: #7f7f7f;
    white-space: nowrap;
  }

  .footer-bottom {
    margin-top: 14px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .sns-link {
    font-size: 16px;
    color: #7f7f7f;
  }
}

/* ===== 360px narrow screen fixes ===== */
@media (max-width: 374px) {
  /* Stats: セル幅が狭いため数字を縮小 */
  .stat-num {
    font-size: 70.4px;
  }
  .stat-num small {
    font-size: 42.4px;
  }
  .stat-label {
    font-size: 16px;
  }

  /* Pricing: コンテナ余白を縮小して価格数字を収める */
  .pricing .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pricing::before {
    inset: 0 6px;
  }

  .roadmap-bg {
    margin: 0 6px;
  }

  .roadmap::before {
    left: 6px;
    right: 6px;
  }

  /* Hero: inner の横パディングを縮小 */
  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Solution card: フォントサイズ縮小＋横パディング縮小で「集客が機能する」収める */
  .solution-card {
    padding-left: 18px;
    padding-right: 18px;
  }
  .solution-card-ttl {
    font-size: 36.8px;
  }

  /* Pillars title: 「マーケティングを」が312pxに収まるよう縮小・中央揃え維持 */
  .pillars-title {
    font-size: 35.2px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
}

/* ===== TYPOGRAPHY OVERRIDES ===== */
body {
  font-size: 16px;
  line-height: 1.8;
}

p,
li {
  line-height: 1.8;
}

.section-title,
.solution-title,
.pricing-main-title,
.pillar-title,
.contact-label-main,
.faq .section-title,
.roadmap .section-title {
  line-height: 1.45;
}

.targets-grid .target-title,
.targets-grid .target-card--wide .target-title--large {
  line-height: 1.22;
}

.header-tagline,
.mobile-kicker-label,
.plan-name,
.mpc-name,
.roadmap-date,
.roadmap-badge {
  line-height: 1.05;
}

.hero-sub,
.hero-desc,
.solution-card-desc,
.pillar-sub,
.pillar-list li,
.plan-target,
.plan-catch,
.roadmap-item p,
.faq-a,
.footer-company p,
.footer-links a,
.form-group label,
.form-group input,
.form-group select,
.form-group textarea,
.privacy-note,
.mobile-menu-link,
.mobile-menu-btn,
.cell-val {
  font-size: 17px;
  line-height: 1.8;
}

@media (min-width: 912px) {
  .faq-a {
    font-size: 16px;
    line-height: 1.85;
  }
}

.targets-grid .target-desc {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hero-sub {
    line-height: 1.12;
  }

  .hero-desc {
    line-height: 1.38;
  }
}

.btn,
.nav-login,
.nav-register {
  font-size: 16px;
  line-height: 1.2;
}
.btn-submit {
  font-size: 21px;
  line-height: 1.2;
}
.footer-company p {
  line-height: 1.34;
}
.footer-links {
  gap: 1px;
}
.footer-links a {
  line-height: 1.12;
}

@media (max-width: 640px) {
  .footer-company p,
  .footer-links a {
    font-size: 15px;
    line-height: 1.34;
  }

  .footer-company,
  .footer-links {
    align-self: stretch;
  }

  .footer-links {
    gap: 0;
    justify-content: space-between;
  }
}

@media (max-width: 374px) {
  body {
    font-size: 15px;
  }

  .btn,
  .nav-login,
  .nav-register,
  .mobile-menu-link,
  .mobile-menu-btn,
  .footer-company p,
  .footer-links a,
  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .privacy-note,
  .cell-val {
    font-size: 14px;
  }

  .hero-sub,
  .hero-desc,
  .solution-card-desc,
  .pillar-sub,
  .pillar-list li,
  .plan-target,
  .plan-catch,
  .roadmap-item p,
  .targets-grid .target-desc {
    font-size: 15px;
    line-height: 1.52;
  }

  .faq-a {
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-title {
    font-size: clamp(33.6px, 10vw, 40px);
  }

  .section-title,
  .solution-title,
  .pricing-main-title,
  .pillars-title,
  .contact-label-main,
  .faq .section-title,
  .roadmap .section-title {
    line-height: 1.22;
  }

  .btn-submit {
    font-size: 18px;
  }

  .footer-links {
    gap: 1px;
  }

  .target-title,
  .target-card--wide .target-title--large {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (max-width: 374px) {
  .stats {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stats-inner {
    max-width: 100%;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
  }

  .stat-item {
    padding: 10px 8px;
    border-radius: 18px;
  }

  .stat-num {
    font-size: 68px;
  }

  .stat-num small {
    font-size: 36px;
    margin-left: -3px;
  }

  .stat-label {
    font-size: 14px;
    line-height: 1.3;
  }

  .stat-label--two-line .stat-label-line {
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .pricing-main-title {
    font-size: 36px;
    line-height: 1.22;
    padding: 0 8px;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .solution-summary {
    padding-left: 22px;
    padding-right: 22px;
  }

  .solution-summary-ttl {
    font-size: 32px;
    line-height: 1.12;
  }

  .solution-summary-num {
    font-size: 66px;
  }

  .solution-summary-key {
    font-size: 44px;
  }

  .solution-summary-tail {
    font-size: 33px;
    line-height: 1.02;
  }

  .hero-title {
    font-size: clamp(23px, 6.2vw, 26px);
  }

  .hero-title .mobile-only {
    display: none;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .target-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .target-title,
  .target-card--wide .target-title--large {
    font-size: 27px;
    line-height: 1.32;
  }

  .target-title-line {
    white-space: nowrap;
  }

  .target-arrow {
    align-self: center;
    font-size: 22px;
    line-height: 1;
  }

  .stats-inner {
    gap: 18px;
    padding: 16px;
  }

  .stat-item {
    padding: 12px 9px;
  }

  .stat-label {
    font-size: 15px;
    line-height: 1.3;
  }

  .stat-label--two-line {
    font-size: 14px;
    line-height: 1.24;
  }

  .stat-label--two-line .stat-label-line {
    white-space: normal;
  }

  .stat-label--two-line br {
    display: none;
  }
}

/* ===== PILLARS CARD TEXT TUNING ===== */
.pillars .pillar-card:not(.pillar-card--wide) .pillar-title {
  font-size: 23px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.pillars .pillar-card:not(.pillar-card--wide) .pillar-sub {
  font-size: 14px;
  line-height: 1.42;
  margin-bottom: 12px;
  min-height: 4.26em;
}

.pillars .pillar-card:not(.pillar-card--wide) .pillar-list {
  gap: 6px;
}

.pillars .pillar-card:not(.pillar-card--wide) .pillar-list li {
  font-size: 14px;
  line-height: 1.38;
}

.pillars .pillar-card--wide .pillar-title {
  font-size: 23px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.pillars .pillar-card--wide .pillar-sub {
  font-size: 14px;
  line-height: 1.42;
  margin-bottom: 12px;
}

.pillars .pillar-card--wide .pillar-list {
  gap: 6px;
}

.pillars .pillar-card--wide .pillar-list li {
  font-size: 14px;
  line-height: 1.38;
}

.pillars .pillar-sub {
  line-height: 1.52;
  margin-bottom: 12px;
  min-height: 4.3em;
}

.pillars .pillar-card:not(.pillar-card--wide) .pillar-sub {
  min-height: 4.56em;
}

.pillars .pillar-card--wide .pillar-sub {
  min-height: auto;
  margin-bottom: 6px;
}

.pillars .pillar-list {
  gap: 10px;
}

.pillars .pillar-list li {
  line-height: 1.5;
  min-height: auto;
}

.pillars .pillar-plus {
  width: 12px;
  height: 12px;
  margin-top: 7px;
}

@media (max-width: 640px) {
  .target-label-text {
    font-size: 20px;
    line-height: 1.28;
  }

  .pillars .pillar-card:not(.pillar-card--wide) .pillar-title,
  .pillars .pillar-card--wide .pillar-title {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 14px;
  }

  .pillars .pillar-card:not(.pillar-card--wide) .pillar-sub,
  .pillars .pillar-card--wide .pillar-sub,
  .pillars .pillar-card:not(.pillar-card--wide) .pillar-list li,
  .pillars .pillar-card--wide .pillar-list li {
    font-size: 16px;
    line-height: 1.5;
  }

  .pillars .pillar-card:not(.pillar-card--wide) .pillar-sub {
    min-height: auto;
  }

  .pillars .pillar-card--wide .pillar-sub {
    min-height: auto;
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) and (max-width: 911px) {
  .hero {
    min-height: clamp(540px, 68vw, 640px);
    padding-top: 10px;
    overflow: hidden;
    align-items: flex-start;
  }

  .hero-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 28px 0;
  }

  .hero-text {
    width: min(430px, 52%);
    max-width: 430px;
    position: relative;
    z-index: 2;
  }

  .hero-kicker {
    gap: 16px;
    margin-bottom: 14px;
  }

  .hero-logo {
    width: 88px;
    height: 66px;
  }

  .hero-logo img {
    height: 66px;
  }

  .hero-label {
    font-size: 15px;
    line-height: 1.42;
    letter-spacing: 0.03em;
  }

  .hero-title {
    font-size: clamp(30px, 4.5vw, 40px);
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.46;
    margin-bottom: 4px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.56;
    max-width: 400px;
  }

  .hero-channels {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
  }

  .channel-tag {
    font-size: 14px;
    min-height: 36px;
    padding: 6px 13px 4px;
  }

  .hero-image {
    position: absolute;
    right: -126px;
    bottom: -34px;
    width: min(50vw, 460px);
    max-width: none;
    z-index: 1;
  }

  .stats {
    margin-top: -40px;
    padding-bottom: 40px;
  }

  .stats-inner {
    max-width: 720px;
    gap: 14px;
    padding: 16px 18px;
  }

  .stat-item {
    flex: 1 1 0;
    min-height: 128px;
  }

  .solution-inner {
    max-width: 760px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .solution-title {
    width: min(100%, 720px);
    font-size: clamp(34px, 4.6vw, 44px);
    line-height: 1.18;
    margin: 0 auto 28px;
  }

  .solution-showcase {
    grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
    gap: 14px;
    margin-bottom: 30px;
    width: min(100%, 720px);
  }

  .solution-summary {
    min-height: 0;
    padding: 26px 20px 22px;
  }

  .solution-summary-ttl {
    font-size: 30px;
    line-height: 1.14;
  }

  .solution-summary-num {
    font-size: 46px;
  }

  .solution-channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 720px);
    gap: 18px;
  }

  .channel-purpose,
  .channel-desc {
    font-size: 15px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    gap: 20px;
  }

  .pillar-card--wide {
    grid-column: span 2;
  }

  .targets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    gap: 18px;
    margin-top: 32px;
  }

  .target-card {
    padding: 24px 20px;
  }

  .target-label {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .target-title,
  .target-card--wide .target-title--large {
    font-size: 26px;
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .target-desc {
    font-size: 15px;
    line-height: 1.56;
  }

  .pricing {
    --pricing-gap: 6px;
    --pricing-feature-col: clamp(120px, 14vw, 138px);
    --pricing-side-col: var(--pricing-feature-col);
    --pricing-plan-col: clamp(162px, calc((100vw - var(--pricing-feature-col) - 64px) / 3), 196px);
    --pricing-table-width: calc(var(--pricing-side-col) + (var(--pricing-plan-col) * 3) + (var(--pricing-gap) * 3));
    padding: 60px 0 84px;
  }

  .pricing .container {
    max-width: 820px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing::before {
    left: 12px;
    right: 12px;
    border-radius: 30px 30px 0 0;
    background-size: 30px 30px;
  }

  .pricing-main-title,
  .pricing-main-sub,
  .pricing-table {
    width: min(var(--pricing-table-width), calc(100vw - 36px));
  }

  .pricing-main-title {
    font-size: 36px;
    margin-bottom: 8px;
    padding: 0;
  }

  .pricing-main-sub {
    font-size: 15px;
    margin-bottom: 28px;
    padding: 0;
  }

  .pricing-table {
    display: block !important;
  }

  .mobile-price-cards {
    display: none !important;
  }

  .ptable-plan-col {
    min-height: 206px;
    padding: 24px 12px 12px;
  }

  .ptable-plan-col .plan-name {
    font-size: 19px;
  }

  .ptable-plan-col .plan-target {
    font-size: 11.5px;
    min-height: calc(1.35em * 4.4);
  }

  .ptable-plan-col .price-num {
    font-size: 36px;
  }

  .ptable-plan-col .price-per {
    font-size: 13px;
  }

  .ptable-plan-col .plan-catch {
    font-size: 11.5px;
  }

  .ptable-section-title {
    font-size: 13px;
    min-height: 34px;
    padding: 6px 10px;
    width: calc(100% - 18px);
  }

  .ptable-row--section-minor .ptable-section-title--left {
    font-size: 15px;
    transform: translateY(6px);
  }

  .ptable-cell,
  .cell-val {
    font-size: 12px;
  }

  .ptable-feature {
    font-size: 13px;
    letter-spacing: 0.01em;
    line-height: 1.28;
    padding: 8px 8px;
    padding-left: 8px;
    --feature-line-shift: -2px;
  }

  .ptable-feature-text,
  .ptable-feature-break {
    width: 92%;
    line-height: 1.2;
  }
}

@media (min-width: 641px) {
  .channel-tag {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 6px;
  }
}

@media (min-width: 1500px) {
  /* Let one blur overlap both sections from the pillars side so it doesn't get clipped into a seam. */
  .pillars {
    overflow: visible;
  }

  .solution .blur-circle--solution-channels-focus {
    display: none;
  }

  .pillars .blur-circle--pillars-focus {
    display: block;
    left: -120px;
    top: -220px;
    opacity: 0.9;
  }

  .pillars .blur-circle--pillars-focus img {
    width: 620px;
  }

  .roadmap-blur-circle {
    left: 72%;
    top: 250px;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
  }

  .roadmap-bg::before {
    background: none;
  }
}

@media (min-width: 768px) and (max-width: 911px) {
  .solution {
    overflow: visible;
  }

  .solution .blur-circle--solution-channels-focus {
    display: none;
  }

  .pillars {
    margin-top: 0;
    background: var(--bg);
  }

  .pillars .blur-circle--pillars-focus {
    display: none;
  }

  .hero {
    min-height: clamp(500px, 64vw, 620px);
    padding-top: 4px;
  }

  .hero-inner {
    padding: 18px 28px 0;
  }

  .hero-text {
    width: min(440px, 56%);
    max-width: 440px;
  }

  .hero-image {
    right: clamp(-42px, -2vw, -8px);
    bottom: clamp(-10px, 0vw, 12px);
    width: min(50vw, 470px);
  }

  .stats {
    margin-top: -56px;
  }

  .pricing {
    --pricing-gap: 6px;
    --pricing-feature-col: clamp(126px, 14.5vw, 142px);
    --pricing-side-col: var(--pricing-feature-col);
    --pricing-plan-col: clamp(150px, calc((100vw - var(--pricing-feature-col) - 48px) / 3), 186px);
    --pricing-table-width: calc(var(--pricing-side-col) + (var(--pricing-plan-col) * 3) + (var(--pricing-gap) * 3));
  }

  .pricing .container {
    max-width: 980px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .pricing::before {
    left: 10px;
    right: 10px;
  }

  .pricing-main-title,
  .pricing-main-sub,
  .pricing-table {
    width: min(var(--pricing-table-width), calc(100vw - 30px));
  }

  .ptable-feature {
    font-size: 12.5px;
    line-height: 1.26;
    padding: 8px 6px;
    --feature-line-shift: 0px;
  }

  .ptable-feature-text,
  .ptable-feature-break,
  .ptable-feature-text--centered {
    width: 100%;
    transform: none;
    padding-right: 4px;
  }

  .ptable-feature::after {
    width: 90%;
    margin-left: 0;
  }

  .ptable-cell,
  .cell-val {
    font-size: 12px;
  }

  .roadmap-bg {
    margin: 0 10px;
    border-radius: 30px 30px 0 0;
  }

  .roadmap::before {
    left: 10px;
    right: 10px;
  }

  .roadmap-bg::after {
    display: none;
  }

  .site-footer {
    padding: 22px 0 12px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
      "left links"
      "cta cta";
    align-items: start;
    gap: 18px 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-left {
    grid-area: left;
    gap: 18px;
    min-width: 0;
    align-self: center;
  }

  .footer-logo img {
    width: 88px;
  }

  .footer-company {
    min-width: 0;
    max-width: 260px;
  }

  .footer-company p {
    font-size: 15px;
    line-height: 1.4;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .footer-company p:first-child {
    white-space: nowrap;
  }

  .footer-links {
    grid-area: links;
    justify-self: end;
    align-items: flex-start;
    align-self: center;
    min-width: max-content;
    margin-left: 0;
    gap: 2px;
  }

  .footer-links a {
    font-size: 15px;
    line-height: 1.24;
    white-space: nowrap;
  }

  .footer-dl {
    grid-area: cta;
    justify-self: center;
    min-width: 280px;
    padding: 13px 20px;
    font-size: 15px;
  }

  .footer-bottom {
    margin-top: 14px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 861px) and (max-width: 911px) {
  .hero {
    min-height: clamp(590px, 72vw, 700px);
    padding-top: 18px;
    align-items: center;
  }

  .hero-inner {
    align-items: center;
    padding: 28px 30px 0;
  }

  .hero-text {
    width: min(430px, 48%);
  }

  .hero-image {
    right: clamp(-20px, -1vw, 8px);
    bottom: clamp(0px, 1vw, 18px);
    width: min(47vw, 470px);
  }

  .stats {
    margin-top: -24px;
  }
}

@media (min-width: 912px) and (max-width: 1023px) {
  .header-inner {
    padding: 0 14px;
    gap: 10px;
  }

  .header-brand {
    gap: 10px;
  }

  .header-logo {
    width: 56px;
    height: 42px;
  }

  .header-logo img {
    height: 42px;
  }

  .header-tagline,
  .header-nav a,
  .nav-login,
  .nav-register {
    font-size: 13px;
    letter-spacing: 0;
  }

  .header-tagline {
    line-height: 1.15;
  }

  .header-nav {
    gap: 14px;
  }

  .nav-login,
  .nav-register {
    padding: 9px 14px !important;
  }

  .solution-title {
    width: min(100%, 860px);
    font-size: 46px;
    line-height: 1.16;
    margin-bottom: 24px;
  }

  .solution-title .highlight-red {
    font-size: 60px;
  }

  .solution-showcase,
  .solution-channels {
    width: min(100%, 860px);
  }

  .solution-showcase {
    grid-template-columns: minmax(0, 1.04fr) 280px;
    gap: 12px;
    margin-bottom: 40px;
  }

  .solution-summary {
    min-height: 238px;
    padding: 20px 18px 18px;
  }

  .solution-summary-ttl {
    font-size: 29px;
  }

  .solution-summary-num {
    font-size: 44px;
  }

  .solution-summary-desc,
  .solution-summary-em {
    font-size: 15px;
  }

  .solution-channels {
    gap: 18px;
  }

  .solution-channel {
    min-height: 196px;
    padding-right: 8px;
  }

  .channel-name {
    grid-template-rows: 38px 28px;
    font-size: 28px;
  }

  .channel-name > .channel-title {
    min-height: 38px;
  }

  .channel-sub {
    min-height: 28px;
    font-size: 25px;
  }

  .channel-rule {
    margin: 8px 0 12px;
  }

  .channel-purpose {
    min-height: 28px;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .channel-desc {
    font-size: 15px;
    line-height: 1.55;
  }

  .solution-ch-num {
    top: 54px;
    right: -8px;
  }

  .solution-ch-num img {
    height: clamp(148px, 13vw, 190px);
  }

  .solution-channel:nth-child(3) .solution-ch-num {
    top: 52px;
    right: -2px;
  }

  .pillars-title {
    font-size: 40px;
    line-height: 1.16;
  }

  .pillars-line {
    margin-top: -12px;
    margin-bottom: 38px;
  }

  .pillars-grid {
    width: min(100%, 900px);
    gap: 18px;
  }

  .pillar-card {
    padding: 24px 22px 22px;
  }

  .pillar-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .pillar-sub {
    font-size: 14px;
    line-height: 1.4;
    min-height: 4.6em;
    margin-bottom: 10px;
  }

  .pillar-list {
    gap: 5px;
  }

  .pillar-list li {
    font-size: 13px;
    line-height: 1.38;
  }

  .targets-grid {
    max-width: 860px;
    margin-top: 44px;
    gap: 20px;
  }

  .target-card {
    padding: 24px 22px;
  }

  .target-label {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .target-title,
  .target-card--wide .target-title--large {
    font-size: 29px;
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .target-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .pricing {
    --pricing-gap: 6px;
    --pricing-feature-col: clamp(134px, 14.5vw, 148px);
    --pricing-side-col: var(--pricing-feature-col);
    --pricing-plan-col: clamp(164px, calc((100vw - var(--pricing-feature-col) - 52px) / 3), 198px);
    --pricing-table-width: calc(var(--pricing-side-col) + (var(--pricing-plan-col) * 3) + (var(--pricing-gap) * 3));
    padding: 44px 0 76px;
    margin-top: 0;
  }

  .pricing .container {
    max-width: 880px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing::before {
    left: 8px;
    right: 8px;
    border-radius: 30px 30px 0 0;
    background-size: 30px 30px;
    background-position: 0 14px, 0 0;
  }

  .roadmap::before {
    left: 8px;
    right: 8px;
  }

  .roadmap-bg {
    margin: 0 8px;
    border-radius: 30px 30px 0 0;
  }

  .pricing-main-title,
  .pricing-main-sub,
  .pricing-table {
    width: min(var(--pricing-table-width), calc(100vw - 28px));
  }

  .pricing-main-title {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .pricing-main-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .ptable-plan-col {
    min-height: 202px;
    padding: 24px 12px 12px;
  }

  .ptable-plan-col .plan-name {
    font-size: 18px;
  }

  .ptable-plan-col .plan-target {
    font-size: 11px;
    line-height: 1.32;
    letter-spacing: -0.03em;
    min-height: calc(1.32em * 4.6);
  }

  .ptable-plan-col .price-num {
    font-size: 34px;
  }

  .ptable-plan-col .price-per {
    font-size: 12px;
  }

  .ptable-plan-col .plan-catch {
    font-size: 11px;
    line-height: 1.4;
    min-height: 3em;
  }

  .plan-btn {
    font-size: 14px;
  }

  .ptable-row {
    min-height: 48px;
  }

  .ptable-row--section,
  .ptable-row--section-minor {
    height: 58px;
    min-height: 58px;
  }

  .ptable-section-title {
    font-size: 12px;
    min-height: 32px;
    padding: 6px 8px;
    width: calc(100% - 12px);
  }

  .ptable-row--section-minor .ptable-section-title--left {
    font-size: 14px;
    transform: translateY(4px);
  }

  .ptable-feature {
    font-size: 11.5px;
    letter-spacing: 0;
    line-height: 1.22;
    padding: 8px 6px;
    --feature-line-shift: 0px;
  }

  .ptable-feature-text,
  .ptable-feature-break,
  .ptable-feature-text--centered {
    width: 100%;
    line-height: 1.18;
    transform: none;
    padding-right: 2px;
  }

  .ptable-feature::after {
    width: 88%;
    margin-left: 0;
  }

  .ptable-cell,
  .cell-val {
    font-size: 11.5px;
    padding: 8px 2px;
  }

  .check-img {
    width: 22px;
    height: 22px;
  }

  .ptable-footer-cell {
    padding: 16px 14px 20px;
  }

  .ptable-footer-btn {
    font-size: 14px;
  }

  .ptable-footer-note {
    font-size: 12px;
    line-height: 1.4;
  }

  .site-footer {
    padding: 24px 0 12px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-left {
    gap: 16px;
    align-self: center;
  }

  .footer-logo img {
    width: 82px;
  }

  .footer-company {
    max-width: 250px;
  }

  .footer-company p {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-links {
    justify-self: end;
    align-items: flex-start;
    align-self: center;
    gap: 3px;
    padding-top: 0;
  }

  .footer-links a {
    font-size: 14px;
    line-height: 1.24;
  }

  .footer-dl {
    justify-self: end;
    align-self: center;
    min-width: 244px;
    max-width: none;
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .footer-bottom {
    margin-top: 10px;
  }
}
@media (max-width: 640px) {
  .pricing {
    margin-top: -1px;
  }

  .pricing::before {
    top: 1px;
    overflow: hidden;
  }
}
@media (max-width: 640px) {

  .pricing {
    margin-top: -1px;
  }

  .blur-circle--pricing-focus {
    display: none !important;
  }

}
@media (max-width: 640px) {
  .site-header .logo,
  .header-logo {
    display: flex;
    align-items: center;
  }

  .site-header .logo img,
  .header-logo img {
    display: block;
  }
}
@media (max-width: 640px) {
  .header-tagline {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transform: translateY(2px);
  }
}
.header-tagline {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding-top: 0;
  margin-top: 0;
  transform: translateY(2px);
}
@media (max-width: 640px) {
  .stats-inner {
    padding: 20px;
  }

  .stat-item {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 640px) {
  .pillar-list li,
  .target-list li,
  .feature-list li {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}
@media (max-width: 640px) {
  .problem-card {
    aspect-ratio: 1 / 1;
    height: auto;
    padding: 14px 10px 12px;
  }

  .problem-icon {
    width: 72px;
    height: 64px;
    margin-bottom: 8px;
  }

  .problem-icon img {
    width: 70px;
    height: 62px;
  }

  .problem-card p {
    white-space: normal;
    font-size: 12.5px;
    line-height: 1.28;
  }
}
@media (max-width: 640px) {

  .problem-card:nth-child(3) .problem-icon img {
    width: 72px;
    height: 68px;
  }

  .problem-card:nth-child(4) .problem-icon img {
    width: 82px;
    height: 76px;
  }

}
@media (max-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .problem-card {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 640px) {
  .problem-icon {
    width: 92px;
    height: 86px;
  }

  .problem-icon img {
    width: 86px;
    height: 80px;
  }

  .problem-card:nth-child(1) .problem-icon img,
  .problem-card:nth-child(4) .problem-icon img {
    width: 102px;
    height: 96px;
  }
}
@media (max-width: 640px) {

  /* ワニ */
  .problem-card:nth-child(3) .problem-icon img {
    width: 86px;
    height: 80px;
  }

  /* キリン */
  .problem-card:nth-child(4) .problem-icon {
    margin-bottom: 0;
  }

  .problem-card:nth-child(4) .problem-icon img {
    width: 92px;
    height: 86px;
  }

}