:root {
  --color-primary: #0f95cf;
  --color-primary-dark: #0d79b8;
  --color-accent: #ff7d67;
  --color-accent-dark: #f4644b;
  --color-text: #272023;
  --color-muted: #4b4b53;
  --color-bg: #f8fdff;
  --color-line: #d8e6ef;
  --color-card: #ffffff;
  --color-soft: #fff8d6;
  --shadow-soft: 0 22px 54px rgba(67, 124, 156, 0.14);
  --shadow-card: 0 24px 60px rgba(77, 127, 158, 0.18);
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-pill: 999px;
  --container-width: 1320px;
  --compact-accent-heading-side-padding: 72px;
  --compact-accent-heading-font-size: clamp(2.1rem, 1.5vw + 1.2rem, 3rem);
  --compact-accent-heading-bar-width: 34px;
  --compact-accent-heading-bar-height: 8px;
  --compact-accent-heading-bar-background: linear-gradient(180deg, #4db5df 0%, #2f9fcf 100%);
  --compact-accent-heading-color: #3d9fc7;
  --section-kicker-side-padding: 86px;
  --section-kicker-font-size: clamp(2.1rem, 1.35vw + 1.2rem, 3rem);
  --section-kicker-bar-width: 42px;
  --section-kicker-bar-height: 10px;
  --section-kicker-bar-background: linear-gradient(135deg, #16a6d6 0%, #1d97c8 100%);
  --section-kicker-color: #1498c7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(182, 231, 248, 0.42) 0%, rgba(182, 231, 248, 0) 28%),
    radial-gradient(circle at 100% 12%, rgba(215, 242, 250, 0.78) 0%, rgba(215, 242, 250, 0) 26%),
    linear-gradient(180deg, #f5fbfd 0%, #f9fdff 18%, #ffffff 42%, #f8fcff 100%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 28px), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 226, 238, 0.68);
  box-shadow: 0 10px 28px rgba(90, 127, 150, 0.06);
}

.site-header .container {
  width: min(calc(100% - 16px), 1700px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 24px;
  justify-content: center;
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  height: 70px;
  overflow: hidden;
  padding-right: 0;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(360px, 24vw, 430px);
  height: 70px;
  object-fit: contain;
  object-position: center center;
}

.site-nav {
  margin-left: 0;
  justify-self: center;
}

/* パネル表示のときだけ使う。横並びナビでは出さない */
.site-nav-brand,
.site-nav-copyright {
  display: none;
}

.site-nav-cta {
  display: none;
}

.site-nav-close {
  display: none;
}

.mobile-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(28px, 1.75vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.14rem;
  font-weight: 700;
}

.nav-list a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  white-space: nowrap;
  color: #274351;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
  margin-left: 0;
  padding-right: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(23, 129, 175, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(60, 108, 136, 0.12);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(60, 108, 136, 0.16);
  border-color: rgba(23, 129, 175, 0.34);
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #1e6f94;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 149, 207, 0.18);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.button-large {
  width: 100%;
  min-height: 58px;
  padding: 0 28px;
  font-size: 1.25rem;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #1ba6da 0%, #1694cc 100%);
  box-shadow: 0 14px 28px rgba(29, 140, 188, 0.18);
}

.button-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent) 0%, #ff8b72 100%);
}

.button-accent:hover,
.button-accent:focus-visible {
  box-shadow: 0 16px 30px rgba(255, 125, 103, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 34px;
  isolation: isolate;
  background:
    #f4f9fc url("../images/hiro-back1.webp") center top / cover no-repeat;
}

.hero .container {
  width: min(calc(100% - 20px), 1560px);
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-bg,
.hero-dot {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 8px), 1540px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 620px);
  gap: 18px;
  align-items: start;
}

/* 申し込みフォームは横に並べられる間は出す。2カラムが崩れる幅でだけ隠し、
   CTAから /register.php へ直行させる */
@media (max-width: 1100px) {
  .contact-card {
    display: none;
  }
}

.hero-copy {
  max-width: none;
  padding-top: 48px;
}

.hero-title {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: clamp(2.75rem, 2.5vw, 3.35rem);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: #0c2434;
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
}

.hero-title span {
  display: block;
  margin-top: 10px;
  /* 一番売りたい行なので、水色(#22a9dd)より1段深い青でコントラストを確保する */
  color: #1789c0;
  font-weight: 800;
}

.hero-title .hero-title-main {
  margin-top: 0;
  color: inherit;
}

/* 「永年無料」のクレヨン風下線。feTurbulence でエッジを粗らし、
   太い主線に薄い重ね塗りを足して蝋の乗りムラを出す */
.hero-title .hero-title-pen {
  font-style: normal;
  padding-bottom: 0.22em;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 16' preserveAspectRatio='none'%3E%3Cfilter id='c' x='-10%25' y='-40%25' width='120%25' height='180%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9 0.45' numOctaves='2' seed='7'/%3E%3CfeDisplacementMap in='SourceGraphic' scale='4'/%3E%3C/filter%3E%3Cg filter='url(%23c)' stroke='%23f9c440' fill='none' stroke-linecap='round'%3E%3Cpath d='M6 10.5 C 55 5.5, 120 4.5, 214 7.5' stroke-width='6' opacity='0.9'/%3E%3Cpath d='M9 12.5 C 60 8.5, 130 7, 210 10' stroke-width='3.2' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat left 100% / 100% 0.34em;
}

.hero-description {
  margin: 24px auto 0;
  max-width: 640px;
  color: #38505d;
  font-size: 1.36rem;
  line-height: 1.85;
  font-weight: 800;
  text-align: center;
}

.hero-description-break-mobile {
  display: none;
}

/* 対応種別タグ。静的な情報ラベルなので、カード（白＋影）ではなく
   淡色＋枠線のピル型にして CTA と視覚強度を分ける */
.hero-points {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 22px 8px 14px;
  border: 1px solid rgba(34, 169, 221, 0.35);
  border-radius: 999px;
  background: rgba(232, 246, 252, 0.9);
  color: #14789f;
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero-points li::before {
  content: none;
}

.point-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(27, 169, 220, 0.12) 0%, rgba(27, 169, 220, 0.08) 100%);
  object-fit: contain;
  filter: invert(42%) sepia(79%) saturate(1225%) hue-rotate(165deg) brightness(93%) contrast(90%);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 10px;
  width: min(100%, 1040px);
  margin: 24px auto 0;
}

.hero-illustration {
  width: min(100%, 330px);
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(22, 61, 114, 0.12));
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(100%, 760px);
  margin: 10px auto 0;
}

/* フォームが右隣に見えている幅では、同じ導線のオレンジCTAを重複させない
   （1240px以下はフォームが下に落ちるのでボタンを残す） */
@media (min-width: 1241px) {
  .hero-actions {
    display: none;
  }
}

.hero-action-btn {
  min-height: 68px;
  padding: 0 24px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: 1.46rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 14px 28px rgba(78, 125, 151, 0.14);
}

.hero-action-btn-primary {
  min-width: 340px;
  color: #fff;
  background: linear-gradient(135deg, #ff8c6a 0%, #ff7d67 100%);
}

.hero-person {
  position: relative;
  z-index: 1;
  width: clamp(300px, 26vw, 380px);
  max-width: 380px;
  height: auto;
  align-self: end;
  filter: drop-shadow(0 14px 24px rgba(22, 61, 114, 0.12));
}

.hero-person-left {
  margin-right: -70px;
  transform: translateY(-8px);
}

.hero-person-right {
  margin-left: -68px;
  transform: translateY(-6px);
}

.device {
  position: relative;
  display: grid;
  justify-items: center;
  z-index: 2;
}

.device-frame {
  width: min(100%, 290px);
  padding: 14px 14px 18px;
  border: 10px solid #272423;
  border-radius: 14px;
  background: linear-gradient(180deg, #343230 0%, #1d1b1b 100%);
  box-shadow: var(--shadow-soft);
}

.device-screen {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(15, 149, 207, 0.08), rgba(15, 149, 207, 0.02)),
    #ffffff;
  padding: 12px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.app-grid span {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f7fb 100%);
  box-shadow: inset 0 0 0 1px rgba(178, 207, 224, 0.7);
}

.app-grid span::before {
  content: "";
  position: absolute;
  inset: 8px 12px auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(74, 86, 97, 0.2);
}

.app-grid span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  transform: translate(-50%, -20%);
  background: linear-gradient(135deg, #1bb7ef 0%, #5fd6ff 100%);
  box-shadow: 0 6px 12px rgba(27, 183, 239, 0.2);
}

.device-stand {
  width: 128px;
  height: 54px;
  margin-top: -2px;
  clip-path: polygon(28% 0%, 72% 0%, 82% 100%, 18% 100%);
  background: linear-gradient(180deg, #cbcaca 0%, #9a9998 100%);
}

@keyframes smoothFade {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    box-shadow:
      0 30px 58px rgba(63, 109, 144, 0.08),
      0 10px 22px rgba(63, 109, 144, 0.04);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: var(--shadow-card);
  }
}

@keyframes dropInFromTop {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutLeadExpand {
  from {
    opacity: 0.4;
    transform: scaleY(0.1);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes aboutLeadTextFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBackdropFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.82;
  }
}

@keyframes heroAmbientFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroStickerSpinIn {
  0% {
    opacity: 0;
    transform: translate(calc(-100% + 14px), -58%) rotate(-14deg) scale(0.82);
  }

  100% {
    opacity: 1;
    transform: translate(calc(-100% + 28px), -50%) rotate(0deg) scale(1);
  }
}

@keyframes heroBackdropFloat {
  0% {
    transform: translate3d(56px, 0, 0) scale(1.04);
  }

  100% {
    transform: translate3d(-72px, -22px, 0) scale(1.08);
  }
}

@keyframes heroGlowFloat {
  0% {
    transform: translate3d(36px, 8px, 0) scale(1.02);
    opacity: 0.92;
  }

  100% {
    transform: translate3d(-48px, 26px, 0) scale(1.12);
    opacity: 0.72;
  }
}

@keyframes heroFloatLarge {
  0% {
    transform: translate3d(64px, 0, 0);
  }

  100% {
    transform: translate3d(-96px, -36px, 0);
  }
}

@keyframes heroFloatSmall {
  0% {
    transform: translate3d(28px, 0, 0);
  }

  100% {
    transform: translate3d(-56px, -24px, 0);
  }
}

@keyframes reasonRevealFromLeft {
  0% {
    opacity: 0;
    transform: translate3d(-46px, 22px, 0) scale(0.96);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes reasonRevealFromRight {
  0% {
    opacity: 0;
    transform: translate3d(46px, 22px, 0) scale(0.96);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes reasonVisualFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes reasonGlowPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-38px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bridgeBulbGlow {
  0%,
  100% {
    opacity: 0.38;
    transform: translate(-50%, 0) scale(0.92);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, -2px) scale(1.08);
  }
}

@keyframes bridgePopIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.88);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.03);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes supportCardReveal {
  0% {
    opacity: 0;
    transform: perspective(1200px) translate3d(0, 56px, 0) rotateX(14deg) scale(0.92);
    filter: blur(12px);
  }

  62% {
    opacity: 1;
    transform: perspective(1200px) translate3d(0, -6px, 0) rotateX(0deg) scale(1.01);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: perspective(1200px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
    filter: blur(0);
  }
}

@keyframes supportVisualReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.9);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.contact-card {
  position: relative;
  width: 100%;
  max-width: 632px;
  justify-self: end;
  margin-top: 8px;
  margin-right: -6px;
  padding: 22px 46px 32px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 254, 0.96) 100%);
  box-shadow: var(--shadow-card);
  will-change: opacity, transform, box-shadow;
}

/* 申し込みフォームは常に表示しておく。ファーストビューの主役をJSの都合で
   隠すと、描画待ちの空白が出るうえ内容が遅れて現れることになるため */
html.js .contact-card {
  box-shadow:
    0 32px 64px rgba(77, 127, 158, 0.08),
    0 12px 26px rgba(77, 127, 158, 0.04);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(210, 228, 236, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.contact-card h2 {
  /* フォームの機能ラベル。売り文句はボタン側の仕事なので控えめなサイズに留め、
     セクション見出しと同じ左右バーの装飾でラベル感を出す */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(1.42rem, 0.4vw + 1.14rem, 1.62rem);
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
  color: #17323f;
}

.contact-card h2::before,
.contact-card h2::after {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #39b8e4 0%, #24a8d5 100%);
}

.contact-form {
  display: grid;
  gap: 17px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  font-size: 1.08rem;
  font-weight: 800;
}

.required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 24px;
  padding: 0 8px;
  color: #fff;
  background: #f03d43;
  font-size: 0.85rem;
  line-height: 1;
  border-radius: 4px;
}

.form-group input {
  width: 100%;
  min-height: 54px;
  padding: 14px 17px;
  border: 1px solid #d4e1e8;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 149, 207, 0.14);
}

.contact-form .button {
  margin-top: 16px;
  min-height: 68px;
  font-size: 1.38rem;
}

.contact-notes {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.contact-notes li {
  position: relative;
  padding-left: 22px;
}

.contact-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 900;
}

.problems-section {
  position: relative;
  /* 出現前の行は左右にずらして待機している。row-2 は右端寄せなうえに
     右へ 34px ずれるため、可視になるまで画面外へ出て横スクロールが生じていた */
  overflow-x: hidden;
  padding: 82px 0 100px;
  background:
    radial-gradient(circle at 8% 12%, rgba(162, 218, 245, 0.22) 0%, rgba(162, 218, 245, 0) 28%),
    radial-gradient(circle at 92% 18%, rgba(152, 224, 255, 0.16) 0%, rgba(152, 224, 255, 0) 24%),
    linear-gradient(180deg, rgba(214, 236, 246, 0.82) 0%, rgba(214, 236, 246, 0) 18%),
    radial-gradient(circle at top center, rgba(162, 218, 245, 0.2), transparent 34%),
    linear-gradient(180deg, #f4f9fc 0%, #edf6fb 100%);
}

.problems-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.problems-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.pricing-kicker {
  position: relative;
  margin: 0;
  padding: 0 var(--decorated-heading-side-padding);
  font-size: var(--decorated-heading-font-size);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pricing-kicker {
  line-height: 1.12;
}

.pricing-kicker::before,
.pricing-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--decorated-heading-bar-width);
  height: var(--decorated-heading-bar-height);
  border-radius: 999px;
  background: var(--decorated-heading-bar-background);
  transform: translateY(-50%);
}

.pricing-kicker::before {
  left: 0;
}

.pricing-kicker::after {
  right: 0;
}

.problems-heading-copy {
  width: min(100%, 760px);
  margin: 0;
  color: #2f404c;
  font-size: clamp(1.12rem, 0.4vw + 1.02rem, 1.4rem);
  line-height: 1.8;
  font-weight: 800;
}

.problems-bubble-emphasis {
  position: relative;
  display: inline-block;
}

.problems-bubble-emphasis::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0.08em;
  z-index: -1;
  height: 0.28em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 229, 95, 0.95) 0%, rgba(255, 229, 95, 0.7) 100%);
}

/* 悩みは「声」。話者イラスト付きのチャット風で見せる */
.problems-voices {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: min(100%, 840px);
  margin: 52px auto 0;
}

.problem-voice-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: min(100%, 720px);
}

.problem-voice-row-1,
.problem-voice-row-3 {
  align-self: flex-start;
}

.problem-voice-row-2 {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.problem-voice-avatar {
  flex: 0 0 auto;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #eef8fd 0%, #e3f2fb 100%);
  box-shadow:
    inset 0 0 0 1px rgba(142, 202, 230, 0.5),
    0 10px 20px rgba(95, 117, 134, 0.12);
}

.problem-voice-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-voice {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 24px 28px;
  border-radius: 24px;
  border: 1px solid rgba(185, 224, 238, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.99) 100%);
  box-shadow:
    0 18px 34px rgba(95, 117, 134, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  color: #2f404c;
  font-size: clamp(0.98rem, 0.24vw + 0.92rem, 1.12rem);
  line-height: 1.92;
  font-weight: 700;
}

/* しっぽは話者イラストへ向ける */
.problem-voice::after {
  content: "";
  position: absolute;
  top: 40px;
  width: 26px;
  height: 24px;
  background: #fdfefe;
}

.problem-voice-1::after,
.problem-voice-3::after {
  left: -17px;
  clip-path: polygon(100% 0, 100% 100%, 0 46%);
  filter: drop-shadow(-5px 7px 9px rgba(95, 117, 134, 0.1));
}

.problem-voice-2::after {
  right: -17px;
  clip-path: polygon(0 0, 100% 46%, 0 100%);
  filter: drop-shadow(5px 7px 9px rgba(95, 117, 134, 0.1));
}

.problem-voice em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(rgba(255, 229, 95, 0) 66%, rgba(255, 229, 95, 0.85) 66%);
}

.problem-voice em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(rgba(255, 229, 95, 0) 66%, rgba(255, 229, 95, 0.85) 66%);
}

/* スクロールで順に現れる。吹き出しの浮遊とは別要素で制御する */
html.js .problem-voice-row {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity 0.55s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .problem-voice-row-2 {
  transform: translateX(34px);
}

html.js .problems-voices.is-visible .problem-voice-row {
  opacity: 1;
  transform: none;
}

html.js .problems-voices.is-visible .problem-voice-row-2 {
  transition-delay: 0.12s;
}

html.js .problems-voices.is-visible .problem-voice-row-3 {
  transition-delay: 0.24s;
}

/* 表示後は吹き出しだけゆっくり浮遊。位相をずらして揃い踏みに見せない */
@media (prefers-reduced-motion: no-preference) {
  .problem-voice-1 {
    animation: problem-voice-float 4.6s ease-in-out infinite alternate;
  }

  .problem-voice-2 {
    animation: problem-voice-float 5.4s ease-in-out 0.9s infinite alternate;
  }

  .problem-voice-3 {
    animation: problem-voice-float 5s ease-in-out 0.4s infinite alternate;
  }
}

@keyframes problem-voice-float {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -6px;
  }
}

/* 相談セクション末尾のCTAバンド。見出しをPCで1行に収めるため、少しだけ絞る */
.problems-cta-band {
  margin-top: 40px;
}

.cta-section.problems-cta-band .cta-inner h2 {
  font-size: clamp(1.34rem, 0.55vw + 1.05rem, 1.5rem);
}

.problems-cta-band .cta-band-figure img {
  width: clamp(132px, 12vw, 172px);
}

.cta-section.problems-cta-band .cta-inner {
  column-gap: clamp(14px, 1.6vw, 24px);
}

@media (max-width: 900px) {
  .problems-voices {
    gap: 28px;
    width: min(100%, 620px);
    margin-top: 40px;
  }

  .problem-voice-row {
    gap: 14px;
    width: 100%;
  }

  .problem-voice-avatar {
    width: 90px;
    height: 90px;
  }

  .problem-voice::after {
    top: 32px;
  }
}

@media (max-width: 560px) {
  .problem-voice {
    padding: 18px 20px;
  }

  .problem-voice-avatar {
    width: 76px;
    height: 76px;
  }

  .problem-voice::after {
    top: 26px;
  }
}

.support-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 122px;
  background:
    radial-gradient(circle at 12% 16%, rgba(167, 223, 243, 0.34) 0%, rgba(167, 223, 243, 0) 26%),
    radial-gradient(circle at 88% 10%, rgba(214, 244, 252, 0.86) 0%, rgba(214, 244, 252, 0) 24%),
    linear-gradient(180deg, #eef8fc 0%, #e8f4fb 34%, #f8fcff 100%);
}

.support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 34%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 78% 74%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(229, 243, 250, 0.32) 100%);
  pointer-events: none;
}

.support-section .container {
  position: relative;
  z-index: 1;
}

.support-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.support-heading-top {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  color: #1f9ccc;
  font-size: clamp(2rem, 1.2vw + 1.4rem, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.support-heading-top::before,
.support-heading-top::after {
  content: "";
  display: block;
  width: clamp(38px, 4.5vw, 58px);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ea7d6 0%, #1488ba 100%);
  box-shadow: 0 4px 12px rgba(21, 146, 190, 0.22);
}

.support-heading-main {
  margin: 0;
  max-width: 680px;
  color: #10283b;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: clamp(1.95rem, 1.15vw + 1.3rem, 3.1rem);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
}

.support-intro {
  margin: 16px auto 0;
  width: min(100%, 760px);
  color: #2f4450;
  font-size: clamp(0.98rem, 0.26vw + 0.94rem, 1.08rem);
  line-height: 1.9;
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 60px auto 0;
  perspective: 1400px;
}

.support-card {
  position: relative;
  padding: 28px 24px 26px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  justify-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(14px);
  box-shadow:
    0 24px 44px rgba(90, 137, 164, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

html.js .support-card {
  opacity: 0;
  transform: perspective(1200px) translate3d(0, 56px, 0) rotateX(14deg) scale(0.92);
  filter: blur(12px);
  will-change: transform, opacity, filter;
}

html.js .support-grid.is-visible .support-card {
  animation: supportCardReveal 0.96s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.js .support-grid.is-visible .support-card:nth-child(2) {
  animation-delay: 0.1s;
}

html.js .support-grid.is-visible .support-card:nth-child(3) {
  animation-delay: 0.2s;
}

html.js .support-grid.is-visible .support-card:nth-child(4) {
  animation-delay: 0.3s;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 16%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
  z-index: 0;
}

.support-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 205, 238, 0.16) 0%, rgba(107, 205, 238, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.support-card:hover,
.support-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 30px 52px rgba(90, 137, 164, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.support-card-number {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 0;
  color: rgba(18, 155, 199, 0.14);
  font-size: clamp(4.3rem, 3vw + 2.2rem, 5.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.support-card h3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  margin: 10px 0 0;
  color: #173a4d;
  text-align: left;
  font-size: 1.38rem;
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.support-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #38515d;
  font-size: 0.95rem;
  line-height: 1.88;
  font-weight: 700;
}

.support-card-visual {
  position: relative;
  z-index: 1;
  order: -1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 210px;
  margin-top: -4px;
  margin-bottom: 6px;
}

.support-card-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 88%;
  height: 86%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 38%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.support-card-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 264px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(70, 126, 152, 0.16));
}

html.js .support-card-visual img {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.9);
  filter:
    blur(8px)
    drop-shadow(0 16px 24px rgba(70, 126, 152, 0.16));
}

html.js .support-grid.is-visible .support-card .support-card-visual img {
  animation: supportVisualReveal 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
}

html.js .support-grid.is-visible .support-card:nth-child(2) .support-card-visual img {
  animation-delay: 0.28s;
}

html.js .support-grid.is-visible .support-card:nth-child(3) .support-card-visual img {
  animation-delay: 0.38s;
}

html.js .support-grid.is-visible .support-card:nth-child(4) .support-card-visual img {
  animation-delay: 0.48s;
}

.support-section .cta-section {
  padding: 48px 0 0;
  background: none;
  overflow: visible;
}

.support-section .cta-section::before {
  display: none;
}

.support-section .cta-inner {
  width: 100%;
}

.reasons-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background:
    radial-gradient(circle at 14% 12%, rgba(205, 237, 248, 0.3) 0%, rgba(205, 237, 248, 0) 24%),
    radial-gradient(circle at 82% 84%, rgba(228, 246, 252, 0.78) 0%, rgba(228, 246, 252, 0) 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.reasons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
}

.reasons-section::after {
  content: "";
  position: absolute;
  left: min(-56px, -4vw);
  top: 20px;
  width: min(30vw, 420px);
  height: min(22vw, 300px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 220'%3E%3Cg fill='none' stroke='%23deeff6' stroke-width='2.4' opacity='0.95'%3E%3Cpath d='M38 22l18 10v20L38 62 20 52V32z'/%3E%3Cpath d='M94 22l18 10v20L94 62 76 52V32z'/%3E%3Cpath d='M150 22l18 10v20l-18 10-18-10V32z'/%3E%3Cpath d='M66 70l18 10v20l-18 10-18-10V80z'/%3E%3Cpath d='M122 70l18 10v20l-18 10-18-10V80z'/%3E%3Cpath d='M178 70l18 10v20l-18 10-18-10V80z'/%3E%3Cpath d='M38 118l18 10v20l-18 10-18-10v-20z'/%3E%3Cpath d='M94 118l18 10v20l-18 10-18-10v-20z'/%3E%3Cpath d='M150 118l18 10v20l-18 10-18-10v-20z'/%3E%3Cpath d='M66 166l18 10v20l-18 10-18-10v-20z'/%3E%3Cpath d='M122 166l18 10v20l-18 10-18-10v-20z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.72;
  pointer-events: none;
}

.reasons-section .container {
  position: relative;
  z-index: 1;
}

.reasons-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.reasons-kicker,
.features-kicker {
  position: relative;
  margin: 0;
  padding: 0 var(--section-kicker-side-padding);
  color: var(--section-kicker-color);
  font-size: var(--section-kicker-font-size);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.reasons-kicker::before,
.reasons-kicker::after,
.features-kicker::before,
.features-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--section-kicker-bar-width);
  height: var(--section-kicker-bar-height);
  border-radius: 999px;
  background: var(--section-kicker-bar-background);
  transform: translateY(-50%);
}

.reasons-kicker::before,
.features-kicker::before {
  left: 0;
}

.reasons-kicker::after,
.features-kicker::after {
  right: 0;
}

.reasons-heading h2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
  color: #231f20;
  font-size: clamp(2rem, 1.35vw + 1.2rem, 3rem);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.reasons-logo-mark {
  display: inline-flex;
  align-items: center;
}

.reasons-logo-mark img {
  width: clamp(240px, 20vw, 360px);
  height: auto;
}

.reasons-title-text {
  position: relative;
  display: inline-block;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
}

.reasons-title-text-accent {
  color: #29add8;
}

.reasons-intro {
  margin: 0;
  color: #2f4450;
  font-size: clamp(1rem, 0.28vw + 0.96rem, 1.16rem);
  line-height: 1.82;
  font-weight: 800;
  width: min(100%, 760px);
}

.reasons-list {
  position: relative;
  display: grid;
  gap: 44px;
  max-width: 1180px;
  margin: 72px auto 0;
  padding: 22px 0;
}

.reasons-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(34vw, 430px);
  transform: translateX(-50%);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(225, 243, 250, 0.94) 0%, rgba(209, 236, 247, 0.92) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(191, 227, 240, 0.52),
    0 24px 48px rgba(125, 169, 188, 0.1);
  z-index: 0;
}

.reason-item {
  position: relative;
  --reason-orbit-shift: -108px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 28px;
  align-items: center;
  z-index: 1;
}

html.js .reason-item {
  opacity: 0;
  filter: blur(10px);
}

html.js .reasons-list.is-visible .reason-item {
  opacity: 1;
  filter: blur(0);
}

html.js .reason-item .reason-visual,
html.js .reason-item .reason-copy {
  opacity: 0;
  filter: blur(10px);
}

html.js .reasons-list.is-visible .reason-item .reason-visual,
html.js .reasons-list.is-visible .reason-item .reason-copy {
  animation-duration: 0.86s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reasons-list.is-visible .reason-item .reason-visual {
  animation-name: reasonRevealFromLeft;
}

html.js .reasons-list.is-visible .reason-item .reason-copy {
  animation-name: reasonRevealFromRight;
}

html.js .reasons-list.is-visible .reason-item.reason-item-reverse .reason-visual {
  animation-name: reasonRevealFromRight;
}

html.js .reasons-list.is-visible .reason-item.reason-item-reverse .reason-copy {
  animation-name: reasonRevealFromLeft;
}

html.js .reasons-list.is-visible .reason-item:nth-child(2) .reason-visual,
html.js .reasons-list.is-visible .reason-item:nth-child(2) .reason-copy {
  animation-delay: 0.12s;
}

html.js .reasons-list.is-visible .reason-item:nth-child(3) .reason-visual,
html.js .reasons-list.is-visible .reason-item:nth-child(3) .reason-copy {
  animation-delay: 0.24s;
}

html.js .reasons-list.is-visible .reason-item:nth-child(4) .reason-visual,
html.js .reasons-list.is-visible .reason-item:nth-child(4) .reason-copy {
  animation-delay: 0.36s;
}

html.js .reason-item,
html.js .reason-item .reason-visual,
html.js .reason-item .reason-copy,
html.js .reasons-list.is-visible .reason-item,
html.js .reasons-list.is-visible .reason-item .reason-visual,
html.js .reasons-list.is-visible .reason-item .reason-copy {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.reason-item-reverse {
  --reason-orbit-shift: 108px;
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
}

.reason-item-reverse .reason-visual {
  order: 1;
  z-index: 2;
  justify-self: end;
  margin-right: -28px;
  margin-left: 0;
}

.reason-item-reverse .reason-copy {
  order: 2;
  justify-self: start;
  margin-left: -28px;
  margin-right: 0;
}

.reason-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  justify-self: start;
  left: var(--reason-orbit-shift);
  width: 430px;
  max-width: 100%;
  min-height: 286px;
  margin-left: -28px;
  border-radius: 24px;
  transform-origin: center center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 26px 48px rgba(92, 137, 158, 0.14),
    inset 0 0 0 1px rgba(191, 227, 240, 0.7);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s ease,
    background-color 0.34s ease;
  overflow: hidden;
}

.reason-visual-image {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 36px);
  height: auto;
  border-radius: 16px;
}

/* 実画面スクショは余白を細くして白枠の二重化を避ける（切り抜きイラストの01は除く） */
.reason-visual-mobile .reason-visual-image,
.reason-visual-rate .reason-visual-image,
.reason-visual-menu .reason-visual-image {
  width: calc(100% - 20px);
  border-radius: 10px;
}

.reason-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 16px;
  border: 1px solid rgba(184, 218, 231, 0.92);
  background:
    linear-gradient(180deg, rgba(244, 250, 253, 0.96) 0%, rgba(235, 246, 251, 0.92) 100%);
  pointer-events: none;
}

.reason-visual::after {
  content: none;
}

/* 理由01: 画像の代わりにHTMLで組む「1年間の利用料金」の計算式カード（枠は他の理由の画像と同じ .reason-visual を使う） */

.reason-copy {
  position: relative;
  z-index: 1;
  justify-self: end;
  left: var(--reason-orbit-shift);
  width: 508px;
  max-width: 100%;
  margin-right: -28px;
  padding: 38px 42px 34px;
  border-radius: 28px;
  border: 1px solid rgba(221, 236, 243, 0.95);
  transform-origin: center center;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 44px rgba(100, 142, 160, 0.1);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s ease,
    background-color 0.34s ease;
}

.reason-headline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.reason-number,
.reason-title-group,
.reason-copy > p,
.reason-points {
  position: relative;
  z-index: 1;
}

.reason-number {
  color: #17a3d3;
  font-size: clamp(3.8rem, 4.4vw, 5.2rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.reason-title-group {
  display: grid;
  gap: 6px;
}

.reason-label {
  margin: 0;
  color: #169dc9;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.reason-copy h3 {
  margin: 0;
  color: #1f2024;
  font-size: clamp(1.5rem, 0.92vw + 1.12rem, 2.16rem);
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.reason-title-chunk {
  display: inline-block;
}

.reason-title-chunk-nowrap {
  white-space: nowrap;
}

.reason-copy > p {
  margin: 18px 0 0;
  color: #2f3d47;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;
}

.reason-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.reason-points li {
  position: relative;
  padding-left: 22px;
  color: #21343f;
  font-size: 0.96rem;
  line-height: 1.72;
  font-weight: 800;
}

.reason-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 14px;
  height: 10px;
  border-left: 4px solid #19afe0;
  border-bottom: 4px solid #19afe0;
  transform: rotate(-45deg);
}

html.js .reasons-list.is-visible .reason-price-circle,
html.js .reasons-list.is-visible .reason-device,
html.js .reasons-list.is-visible .reason-screen,
html.js .reasons-list.is-visible .reason-phone,
html.js .reasons-list.is-visible .reason-shield,
html.js .reasons-list.is-visible .reason-chart,
html.js .reasons-list.is-visible .reason-visual::before {
  animation: none !important;
  animation-delay: 0s !important;
  transform: none !important;
  transition: none !important;
}

.pricing-section {
  position: relative;
  padding: 104px 0 118px;
  overflow: hidden;
  border-top: 1px solid rgba(188, 214, 225, 0.9);
  box-shadow: inset 0 18px 30px rgba(222, 238, 246, 0.28);
  background:
    radial-gradient(circle at 7% 12%, rgba(220, 239, 251, 0.9) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 91% 23%, rgba(220, 239, 251, 0.82) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 14% 12%, rgba(226, 243, 252, 0.78) 0%, rgba(226, 243, 252, 0) 11%),
    radial-gradient(circle at 100% 16%, rgba(227, 240, 249, 0.72) 0%, rgba(227, 240, 249, 0) 10%),
    linear-gradient(180deg, #ffffff 0%, #f3f9fd 100%);
  background-size: 12px 12px, 12px 12px, auto, auto, auto;
}

.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.pricing-section::before {
  left: 92px;
  top: 108px;
  width: 38px;
  height: 38px;
  background: rgba(217, 237, 248, 0.95);
}

.pricing-section::after {
  right: 92px;
  top: 88px;
  width: 30px;
  height: 30px;
  background: rgba(217, 237, 248, 0.95);
}

.pricing-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.pricing-section {
  --pricing-rounded-font: "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Arial Rounded MT Bold", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --pricing-number-font: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Arial Rounded MT Bold", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.pricing-kicker {
  --decorated-heading-side-padding: 98px;
  --decorated-heading-font-size: clamp(2rem, 1.3vw + 1.16rem, 2.9rem);
  --decorated-heading-bar-width: 44px;
  --decorated-heading-bar-height: 10px;
  --decorated-heading-bar-background: linear-gradient(180deg, #21b4df 0%, #1096c9 100%);
  color: #169fcf;
}

.pricing-heading h2 {
  margin: 0;
  color: #181514;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: clamp(2rem, 1.6vw + 1.14rem, 3.28rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
}

.pricing-title-accent {
  color: #29add8;
}

.pricing-intro {
  margin: 0;
  width: min(100%, 760px);
  color: #1f2429;
  font-size: clamp(1rem, 0.26vw + 0.96rem, 1.16rem);
  line-height: 1.8;
  font-weight: 800;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 44px;
}

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
  padding: 0;
  border-radius: 32px;
  border: 1px solid rgba(214, 228, 237, 0.96);
  background: #ffffff;
  box-shadow:
    0 20px 34px rgba(60, 96, 118, 0.11),
    0 6px 14px rgba(60, 96, 118, 0.06);
  overflow: hidden;
}

.pricing-plan-card-basic,
.pricing-plan-card-paid {
  --pricing-plan-card-accent: linear-gradient(180deg, #25a8d4 0%, #259cc9 100%);
}

.pricing-plan-card-paid {
  --pricing-plan-card-accent: linear-gradient(180deg, #ff9b4a 0%, #f07f1a 100%);
}

.pricing-plan-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 32px;
  background: var(--pricing-plan-card-accent);
  color: #ffffff;
  font-family: var(--pricing-rounded-font);
  font-size: clamp(1.46rem, 0.8vw + 1rem, 2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pricing-plan-tab-paid {
  color: #ffffff;
}

.pricing-basic-hero {
  position: relative;
  margin: 0 24px;
  padding: 34px 0 22px;
  text-align: center;
}

.pricing-basic-hero-label {
  margin: 0 0 6px;
  color: #13253e;
  font-family: var(--pricing-rounded-font);
  font-size: clamp(1.8rem, 0.7vw + 1.34rem, 2.35rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* 0円を挟む月桂樹の枝。以前は疑似要素の弧と丸で描いていたが月桂樹に見えず、
   SVG（laurel-branch.svg、左側用）に置き換えた。右側は左右反転して使う */
.pricing-basic-hero-leaf {
  position: absolute;
  top: 28px;
  width: 84px;
  height: 130px;
  background: url("../images/laurel-branch.svg") center / contain no-repeat;
  opacity: 0.92;
}

.pricing-basic-hero-leaf-left {
  left: 26px;
}

.pricing-basic-hero-leaf-right {
  right: 26px;
  transform: scaleX(-1);
}

.pricing-basic-hero-value {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
  color: #13253e;
  font-family: var(--pricing-number-font);
  font-size: clamp(2.8rem, 1.8vw + 1.8rem, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pricing-basic-hero-value span {
  color: #24a8d5;
  font-size: clamp(6.2rem, 4vw + 3.2rem, 8.2rem);
  line-height: 0.84;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.pricing-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 22px;
  padding: 18px 14px 20px;
  border: 1px solid #e0ebf3;
  border-radius: 20px;
  background: linear-gradient(180deg, #f4f9fd 0%, #edf5fb 100%);
}

.pricing-metric {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 4px 16px 0;
}

.pricing-metric + .pricing-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 6px;
  width: 1px;
  background: rgba(118, 162, 190, 0.36);
}

.pricing-metric-label {
  margin: 0;
  color: #1d3150;
  font-family: var(--pricing-rounded-font);
  font-size: clamp(1rem, 0.3vw + 0.92rem, 1.3rem);
  line-height: 1.4;
  font-weight: 800;
}

.pricing-metric-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin: 0;
  color: #163254;
  font-family: var(--pricing-number-font);
  font-size: clamp(1.7rem, 0.6vw + 1.3rem, 2.2rem);
  line-height: 1;
  font-weight: 900;
}

.pricing-metric-value span {
  color: #24a8d5;
  font-size: clamp(3.2rem, 1.4vw + 2.1rem, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.pricing-basic-feature-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 28px 24px 0;
}

.pricing-basic-feature-heading span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(202, 220, 233, 0.25) 0%, rgba(202, 220, 233, 0.95) 100%);
}

.pricing-basic-feature-heading span:last-child {
  background: linear-gradient(90deg, rgba(202, 220, 233, 0.95) 0%, rgba(202, 220, 233, 0.25) 100%);
}

.pricing-basic-feature-heading p {
  margin: 0;
  color: #163254;
  font-family: var(--pricing-rounded-font);
  font-size: clamp(1.08rem, 0.3vw + 1rem, 1.34rem);
  line-height: 1.4;
  font-weight: 800;
}

.pricing-basic-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
  padding: 0 18px 26px;
}

.pricing-basic-feature {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px 12px 16px;
  border: 1px solid #dbe8f1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 14px rgba(83, 120, 142, 0.07);
  text-align: center;
}

.pricing-basic-icon {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #eef5ff;
}

.pricing-basic-feature:nth-child(1) .pricing-basic-icon,
.pricing-basic-feature:nth-child(6) .pricing-basic-icon {
  background: #eaf2ff;
}

.pricing-basic-feature:nth-child(2) .pricing-basic-icon {
  background: #e6f7f4;
}

.pricing-basic-feature:nth-child(3) .pricing-basic-icon {
  background: #efe8ff;
}

.pricing-basic-feature:nth-child(4) .pricing-basic-icon {
  background: #fff0e7;
}

.pricing-basic-feature:nth-child(5) .pricing-basic-icon {
  background: #ebf7e8;
}

.pricing-basic-icon img,
.pricing-option-icon img,
.pricing-benefit-icon img {
  width: 56px;
  height: auto;
}

.pricing-basic-feature h3 {
  margin: 0;
  color: #1b2e49;
  font-family: var(--pricing-rounded-font);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 800;
}

.pricing-paid-summary {
  display: grid;
  gap: 22px;
  align-items: stretch;
  margin: 24px 28px 0;
  padding: 14px 0 0;
}

.pricing-paid-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.pricing-paid-copy h3 {
  margin: 0;
  color: #162b4a;
  font-family: var(--pricing-rounded-font);
  font-size: clamp(1.7rem, 0.8vw + 1.2rem, 2.3rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-paid-copy ul {
  margin: 16px 0 0;
  padding-left: 1.2em;
  text-align: left;
  color: #233957;
  font-family: var(--pricing-rounded-font);
  font-size: clamp(1.2rem, 0.45vw + 1.04rem, 1.42rem);
  line-height: 1.72;
  font-weight: 800;
}

.pricing-paid-price {
  display: grid;
  justify-items: center;
  margin-top: 10px;
  text-align: center;
}

.pricing-paid-price-label,
.pricing-paid-price-note {
  margin: 0;
  color: #193353;
  font-family: var(--pricing-rounded-font);
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 800;
}

.pricing-paid-price-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  width: max-content;
  padding: 10px 26px;
  border-radius: 999px;
  background: #fff1e4;
  color: #e17a1d;
  font-size: 1.34rem;
  white-space: nowrap;
}

.pricing-paid-price-value {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: flex-end;
  justify-content: center;
  column-gap: 8px;
  row-gap: 8px;
  margin: 0;
  color: #ef841f;
  line-height: 1;
  font-weight: 900;
}

.pricing-paid-price-value .pricing-paid-price-label {
  grid-column: 1;
  grid-row: 1;
  align-self: flex-end;
  margin-right: 2px;
  color: #162b4a;
  font-size: 1.32rem;
  line-height: 1.1;
}

.pricing-paid-price-main {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--pricing-number-font);
  color: #ef841f;
  font-size: clamp(3.9rem, 2vw + 2rem, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.pricing-paid-price-yen {
  margin-left: 6px;
  color: #162b4a;
  font-size: 0.55em;
  letter-spacing: -0.02em;
}

.pricing-paid-price-tax {
  grid-column: 3;
  grid-row: 1;
  align-self: flex-end;
  font-family: var(--pricing-rounded-font);
  color: #162b4a;
  font-size: 1.32rem;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 800;
}

.pricing-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 24px 18px 24px;
}

.pricing-option-card {
  position: relative;
  padding: 26px 30px 28px;
  border-radius: 28px;
  border: 1px solid #cfdceb;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 10px 18px rgba(83, 120, 142, 0.08);
}

.pricing-option-label {
  margin: 0;
  color: #5f87bb;
  font-family: var(--pricing-rounded-font);
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.pricing-option-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pricing-option-copy {
  display: grid;
  gap: 10px;
}

.pricing-option-head h3 {
  margin: 0;
  color: #132b4a;
  font-family: var(--pricing-rounded-font);
  font-size: clamp(1.52rem, 0.5vw + 1.16rem, 1.86rem);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-option-icon {
  display: grid;
  place-items: center;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #eaf1ff;
}

.pricing-option-card:nth-child(2) .pricing-option-icon {
  background: #e6f6f3;
}

.pricing-option-copy > p:last-child {
  margin: 0;
  color: #243a58;
  font-family: var(--pricing-rounded-font);
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 700;
}

.pricing-note {
  margin: 16px 0 0;
  color: #1f2429;
  font-size: 1rem;
  line-height: 1.8;
}

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 40px auto 0;
  border-radius: 28px;
  border: 1px solid #d7e4ee;
  background: #ffffff;
  box-shadow:
    0 18px 28px rgba(87, 121, 141, 0.08),
    0 6px 10px rgba(87, 121, 141, 0.04);
  overflow: hidden;
}

.pricing-benefit {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 26px 18px;
}

.pricing-benefit + .pricing-benefit {
  border-left: 1px solid rgba(196, 214, 228, 0.84);
}

.pricing-benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #edf4ff;
}

.pricing-benefit h3 {
  margin: 0;
  color: #132b4a;
  font-size: clamp(0.98rem, 0.16vw + 0.95rem, 1.16rem);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.free-reason-section {
  position: relative;
  padding: 98px 0 116px;
  background: #ffffff;
}

.free-reason-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(224, 242, 251, 0.9) 0 14px, transparent 15px),
    radial-gradient(circle at 90% 8%, rgba(231, 243, 250, 0.82) 0 10px, transparent 11px),
    radial-gradient(circle at 94% 17%, rgba(236, 245, 251, 0.85) 0%, rgba(236, 245, 251, 0) 7%),
    radial-gradient(circle at 5% 7%, rgba(236, 245, 251, 0.72) 0%, rgba(236, 245, 251, 0) 8%);
  pointer-events: none;
}

.free-reason-section .container {
  position: relative;
  z-index: 1;
}

.free-reason-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.free-reason-heading h2 {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding-top: 74px;
  color: #151517;
  font-size: clamp(2.2rem, 1.84vw + 1.16rem, 3.75rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.free-reason-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.free-reason-badge {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(38, 170, 216, 0.24);
  background: linear-gradient(180deg, #37b2df 0%, #229fce 100%);
  color: #ffffff;
  font-size: clamp(1.24rem, 0.36vw + 1.08rem, 1.52rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 18px rgba(74, 165, 205, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
  white-space: nowrap;
}

.free-reason-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 18px;
  height: 12px;
  background: linear-gradient(180deg, #2fa9d7 0%, #229fce 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.free-reason-badge::before {
  content: none;
}

.free-reason-logo {
  display: inline-flex;
  align-items: center;
}

.free-reason-logo img {
  width: clamp(270px, 24vw, 388px);
  height: auto;
}

.free-reason-title-text {
  color: #111b2f;
}

.free-reason-intro {
  width: min(100%, 760px);
  margin: 0;
  color: #1f2429;
  font-size: clamp(1rem, 0.18vw + 0.98rem, 1.08rem);
  line-height: 1.75;
  font-weight: 800;
}

.free-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 46px;
}

.free-reason-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 26px 24px 26px;
  border: 1px solid rgba(215, 229, 238, 0.98);
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 16px 32px rgba(78, 120, 142, 0.08),
    0 4px 10px rgba(78, 120, 142, 0.04);
}

.free-reason-card::before {
  content: none;
}

/* 見出し／イラスト／説明文の順に並べる。copy は見た目上の箱を持たない */
.free-reason-card-copy {
  display: contents;
}

.free-reason-card h3 {
  order: 1;
  text-align: center;
}

.free-reason-card-visual {
  order: 2;
}

.free-reason-card-copy > p {
  order: 3;
  justify-self: center;
  /* 中央揃えは折り返しの粗が両端に出るので、本文は左揃えで読ませる */
  text-align: left;
}

.free-reason-card h3 {
  margin: 0;
  color: #2ea6d2;
  font-size: clamp(1.28rem, 0.56vw + 1rem, 1.68rem);
  line-height: 1.46;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.free-reason-card-copy > p {
  margin: 0;
  color: #263446;
  font-size: 0.97rem;
  line-height: 1.86;
  font-weight: 700;
}

.free-reason-card-copy > p {
  max-width: 300px;
}

.free-reason-card-visual {
  position: relative;
  /* 画像の高さは幅に比例するため、パネルの高さも幅基準にする。
     padding-top での比率指定は幅に影響しないので、横方向は崩れない */
  margin-top: 30px;
  height: 0;
  padding-top: 54%;
  border-radius: 22px 22px 8px 8px;
  background:
    radial-gradient(circle, rgba(31, 158, 223, 0.09) 1.6px, transparent 2.1px),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #f0f8fd 0%, #e2f1fa 100%);
  background-size: 18px 18px, 100% 100%, 100% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(160, 208, 233, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: visible;
}

.free-reason-card-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background: linear-gradient(180deg, rgba(241, 248, 253, 0) 0%, rgba(235, 245, 251, 0.84) 100%);
}

.free-reason-card-visual-has-image::after {
  content: none;
}

.free-reason-card-visual-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  max-width: none;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  /* contain のレターボックス内でも下端に寄せる（人物が宙に浮いて見えるのを防ぐ） */
  object-position: bottom center;
  transform: translateX(-50%);
}

/* 上方向へのはみ出しを許可する（max-height の 100% 制限を解除） */
.free-reason-card-visual-has-image .free-reason-card-visual-image {
  max-height: none;
}

/* 上にはみ出す画像より、見出しを前面に置く */
.free-reason-card h3 {
  position: relative;
  z-index: 2;
}

/* 縦積みではカード幅が広いので、タイトルの手動改行は無効化する */
@media (max-width: 900px) {
  .free-reason-card-break {
    display: none;
  }
}

/* 3枚は同じ比率。下端をパネル下辺に合わせ、上へ一定量だけはみ出させる。
   高さ基準にすることで、画面幅が変わってもはみ出し量が変わらない */
.free-reason-card-visual-image-field,
.free-reason-card-visual-image-excel,
.free-reason-card-visual-image-cost {
  width: 92%;
  max-width: none;
  height: auto;
  bottom: 0;
}

.free-reason-visual-character {
  position: absolute;
  bottom: 0;
  width: 38%;
  height: 82%;
  border-radius: 36px 36px 14px 14px;
  background: linear-gradient(180deg, #cfe8fb 0%, #9fc6e7 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 8px 16px rgba(112, 145, 170, 0.12);
}

.free-reason-visual-character::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #17253c;
  transform: translateX(-50%);
}

.free-reason-visual-character::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff1e8;
  transform: translateX(-50%);
}

.free-reason-visual-character-left {
  left: 22px;
}

.free-reason-visual-character-right {
  right: 18px;
  background: linear-gradient(180deg, #87b5ec 0%, #5c88c8 100%);
}

.free-reason-card-visual-1::before {
  content: "";
  position: absolute;
  left: 40%;
  bottom: 20px;
  width: 20%;
  height: 40%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #fefefe 0%, #deeaf5 100%);
  box-shadow: inset 0 0 0 1px rgba(187, 206, 221, 0.92);
}

.free-reason-card-visual-has-image.free-reason-card-visual-1::before {
  content: none;
}

.free-reason-visual-files {
  position: absolute;
  left: 18px;
  bottom: 24px;
  width: 26%;
  height: 44%;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(233, 241, 248, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(195, 213, 225, 0.92);
}

.free-reason-visual-files::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 18px;
  bottom: 18px;
  background:
    linear-gradient(180deg, rgba(143, 175, 199, 0.66) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(143, 175, 199, 0.66) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(143, 175, 199, 0.66) 0 2px, transparent 2px 12px);
  background-size: 100% 12px;
  background-repeat: repeat-y;
}

.free-reason-visual-arrow {
  position: absolute;
  left: 36%;
  bottom: 62px;
  width: 11%;
  height: 18px;
}

.free-reason-visual-arrow::before,
.free-reason-visual-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  background: #2ea6d2;
  transform: translateY(-50%);
}

.free-reason-visual-arrow::before {
  left: 0;
  right: 8px;
  height: 6px;
  border-radius: 999px;
}

.free-reason-visual-arrow::after {
  right: 0;
  width: 16px;
  height: 16px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.free-reason-visual-device {
  position: absolute;
  right: 16px;
  bottom: 26px;
  width: 42%;
  height: 42%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #22364d 0%, #15293e 100%);
  box-shadow:
    0 8px 16px rgba(73, 110, 138, 0.12),
    inset 0 0 0 3px rgba(239, 246, 251, 0.92);
}

.free-reason-visual-device::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 10%;
  bottom: 18%;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #fafdff 0%, #edf6fb 100%);
}

.free-reason-visual-device::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -8px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d0dce8 0%, #b6c7d5 100%);
}

.free-reason-card-visual-3 .free-reason-visual-character-left {
  left: 20px;
  width: 36%;
}

.free-reason-card-visual-3 .free-reason-visual-character-right {
  right: 20px;
  width: 34%;
}

.free-reason-visual-heart {
  position: absolute;
  left: 50%;
  top: 36%;
  width: 42px;
  height: 34px;
  background: linear-gradient(180deg, #bfe3fd 0%, #8fcbf2 100%);
  clip-path: path("M21 34C21 34 0 21.7 0 10.3C0 4.4 4.3 0 9.4 0C13.2 0 16.3 2.4 21 7.5C25.7 2.4 28.8 0 32.6 0C37.7 0 42 4.4 42 10.3C42 21.7 21 34 21 34Z");
  transform: translateX(-50%);
}

.signup-flow-section {
  padding: 86px 0 108px;
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 239, 248, 0.34) 0%, rgba(216, 239, 248, 0) 26%),
    radial-gradient(circle at 86% 8%, rgba(233, 245, 251, 0.72) 0%, rgba(233, 245, 251, 0) 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.signup-flow-heading,
.news-heading,
.faq-summary-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.news-heading p {
  margin: 0;
  color: #1f2429;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 800;
}

.signup-flow-heading p,
.faq-summary-heading p {
  margin: 18px 0 34px;
  color: #181514;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: clamp(2rem, 1.6vw + 1.14rem, 3.28rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
}

.signup-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 68px auto 0;
}

.signup-flow-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px 22px 22px;
  border: 1px solid rgba(202, 217, 226, 0.96);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow:
    0 12px 26px rgba(78, 110, 128, 0.12),
    0 2px 6px rgba(78, 110, 128, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.signup-flow-step {
  position: absolute;
  top: -18px;
  display: inline-grid;
  justify-items: center;
  gap: 1px;
  min-width: 86px;
  min-height: 58px;
  padding: 8px 14px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #58b7de 0%, #2f9fd0 100%);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow:
    0 10px 18px rgba(60, 157, 198, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.signup-flow-step-label {
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.signup-flow-step-number {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.signup-flow-visual {
  width: min(100%, 168px);
  min-height: 108px;
  margin-top: 10px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 26%, rgba(214, 238, 248, 0.72) 0%, rgba(214, 238, 248, 0) 42%),
    linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
  box-shadow:
    inset 0 0 0 1px rgba(206, 222, 232, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.signup-flow-visual-apply {
  background:
    url("../images/mousikomi.webp") center / 64% auto no-repeat,
    radial-gradient(circle at 50% 26%, rgba(214, 238, 248, 0.72) 0%, rgba(214, 238, 248, 0) 42%),
    linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
}

.signup-flow-visual-account {
  background:
    url("../images/pw_key_transparent.webp") center / 76% auto no-repeat,
    radial-gradient(circle at 50% 26%, rgba(214, 238, 248, 0.72) 0%, rgba(214, 238, 248, 0) 42%),
    linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
}

.signup-flow-visual-start {
  background:
    url("../images/hiro_pc.webp") center / 66% auto no-repeat,
    radial-gradient(circle at 50% 26%, rgba(214, 238, 248, 0.72) 0%, rgba(214, 238, 248, 0) 42%),
    linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
}

.signup-flow-card h3 {
  margin: 0;
  color: #181b1e;
  font-size: 1.58rem;
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.signup-flow-card p {
  margin: 0;
  color: #22292e;
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 700;
}

.signup-flow-arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 18px;
}

.signup-flow-arrow::before,
.signup-flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  background: linear-gradient(180deg, #4db5df 0%, #2f9fcf 100%);
  transform: translateY(-50%);
  border-radius: 999px;
}

.signup-flow-arrow::before {
  left: 6px;
  right: 18px;
  height: 16px;
}

.signup-flow-arrow::after {
  right: 4px;
  width: 34px;
  height: 34px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.signup-flow-card:hover,
.signup-flow-card:active {
  transform: scale(1.07);
  box-shadow:
    0 22px 34px rgba(78, 110, 128, 0.18),
    0 8px 16px rgba(78, 110, 128, 0.1);
}

.news-section {
  padding: 92px 0 108px;
  background:
    radial-gradient(circle at 12% 16%, rgba(221, 241, 248, 0.52) 0%, rgba(221, 241, 248, 0) 28%),
    radial-gradient(circle at 88% 10%, rgba(237, 247, 251, 0.74) 0%, rgba(237, 247, 251, 0) 24%),
    linear-gradient(180deg, #edf7fb 0%, #f7fbfd 100%);
}

/* 1件ずつのカルーセルでは画像なしカードに大きな空白ができ、横幅も余っていた。
   2列グリッドで並べ、画像なしカードは画像枠を持たないテキスト主体の見た目にする。 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  width: min(100%, 1080px);
  margin: 44px auto 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 24px 26px 28px;
  border: 1px solid rgba(220, 233, 239, 0.98);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 20px 42px rgba(77, 127, 158, 0.12),
    0 4px 14px rgba(77, 127, 158, 0.07);
}

.news-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(142, 201, 228, 0.96) 0%, rgba(175, 221, 242, 0.96) 100%);
  box-shadow: inset 0 0 0 1px rgba(158, 205, 227, 0.7);
}

/* 枠の高さは aspect-ratio 由来で、通常フローの img に height:100% が効かず
   縦長の写真が枠からあふれていた（overflow で切れて見えていただけ）。
   絶対配置で枠に貼り付け、cover / contain が枠基準で効くようにする */
.news-card-media-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.news-card-media-image-exhibition {
  object-position: center 48%;
}

/* 休業などのお知らせは写真がないので、季節のイラストを淡い地の上に置く。
   写真のカードと同じ 16:9 の枠に収め、2列で高さが揃うようにする */
.news-card-media-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef8fd 0%, #dff0f9 100%);
}

/* イラストは横長（門松）も縦長（風鈴）もある。枠の高さは aspect-ratio 由来で
   max-height:% が効かないため、img 自体を枠いっぱいにして contain で収め、
   padding で余白を取る */
.news-card-media-image-placeholder {
  box-sizing: border-box;
  /* 縦長のイラストは高さで頭打ちになるので、上下の余白は薄めに */
  padding: 4% 10%;
  object-fit: contain;
  object-position: center;
}

/* 画像なしカードは、左のアクセントラインでお知らせであることを示す */
.news-card-notice {
  border-left: 5px solid #4db5df;
  padding-left: 24px;
}

@media (max-width: 820px) {
  .news-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    max-width: 620px;
  }
}

.news-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
}

.news-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: fit-content;
  margin: 0;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4db5df 0%, #2f9fcf 100%);
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.news-card h3 {
  margin: 0;
  color: #181b1e;
  font-size: clamp(1.16rem, 0.5vw + 0.98rem, 1.4rem);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* 休業期間の行だけ独立させて目立たせる（前後の文は流したまま） */
.news-card-period {
  display: block;
  margin: 6px 0;
  color: #163254;
  font-size: 1.04em;
  font-weight: 900;
}

/* 本文中の外部リンク（番組公式Xなど）は色と下線で本文と区別する */
.news-card-body a {
  color: #1f8fbf;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(31, 143, 191, 0.45);
}

.news-card-body a:hover {
  color: #166f96;
  text-decoration-color: currentColor;
}

.news-card p:last-child {
  margin: 0;
  color: #3a4650;
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 700;
}

.faq-summary-section {
  padding: 92px 0 110px;
  background:
    radial-gradient(circle at 14% 14%, rgba(225, 242, 249, 0.42) 0%, rgba(225, 242, 249, 0) 24%),
    radial-gradient(circle at 88% 12%, rgba(235, 247, 251, 0.72) 0%, rgba(235, 247, 251, 0) 26%),
    linear-gradient(180deg, #fcfeff 0%, #f7fbfd 100%);
}

.faq-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 42px auto 0;
}

/* 常時展開で4件が縦に並ぶと長いので、横並びナビになる幅からは2列で組む */
@media (min-width: 901px) {
  .faq-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1080px;
  }
}

/* 以前は details/summary の開閉式だったが、LP の読み物なので最初から全文を
   見せる。開閉アニメーションと +/− の印は撤去した */
.faq-summary-card {
  display: grid;
  gap: 12px;
  padding: 20px 22px 20px;
  border: 1px solid rgba(208, 222, 230, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  /* 4枚が常に開いているので、影は輪郭が分かる程度に抑える */
  box-shadow: 0 4px 14px rgba(78, 110, 128, 0.06);
}

.faq-summary-toggle {
  display: block;
}

.faq-summary-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.faq-summary-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #58b7de 0%, #2f9fd0 100%);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 900;
  box-shadow:
    0 8px 14px rgba(60, 157, 198, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.faq-summary-row p {
  margin: 0;
  color: #161a1d;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 800;
}

.faq-summary-row-question p {
  padding-top: 4px;
  padding-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 900;
  /* 質問の下に薄い線を敷き、回答との区切りにする（マーク列にはかけない） */
  border-bottom: 1px solid rgba(113, 196, 230, 0.42);
}

/* 質問は見出し、回答は本文。常時展開なので重さで役割を分ける */
.faq-summary-row-answer p {
  /* 回答は本文なので、1行目の文字の上端を A マークの上端に揃える。
     line-height ぶんの上余白（約 6px）を負マージンで相殺する */
  padding-top: 0;
  margin-top: -6px;
  color: #3d5262;
  font-size: 0.98rem;
  line-height: 1.85;
  font-weight: 500;
}

/* 回答側の A マークは塗りを薄くして、Q より一段引く */
.faq-summary-row-answer .faq-summary-mark {
  background: linear-gradient(180deg, #e3f3fa 0%, #d3ebf6 100%);
  color: #2b90bf;
  box-shadow: none;
}

/* 文字は箱としては中央だが、Q はテールが右下に出るぶん本体が右下に、
   A は頂点が細いぶん上に見える。視覚中心へ 1px 寄せる */
.faq-summary-row-question .faq-summary-mark {
  padding: 0 1px 2px 0;
}

.faq-summary-row-answer .faq-summary-mark {
  padding-top: 1px;
}

.features-section {
  position: relative;
  padding: 98px 0 112px;
  background:
    radial-gradient(circle at 18% 18%, rgba(206, 237, 247, 0.34) 0%, rgba(206, 237, 247, 0) 28%),
    radial-gradient(circle at 88% 12%, rgba(228, 245, 251, 0.78) 0%, rgba(228, 245, 251, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f8fcff 100%);
}

.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(227, 245, 251, 0.18) 100%);
  pointer-events: none;
}

.features-section .container {
  position: relative;
  z-index: 1;
}

.features-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.features-heading h2 {
  margin: 8px 0 0;
  color: #231f20;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: clamp(2rem, 1.15vw + 1.4rem, 3rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
}

.features-intro {
  width: min(100%, 780px);
  margin: 0;
  color: #3e4f5b;
  font-size: clamp(1rem, 0.24vw + 0.96rem, 1.12rem);
  line-height: 1.85;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1128px;
  margin: 48px auto 0;
}

.feature-card {
  position: relative;
  min-height: 248px;
  padding: 22px 18px 24px;
  display: grid;
  justify-items: center;
  align-content: start;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  border-radius: 24px;
  border: 1px solid rgba(181, 222, 238, 0.92);
  background: linear-gradient(180deg, rgba(223, 245, 253, 0.96) 0%, rgba(233, 248, 254, 0.98) 100%);
  box-shadow:
    0 6px 0 #18b7e2,
    0 18px 28px rgba(95, 123, 146, 0.11);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 30%);
  pointer-events: none;
}

.feature-card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 18px rgba(83, 145, 176, 0.12);
}

.feature-card-icon img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.feature-card-g .feature-card-icon img {
  width: 70px;
  height: 70px;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.8em;
  margin: 0;
  color: #132631;
  text-align: center;
  font-size: 1.28rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  min-height: 5.5em;
  color: #31424d;
  font-size: 0.92rem;
  line-height: 1.82;
  font-weight: 700;
}

.feature-card-a .feature-card-icon {
  background: linear-gradient(135deg, rgba(255, 236, 202, 0.95) 0%, rgba(255, 248, 227, 0.88) 100%);
}

.feature-card-a .feature-card-icon img {
  width: 82px;
  height: 82px;
}

.feature-card-b .feature-card-icon {
  background: linear-gradient(135deg, rgba(254, 236, 180, 0.95) 0%, rgba(255, 246, 220, 0.9) 100%);
}

.feature-card-c .feature-card-icon {
  background: linear-gradient(135deg, rgba(220, 245, 231, 0.96) 0%, rgba(237, 252, 244, 0.9) 100%);
}

.feature-card-d .feature-card-icon {
  background: linear-gradient(135deg, rgba(229, 239, 255, 0.96) 0%, rgba(242, 247, 255, 0.92) 100%);
}

.feature-card-e .feature-card-icon {
  background: linear-gradient(135deg, rgba(255, 231, 214, 0.95) 0%, rgba(255, 243, 234, 0.9) 100%);
}

.feature-card-f .feature-card-icon {
  background: linear-gradient(135deg, rgba(224, 240, 255, 0.96) 0%, rgba(240, 247, 255, 0.92) 100%);
}

.feature-card-g .feature-card-icon {
  background: linear-gradient(135deg, rgba(255, 236, 185, 0.95) 0%, rgba(255, 246, 214, 0.9) 100%);
}

.feature-card-h .feature-card-icon {
  background: linear-gradient(135deg, rgba(221, 247, 238, 0.96) 0%, rgba(239, 252, 247, 0.9) 100%);
}

.features-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.features-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px 12px 10px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7d67 0%, #ff8d73 100%);
  color: #ffffff;
  box-shadow:
    0 18px 28px rgba(255, 125, 103, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  transform-origin: center;
}

.features-cta:hover,
.features-cta:focus-visible {
  transform: scale(1.035);
  filter: saturate(1.03) brightness(1.01);
  box-shadow:
    0 22px 32px rgba(255, 125, 103, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.features-cta-label {
  font-size: clamp(1.44rem, 0.72vw + 1.16rem, 1.88rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.button-arrow-icon,
.features-cta-icon,
.cta-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  z-index: 1;
}

.button-arrow-icon,
.features-cta-icon {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.18);
}

/* ------------------------------------------------------------------
   追従CTA
   常時出ているものなので導線だけに絞る。説明はページ本体にあるため、
   機器画像や見出し・説明文は持たせない。≤1240pxでは横並びの帯になる。
   ------------------------------------------------------------------ */
.floating-apply-button {
  position: fixed;
  left: clamp(14px, 1.6vw, 24px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 18;
  width: min(216px, calc(100vw - 28px));
  padding: 12px 12px 14px;
  border: 2px solid #51b6a4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 16px 26px rgba(87, 132, 151, 0.16),
    0 6px 12px rgba(87, 132, 151, 0.08);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  color: #163254;
}

.floating-apply-label {
  margin: 0 0 10px;
  color: #3c8d80;
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

.floating-apply-actions {
  display: grid;
  gap: 8px;
}

.floating-apply-close {
  position: absolute;
  right: -11px;
  top: -11px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #8e8e8e;
  box-shadow: 0 6px 12px rgba(67, 78, 85, 0.22);
  cursor: pointer;
}

.floating-apply-close::before,
.floating-apply-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.floating-apply-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.floating-apply-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.floating-apply-panel-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff9c2d 0%, #ff7c0e 100%);
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 6px 12px rgba(238, 132, 36, 0.26);
}

.floating-apply-panel-button-secondary {
  background: #ffffff;
  color: #1f8f7f;
  box-shadow: inset 0 0 0 2px rgba(81, 182, 164, 0.5);
}

.floating-apply-panel-button:hover,
.floating-apply-panel-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.floating-apply-panel-button::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
}

html.js .floating-apply-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-14px, 14px, 0) scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.3s;
}

html.js .floating-apply-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -18px;
  padding: 72px 0 64px;
  /* 地の模様はパネル内のドットと別種にする（同じドットだと模様が二重に見える）。
     細い方眼を薄く敷いて、帳票の罫線を思わせる質感だけ出す */
  background:
    linear-gradient(rgba(31, 158, 223, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 158, 223, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(235, 248, 252, 0.66) 0%, rgba(235, 248, 252, 0) 23%),
    radial-gradient(circle at 86% 20%, rgba(243, 251, 254, 0.82) 0%, rgba(243, 251, 254, 0) 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfeff 44%, #f6fbfe 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.about-section::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: 42px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(229, 244, 251, 0.42) 0%, rgba(229, 244, 251, 0.14) 54%, rgba(229, 244, 251, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 5% 48%, rgba(71, 180, 221, 0.14) 0 18px, rgba(71, 180, 221, 0) 19px),
    radial-gradient(circle at 97% 72%, rgba(71, 180, 221, 0.1) 0 54px, rgba(71, 180, 221, 0) 55px);
  background-position:
    left 48px top 320px,
    right -8px top 470px;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 以前は下部中央に 92px 四方のドットパッチを1つだけ置いていたが、
   ドットを面全体に敷いたので不要になった */

.about-section-inner {
  position: relative;
  z-index: 1;
}

.about-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* テキストと絵を左右に振る。1カラムに落ちる幅では中央寄せの見出しに戻す */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-layout .about-heading {
  justify-items: start;
  max-width: none;
  margin: 0;
  text-align: left;
}

.about-layout .about-story {
  margin-inline: 0;
  text-align: left;
}


/* 切り抜きイラストを地の上に直接置くと、机や椅子の切れた断面が宙に浮く。
   「無料で使える理由」と同じドット地のパネルに収めて、切れをパネルの縁に
   合わせる。パネルの高さは幅に比例させたいので padding-top で決める */
.about-figure {
  position: relative;
  justify-self: center;
  /* 頭がパネルの上に出るぶん重心が上に寄る。行を上に伸ばして下端に寄せ、
     テキストブロックとの重心を合わせる */
  align-self: end;
  margin-top: 44px;
  width: 100%;
  max-width: 380px;
  /* 絵の比率は 87.4%。パネルはそれより低くして、頭が上辺からはみ出すようにする。
     padding-top の % は包含ブロックの幅が基準になり、max-width で絞る1カラム時に
     比率が狂うので aspect-ratio で自分の幅を基準にする */
  aspect-ratio: 1 / 0.7;
  /* 上端は強めのラウンド。半円まで丸めると絵が形からあふれるので、
     絵の上部（頭の左右が透明な範囲）に収まる強さで止める */
  border-radius: 64px 64px 10px 10px;
  background:
    radial-gradient(circle, rgba(31, 158, 223, 0.09) 1.6px, transparent 2.1px),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #f0f8fd 0%, #e2f1fa 100%);
  background-size: 18px 18px, 100% 100%, 100% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(160, 208, 233, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  /* 上だけ開けて頭をパネルの外へ出す。overflow:hidden だと全方向が切れ、
     visible だと机と椅子の切れた断面まで出てしまうので clip-path で片側だけ開く */
  overflow: visible;
  clip-path: inset(-140px 0 0 0 round 0 0 8px 8px);
}

/* 絵の左右と下は切れているので、パネルの辺にそのまま合わせる */
.about-figure img {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: auto;
}

/* 大コピーは nowrap の2行なので、左カラムが足りなくなると絵にぶつかる。
   実測で 1026px を切ると収まらなくなるため、余裕をみて 1100px で縦積みへ */
@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
    /* 縦積みでは絵が本文の真下に来るので、はみ出したぶんだけ間隔を広く取る */
    gap: 44px;
  }

  .about-layout .about-heading {
    justify-items: center;
    text-align: center;
  }

  .about-layout .about-story {
    margin-inline: auto;
    text-align: center;
  }

  /* 見出しが中央寄せになるので、アクセント線も中央へ */
  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }


  /* 縦に積むぶん、絵は小さめに。はみ出しも本文にぶつからない量まで抑える。
     margin-top は横並びで絵を下げるためのものなので、ここでは効かせない
     （gap と足し算になって本文との間が空きすぎる） */
  .about-figure {
    max-width: 300px;
    aspect-ratio: 1 / 0.8;
    margin-top: 0;
  }
}

.about-heading h2 {
  margin: 0;
}

/* 装飾ダッシュと文言をflexで並べる見出し。文言側は flex アイテムなので
   min-width:auto でも日本語は1文字単位まで縮み、幅が足りないと語中で折れる。
   span を nowrap にして、足りないときは span 単位で行を折り返す。 */
/* セクション見出しは役割が2つある。
   .section-label  = 直下に大見出しがある「ラベル」。淡色ピルで小さく添える
                     （ヒーローの種別タグと同じ文法）
   .section-heading-text = それ自体がセクションの主見出し。大きさで主張するので
                     左右バーの装飾は持たない */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  color: #24a8d5;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Arial Rounded MT Bold", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(1.08rem, 0.3vw + 0.98rem, 1.28rem);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-rendering: geometricPrecision;
}

/* ピル型は「押せそう」に見える弊害があったのでバー型に戻す。
   ただし旧実装の 6px×28px は長音記号に見えたので細く長くする */
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(22px, 2.4vw, 30px);
  height: 2px;
  border-radius: 999px;
  background: rgba(36, 168, 213, 0.65);
}

.section-eyebrow > span {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* 語間に入る飾りバーは不要なので、テキストの区切りだけ詰める */
.section-eyebrow > span + span {
  margin-left: -0.5em;
}

.about-heading-wordmark {
  font-family: "Arial Rounded MT Bold", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.about-heading-suffix {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  letter-spacing: 0.08em;
}

/* about の見出しだけは他セクションの小さなラベル装飾（左右の飾りバー）をやめ、
   セクションの顔として一段大きく扱い、下に短いアクセント線を敷く */
.about-title {
  position: relative;
  gap: 0;
  padding-bottom: 14px;
  color: #10283b;
  font-size: clamp(1.4rem, 0.5vw + 1.22rem, 1.76rem);
  letter-spacing: 0.04em;
}

.about-title::before {
  content: none;
}

.about-title::after {
  left: 0;
  width: 46px;
  height: 3px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(90deg, #29add8 0%, #7fd4ec 100%);
}

.about-title .about-heading-suffix {
  margin-left: 0.34em;
  color: #5f8093;
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section-heading-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  color: #24a8d5;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Arial Rounded MT Bold", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(2.2rem, 1.25vw + 1.5rem, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-rendering: geometricPrecision;
}

.about-heading-image {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading-graphic {
  display: block;
  margin: 0;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
}

.section-heading-graphic::before,
.section-heading-graphic::after {
  content: none !important;
}

.section-heading-graphic-image {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading-graphic-results {
  width: min(100%, 419px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-problems {
  width: min(100%, 1014px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-features {
  width: min(100%, 451px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-support {
  width: min(100%, 1111px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-reasons {
  width: min(100%, 499px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-pricing {
  width: min(100%, 402px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-signup-flow {
  width: min(100%, 531px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-faq {
  width: min(100%, 499px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-graphic-news {
  width: min(100%, 290px);
  margin-left: auto;
  margin-right: auto;
}

.video-section {
  position: relative;
  padding: 0 0 108px;
  background:
    linear-gradient(180deg, rgba(246, 251, 254, 0) 0%, rgba(243, 250, 253, 0.74) 100%);
}

.video-section-inner {
  display: grid;
  gap: 24px;
  padding: 40px;
  border: 1px solid rgba(143, 204, 226, 0.32);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 255, 0.98) 100%);
  box-shadow: 0 28px 64px rgba(78, 135, 167, 0.12);
}

/* about セクションに統合したので、これはセクション見出しではなく
   動画ブロックの小見出し。主見出しより一段小さくする */

.video-embed {
  overflow: hidden;
  border-radius: 26px;
  background: #d8e9f3;
  box-shadow: 0 18px 44px rgba(77, 127, 158, 0.18);
}

.video-embed iframe,
.video-embed video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0c2434;
}

/* ------------------------------------------------------------------
   動画ギャラリー
   メインステージの下にサムネイルのタブを横に並べ、クリックで切り替える。
   ------------------------------------------------------------------ */
.video-section-heading-title {
  margin: 0 auto;
}

/* 狭い画面では文字を詰めて1行に収め、セクション全体の余白も抑える */
@media (max-width: 560px) {
  .video-section-heading-title {
    gap: 8px;
    font-size: clamp(1.15rem, 5.2vw, 1.6rem);
  }

  .video-section-heading-prefix,
  .video-section-heading-wordmark {
    white-space: nowrap;
  }

  /* パネルの内側とセクション下部の余白を詰める */
  .video-section {
    padding-bottom: 48px;
  }

  .video-section-inner {
    gap: 12px;
    padding: 18px 14px 16px;
    border-radius: 22px;
  }

  /* サムネは高さを揃えて3列に並べ、ラベルは下端で揃える */
  .video-gallery-tabs {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .video-gallery-tab {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    align-content: start;
    padding: 6px 3px 8px;
  }

  .video-gallery-tab-label {
    font-size: clamp(0.52rem, 2.6vw, 0.72rem);
    line-height: 1.35;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }

  /* 幅が狭いので短いラベルに切り替え、1行に収める */
  .video-gallery-tab-label-full {
    display: none;
  }

  .video-gallery-tab-label-short {
    display: inline;
  }
}

.video-section-heading-prefix {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: inherit;
  letter-spacing: 0.04em;
}

.video-section-heading-wordmark {
  font-family: "Arial Rounded MT Bold", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.video-gallery {
  display: grid;
  gap: 18px;
}

.video-stage-panel[hidden] {
  display: none;
}

.video-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.video-gallery-tab {
  display: grid;
  gap: 8px;
  width: min(30%, 236px);
  padding: 8px 8px 10px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 18px rgba(77, 127, 158, 0.1);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.video-gallery-tab:not(.is-active) {
  opacity: 0.62;
}

.video-gallery-tab:hover,
.video-gallery-tab:focus-visible {
  opacity: 1;
  box-shadow: 0 12px 24px rgba(77, 127, 158, 0.16);
}

.video-gallery-tab.is-active {
  border-color: #2ba7d6;
  opacity: 1;
}

.video-gallery-tab-thumb {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.video-gallery-tab-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-gallery-tab-label {
  color: #24455a;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
}

.video-gallery-tab-label-short {
  display: none;
}

/* PCはメイン左・サムネ一覧右の2カラム。全幅メインだと動画が大きくなりすぎる */
@media (min-width: 901px) {
  .video-gallery {
    grid-template-columns: minmax(0, 1fr) clamp(240px, 26vw, 300px);
    gap: 22px;
    align-items: start;
  }

  .video-gallery-tabs {
    flex-direction: column;
    gap: 12px;
  }

  /* 動画リスト形式: 左に小サムネ・右にタイトル */
  .video-gallery-tab {
    width: 100%;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 8px;
  }

  .video-gallery-tab-label {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .video-gallery {
    gap: 12px;
  }

  .video-gallery-tabs {
    gap: 10px;
  }

  .video-gallery-tab {
    width: min(31%, 200px);
    padding: 6px 6px 8px;
    border-radius: 12px;
  }

  .video-gallery-tab-label {
    font-size: 0.74rem;
  }

  .video-gallery-tab-label-full {
    display: none;
  }

  .video-gallery-tab-label-short {
    display: inline;
  }
}

/* 定義文の下に置く出自のリード。旧サイトの lead_sentence にあたる部分 */
/* 見出しの下はこの一段落だけ。以前は大コピーと説明文の2段だったが、
   同じことを二度言う形になっていたので1つにまとめ、要点は文中で色を変える */
.about-story {
  margin: 22px auto 0;
  max-width: 720px;
  color: #2b4152;
  font-size: clamp(1.08rem, 0.42vw + 0.96rem, 1.38rem);
  line-height: 1.9;
  font-weight: 700;
  text-align: center;
}

/* 大コピーを畳んだぶんの視線の受け皿。文の一部だけ一回り大きくして、
   段落のまま強弱をつける */
.about-story-accent {
  color: #1f9fcd;
  font-size: 1.2em;
  font-style: normal;
  font-weight: 800;
  /* 途中で行が変わると強調が二つに割れて読めるので、まとめて次行へ送る */
  white-space: nowrap;
}

/* 幅の広い画面は自然に流し、スマホでだけ意図した位置で折り返す */
.about-story-break {
  display: none;
}

/* 以前は右側に特長カード4枚を並べていたが、内容が「選ばれる4つの理由」と
   重複するため撤去。いまは画面イメージ1枚を中央に置く */

.about-floating-card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border: 1px solid rgba(222, 239, 248, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 30px rgba(81, 133, 162, 0.14);
  backdrop-filter: blur(10px);
}

.about-floating-card p,
.about-floating-card strong,
.about-floating-card span {
  margin: 0;
}

.about-floating-title {
  color: #5a7990;
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 800;
}

.about-floating-card strong {
  display: block;
  margin-top: 4px;
  color: #193847;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-floating-card span {
  display: block;
  margin-top: 6px;
  color: #5b7280;
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 700;
}

.about-floating-card-rate strong {
  color: #1d97c8;
  font-size: 2.6rem;
}

.about-floating-card-rate strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: 0.54em;
}

.about-floating-card-users {
  top: 74px;
  left: 34px;
  min-width: 164px;
}

.about-floating-card-rate {
  top: 188px;
  right: 26px;
  min-width: 174px;
  text-align: center;
}

.about-floating-card-tasks {
  left: 18px;
  bottom: 78px;
  min-width: 186px;
}

.about-floating-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.about-floating-list li {
  position: relative;
  padding-left: 18px;
  color: #4f6776;
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 700;
}

.about-floating-list li + li {
  margin-top: 4px;
}

.about-floating-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34add8;
  transform: translateY(-50%);
}

.results-section {
  position: relative;
  padding: 94px 0 118px;
  background:
    radial-gradient(circle at 10% 16%, rgba(191, 231, 247, 0.2) 0%, rgba(191, 231, 247, 0) 24%),
    radial-gradient(circle at 92% 10%, rgba(218, 244, 251, 0.64) 0%, rgba(218, 244, 251, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.results-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 24px;
  background:
    linear-gradient(180deg, rgba(205, 227, 237, 0.7) 0%, rgba(205, 227, 237, 0.12) 58%, rgba(205, 227, 237, 0) 100%);
  pointer-events: none;
}

.results-heading {
  text-align: center;
}

.results-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  color: #1f9ccc;
  font-size: clamp(2rem, 1.2vw + 1.4rem, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.results-kicker::before,
.results-kicker::after {
  content: "";
  display: block;
  width: clamp(38px, 4.5vw, 58px);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ea7d6 0%, #1488ba 100%);
  box-shadow: 0 4px 12px rgba(21, 146, 190, 0.22);
}

.results-heading h2 {
  margin: 26px 0 0;
  max-width: 680px;
  color: #10283b;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: clamp(1.95rem, 1.15vw + 1.3rem, 3.1rem);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
  margin-left: auto;
  margin-right: auto;
}

.results-heading-accent {
  color: #29add8;
}

.results-heading-line {
  display: inline-block;
  white-space: nowrap;
}

.results-intro {
  margin: 16px auto 0;
  max-width: 840px;
  color: #425461;
  font-size: 1.16rem;
  line-height: 1.9;
  font-weight: 700;
}

.results-intro,
.features-intro,
.problems-heading-copy,
.problem-voice,
.support-intro,
.reasons-intro,
.pricing-intro,
.free-reason-intro,
.news-heading p{
  line-break: strict;
}

.free-reason-card-copy > p,
.support-card > p,
.feature-card > p,
.signup-flow-card > p {
  text-wrap: wrap;
  line-break: strict;
  word-break: normal;
}

@media (min-width: 901px) {
  .reason-copy > p {
    font-size: 0.97rem;
    line-height: 1.82;
    letter-spacing: -0.01em;
    min-height: calc(1.82em * 4);
  }
}

/* お客様の声カルーセル（旧サイトの横並びスライド式を踏襲。PC=3枚、タブレット=2枚、SP=1枚強）。
   PCでは中間幅でもコンテナ変数（1180px等）に縛られないよう、コンテナから浮かせて
   最大1320pxまで横幅を使う。 */
.voice-carousel {
  position: relative;
  margin: 32px auto 0;
}

@media (min-width: 901px) {
  .voice-carousel {
    width: min(1320px, calc(100vw - 32px));
    left: 50%;
    transform: translateX(-50%);
  }
}

.voice-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 26px;
  scrollbar-width: none;
}

.voice-track::-webkit-scrollbar {
  display: none;
}

.voice-track:focus-visible {
  outline: 2px solid #1ca1d1;
  outline-offset: 4px;
}

.voice-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(188, 226, 240, 0.92);
  background: #fff;
  box-shadow: 0 18px 38px rgba(98, 147, 176, 0.14);
  scroll-snap-align: start;
}

.voice-photo {
  margin: 0;
}

.voice-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.voice-photo img.voice-photo-portrait {
  object-position: 50% 24%;
}

.voice-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 16px 22px 20px;
}

.voice-type {
  margin: 0;
  padding: 5px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.voice-type-a {
  background: #f2679f;
}

.voice-type-b {
  background: #4d9fe8;
}

.voice-type-multi {
  background: #43ad5c;
}

/* 見出しは必ず2行分の高さを取り、カード間で本文の開始位置を揃える */
.voice-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 14px 0 0;
  min-height: calc(1.5em * 2);
  color: #1ca1d1;
  font-size: 1.22rem;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.voice-facility {
  margin: 10px 0 0;
  color: #4a5f6c;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.voice-text {
  margin: 10px 0 0;
  color: #3a4d59;
  font-size: 0.89rem;
  line-height: 1.68;
}

/* 声の長さが128〜288文字とばらつくため、最長の1枚に全カードが引き伸ばされる。
   6行で折りたたみ、はみ出す分だけ「続きを読む」で開く（JSで付与） */
/* クランプ行数。ボタンが出るカードは1行分減らして、ボタンの分だけ高さが増えるのを防ぐ。
   行数はフォントの描画差で環境ごとに1行前後ずれるため、170字程度の声が収まる余裕を持たせ、
   ボタンが出るのは200字を超える長い声だけになるようにしている */
.voice-text {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-card.has-more .voice-text {
  -webkit-line-clamp: 6;
}

.voice-more {
  align-self: flex-start;
  /* 余った空白がボタンの上にまとまるよう、下端に寄せる */
  margin-top: auto;
  padding-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: #1789c0;
  font-size: 0.92rem;
  font-weight: 900;
  font-family: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.voice-more:hover,
.voice-more:focus-visible {
  color: #0f6b98;
}

.voice-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

/* 現在位置と総数のインジケーター。PCは3枚見えているので、
   見えている範囲のドットをまとめてアクティブにする */
.voice-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.voice-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 161, 209, 0.26);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* 見えている範囲のうち中心が「今のカード」。左右は見えてはいるが主役ではないので
   中間の濃さにして、中心と区別できるようにする */
.voice-dot.is-active {
  background: rgba(28, 161, 209, 0.55);
}

.voice-dot.is-current {
  background: #1789c0;
  transform: scale(1.25);
}

.voice-dot:focus-visible {
  outline: 2px solid #1789c0;
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .voice-nav {
    gap: 10px;
  }

  .voice-dots {
    gap: 5px;
  }

  .voice-dot {
    width: 7px;
    height: 7px;
  }
}

.voice-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(28, 161, 209, 0.4);
  background: #fff;
  color: #1ca1d1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(98, 147, 176, 0.16);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.voice-nav-button:hover,
.voice-nav-button:focus-visible {
  background: #1ca1d1;
  color: #fff;
}

@media (max-width: 1100px) {
  .voice-track {
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  /* 1枚表示で1行が短くなるぶん、クランプ行数を増やして
     ボタンが出るカードがPCと同じ3枚に収まるようにする */
  .voice-text {
    -webkit-line-clamp: 10;
  }

  .voice-card.has-more .voice-text {
    -webkit-line-clamp: 9;
  }

  /* 左右に同じだけ隣のカードを覗かせ、カードが画面中央に来るようにする */
  .voice-track {
    grid-auto-columns: 100%;
    gap: 18px;
    padding: 4px 10% 22px;
    scroll-padding-inline: 10%;
  }

  /* 見切れているカードはタップで送れる */
  .voice-track .voice-card {
    cursor: pointer;
  }

  .voice-body {
    padding: 16px 18px 22px;
  }
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 24px 0 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(195, 232, 246, 0.24) 0%, rgba(195, 232, 246, 0) 24%),
    linear-gradient(180deg, rgba(225, 239, 246, 0.9) 0%, rgba(225, 239, 246, 0.12) 18%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #eef7fb 0%, #fdfefe 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 24px;
  background:
    linear-gradient(180deg, rgba(197, 221, 232, 0.76) 0%, rgba(197, 221, 232, 0.14) 56%, rgba(197, 221, 232, 0) 100%);
  pointer-events: none;
}

.bottom-cta-section {
  padding: 78px 0 0;
  background: none;
  overflow: visible;
}

.cta-section[aria-labelledby="news-cta-title"] {
  padding-top: 54px;
  padding-bottom: 34px;
}

.bottom-cta-section::before {
  display: none;
}

.bottom-cta-section .cta-inner {
  width: 100%;
}

/* 最終CTAの説明文は、スマホだと最後の1文字だけが行落ちしていた。
   文の切れ目で折り返させる */
.cta-copy-break {
  display: none;
}

.cta-inner {
  width: min(calc(100% - 10px), 1380px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 28px clamp(170px, 15vw, 250px) 30px;
  text-align: center;
  color: #163444;
  border: 1px solid rgba(138, 212, 240, 0.92);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 14%, rgba(182, 225, 247, 0.54) 0%, rgba(182, 225, 247, 0) 18%),
    radial-gradient(circle at 94% 18%, rgba(184, 231, 249, 0.4) 0%, rgba(184, 231, 249, 0) 22%),
    radial-gradient(circle at 94% 88%, rgba(170, 220, 244, 0.34) 0%, rgba(170, 220, 244, 0) 20%),
    linear-gradient(180deg, #e7f6ff 0%, #d7f0fd 42%, #c8e8fa 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 40px rgba(94, 168, 197, 0.14);
  isolation: isolate;
}

.cta-inner::before {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 10px;
  width: clamp(228px, 21.5vw, 308px);
  height: clamp(164px, 17.2vw, 230px);
  background: url("../images/cta_icont.webp") left bottom / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}

.cta-inner::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 10px;
  width: clamp(214px, 20.4vw, 292px);
  height: clamp(150px, 16vw, 214px);
  background: url("../images/hiro_pc.webp") right bottom / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------
   フッター
   3カラム（ブランド / サイトマップ / お問い合わせ）。サイトマップは
   2列で列送りにして高さを揃え、お問い合わせ列にTELを移して右下の
   大きな空白をなくす。ボタンは主従が分かるよう配色を変える。
   ------------------------------------------------------------------ */
/* 以前は固定の申し込みバーに隠れないよう body に padding-bottom を
   置いていたが、バーはフッターが見え始めた時点で JS が引っ込めるため
   （index.php の isFooterVisible）不要だった。余白はページ下端に
   フッター外の地色として見えていたので、まとめて削除した */
.site-footer {
  position: relative;
  margin-top: 8px;
  padding: 0 0 24px;
  background: linear-gradient(180deg, #e9f5fa 0%, #dceff7 100%);
  border-top: 1px solid rgba(174, 213, 229, 0.9);
}

.site-footer .container {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
}

.footer-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 52px clamp(20px, 2.8vw, 40px) 44px;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(320px, 1.3fr) minmax(280px, 1fr);
  gap: 40px clamp(32px, 4vw, 72px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-brand-logo {
  width: min(100%, 250px);
  height: auto;
}

.footer-description {
  margin: 18px 0 0;
  max-width: 460px;
  color: #3c5766;
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 700;
}

.footer-heading {
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(32, 160, 208, 0.28);
  color: #10708f;
  font-size: 0.94rem;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #17394a;
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 800;
}

.footer-nav a::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3fb4de;
  transform: translateY(-0.28em);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #0f86ae;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.footer-contact-block {
  display: grid;
  align-content: start;
}

.footer-contact-note {
  margin: 0;
  color: #3c5766;
  font-size: 0.92rem;
  line-height: 1.78;
  font-weight: 700;
}

.footer-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-contact-button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff8a5c 0%, #f4703c 100%);
  box-shadow: 0 12px 22px rgba(226, 106, 56, 0.24);
}

.footer-contact-button-secondary {
  color: #10708f;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(32, 160, 208, 0.42);
}

.footer-contact-button:hover,
.footer-contact-button:focus-visible {
  transform: translateY(-2px);
}

.footer-tel {
  display: grid;
  gap: 2px;
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(174, 213, 229, 0.9);
}

.footer-tel-label {
  color: #4d6675;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-tel a {
  color: #10708f;
  font-size: 1.34rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.footer-tel a:hover,
.footer-tel a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.footer-company-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 20px 0 0;
  color: #3c5766;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 700;
}

.footer-company-info dt {
  color: #10708f;
  font-weight: 900;
  white-space: nowrap;
}

.footer-company-info dd {
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 18px clamp(20px, 2.8vw, 40px) 0;
  border-top: 1px solid rgba(174, 213, 229, 0.9);
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal-nav a {
  color: #3c5766;
  font-size: 0.86rem;
  line-height: 1.6;
  font-weight: 700;
}

.footer-legal-nav a:hover,
.footer-legal-nav a:focus-visible {
  color: #10708f;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.footer-copyright {
  margin: 0;
  color: #4d6675;
  font-size: 0.82rem;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .footer-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-contact-block {
    grid-column: 1 / -1;
    max-width: 460px;
  }
}

@media (max-width: 700px) {
  .footer-inner {
    padding: 40px 20px 32px;
  }

  .footer-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .footer-contact-block {
    grid-column: auto;
    max-width: none;
  }

  .footer-nav {
    grid-template-rows: repeat(5, auto);
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

/* 画像なしのお知らせカード。grid行のstretchでタグが縦に伸びるのを防ぐ */
.news-card-notice .news-card-body {
  align-content: center;
}

.cta-heading-block {
  position: relative;
  width: min(100%, 720px);
  margin: 0 auto;
  display: grid;
  justify-items: stretch;
  isolation: isolate;
}

.cta-heading-block::before {
  content: "";
  position: absolute;
  inset: -8px -14px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.16) 44%, rgba(255, 255, 255, 0) 74%);
  pointer-events: none;
  z-index: 0;
}

.cta-heading-block::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: min(64%, 420px);
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(72, 131, 161, 0.18) 0%, rgba(72, 131, 161, 0.08) 42%, rgba(72, 131, 161, 0) 78%);
  filter: blur(6px);
  z-index: 0;
}

.cta-heading-block > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  margin: 0;
  max-width: 100%;
  color: #13293d;
  font-size: clamp(2rem, 1.4vw + 1.32rem, 3rem);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: none;
}

.cta-heading-accent {
  color: #1ca4da;
}

.cta-copy {
  margin: 12px 0 0;
  color: #3b5664;
  font-size: clamp(0.94rem, 0.26vw + 0.88rem, 1.22rem);
  line-height: 1.65;
  font-weight: 800;
  text-shadow: none;
}

.cta-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 16px;
  width: min(100%, 500px);
  min-height: 74px;
  margin: 20px auto 0;
  padding: 12px 22px 12px 30px;
  border-radius: 999px;
  border: 0;
  background:
    linear-gradient(180deg, #ff9d73 0%, #ff855d 42%, #ff7a4e 100%);
  box-shadow:
    0 14px 24px rgba(255, 123, 78, 0.28),
    0 6px 16px rgba(18, 91, 126, 0.1);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  transform-origin: center;
  overflow: hidden;
}

.cta-section[aria-labelledby="news-cta-title"] .cta-button {
  margin-top: 6px;
}

.cta-button::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 7px;
  height: 46%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-button::after {
  content: none;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: scale(1.028);
  filter: saturate(1.04) brightness(1.02);
  box-shadow:
    0 18px 30px rgba(255, 123, 78, 0.34),
    0 8px 18px rgba(18, 91, 126, 0.12);
}

.cta-button-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.65rem, 0.8vw + 1.18rem, 2.28rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 8px rgba(153, 74, 43, 0.18);
}

.cta-button-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.button-arrow-icon::before,
.button-arrow-icon::after,
.features-cta-icon::before,
.features-cta-icon::after,
.cta-button-icon::before,
.cta-button-icon::after {
  content: "";
  position: absolute;
  display: block;
  background: #fffdf8;
  border-radius: 999px;
}

.button-arrow-icon::before,
.features-cta-icon::before,
.cta-button-icon::before {
  width: 14px;
  height: 3px;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: none;
}

.button-arrow-icon::after,
.features-cta-icon::after,
.cta-button-icon::after {
  width: 9px;
  height: 9px;
  right: 10px;
  top: 50%;
  background: transparent;
  border-top: 3px solid #fffdf8;
  border-right: 3px solid #fffdf8;
  border-radius: 2px;
  transform: translateY(-50%) rotate(45deg);
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 540px);
  margin: 0 auto 16px;
  padding: 0;
  list-style: none;
}

.cta-benefits li {
  min-height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(196, 228, 242, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 250, 255, 0.94) 100%);
  color: #23495d;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 18px rgba(101, 165, 195, 0.14);
}

/* ------------------------------------------------------------------
   中間CTA（.cta-band）
   最終CTAと同じ大きさ・同じ文言で並ぶとくどいため、こちらは
   イラストなしの細い横帯にして役割を分ける。
   ------------------------------------------------------------------ */
.cta-band {
  padding: 24px 0;
  background: none;
  overflow: visible;
}

.cta-band::before {
  display: none;
}

.cta-band .cta-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(18px, 2.2vw, 32px);
  min-height: 0;
  padding: 22px clamp(24px, 3vw, 44px);
  text-align: left;
  border-color: rgba(120, 202, 234, 0.9);
  background:
    linear-gradient(120deg, #e6f6ff 0%, #d3edfb 58%, #c6e6f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(94, 168, 197, 0.12);
}

.cta-band .cta-inner::before,
.cta-band .cta-inner::after,
.cta-band .cta-heading-block::before,
.cta-band .cta-heading-block::after {
  content: none;
}

/* 人物はバンドの上辺からはみ出させる（枠に収めると窮屈で、下辺だけ接地させたい）。
   グリッドの高さ計算から外すため絶対配置にし、列の幅だけスペーサーで確保する */
.cta-band .cta-inner {
  overflow: visible;
}

/* 中間CTAは横幅に余裕があるので、見出し側に幅を回して不自然な折り返しを防ぐ */
.cta-band .cta-heading-block {
  width: 100%;
  max-width: none;
}

.cta-band .cta-button {
  white-space: nowrap;
}

.cta-band-figure {
  position: relative;
  z-index: 1;
  align-self: stretch;
  width: clamp(112px, 10vw, 176px);
}

/* バンドの高さより一定量だけ高くして、上辺から必ずはみ出させる */
.cta-band-figure img {
  position: absolute;
  left: 0;
  bottom: -22px;
  width: auto;
  height: calc(100% + 56px);
  max-width: 100%;
  object-fit: contain;
  object-position: bottom left;
}

/* サポート側は縦長のイラストなので、列幅を広げて高さを稼ぐ（幅で頭打ちになるため） */
.support-cta-section .cta-band-figure {
  width: clamp(126px, 11.5vw, 205px);
}

.support-cta-section .cta-band-figure img {
  height: calc(100% + 78px);
}

.cta-band-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-band .cta-heading-block {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  /* 幅が限られる中間サイズでは列間を詰め、見出し側に幅を回す */
  column-gap: clamp(16px, 2vw, 40px);
}

.cta-band .cta-inner h2 {
  grid-column: 1;
  font-size: clamp(1.34rem, 0.9vw + 1.06rem, 1.86rem);
  line-height: 1.4;
}

/* CTA帯の見出し列は 230px 前後しかなく語の途中で折れるため、
   意味の切れ目を単位にして折り返させる */
.cta-band .cta-inner h2 .cta-heading-line {
  display: inline-block;
}

.cta-band .cta-copy {
  grid-column: 1;
  margin: 6px 0 0;
  font-size: clamp(0.9rem, 0.2vw + 0.84rem, 1rem);
}

.cta-band .cta-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: auto;
  min-height: 62px;
  margin: 0;
  padding-inline: 26px 20px;
  justify-self: end;
}

.cta-band .cta-button-label {
  white-space: nowrap;
}

@media (max-width: 720px) {
  /* 横に人物を並べる余地がないので、絵はバンドの右下に接地させる。
     中央に浮かせると下端の切れ目が見えて浮くが、底辺に合わせれば
     PC版と同じく「切り取り」として読める。絵は絶対配置でフローから
     外れるため、テキストは幅いっぱいに流せる */
  .cta-band .cta-inner {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    padding: 20px 18px;
    text-align: left;
  }

  .cta-band .cta-heading-block {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }

  .cta-band .cta-inner h2,
  .cta-band .cta-copy,
  .cta-band .cta-button {
    grid-column: 1;
  }

  .cta-band .cta-inner h2,
  .cta-band .cta-copy {
    text-align: left;
  }

  /* 絵と高さが重なるのはボタンの行だけなので、ここだけ幅を詰めて避ける。
     min-width は width より優先されるのであわせて解除する */
  .cta-band .cta-button {
    grid-row: auto;
    width: calc(100% - 124px);
    min-width: 0;
    margin-top: 4px;
    justify-self: start;
  }

  /* バンドごとに figure の幅・img の幅と高さを個別指定していて詳細度が
     高いため、同じ強さで並べて打ち消す */
  .cta-band-figure,
  .support-cta-section .cta-band-figure,
  .problems-cta-band .cta-band-figure {
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 112px;
    margin: 0;
  }

  .cta-band-figure img,
  .support-cta-section .cta-band-figure img,
  .problems-cta-band .cta-band-figure img {
    position: static;
    width: 100%;
    height: auto;
  }

  /* サポートの絵は左右に透明の余白を持つ（右 37px / 元画像 336px 幅）。
     そのぶん人物が内側に寄って見えるので、余白の幅だけ外へ出す */
  .support-cta-section .cta-band-figure {
    right: -12px;
  }
}

.info-section {
  padding: 88px 0;
}

.info-section-alt {
  background: linear-gradient(180deg, rgba(235, 248, 253, 0.68) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.section-heading {
  margin-bottom: 34px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.faq-item,
.flow-list li {
  border: 1px solid rgba(208, 226, 236, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 28px rgba(57, 110, 143, 0.08);
}

.feature-card {
  padding: 28px;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.flow-list li {
  position: relative;
  padding: 74px 28px 28px;
}

.flow-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 28px;
  top: 24px;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.flow-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.flow-list p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 36px 22px 0;
  font-weight: 800;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 22px;
  color: var(--color-muted);
  line-height: 1.8;
}

@media (min-width: 1241px) {
  .site-header .container {
    width: min(calc(100% - 24px), 1880px);
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    gap: clamp(24px, 1.8vw, 40px);
    justify-content: center;
    /* 中身の最大はロゴなので、min-height はロゴ＋上下 12px 程度で足りる */
    min-height: 96px;
  }

  .brand {
    height: 72px;
    padding-right: 0;
  }

  /* 横長ロゴは contain で描くため実効サイズは height で決まる。
     width は auto にして box を描画幅に合わせる（固定幅だと余白が
     グリッド列を無駄に広げる） */
  .brand-logo {
    width: auto;
    height: 72px;
  }

  .site-nav {
    justify-self: center;
  }

  .nav-list {
    justify-content: center;
    gap: clamp(30px, 1.8vw, 44px);
    font-size: clamp(1.04rem, 0.2vw + 0.98rem, 1.16rem);
  }

  .nav-list a {
    padding: 12px 0;
    letter-spacing: 0.015em;
  }

  .header-cta {
    justify-self: center;
    gap: 16px;
    margin-left: 0;
    padding-right: 0;
  }

  .button-small {
    min-height: 48px;
    padding: 0 22px;
    font-size: 1rem;
  }

}

@media (min-width: 1241px) and (max-width: 1480px) {
  .site-header .container {
    width: min(calc(100% - 12px), 1880px);
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 16px;
    justify-content: center;
    min-height: 88px;
  }

  .brand {
    height: 64px;
    padding-right: 0;
  }

  .brand-logo {
    width: auto;
    height: 64px;
  }

  .site-nav {
    justify-self: center;
  }

  .nav-list {
    gap: clamp(18px, 1vw, 24px);
    font-size: clamp(0.92rem, 0.18vw + 0.88rem, 1rem);
  }

  .nav-list a {
    padding: 10px 0;
    letter-spacing: 0.01em;
  }

  .header-cta {
    display: flex;
    align-items: center;
    justify-self: center;
    margin-left: 0;
    padding-right: 0;
  }

  .header-cta .button-small {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.94rem;
  }

  .hero {
    padding: 26px 0 28px;
  }

  .hero .container {
    width: min(calc(100% - 56px), 1340px);
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1.04fr) minmax(450px, 530px);
    gap: 8px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero-title {
    font-size: clamp(2.48rem, 1.9vw + 1.22rem, 3.08rem);
  }

  .hero-title span {
    margin-top: 8px;
  }

  .hero-description {
    margin-top: 20px;
    max-width: 600px;
    font-size: 1.24rem;
  }

  .hero-points {
    gap: 10px;
    margin-top: 32px;
  }

  .hero-points li {
    min-height: 44px;
    padding: 7px 20px 7px 12px;
    font-size: 0.98rem;
  }

  .point-icon {
    width: 28px;
    height: 28px;
  }

  .hero-visual {
    width: min(100%, 940px);
    margin-top: 22px;
  }

  .hero-illustration {
    width: min(100%, 294px);
  }

  .hero-person {
    width: clamp(228px, 20.8vw, 286px);
    max-width: 286px;
  }

  .hero-person-left {
    margin-right: -44px;
    transform: translateY(-6px);
  }

  .hero-person-right {
    margin-left: -42px;
    transform: translateY(-5px);
  }

  .hero-actions {
    width: min(100%, 700px);
    gap: 16px;
    margin-top: 10px;
  }

  .hero-action-btn {
    min-height: 64px;
    padding: 0 20px;
    font-size: 1.24rem;
  }

  .hero-action-btn-primary {
    min-width: 298px;
  }

  .button-arrow-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-grid;
    place-items: center;
    color: #fffdf8;
  }

  .button-arrow-icon::before {
    width: 12px;
    height: 3px;
    left: 50%;
    top: 50%;
    transform: translate(-52%, -50%);
    background: currentColor;
  }

  .button-arrow-icon::after {
    width: 8px;
    height: 8px;
    left: 50%;
    right: auto;
    top: 50%;
    background: transparent;
    border-top-color: currentColor;
    border-right-color: currentColor;
    border-top-width: 3px;
    border-right-width: 3px;
    transform: translate(-8%, -50%) rotate(45deg);
  }

  .contact-card {
    max-width: 540px;
    margin-top: 6px;
    margin-right: 0;
    padding: 20px 30px 26px;
  }

  .contact-form {
    gap: 14px;
  }

  .form-group label {
    margin-bottom: 8px;
    font-size: 0.98rem;
  }

  .form-group input {
    min-height: 50px;
    padding: 12px 15px;
  }

  .contact-form .button {
    margin-top: 12px;
    min-height: 60px;
    font-size: 1.22rem;
  }

  .contact-notes {
    gap: 10px;
    margin-top: 22px;
    font-size: 0.94rem;
  }
}

@media (max-width: 1240px) {
  html.mobile-nav-open,
  body.mobile-nav-open {
    overflow: hidden;
  }

  /* スマホではヘッダーは追従させず、メニューボタンだけを JS で浮かせる */
  .site-header {
    position: static;
    z-index: 80;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }


  .site-header .container {
    width: min(calc(100% - 20px), 100%);
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 80px;
    padding: 10px 0;
  }

  /* ナビは右から滑り込むパネル。display の切替ではアニメーションできないので
     常に描画しておき、transform と visibility で出し入れする */
  .site-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(84vw, 360px);
    height: 100dvh;
    min-height: 100dvh;
    z-index: 83;
    margin-left: 0;
    /* 上余白は右上に浮く × ボタンの top と揃える */
    padding: 12px 22px 24px;
    background: #ffffff;
    box-shadow: -18px 0 40px rgba(28, 63, 84, 0.16);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.36s;
  }

  html.mobile-nav-open .site-nav,
  body.mobile-nav-open .site-nav {
    transform: translateX(0);
    visibility: visible;
    transition:
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  /* パネルの外側は暗幕。タップで閉じる（JS 側で拾う） */
  html.mobile-nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 82;
    background: rgba(16, 40, 59, 0.42);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    justify-self: end;
    z-index: 84;
  }

  /* ヘッダーが画面外に出たらボタンだけ右上に浮かせて追従させる。
     ナビが開いている間は必ず浮かせ、パネルの上で「×」として働く */
  .nav-toggle.is-floating {
    position: fixed;
    top: 12px;
    right: 12px;
    animation: navToggleFloatIn 0.28s ease both;
  }

  @keyframes navToggleFloatIn {
    from {
      opacity: 0;
      transform: translateY(-8px) scale(0.92);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* 三本線 → ×。上下の線を中央（7px）へ寄せて回し、真ん中は消す */
  .nav-toggle-bar {
    transform-origin: center;
  }

  html.mobile-nav-open .nav-toggle-bar:nth-child(1),
  body.mobile-nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  html.mobile-nav-open .nav-toggle-bar:nth-child(2),
  body.mobile-nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  html.mobile-nav-open .nav-toggle-bar:nth-child(3),
  body.mobile-nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ボタン自体が × になるので、パネル内の閉じるボタンは使わない */
  .site-nav-close {
    display: none;
  }

  /* 左上にヘッダーと同じロゴ。右上に浮く × ボタン（52px）と高さを揃え、
     ロゴは横長なので高さ基準で幅を決める */
  .site-nav-brand {
    display: flex;
    align-items: center;
    height: 56px;
    margin-bottom: 18px;
  }

  .site-nav-brand img {
    width: auto;
    height: 56px;
    object-fit: contain;
  }

  /* 署名は残りの高さを使って最下部へ */
  .site-nav-copyright {
    display: block;
    margin: auto 0 0;
    padding-top: 28px;
    color: #5f7f92;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .nav-list li + li {
    border-top: 1px solid rgba(207, 229, 240, 0.82);
  }

  .nav-list a {
    display: block;
    padding: 13px 4px;
    font-size: 1rem;
  }

  .nav-list a::after {
    left: 4px;
    width: calc(100% - 8px);
  }

  .site-nav-cta {
    display: flex;
    margin-top: 18px;
  }

  .site-nav-cta .button {
    width: 100%;
    min-height: 50px;
  }

  .header-cta {
    display: none;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    padding-top: 32px;
    max-width: none;
  }

  .hero-bg,
  .hero-dot {
    display: none;
  }

  .floating-apply-button {
    left: clamp(12px, 1.8vw, 16px);
    right: clamp(12px, 1.8vw, 16px);
    bottom: calc(clamp(12px, 1.6vw, 14px) + env(safe-area-inset-bottom));
    width: auto;
    padding: clamp(10px, 1.5vw, 14px);
    border-width: 1px;
    border-color: rgba(81, 182, 164, 0.22);
    border-radius: clamp(20px, 2vw, 24px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 18px 34px rgba(87, 132, 151, 0.16),
      0 8px 16px rgba(87, 132, 151, 0.08);
  }

  /* 画面下端の帯なので、ラベルは省いてボタンを横に並べる */
  .floating-apply-label {
    display: none;
  }

  .floating-apply-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 1.2vw, 12px);
  }

  .floating-apply-close {
    right: -6px;
    top: -8px;
    width: 30px;
    height: 30px;
    background: rgba(124, 140, 150, 0.92);
    box-shadow: 0 6px 12px rgba(67, 78, 85, 0.16);
    transform: none;
  }

  .floating-apply-close::before,
  .floating-apply-close::after {
    width: 13px;
    height: 2px;
  }

  .floating-apply-panel-button {
    width: 100%;
    min-width: 0;
    min-height: clamp(46px, 4.4vw, 52px);
    padding: 0 clamp(8px, 1vw, 10px);
    border-radius: clamp(14px, 1.6vw, 16px);
    gap: clamp(4px, 0.8vw, 6px);
    font-size: clamp(0.82rem, 0.35vw + 0.78rem, 0.94rem);
    letter-spacing: 0;
    white-space: nowrap;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 6px 14px rgba(238, 132, 36, 0.2);
  }

  .floating-apply-panel-button-secondary {
    background: #ffffff;
    color: #1d8dbc;
    box-shadow:
      inset 0 0 0 1px rgba(29, 141, 188, 0.24),
      0 6px 14px rgba(87, 132, 151, 0.12);
  }

  .floating-apply-panel-button::after {
    width: clamp(7px, 0.7vw, 8px);
    height: clamp(7px, 0.7vw, 8px);
    margin-left: clamp(3px, 0.5vw, 4px);
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .floating-apply-panel-button-secondary::after {
    border-top-color: currentColor;
    border-right-color: currentColor;
  }

  html.js .floating-apply-button {
    transform: translate3d(0, 12px, 0) scale(0.98);
  }

  html.js .floating-apply-button.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .feature-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .cta-button {
    min-width: min(100%, 560px);
  }

  

  

  

  

  

  

  

  

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

  .reasons-list::before {
    width: min(36vw, 390px);
  }

  .reason-item {
    --reason-orbit-shift: -64px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 22px;
  }

  .reason-item-reverse {
    --reason-orbit-shift: 64px;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    width: 470px;
    max-width: 100%;
    margin: 0;
    padding: 32px 30px 30px;
  }

  .reason-visual,
  .reason-item-reverse .reason-visual {
    width: 360px;
    max-width: 100%;
    min-height: 250px;
    margin: 0;
  }

  

}

@media (min-width: 901px) and (max-width: 1240px) {
  .site-header .container {
    width: min(calc(100% - 16px), 1880px);
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 12px;
    justify-content: center;
    min-height: 106px;
    padding: 0;
  }

  .brand {
    height: 68px;
    padding-right: 0;
  }

  .brand-logo {
    width: clamp(350px, 29vw, 412px);
    height: 68px;
    object-position: center center;
  }

  /* この帯は横並びナビの縮小版。1240px 以下で付けたスライドパネル用の
     transform / visibility / ヘッダーの static を打ち消して、PC と同じ挙動に戻す */
  .site-header {
    position: sticky;
  }

  .site-nav {
    display: block !important;
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 0;
    z-index: auto;
    margin-left: 0;
    justify-self: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .site-nav-brand,
  .site-nav-copyright {
    display: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 0.95vw, 20px);
    font-size: clamp(0.88rem, 0.14vw + 0.84rem, 0.94rem);
  }

  .nav-list li + li {
    border-top: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 10px 0;
    letter-spacing: 0.01em;
  }

  .nav-list a::after {
    left: 0;
    width: 100%;
  }

  .nav-toggle,
  .site-nav-close,
  .site-nav-cta {
    display: none !important;
  }

  .header-cta {
    display: flex;
    align-items: center;
    justify-self: center;
    margin-left: 0;
    padding-right: 0;
  }

  .header-cta .button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

}

@media (max-width: 1100px) {
  .pricing-plan-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-plan-card {
    border-radius: 30px;
  }

  .pricing-basic-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .pricing-paid-summary {
    gap: 18px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .pricing-option-grid {
    margin-left: 16px;
    margin-right: 16px;
  }

  .pricing-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-benefit {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 24px 16px;
  }

  .pricing-benefit:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(196, 214, 228, 0.84);
  }

  .pricing-benefit:nth-child(4) {
    border-top: 1px solid rgba(196, 214, 228, 0.84);
  }

  .reasons-list {
    gap: 34px;
    margin-top: 44px;
    padding: 18px 0;
  }

  .reasons-list::before {
    left: 50%;
    top: 32px;
    bottom: 32px;
    width: min(calc(100% - 48px), 520px);
    transform: translateX(-50%);
  }

  .reason-item,
  .reason-item-reverse {
    --reason-orbit-shift: 0px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .reason-item-reverse .reason-visual,
  .reason-item-reverse .reason-copy {
    order: initial;
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    justify-self: center;
    left: 0;
    width: min(100%, 640px);
    margin: 0;
    padding: 30px 26px 28px;
  }

  .reason-visual,
  .reason-item-reverse .reason-visual {
    order: 2;
    justify-self: center;
    left: 0;
    width: min(100%, 600px);
    min-height: 236px;
    margin: 0;
  }

  .reason-headline {
    gap: 14px;
  }

  .reason-number {
    font-size: clamp(3.3rem, 8vw, 4.4rem);
  }

  .reason-copy h3 {
    font-size: clamp(1.42rem, 4vw, 1.88rem);
  }

  .reason-copy > p {
    font-size: 0.96rem;
    line-height: 1.84;
  }

  .reason-points {
    gap: 8px 18px;
    margin-top: 14px;
  }

  .reason-points li {
    font-size: 0.94rem;
  }

  
}

@media (min-width: 1101px) and (max-width: 1680px) {
  :root {
    --container-width: 1180px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container-width));
  }

  .site-header .container {
    width: min(calc(100% - 28px), 1500px);
  }

  .hero .container {
    width: min(calc(100% - 32px), 1320px);
  }

  .hero-grid {
    width: min(calc(100% - 20px), 1280px);
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 500px);
    gap: 10px;
  }

  .hero-copy {
    padding-top: 26px;
  }

  .reasons-list {
    max-width: 1080px;
    gap: 38px;
  }

  .reasons-list::before {
    width: min(31vw, 370px);
  }

  .reason-item {
    --reason-orbit-shift: -58px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 372px);
    gap: 22px;
  }

  .reason-item-reverse {
    --reason-orbit-shift: 58px;
    grid-template-columns: minmax(300px, 372px) minmax(0, 1fr);
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    width: 456px;
    max-width: 100%;
    padding: 34px 34px 30px;
  }

  .reason-visual,
  .reason-item-reverse .reason-visual {
    width: 372px;
    max-width: 100%;
    min-height: 258px;
  }

  

  /* 3枚を2列に落とすと3枚目だけが下に取り残されて不格好なので、
     この幅でも3列のまま置く。 */
  .free-reason-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-benefits {
    margin-top: 32px;
  }

  .pricing-benefit {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    padding: 22px 12px;
  }

  .pricing-benefit-icon {
    width: 56px;
  }

  .pricing-benefit h3 {
    font-size: 0.88rem;
    line-height: 1.34;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pricing-paid-summary {
    gap: 16px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .pricing-paid-price {
    margin-top: 8px;
  }

  .pricing-paid-price-value {
    column-gap: 4px;
    row-gap: 6px;
  }

  .pricing-paid-price-value .pricing-paid-price-label,
  .pricing-paid-price-tax {
    font-size: 1rem;
    line-height: 1.06;
    white-space: nowrap;
  }

  .pricing-paid-price-main {
    font-size: clamp(3.4rem, 4.1vw, 5rem);
    line-height: 0.92;
  }

  .pricing-paid-price-yen {
    margin-left: 4px;
    font-size: 0.5em;
  }

  .pricing-paid-price-note {
    padding: 8px 18px;
    font-size: 1.06rem;
  }

  .pricing-option-grid {
    gap: 14px;
    margin: 20px 14px 20px;
  }

  .pricing-option-card {
    padding: 20px 20px 22px 18px;
    border-radius: 24px;
  }

  .pricing-option-head {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px 16px;
    align-items: start;
  }

  .pricing-option-icon {
    width: 78px;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .pricing-option-copy {
    display: contents;
  }

  .pricing-option-label {
    align-self: end;
    font-size: 0.8rem;
  }

  .pricing-option-head h3 {
    align-self: start;
    font-size: 1.46rem;
    line-height: 1.28;
  }

  .pricing-option-copy > p:last-child {
    grid-column: 1 / -1;
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .free-reason-card {
    gap: 12px;
    padding: 20px 20px 20px;
  }

  .free-reason-card h3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 1.46rem;
    line-height: 1.42;

  }

  .free-reason-card-copy > p {
    font-size: 0.94rem;
    line-height: 1.78;

  }

}

@media (min-width: 1101px) and (max-width: 1680px) and (max-height: 940px) {
  :root {
    --container-width: 1180px;
  }

  .container {
    width: min(calc(100% - 52px), var(--container-width));
  }

  .site-header .container {
    width: min(calc(100% - 56px), 1180px);
  }

  .header-inner {
    min-height: 80px;
    gap: 14px;
  }

  .brand {
    height: 54px;
    padding-right: 0;
  }

  .brand-logo {
    width: auto;
    height: 54px;
  }

  .nav-list {
    gap: 16px;
    font-size: 0.84rem;
  }

  .nav-list a {
    padding: 8px 0;
  }

  .hero {
    padding: 24px 0 12px;
    /* 次セクションの負のマージンに重なるフォーム下端と影を手前に出す。
       hero-grid の z-index がセクション外でも効くよう、ここでは分離しない。 */
    overflow: visible;
    isolation: auto;
  }

  .hero .container {
    width: min(calc(100% - 56px), 980px);
  }

  .hero-grid {
    width: min(calc(100% - 28px), 980px);
    grid-template-columns: minmax(0, 1.1fr) minmax(292px, 340px);
    gap: 8px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-title {
    font-size: clamp(1.92rem, 1.06vw + 1.34rem, 2.28rem);
  }

  .hero-title span {
    margin-top: 5px;
  }

  .hero-description {
    margin-top: 14px;
    max-width: 500px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-points {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-points li {
    min-height: 40px;
    padding: 6px 16px 6px 10px;
    font-size: 0.88rem;
  }

  .point-icon {
    width: 26px;
    height: 26px;
  }

  .hero-visual {
    width: min(100%, 740px);
    margin-top: 18px;
  }

  .hero-illustration {
    width: min(100%, 236px);
  }

  .hero-person {
    width: clamp(166px, 15vw, 206px);
    max-width: 206px;
  }

  .hero-person-left {
    margin-right: -28px;
  }

  .hero-person-right {
    margin-left: -26px;
  }

  .hero-actions {
    width: min(100%, 560px);
    gap: 12px;
    margin-top: 6px;
  }

  .hero-action-btn {
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.98rem;
  }

  .hero-action-btn-primary {
    min-width: 234px;
  }

  .button-arrow-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-grid;
    place-items: center;
    color: #fffdf8;
  }

  .button-arrow-icon::before {
    width: 10px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-54%, -50%);
    background: currentColor;
  }

  .button-arrow-icon::after {
    width: 7px;
    height: 7px;
    left: 50%;
    right: auto;
    top: 50%;
    background: transparent;
    border-top-color: currentColor;
    border-right-color: currentColor;
    border-top-width: 2px;
    border-right-width: 2px;
    transform: translate(-10%, -50%) rotate(45deg);
  }

  .contact-card {
    max-width: 344px;
    margin-top: 0;
    padding: 14px 16px 16px;
    border-radius: 20px;
  }

  .contact-form {
    gap: 8px;
  }

  .form-group label {
    margin-bottom: 4px;
    font-size: 0.74rem;
  }

  .form-group input {
    min-height: 36px;
    padding: 8px 10px;
  }

  .contact-form .button {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .contact-notes {
    gap: 6px;
    margin-top: 10px;
    font-size: 0.7rem;
  }

  /* 背の低い画面は上余白が薄いので、絵のはみ出しがセクションからあふれて
     ヒーローとの境目で頭が切れる。余白を確保しつつ、はみ出しも控えめにする */
  .about-section {
    padding: 48px 0 36px;
  }

  .about-figure {
    aspect-ratio: 1 / 0.79;
  }

  .about-heading {
    gap: 12px;
    max-width: 700px;
  }

  .section-heading-text {
    font-size: 1.52rem;
  }

  .cta-section {
    padding: 14px 0 18px;
  }

  .bottom-cta-section {
    padding-top: 38px;
  }

  .cta-section[aria-labelledby="news-cta-title"] {
    padding-top: 26px;
    padding-bottom: 18px;
  }

  .cta-inner {
    width: min(calc(100% - 18px), 980px);
    min-height: 168px;
    padding: 18px clamp(96px, 11vw, 146px) 20px;
    border-radius: 24px;
  }

  .cta-inner::before {
    left: 18px;
    bottom: 8px;
    width: clamp(132px, 12vw, 176px);
    height: clamp(96px, 9vw, 128px);
  }

  .cta-inner::after {
    right: 18px;
    bottom: 8px;
    width: clamp(124px, 11vw, 168px);
    height: clamp(88px, 8.6vw, 118px);
  }

  .cta-heading-block {
    width: min(100%, 540px);
  }

  .cta-heading-block::before {
    inset: -4px -8px;
    border-radius: 22px;
  }

  .cta-heading-block::after {
    width: min(58%, 250px);
    height: 12px;
  }

  .cta-inner h2 {
    font-size: clamp(1.54rem, 0.9vw + 1.16rem, 2rem);
  }

  .cta-copy {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .cta-benefits {
    gap: 8px;
    margin-bottom: 12px;
  }

  .cta-benefits li {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .cta-button {
    width: min(100%, 400px);
    min-height: 56px;
    margin-top: 14px;
    padding: 10px 16px 10px 22px;
    gap: 12px;
  }

  .cta-section[aria-labelledby="news-cta-title"] .cta-button {
    margin-top: 4px;
  }

  .cta-button::before {
    left: 18px;
    right: 18px;
    top: 6px;
  }

  .cta-button-label {
    font-size: clamp(1.2rem, 0.65vw + 0.96rem, 1.56rem);
  }

  .cta-button-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .results-section,
  .features-section,
  .support-section,
  .reasons-section,
  .pricing-section,
  .news-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

}

@media (min-width: 1241px) and (max-width: 1480px),
  (min-width: 1101px) and (max-width: 1680px) and (max-height: 940px) {
  .features-grid {
    gap: 16px;
  }

  .feature-card {
    min-height: 228px;
    padding: 20px 16px 22px;
  }

  .feature-card-icon {
    width: 96px;
    height: 96px;
  }

  .feature-card-icon img {
    width: 68px;
    height: 68px;
  }

  .feature-card-g .feature-card-icon img {
    width: 64px;
    height: 64px;
  }

  .feature-card h3 {
    min-height: 3em;
    font-size: 1.14rem;
    line-height: 1.4;
  }

  .feature-card p {
    min-height: 0;
    font-size: 0.88rem;
    line-height: 1.76;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 920px;
    margin-top: 42px;
  }

  .support-card {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 26px;
  }

  .support-card-number {
    top: 16px;
    right: 16px;
    font-size: clamp(3.8rem, 7vw, 5rem);
  }

  .support-card h3 {
    margin-top: 8px;
    font-size: 1.26rem;
  }

  .support-card p {
    font-size: 0.94rem;
    line-height: 1.82;
  }

  .support-card-visual {
    min-height: 186px;
    margin-bottom: 2px;
  }

  

  

  

  
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 20px), var(--container-width));
  }


  .site-header .container {
    width: min(calc(100% - 16px), 100%);
  }

  .header-inner {
    min-height: 74px;
    gap: 8px;
    /* ロゴを左端、メニューを右端に置く */
    grid-template-columns: 1fr auto;
    justify-content: stretch;
  }

  .brand {
    height: 44px;
    justify-self: start;
  }

  /* 横長ロゴは contain で描くので、実効サイズは height で決まる。
     width は auto にして box を描画幅に合わせ、左端に揃える
     （固定幅だと余白が box 内で中央に配られ、ロゴが左端から浮く） */
  .brand-logo {
    width: auto;
    height: 56px;
  }

  .site-nav {
    padding: 12px 18px 24px;
  }

  .footer-inner {
    padding: 28px 24px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
  }

  .hero {
    padding: 20px 0 22px;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    gap: 0;
    padding-top: 6px;
  }

  .hero-title {
    order: 2;
    max-width: none;
    margin-top: 6px;
    font-size: clamp(2.22rem, 4.9vw + 1.04rem, 2.9rem);
    line-height: 1.28;
    letter-spacing: -0.04em;
  }

  .hero-title .hero-title-main {
    max-width: none;
    font-size: clamp(1.82rem, 2.5vw + 1.08rem, 2.34rem);
    margin-inline: auto;
    white-space: nowrap;
  }

  .hero-description {
    order: 3;
    margin-top: 16px;
    max-width: 34rem;
    font-size: 1.04rem;
    line-height: 1.78;
  }

  .hero-description-break-mobile {
    display: inline;
  }

  .hero-visual {
    order: 5;
    width: 92%;
    margin: 22px auto 0;
    gap: 0;
  }

  .hero-points {
    order: 6;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-points li {
    min-height: 42px;
    padding: 6px 18px 6px 11px;
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .point-icon {
    width: 28px;
    height: 28px;
  }

  .hero-person {
    width: clamp(142px, 26vw, 188px);
    max-width: 188px;
  }

  .hero-illustration {
    width: min(100%, 188px);
  }

  .hero-person-left {
    margin-right: -38px;
    transform: translateY(-4px);
  }

  .hero-person-right {
    margin-left: -36px;
    transform: translateY(-3px);
  }

  .hero-actions {
    order: 7;
    gap: 14px;
    width: min(100%, 420px);
    margin-top: 24px;
  }

  .hero-action-btn,
  .hero-action-btn-primary {
    flex: 1 1 0;
    min-width: 0;
  }

  .button-large {
    font-size: 1.3rem;
  }

  .form-group label {
    margin-bottom: 8px;
    font-size: 0.98rem;
  }

  .form-group input {
    min-height: 50px;
    padding: 12px 14px;
  }

  .problems-section {
    padding: 62px 0 76px;
  }

  

  

  

  

  

  

  

  

  .support-section {
    padding: 86px 0 98px;
  }

  .support-heading {
    gap: 14px;
  }

  .support-heading-top {
    gap: 18px;
    font-size: clamp(1.7rem, 5vw, 2.25rem);
  }

  .support-heading-top::before,
  .support-heading-top::after {
    height: 8px;
  }

  .support-heading-main {
    font-size: clamp(2rem, 2vw + 1.2rem, 3.2rem);
    line-height: 1.24;
  }

  .support-intro {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .support-grid {
    gap: 20px;
    margin-top: 42px;
  }

  .support-card {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 26px;
  }

  .support-card-number {
    top: 16px;
    right: 16px;
    font-size: clamp(3.8rem, 7vw, 5rem);
  }

  .support-card h3 {
    margin-top: 8px;
    font-size: 1.26rem;
  }

  .support-card p {
    font-size: 0.94rem;
    line-height: 1.82;
  }

  .support-card-visual {
    min-height: 186px;
    margin-bottom: 2px;
  }

  .support-card-visual img {
    width: min(100%, 232px);
  }

  .support-section .cta-section {
    padding-top: 40px;
  }

  .reasons-section {
    padding: 86px 0 98px;
  }

  .reasons-list {
    max-width: 980px;
    gap: 30px;
    margin-top: 52px;
  }

  .reasons-list::before {
    width: min(30vw, 330px);
  }

  .reason-item {
    --reason-orbit-shift: -44px;
    grid-template-columns: minmax(0, 1fr) minmax(246px, 318px);
    gap: 16px;
  }

  .reason-item-reverse {
    --reason-orbit-shift: 44px;
    grid-template-columns: minmax(246px, 318px) minmax(0, 1fr);
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    width: 404px;
    max-width: 100%;
    padding: 28px 26px 24px;
    border-radius: 24px;
  }

  .reason-visual,
  .reason-item-reverse .reason-visual {
    width: 318px;
    max-width: 100%;
    min-height: 224px;
    border-radius: 22px;
  }

  .reason-headline {
    gap: 12px;
  }

  .reason-number {
    font-size: 4.2rem;
  }

  .reason-copy h3 {
    font-size: 1.88rem;
  }

  .reason-copy > p {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.76;
  }

  .reason-points {
    gap: 8px;
    margin-top: 14px;
  }

  .reason-points li {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  

  .pricing-benefits {
    margin-top: 28px;
  }

  .pricing-benefit {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
    padding: 18px 10px;
  }

  .pricing-benefit-icon {
    width: 50px;
  }

  .pricing-benefit h3 {
    font-size: 0.78rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pricing-paid-summary {
    gap: 12px;
    margin-left: 12px;
    margin-right: 12px;
  }

  .pricing-paid-price {
    margin-top: 6px;
  }

  .pricing-paid-price-value {
    column-gap: 2px;
    row-gap: 5px;
  }

  .pricing-paid-price-value .pricing-paid-price-label,
  .pricing-paid-price-tax {
    font-size: 0.82rem;
    line-height: 1.04;
    white-space: nowrap;
  }

  .pricing-paid-price-main {
    font-size: clamp(2.7rem, 3.8vw, 3.8rem);
    line-height: 0.9;
  }

  .pricing-paid-price-yen {
    margin-left: 2px;
    font-size: 0.44em;
  }

  .pricing-paid-price-note {
    padding: 7px 14px;
    font-size: 0.92rem;
  }

  .pricing-option-grid {
    gap: 12px;
    margin: 18px 12px 18px;
  }

  .pricing-option-card {
    padding: 18px 16px 18px 14px;
    border-radius: 22px;
  }

  .pricing-option-head {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px 14px;
  }

  .pricing-option-icon {
    width: 66px;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .pricing-option-copy {
    display: contents;
  }

  .pricing-option-label {
    align-self: end;
    font-size: 0.72rem;
  }

  .pricing-option-head h3 {
    align-self: start;
    font-size: 1.22rem;
    line-height: 1.24;
  }

  .pricing-option-copy > p:last-child {
    grid-column: 1 / -1;
    margin-top: 4px;
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .free-reason-card {
    gap: 12px;
    padding: 18px 16px 18px;
  }

  .free-reason-card h3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 1.22rem;
    line-height: 1.4;

  }

  .free-reason-card-copy > p {
    font-size: 0.84rem;
    line-height: 1.66;

  }

  .pricing-section {
    padding: 86px 0 98px;
  }

  .pricing-kicker {
    --decorated-heading-side-padding: 78px;
    --decorated-heading-font-size: clamp(1.86rem, 4.8vw, 2.5rem);
    --decorated-heading-bar-width: 34px;
    --decorated-heading-bar-height: 8px;
  }

  .pricing-heading h2 {
    font-size: clamp(1.86rem, 4.8vw, 2.55rem);
  }

  .pricing-intro {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .pricing-plan-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-plan-card {
    border-radius: 30px;
  }

  .pricing-plan-tab {
    min-height: 84px;
  }

  .pricing-basic-hero-leaf-left {
    left: 18px;
  }

  .pricing-basic-hero-leaf-right {
    right: 18px;
  }

  .pricing-basic-features {
    gap: 16px;
  }

  .pricing-paid-summary {
    gap: 18px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .pricing-option-grid {
    margin-left: 16px;
    margin-right: 16px;
  }

  .pricing-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-benefit {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 24px 16px;
  }

  .pricing-benefit:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(196, 214, 228, 0.84);
  }

  .pricing-benefit:nth-child(4) {
    border-top: 1px solid rgba(196, 214, 228, 0.84);
  }

  .free-reason-section {
    padding: 82px 0 98px;
  }

  .free-reason-heading {
    gap: 14px;
  }

  .free-reason-heading h2 {
    grid-template-columns: auto auto;
    gap: 14px;
    padding-top: 66px;
    font-size: clamp(1.9rem, 4.8vw, 2.55rem);
  }

  .free-reason-brand-lockup {
    display: inline-flex;
  }

  .free-reason-badge {
    min-height: 50px;
    padding: 0 24px;
    font-size: clamp(1.16rem, 3.2vw, 1.42rem);
  }

  .free-reason-logo img {
    width: clamp(220px, 32vw, 320px);
  }

  .free-reason-intro {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .free-reason-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
    margin: 42px auto 0;
  }

  .free-reason-card {
    gap: 18px;
    padding: 28px 20px 28px;
    border-radius: 22px;
  }

  .free-reason-card-copy {
    gap: 8px;
  }

  .free-reason-card h3 {
    font-size: 1.3rem;
    line-height: 1.38;
  }

  .free-reason-card-copy > p {
    font-size: 0.92rem;
    line-height: 1.74;
  }

  .free-reason-card-visual {
    border-radius: 18px 18px 6px 6px;
  }

  .signup-flow-section {
    padding: 76px 0 92px;
  }

  .signup-flow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 560px;
    margin-top: 52px;
  }

  .signup-flow-card {
    padding: 28px 22px 22px;
  }

  .signup-flow-arrow {
    width: 32px;
    height: 46px;
    justify-self: center;
  }

  .signup-flow-arrow::before {
    left: 50%;
    right: auto;
    top: 0;
    width: 10px;
    height: 26px;
    transform: translateX(-50%);
  }

  .signup-flow-arrow::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    width: 32px;
    height: 18px;
    border-radius: 0;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
  }

  .news-section {
    padding: 78px 0 94px;
  }

  .news-card {
    gap: 20px;
    padding: 22px 22px 24px;
    border-radius: 28px;
  }

  .news-card-media {
    border-radius: 18px;
  }

  .news-card p:last-child {
    font-size: 0.94rem;
    line-height: 1.84;
  }

  .faq-summary-section {
    padding: 78px 0 94px;
  }

  .faq-summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 720px;
    margin-top: 38px;
  }

  .reasons-heading {
    gap: 16px;
  }

  .reasons-kicker {
    padding: 0 64px;
    font-size: clamp(1.88rem, 5vw, 2.5rem);
  }

  .reasons-kicker::before,
  .reasons-kicker::after {
    width: 32px;
    height: 8px;
  }

  .reasons-heading h2 {
    gap: 10px;
    font-size: clamp(1.78rem, 4.8vw, 2.3rem);
  }

  .reasons-logo-mark img {
    width: clamp(210px, 32vw, 300px);
  }

  .reasons-intro {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .reasons-list {
    gap: 34px;
    margin-top: 44px;
    padding: 18px 0;
  }

  .reason-item,
  .reason-item-reverse {
    --reason-orbit-shift: 0px;
    grid-template-columns: 1fr;
    /* 縦積みでは本文と画像を隙間なく重ね、ひと続きのカードに見せる */
    gap: 0;
  }

  /* 接する辺の角丸と影を落として、本文と画像を1枚に繋げる。
     reverse 側は後続の詳細度の高いルールで角丸が戻るため、同じ詳細度で打ち消す */
  .reasons-list .reason-item .reason-copy,
  .reasons-list .reason-item-reverse .reason-copy {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    box-shadow: none;
  }

  .reasons-list .reason-item .reason-visual,
  .reasons-list .reason-item-reverse .reason-visual {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .reason-item-reverse .reason-visual,
  .reason-item-reverse .reason-copy {
    order: initial;
  }

  .reasons-list::before {
    left: 50%;
    top: 32px;
    bottom: 32px;
    width: min(calc(100% - 48px), 520px);
    transform: translateX(-50%);
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    justify-self: center;
    width: min(100%, 560px);
    padding: 30px 26px 28px;
  }

  .reason-visual,
  .reason-item-reverse .reason-visual {
    order: 2;
    justify-self: center;
    width: min(100%, 520px);
    min-height: 236px;
  }

  .reason-headline {
    gap: 14px;
  }

  .reason-number {
    font-size: clamp(3.3rem, 8vw, 4.4rem);
  }

  .reason-copy h3 {
    font-size: clamp(1.42rem, 4vw, 1.88rem);
  }

  .reason-copy > p {
    font-size: 0.96rem;
    line-height: 1.84;
  }

  .reason-points {
    gap: 8px 18px;
    margin-top: 14px;
  }

  .reason-points li {
    font-size: 0.94rem;
  }

  html.js .reason-item,
  html.js .reason-item .reason-visual,
  html.js .reason-item .reason-copy,
  html.js .reasons-list.is-visible .reason-item,
  html.js .reasons-list.is-visible .reason-item .reason-visual,
  html.js .reasons-list.is-visible .reason-item .reason-copy {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
    transition: none !important;
  }

  

  .features-section {
    padding: 78px 0 92px;
  }

  .features-heading {
    gap: 14px;
  }

  .features-kicker {
    padding: 0 68px;
    font-size: clamp(1.9rem, 4.8vw, 2.5rem);
  }

  .features-kicker::before,
  .features-kicker::after {
    width: 34px;
    height: 8px;
  }

  .features-heading h2 {
    font-size: clamp(1.86rem, 4.6vw, 2.45rem);
  }

  .features-intro {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .features-grid {
    gap: 20px;
    margin-top: 38px;
  }

  .feature-card {
    min-height: 232px;
    padding: 22px 18px 22px;
  }

  .feature-card h3 {
    font-size: 1.22rem;
  }

  .feature-card p {
    font-size: 0.94rem;
  }

  .features-cta-wrap {
    margin-top: 40px;
  }

  .features-cta {
    min-height: 66px;
    padding: 10px 12px 10px 24px;
  }

  .features-cta-label {
    font-size: clamp(1.34rem, 4vw, 1.7rem);
  }

  .problems-heading {
    gap: 12px;
  }

  

  .problems-heading-copy {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  .features-section {
    padding: 64px 0 74px;
  }

  .features-kicker {
    padding: 0 54px;
    font-size: clamp(1.72rem, 6vw, 2.08rem);
  }

  .features-kicker::before,
  .features-kicker::after {
    width: 28px;
    height: 7px;
  }

  .features-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .features-intro {
    font-size: 0.95rem;
  }

  .features-grid {
    gap: 18px;
    margin-top: 32px;
  }

  .feature-card {
    min-height: 0;
    padding: 20px 18px 22px;
  }

  .feature-card-icon {
    width: 96px;
    height: 96px;
  }

  .feature-card-icon img {
    width: 54px;
    height: 54px;
  }

  .feature-card-g .feature-card-icon img {
    width: 50px;
    height: 50px;
  }

  .feature-card h3 {
    font-size: 1.18rem;
  }

  .feature-card p {
    font-size: 0.94rem;
    line-height: 1.76;
  }

  .features-cta-wrap {
    margin-top: 32px;
  }

  .features-cta {
    width: 100%;
    justify-content: center;
    min-height: 62px;
    padding: 10px 14px 10px 18px;
  }

  .features-cta-label {
    font-size: clamp(1.18rem, 5vw, 1.42rem);
  }

  .features-cta-icon {
    width: 40px;
    height: 40px;
    font-size: 1.28rem;
  }

  .about-section {
    margin-top: -16px;
    padding: 52px 0 52px;
  }

  .video-section-inner {
    gap: 18px;
  }

  .section-heading-text {
    gap: 12px;
    font-size: clamp(1.9rem, 4.8vw, 2.35rem);
  }

  .section-heading-graphic-results {
    width: min(100%, 380px);
  }

  .section-heading-graphic-problems {
    width: min(100%, 922px);
  }

  .section-heading-graphic-features {
    width: min(100%, 410px);
  }

  .section-heading-graphic-support {
    width: min(100%, 1010px);
  }

  .section-heading-graphic-reasons {
    width: min(100%, 454px);
  }

  .section-heading-graphic-pricing {
    width: min(100%, 366px);
  }

  .section-heading-graphic-signup-flow {
    width: min(100%, 483px);
  }

  .section-heading-graphic-faq {
    width: min(100%, 454px);
  }

  .section-heading-graphic-news {
    width: min(100%, 263px);
  }

  .about-floating-card-users {
    top: 52px;
    left: 20px;
  }

  .about-floating-card-rate {
    top: 154px;
    right: 18px;
  }

  .about-floating-card-tasks {
    left: 10px;
    bottom: 60px;
  }

  .results-section {
    padding: 72px 0 88px;
  }

  .cta-section {
    padding: 28px 0 40px;
  }

  .bottom-cta-section {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .cta-section[aria-labelledby="news-cta-title"] {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .cta-inner {
    min-height: 198px;
    padding: 20px clamp(78px, 11vw, 96px) 24px;
    border-radius: 24px;
  }

  .cta-heading-block {
    width: min(100%, 540px);
    max-width: none;
  }

  .cta-heading-block::before {
    inset: -4px -8px;
    border-radius: 22px;
  }

  .cta-heading-block::after {
    width: min(62%, 280px);
    height: 12px;
  }

  .cta-inner h2 {
    font-size: clamp(1.42rem, 1vw + 1rem, 1.86rem);
  }

  .cta-copy {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .cta-button {
    width: min(100%, 430px);
    min-height: 60px;
    gap: 12px;
    margin-top: 14px;
    padding: 10px 16px 10px 20px;
  }

  .cta-section[aria-labelledby="news-cta-title"] .cta-button {
    margin-top: 6px;
  }

  .cta-button-label {
    font-size: clamp(1.28rem, 0.7vw + 1rem, 1.62rem);
  }

  .cta-button-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-width: 2.5px;
    font-size: 1.32rem;
  }

  .cta-benefits {
    gap: 8px;
    margin-bottom: 12px;
  }

  .cta-benefits li {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .cta-inner::before {
    left: 10px;
    bottom: 4px;
    width: clamp(116px, 15vw, 138px);
    height: clamp(88px, 12vw, 110px);
  }

  .cta-inner::after {
    right: 10px;
    bottom: 4px;
    width: clamp(110px, 14vw, 132px);
    height: clamp(82px, 11vw, 102px);
  }

  .info-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    height: 52px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .nav-toggle.is-floating {
    top: 10px;
    right: 10px;
  }

  .site-nav {
    width: min(86vw, 320px);
    padding: 10px 18px 22px;
  }

  .site-nav-brand {
    height: 52px;
  }

  .site-nav-brand img {
    height: 52px;
  }

  .nav-list a {
    font-size: 0.96rem;
  }

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

  .footer-inner {
    padding: 22px 16px 20px;
  }

  .footer-content {
    gap: 22px;
  }

  .footer-brand-logo {
    width: min(100%, 228px);
  }

  .footer-description {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.82;
  }

  .footer-heading {
    margin-bottom: 12px;
    font-size: 0.96rem;
  }

  /* 縦に長くなりすぎるので、スマホでも2列を保つ */
  .footer-nav {
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .footer-nav a {
    font-size: 0.92rem;
  }

  .footer-contact-note {
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .footer-contact-button {
    width: 100%;
    min-width: 0;
  }

  .footer-contact-actions {
    grid-template-columns: 1fr;
  }

  /* 親の .footer-bottom が flex で p が内容幅に縮むため、text-align だけ
     では中央に来ない。幅を行いっぱいにして中央揃えを効かせる */
  .footer-copyright {
    width: 100%;
    margin-top: 16px;
    font-size: 0.8rem;
    text-align: center;
  }

  .floating-apply-button {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    padding: 8px;
    border-width: 1px;
    border-color: rgba(81, 182, 164, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 14px 30px rgba(87, 132, 151, 0.16),
      0 6px 12px rgba(87, 132, 151, 0.08);
  }

  .floating-apply-close {
    right: -4px;
    top: -6px;
    width: 26px;
    height: 26px;
    background: rgba(124, 140, 150, 0.92);
    box-shadow: 0 6px 12px rgba(67, 78, 85, 0.16);
    transform: none;
  }

  .floating-apply-close::before,
  .floating-apply-close::after {
    width: 12px;
    height: 2px;
  }

  .floating-apply-panel-button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
    border-radius: 14px;
    gap: 5px;
    font-size: 0.8rem;
    letter-spacing: 0;
    white-space: nowrap;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 6px 14px rgba(238, 132, 36, 0.2);
  }

  .floating-apply-panel-button-secondary {
    background: #ffffff;
    color: #1d8dbc;
    box-shadow:
      inset 0 0 0 1px rgba(29, 141, 188, 0.24),
      0 6px 14px rgba(87, 132, 151, 0.12);
  }

  .floating-apply-panel-button::after {
    width: 7px;
    height: 7px;
    margin-left: 3px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .floating-apply-panel-button-secondary::after {
    border-top-color: currentColor;
    border-right-color: currentColor;
  }

  .hero-title {
    max-width: none;
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-title .hero-title-main {
    max-width: none;
    font-size: 1.58rem;
    white-space: nowrap;
  }

  /* 見出しと説明文はひとつの主張なので詰め、塊の切れ目は広く取る。
     すべて同じ間隔だと5つの要素が等間隔に並んで詰まって見えるため */
  .hero-description {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .hero-points {
    margin-top: 30px;
    gap: 6px;
  }

  /* 3つのバッジを1行に収める */
  .hero-points {
    flex-wrap: nowrap;
  }

  .hero-points li {
    min-height: 34px;
    padding: 4px 7px 4px 5px;
    gap: 3px;
    font-size: clamp(0.58rem, 2.7vw, 0.78rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
    width: min(100%, 340px);
    margin-top: 28px;
    gap: 12px;
  }

  .hero-action-btn,
  .hero-action-btn-primary {
    width: 100%;
  }

  .point-icon {
    width: 18px;
    height: 18px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 32px;
  }

  .hero-person {
    width: clamp(150px, 40vw, 190px);
    max-width: 190px;
  }

  .hero-illustration {
    width: min(100%, 164px);
  }

  .hero-person-left {
    margin-right: -34px;
  }

  .hero-person-right {
    margin-left: -34px;
  }

  .form-group label {
    font-size: 0.92rem;
  }

  .required {
    min-width: 38px;
    min-height: 22px;
    font-size: 0.76rem;
  }

  .form-group input {
    min-height: 46px;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .problems-section {
    padding: 48px 0 62px;
  }

  .support-section {
    padding: 68px 0 80px;
  }

  .support-heading {
    gap: 12px;
  }

  .support-heading-top {
    gap: 12px;
  }

  .support-heading-top::before,
  .support-heading-top::after {
    width: 28px;
    height: 6px;
  }

  /* 「導入前から導入後まで続くサポート」16文字を1行で読ませる。
     1.58rem だと 404px 要って幅 360px に入らず「ト」だけ行落ちしていた。
     340px 幅の端末（360px 画面）でも収まる 1.3rem に固定する */
  .support-heading-main {
    font-size: 1.3rem;
    line-height: 1.5;
    width: min(100%, 360px);
    white-space: nowrap;
  }

  .support-intro {
    width: min(100%, 350px);
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 460px;
    margin-top: 32px;
  }

  .support-card {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .support-card-number {
    top: 14px;
    right: 14px;
    font-size: 3.5rem;
  }

  .support-card h3 {
    margin-top: 8px;
    font-size: 1.18rem;
    line-height: 1.42;
  }

  .support-card p {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .support-card-visual {
    min-height: 164px;
    margin-top: -2px;
    margin-bottom: 2px;
  }

  .support-card-visual img {
    width: min(100%, 214px);
  }

  .support-section .cta-section {
    padding-top: 32px;
  }

  .reasons-section {
    padding: 68px 0 80px;
  }

  .pricing-section {
    padding: 70px 0 82px;
    background:
      radial-gradient(circle at 14% 12%, rgba(226, 243, 252, 0.78) 0%, rgba(226, 243, 252, 0) 11%),
      radial-gradient(circle at 100% 16%, rgba(227, 240, 249, 0.72) 0%, rgba(227, 240, 249, 0) 10%),
      linear-gradient(180deg, #ffffff 0%, #f3f9fd 100%);
    background-size: auto;
  }

  .pricing-section::before,
  .pricing-section::after {
    display: none;
  }

  .pricing-heading {
    gap: 16px;
  }

  .pricing-kicker {
    --decorated-heading-side-padding: 54px;
    --decorated-heading-font-size: clamp(1.66rem, 7vw, 2rem);
    --decorated-heading-bar-width: 24px;
    --decorated-heading-bar-height: 6px;
  }

  .pricing-heading h2 {
    font-size: clamp(1.52rem, 7.2vw, 2.02rem);
    line-height: 1.34;
  }

  .pricing-intro {
    width: min(100%, 360px);
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .pricing-plan-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .pricing-plan-card {
    border-radius: 26px;
  }

  .pricing-plan-tab {
    min-height: 72px;
    padding: 12px 28px;
    font-size: 1.28rem;
  }

  .pricing-basic-hero {
    margin: 0 16px;
    padding: 24px 0 18px;
  }

  .pricing-basic-hero-label {
    margin-bottom: 2px;
    font-size: 1.48rem;
    letter-spacing: 0.06em;
  }

  .pricing-basic-hero-leaf {
    top: 22px;
    width: 56px;
    height: 92px;
  }

  .pricing-basic-hero-leaf-left {
    left: 6px;
  }

  .pricing-basic-hero-leaf-right {
    right: 6px;
  }

  .pricing-basic-hero-value {
    gap: 4px;
    font-size: 2.1rem;
  }

  .pricing-basic-hero-value span {
    font-size: 5rem;
  }

  /* 3項目は横並びのまま。1列 110px 前後しかないので、ラベルは
     「サポート費用」6文字が1行に入る大きさ、数字は3列に収まる大きさに落とす。
     区切り線は基本定義の縦線をそのまま使う */
  .pricing-metrics {
    gap: 0;
    margin-left: 16px;
    margin-right: 16px;
    padding: 14px 4px 16px;
  }

  .pricing-metric {
    gap: 6px;
    padding: 2px 6px 0;
  }

  .pricing-metric-label {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .pricing-metric-value {
    font-size: 1.1rem;
  }

  .pricing-metric-value span {
    font-size: 2.9rem;
  }

  .pricing-basic-feature-heading {
    gap: 10px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .pricing-basic-feature-heading p {
    font-size: 0.96rem;
  }

  .pricing-basic-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
    padding: 0 14px 20px;
  }

  .pricing-basic-icon {
    width: 72px;
  }

  .pricing-basic-icon img,
  .pricing-option-icon img,
  .pricing-benefit-icon img {
    width: 50px;
  }

  .pricing-basic-feature h3 {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .pricing-paid-summary {
    margin-left: 16px;
    margin-right: 16px;
  }

  .pricing-paid-price {
    margin-top: 8px;
  }

  .pricing-paid-price-value {
    align-items: center;
    column-gap: 4px;
    row-gap: 6px;
  }

  .pricing-paid-price-value .pricing-paid-price-label,
  .pricing-paid-price-tax {
    font-size: 1.02rem;
    line-height: 1.1;
  }

  .pricing-paid-price-tax {
    align-self: flex-end;
  }

  .pricing-paid-price-main {
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  .pricing-paid-price-yen {
    margin-left: 4px;
    font-size: 0.48em;
  }

  .pricing-paid-copy h3 {
    font-size: 1.42rem;
  }

  .pricing-option-copy > p:last-child {
    font-size: 0.98rem;
  }

  .pricing-paid-copy ul {
    font-size: 1.36rem;
    line-height: 1.62;
  }

  .pricing-option-grid,
  .pricing-benefits {
    grid-template-columns: 1fr;
  }

  .pricing-option-card {
    padding: 22px 20px 22px 18px;
  }

  .pricing-option-head {
    gap: 14px;
  }

  .pricing-option-head h3 {
    font-size: 1.42rem;
    line-height: 1.34;
  }

  .pricing-option-icon {
    width: 72px;
  }

  .pricing-benefits {
    margin-top: 30px;
  }

  .pricing-benefit {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px 22px;
  }

  .pricing-benefit + .pricing-benefit,
  .pricing-benefit:nth-child(3),
  .pricing-benefit:nth-child(4) {
    border-left: none;
    border-top: 1px solid rgba(196, 214, 228, 0.84);
  }

  .pricing-benefit:first-child {
    border-top: none;
  }

  .pricing-benefit-icon {
    width: 64px;
  }

  .pricing-benefit h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .free-reason-section {
    padding: 64px 0 78px;
    background: #ffffff;
  }

  .free-reason-heading {
    gap: 12px;
  }

  .free-reason-heading h2 {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 58px;
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.28;
  }

  .free-reason-brand-lockup {
    display: inline-flex;
  }

  .free-reason-badge {
    min-height: 42px;
    padding: 0 18px;
    font-size: clamp(1rem, 4.8vw, 1.24rem);
  }

  .free-reason-badge::after {
    width: 18px;
    height: 13px;
  }

  .free-reason-logo img {
    width: min(100%, 230px);
  }

  .free-reason-intro {
    width: min(100%, 340px);
    font-size: 0.92rem;
    line-height: 1.76;
  }

  .free-reason-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .free-reason-card {
    gap: 16px;
    padding: 24px 16px 24px;
    border-radius: 20px;
  }

  .free-reason-card h3 {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .free-reason-card-copy > p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .free-reason-card-visual {
    border-radius: 14px 14px 5px 5px;
  }

  .signup-flow-section {
    padding: 62px 0 76px;
  }

  .signup-flow-heading,
  .news-heading,
  .faq-summary-heading {
    gap: 8px;
  }

  .signup-flow-heading p,
  .faq-summary-heading p {
    margin: 14px 0 26px;
    width: auto;
    font-size: clamp(1.52rem, 7.2vw, 2.02rem);
    line-height: 1.34;
  }

  .signup-flow-grid {
    gap: 22px;
    margin-top: 46px;
  }

  .signup-flow-card {
    gap: 12px;
    padding: 26px 16px 18px;
    border-radius: 16px;
  }

  .signup-flow-step {
    top: -18px;
    min-width: 74px;
    min-height: 50px;
    padding: 7px 12px 8px;
    border-radius: 15px;
  }

  .signup-flow-step-label {
    font-size: 0.64rem;
  }

  .signup-flow-step-number {
    font-size: 1.26rem;
  }

  .signup-flow-visual {
    width: min(100%, 152px);
    min-height: 92px;
    margin-top: 6px;
    border-radius: 12px;
  }

  .signup-flow-card h3 {
    font-size: 1.34rem;
  }

  .signup-flow-card p {
    font-size: 0.84rem;
    line-height: 1.68;
  }

  .signup-flow-arrow {
    width: 28px;
    height: 40px;
  }

  .signup-flow-arrow::before {
    width: 8px;
    height: 22px;
  }

  .signup-flow-arrow::after {
    width: 28px;
    height: 16px;
  }

  .signup-flow-card:hover,
  .signup-flow-card:active {
    transform: scale(1.04);
  }

  .news-section {
    padding: 64px 0 78px;
  }

  .news-heading p {
    width: min(100%, 340px);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .news-card {
    gap: 16px;
    padding: 18px 16px 20px;
    border-radius: 22px;
  }

  .news-card-media {
    border-radius: 16px;
  }

  .news-card-body {
    gap: 12px;
  }

  .news-card-tag {
    min-height: 30px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .news-card p:last-child {
    font-size: 0.86rem;
    line-height: 1.8;
  }

  .faq-summary-section {
    padding: 64px 0 78px;
  }

  .faq-summary-heading p {
    width: min(100%, 320px);
    font-size: clamp(1.58rem, 5.2vw, 1.95rem);
    line-height: 1.7;
  }

  .faq-summary-grid {
    gap: 12px;
    margin-top: 32px;
  }

  .faq-summary-card {
    gap: 10px;
    padding: 16px 16px 16px;
    border-radius: 16px;
  }

  .faq-summary-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .faq-summary-mark {
    width: 30px;
    height: 30px;
    font-size: 1.12rem;
  }

  .faq-summary-row p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .faq-summary-row-question p {
    padding-top: 3px;
    padding-bottom: 8px;
    font-size: 1rem;
  }

  .faq-summary-row-answer p {
    padding-top: 0;
    margin-top: -5px;
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .reasons-kicker {
    padding: 0 44px;
    font-size: clamp(1.7rem, 7vw, 2rem);
  }

  .reasons-kicker::before,
  .reasons-kicker::after {
    width: 24px;
    height: 6px;
  }

  .reasons-heading h2 {
    gap: 8px;
    font-size: clamp(1.48rem, 7vw, 1.9rem);
  }

  .reasons-logo-mark img {
    width: min(100%, 240px);
  }

  .reasons-intro {
    width: min(100%, 340px);
    font-size: 0.92rem;
    line-height: 1.76;
  }

  .reasons-list {
    gap: 28px;
    margin-top: 36px;
    padding: 14px 0;
  }

  .reasons-list::before {
    width: calc(100% - 24px);
    top: 20px;
    bottom: 20px;
    border-radius: 24px;
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .reason-visual,
  .reason-item-reverse .reason-visual {
    min-height: 190px;
    border-radius: 18px;
  }

  

  

  

  .reason-headline {
    gap: 12px;
  }

  .reason-number {
    font-size: 3rem;
  }

  .reason-label {
    font-size: 0.76rem;
  }

  .reason-copy h3 {
    font-size: 1.34rem;
    line-height: 1.42;
  }

  .reason-copy > p {
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .reason-points {
    display: grid;
    gap: 8px;
  }

  .reason-points li {
    font-size: 0.9rem;
    line-height: 1.65;
  }

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

  

  .problems-heading-copy {
    font-size: 0.93rem;
    line-height: 1.75;
  }

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  .about-section {
    margin-top: -12px;
    padding: 42px 0 44px;
  }

  .about-story-break {
    display: inline;
  }

  .video-section-inner {
    gap: 14px;
  }

  .video-embed {
    border-radius: 18px;
  }

  .about-heading {
    gap: 16px;
  }

  .section-heading-text {
    gap: 10px;
    font-size: 1.44rem;
  }

  .section-heading-graphic-results {
    width: min(100%, 228px);
  }

  .section-heading-graphic-problems {
    width: min(100%, 553px);
  }

  .section-heading-graphic-features {
    width: min(100%, 246px);
  }

  .section-heading-graphic-support {
    width: min(100%, 606px);
  }

  .section-heading-graphic-reasons {
    width: min(100%, 272px);
  }

  .section-heading-graphic-pricing {
    width: min(100%, 220px);
  }

  .section-heading-graphic-signup-flow {
    width: min(100%, 290px);
  }

  .section-heading-graphic-faq {
    width: min(100%, 272px);
  }

  .section-heading-graphic-news {
    width: min(100%, 158px);
  }

  .about-floating-card {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .about-floating-card-users {
    top: 18px;
    left: 14px;
    min-width: 138px;
  }

  .about-floating-card-rate {
    top: 110px;
    right: 14px;
    min-width: 142px;
  }

  .about-floating-card-rate strong {
    font-size: 2rem;
  }

  .about-floating-card-tasks {
    left: 10px;
    bottom: 14px;
    min-width: 148px;
  }

  .about-floating-title {
    font-size: 0.76rem;
  }

  .about-floating-card strong {
    font-size: 1.34rem;
  }

  .about-floating-card span,
  .about-floating-list li {
    font-size: 0.74rem;
  }

  .results-section {
    padding: 64px 0 76px;
  }

  .cta-section {
    padding: 20px 0 28px;
  }

  .bottom-cta-section {
    padding-top: 48px;
    padding-bottom: 0;
  }

  .cta-section[aria-labelledby="news-cta-title"] {
    padding-top: 34px;
    padding-bottom: 22px;
  }

  .cta-inner {
    width: min(calc(100% - 14px), 980px);
    min-height: 152px;
    padding: 16px 68px 18px;
    border-radius: 20px;
  }

  .cta-heading-block {
    width: min(100%, 420px);
    max-width: none;
  }

  .cta-heading-block::before {
    content: "";
    inset: -3px -6px;
    border-radius: 18px;
  }

  .cta-heading-block::after {
    width: min(60%, 180px);
    height: 10px;
  }

  .cta-copy {
    margin-top: 6px;
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .cta-button {
    width: min(100%, 330px);
    min-height: 50px;
    gap: 0;
    margin-top: 12px;
    padding: 9px 44px;
  }

  .cta-button-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(1.06rem, 3.2vw, 1.34rem);
  }

  .cta-button-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    flex-basis: auto;
    border-width: 2px;
    font-size: 1rem;
  }

  .cta-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-bottom: 8px;
  }

  .cta-benefits li {
    min-height: 24px;
    padding: 0 6px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .cta-inner::before {
    left: 8px;
    bottom: 2px;
    width: 84px;
    height: 64px;
  }

  .cta-inner::after {
    right: 8px;
    bottom: 2px;
    width: 80px;
    height: 60px;
  }

  .results-kicker {
    gap: 12px;
  }

  .results-kicker::before,
  .results-kicker::after {
    width: 28px;
    height: 6px;
  }

  /* 2行目「高い評価をいただいております」は nowrap の14文字。1.58rem だと
     357px 要り、360px 画面（コンテナ 340px）で横スクロールが出ていた。
     画面幅に比例させ、360px でも収まる大きさから始める */
  .results-heading h2 {
    font-size: clamp(1.4rem, 6.4vw, 1.58rem);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

}

/* Retention mobile composition lock: keep the desktop composition only on compact widths */
@media (max-width: 900px) {

  .support-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 18px;
    margin-top: 36px;
  }
}

@media (max-width: 640px) {
  .cta-inner::before,
  .cta-inner::after {
    opacity: 0.42;
    filter: saturate(0.92);
    transform: scale(0.88);
  }
}

@media (max-width: 480px) {
  .cta-inner::before,
  .cta-inner::after {
    opacity: 0;
    transform: scale(0.72);
  }

  .free-reason-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .free-reason-card {
    gap: 12px;
    padding: 18px 14px 18px;
    border-radius: 18px;
  }

  .free-reason-card-copy {
    gap: 8px;
  }

  .free-reason-card h3 {
    font-size: 1.28rem;
    line-height: 1.36;
  }

  .free-reason-card-copy > p {
    font-size: 0.86rem;
    line-height: 1.62;
  }

}

@media (min-width: 1101px) and (max-width: 1680px) {

  .reason-item {
    --reason-orbit-shift: -46px;
    gap: 24px;
  }

  .reason-item-reverse {
    --reason-orbit-shift: 46px;
  }

  .reason-visual,
  .reason-item-reverse .reason-visual {
    margin-left: -18px;
    margin-right: -18px;
  }

  .reason-item-reverse .reason-visual {
    margin-left: 0;
    margin-right: -18px;
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    margin-left: -18px;
    margin-right: -18px;
  }

  .reason-item-reverse .reason-copy {
    margin-left: -18px;
    margin-right: 0;
  }

  .reason-copy > p {
    width: calc(100% + 8px);
    margin-right: -8px;
    font-size: 0.94rem;
    line-height: 1.76;
    letter-spacing: -0.005em;
    min-height: calc(1.76em * 4);
  }

  .section-heading-text {
    font-size: clamp(1.96rem, 0.62vw + 1.42rem, 2.48rem);
  }

  .cta-inner h2 {
    font-size: clamp(1.76rem, 0.84vw + 1.18rem, 2.46rem);
  }

  .cta-button {
    min-height: clamp(64px, 4vw, 74px);
    padding: clamp(10px, 0.8vw, 12px) clamp(20px, 1.4vw, 24px) clamp(10px, 0.8vw, 12px) clamp(24px, 1.8vw, 30px);
  }

  

  

  

  .reason-copy h3 {
    font-size: clamp(1.38rem, 0.5vw + 1rem, 1.94rem);
    line-height: 1.36;
  }

  .reason-copy > p {
    font-size: clamp(0.92rem, 0.14vw + 0.88rem, 0.98rem);
    line-height: 1.82;
  }

  .pricing-paid-copy h3 {
    font-size: clamp(1.5rem, 0.46vw + 1.14rem, 1.96rem);
  }

  .pricing-option-head h3 {
    font-size: clamp(1.26rem, 0.28vw + 1.08rem, 1.58rem);
  }

  .pricing-benefit h3 {
    font-size: clamp(0.9rem, 0.12vw + 0.84rem, 1.04rem);
  }

  .free-reason-card h3 {
    font-size: clamp(1.14rem, 0.26vw + 0.98rem, 1.4rem);
    line-height: 1.38;
  }

}

@media (min-width: 641px) and (max-width: 1240px) {

  .cta-inner {
    width: min(calc(100% - 18px), 1080px);
    min-height: 214px;
    padding: 24px clamp(116px, 12vw, 170px) 26px;
    border-radius: 28px;
  }

  .cta-inner::before {
    left: 22px;
    bottom: 10px;
    width: clamp(168px, 16vw, 228px);
    height: clamp(122px, 13vw, 164px);
  }

  .cta-inner::after {
    right: 22px;
    bottom: 10px;
    width: clamp(160px, 15vw, 214px);
    height: clamp(114px, 12vw, 150px);
  }

  .cta-heading-block {
    width: min(100%, 620px);
  }

  .cta-inner h2 {
    font-size: clamp(1.74rem, 1vw + 1.18rem, 2.16rem);
  }

  .cta-copy {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .cta-benefits {
    gap: 10px;
    margin-bottom: 14px;
  }

  .cta-benefits li {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .cta-button {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 64px;
    margin-top: 16px;
    padding: 11px 28px 11px 30px;
    gap: 14px;
  }

  .cta-button-label {
    width: auto;
    white-space: nowrap;
    font-size: clamp(1.28rem, 0.7vw + 0.98rem, 1.62rem);
  }

  .cta-button-icon {
    width: 46px;
    height: 46px;
  }
}

/* パネル幅が1160pxまで伸びる1240px以上では写真を横に置ける。
   1536pxまで縦積みにしていたため、広い画面でも写真が中央に浮いていた。 */

@media (max-width: 1240px) {

  .hero-title {
    text-wrap: initial;
  }

  .section-heading-text {
    font-size: clamp(1.74rem, 1.25vw + 1.14rem, 2.16rem);
  }

  .hero-title {
    font-size: clamp(2.02rem, 3vw + 1.02rem, 2.72rem);
  }

  .hero-title .hero-title-main {
    font-size: clamp(1.56rem, 1.9vw + 0.94rem, 2.06rem);
  }

  .cta-inner h2 {
    font-size: clamp(1.58rem, 1.18vw + 0.96rem, 2rem);
  }

  .cta-button {
    min-height: clamp(58px, 4.8vw, 68px);
    padding: 10px 18px 10px 22px;
  }

  

  

  

  

  

  .reason-copy h3 {
    font-size: clamp(1.26rem, 0.88vw + 0.82rem, 1.58rem);
    line-height: 1.34;
  }

  .pricing-paid-copy h3 {
    font-size: clamp(1.32rem, 0.8vw + 0.96rem, 1.66rem);
  }

  .pricing-option-head h3 {
    font-size: clamp(1.14rem, 0.7vw + 0.84rem, 1.38rem);
  }

  .free-reason-card h3 {
    font-size: clamp(1.06rem, 0.7vw + 0.82rem, 1.28rem);
  }

}

@media (max-width: 820px) {

  

  .about-heading,

  .hero-title {
    text-wrap: initial;
  }

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

  .section-heading-text {
    font-size: clamp(1.56rem, 1.8vw + 1rem, 1.92rem);
  }

  .reason-copy h3 {
    font-size: clamp(1.16rem, 1vw + 0.8rem, 1.42rem);
    line-height: 1.26;
    letter-spacing: -0.02em;
  }

  .pricing-option-head h3 {
    font-size: clamp(1.06rem, 0.8vw + 0.8rem, 1.26rem);
  }

  .pricing-paid-copy h3 {
    font-size: clamp(1.2rem, 1vw + 0.84rem, 1.48rem);
  }

  /* 導入実績は見出しが中央なので、短い1文の説明も中央で受ける */
  .results-intro {
    text-align: center;
  }

  .features-intro,
  .support-intro,
  .reasons-intro,
  .pricing-intro,
  .free-reason-intro,
  .news-heading p {
    width: 100%;
    text-align: left;
    line-break: auto;
    word-break: normal;
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    padding-inline: 10px;
  }

  .reason-headline {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
  }

  .reason-number {
    font-size: clamp(3.2rem, 8vw, 4rem);
  }

  .reason-title-group {
    gap: 4px;
  }

  .reason-copy > p {
    text-wrap: wrap;
    line-break: auto;
    word-break: normal;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.78;
    letter-spacing: 0;
  }
}

@media (max-width: 560px) {

  

  

  .hero-title {
    font-size: clamp(1.76rem, 3.6vw + 0.9rem, 2.08rem);
  }

  .hero-title .hero-title-main {
    font-size: clamp(1.36rem, 2.8vw + 0.8rem, 1.68rem);
  }

  .cta-inner {
    padding: 16px 16px 18px;
  }

  .cta-copy-break {
    display: inline;
  }

  /* 最終CTAはタグ3つ＋見出し＋説明文＋ボタンと元の要素が多く、絵まで
     置くと過積載になる。スマホでは絵を落としてボタンに集中させる
     （中間CTAは要素が少ないので絵を残している） */
  .cta-inner::before,
  .cta-inner::after {
    display: none;
  }

  .cta-heading-block {
    width: min(100%, 330px);
  }

  .cta-inner h2 {
    font-size: clamp(1.34rem, 2vw + 0.88rem, 1.62rem);
  }

  .cta-button {
    min-height: 50px;
    gap: 0;
    padding: 9px 44px;
  }

  .cta-button-label {
    display: block;
    width: 100%;
    text-align: center;
  }

  .cta-button-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    flex-basis: auto;
  }

  .results-intro,
  .features-intro,
  .support-intro,
  .reasons-intro,
  .pricing-intro,
  .free-reason-intro,
  .news-heading p {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .reason-copy,
  .reason-item-reverse .reason-copy {
    padding: 22px 18px 20px;
  }

  .results-intro,
  .features-intro,
  .support-intro,
  .reasons-intro,
  .pricing-intro,
  .free-reason-intro,
  .news-heading p,
  .reason-copy > p {
    font-size: 0.91rem;
    line-height: 1.72;
  }

  .problems-heading-copy {
    font-size: 0.92rem;
    line-height: 1.76;
  }

  .reason-copy h3 {
    font-size: clamp(1.14rem, 1.6vw + 0.74rem, 1.34rem);
  }

  .reason-item:first-child .reason-copy h3 br:first-of-type {
    display: none;
  }

  .reason-copy > p {
    text-wrap: wrap;
    line-break: auto;
    word-break: normal;
    text-align: left;
    width: 100%;
    margin-right: 0;
    font-size: 0.84rem;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .free-reason-card h3 {
    font-size: clamp(1rem, 1vw + 0.74rem, 1.18rem);
  }

}

@media (max-width: 1680px) {
  .reason-copy > p {
    text-wrap: wrap;
    line-break: auto;
    word-break: normal;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
    opacity: 0.82;
  }

  .hero::after,
  .hero-bg,
  .hero-dot {
    animation: none;
    opacity: 1;
  }

  html.js .contact-card,
  .contact-card {
    opacity: 1;
    transform: none;
    box-shadow: var(--shadow-card);
    animation: none;
  }

  html.js .floating-apply-button,
  html.js .floating-apply-button.is-visible,
  .floating-apply-button {
    transition: none;
  }

  

  

  html.js .support-card,
  html.js .support-grid.is-visible .support-card,
  html.js .support-card-visual img,
  html.js .support-grid.is-visible .support-card .support-card-visual img {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  html.js .reason-item,
  html.js .reason-item .reason-visual,
  html.js .reason-item .reason-copy,
  html.js .reasons-list.is-visible .reason-item .reason-visual,
  html.js .reasons-list.is-visible .reason-item .reason-copy {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  html.js .reasons-list.is-visible .reason-visual::before,
  html.js .reasons-list.is-visible .reason-price-circle,
  html.js .reasons-list.is-visible .reason-device,
  html.js .reasons-list.is-visible .reason-screen,
  html.js .reasons-list.is-visible .reason-phone,
  html.js .reasons-list.is-visible .reason-shield,
  html.js .reasons-list.is-visible .reason-chart {
    animation: none;
    transform: none;
  }

  

  .cta-inner::before {
    opacity: 0.22;
  }

  .cta-button,
  .cta-button-icon,
  .features-cta,
  .news-slider-track,
  .news-slider-button {
    transition: none;
  }
}

/* スマホでは有料オプションのカードに合わせ、アイコンを左・見出しを右・本文を下段に置く。
   アイコンを中央に大きく置くと縦に間延びして情報が拾いにくいため */
@media (max-width: 560px) {
  .feature-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 6px 14px;
    padding: 18px 18px 20px;
    text-align: left;
  }

  .feature-card-icon {
    grid-column: 1;
    grid-row: 1;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .feature-card-icon img,
  .feature-card-g .feature-card-icon img {
    width: 38px;
    height: 38px;
  }

  .features-grid .feature-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    min-height: 0;
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }

  .features-grid .feature-card > p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
    text-align: left;
  }

  .feature-card h3 br {
    display: none;
  }

  /* サポートの絵は横長（528×352）なので、機能紹介と同じ 74px 幅だと
     高さが 49px しか出ず小さく見える。列を広げて見た目の大きさを揃える */
  .support-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 6px 14px;
    text-align: left;
  }

  .support-card-visual {
    grid-column: 1;
    grid-row: 1;
    width: 88px;
    min-height: 0;
    margin: 0;
  }

  /* カードの見出しは1行で読ませる。絵の列を広げたぶん見出し列が狭く
     なるので、フォントを一段落として見出しが収まる大きさにする */
  .support-grid .support-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    min-height: 0;
    justify-self: start;
    justify-content: flex-start;
    font-size: 1.08rem;
    white-space: nowrap;
    text-align: left;
  }

  .support-card h3 br {
    display: none;
  }

  .support-grid .support-card > p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
    text-align: left;
  }

  /* 導入の流れは3枚とも短文なので、画面幅いっぱいに広げると間延びする。
     幅を絞って中央に置き、絵は箱ごと大きくする（絵は背景画像で箱に対する
     比率指定なので、箱を広げれば絵も追従する） */
  .signup-flow-grid {
    max-width: 300px;
    margin-inline: auto;
  }

  .signup-flow-card {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    gap: 6px 14px;
    text-align: left;
  }

  .signup-flow-visual {
    grid-column: 1;
    grid-row: 1;
    width: 100px;
    min-height: 100px;
    margin: 0;
  }

  .signup-flow-grid .signup-flow-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    min-height: 0;
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }

  .signup-flow-grid .signup-flow-card > p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
    text-align: left;
  }
}

/* お客様の声の全文モーダル。カードを伸ばさずに全文を読ませる */
.voice-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 43, 58, 0.55);
}

.voice-modal.is-open {
  display: flex;
}

.voice-modal-panel {
  position: relative;
  width: min(100%, 640px);
  max-height: min(80vh, 640px);
  overflow-y: auto;
  padding: 30px 30px 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(30, 68, 90, 0.28);
}

.voice-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(226, 240, 247, 0.9);
  color: #16617f;
  cursor: pointer;
}

.voice-modal-close::before,
.voice-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.voice-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.voice-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.voice-modal-close:hover,
.voice-modal-close:focus-visible {
  background: #cfe8f4;
}

/* バッジはカードと同じ見た目にする */
.voice-modal-type {
  display: inline-block;
  margin: 0;
  padding: 5px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.voice-modal-type.voice-type-a {
  background: #f2679f;
}

.voice-modal-type.voice-type-b {
  background: #4d9fe8;
}

.voice-modal-type.voice-type-multi {
  background: #43ad5c;
}

.voice-modal-title {
  margin: 12px 0 0;
  color: #1789c0;
  font-size: 1.16rem;
  line-height: 1.5;
  font-weight: 900;
}

.voice-modal-facility {
  margin: 8px 0 0;
  color: #2c4150;
  font-size: 0.95rem;
  font-weight: 800;
}

.voice-modal-text {
  margin: 14px 0 0;
  color: #3a4d59;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* 説明文は画面幅にかかわらず両端を揃え、最終行は左寄せにする。 */
.results-intro,
.features-intro,
.support-intro,
.reasons-intro,
.pricing-intro,
.free-reason-intro,
.news-heading p,
.features-grid .feature-card > p,
.support-grid .support-card > p,
.reason-copy > p,
.pricing-option-copy > p:last-child,
.free-reason-card-copy > p,
.signup-flow-grid .signup-flow-card > p,
.faq-summary-row-answer p,
.news-card-body > p:not(.news-card-tag),
.voice-text,
.voice-modal-text {
  text-align: justify;
  text-align-last: left;
  text-wrap: wrap;
  word-break: normal;
}

@media (max-width: 560px) {
  .voice-modal {
    padding: 16px;
  }

  .voice-modal-panel {
    max-height: 84vh;
    padding: 24px 20px 26px;
    border-radius: 18px;
  }

  .voice-modal-text {
    font-size: 0.92rem;
    line-height: 1.85;
  }
}
