:root {
  --page-width: 1440px;
  --container-width: 1200px;

  --font-weight-w7: 700;
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;

  --color-text: #101828;
  --color-muted: #667085;
  --color-border: rgba(16, 24, 40, 0.14);

  --color-surface: #ffffff;
  --color-surface-2: #f7f4ef;

  --color-ink: #353a47;
  --color-ink-2: #2f3545;

  --accent-teal: #0b7f76;
  --accent-blue: #233aa6;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 14px 40px rgba(16, 24, 40, 0.12);
  --shadow-md: 0 22px 70px rgba(16, 24, 40, 0.16);

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;

  --hover-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --hover-duration: 240ms;
  /* ホバー時の共通モーション（レイアウトは変えず transform のみ） */
  --hover-scale-btn: 1.14;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-width: var(--page-width);
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

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

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

.lp {
  width: var(--page-width);
  margin: 0 auto;
  background: var(--color-surface);
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section--tint {
  background: var(--color-surface-2);
}

.section-title {
  margin: 0;
  font-size: 34x;
  font-weight: var(--w-semibold);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.section-title--center {
  text-align: center;
  font-weight: var(--w-semibold);
}

.section-title--white {
  color: #fff;
}

.section-sub {
  margin: 16px 0 0;
  font-size: 23px;
  font-weight: var(--w-semibold);
  color: var(--color-muted);
}

.section-sub--center {
  text-align: center;
}

.section-sub--white {
  color: rgba(255, 255, 255, 0.86);
}

.muted {
  color: var(--color-muted);
}

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  /* padding: 0 12px; */
  padding: 5px 18px;
  border: 1px solid var(--color-border);
  /* border-radius: 999px; */
  border-radius: 6px;
  font-size: 12px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.section-kicker {
  margin-bottom: 10px;
}

.section-kicker--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: var(--w-medium);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  transition: transform var(--hover-duration) var(--hover-ease), box-shadow 120ms ease, background-color 120ms ease, border-color 120ms ease,
    filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: scale(var(--hover-scale-btn));
  }
}

.btn:active {
  transform: scale(var(--hover-scale-btn));
  filter: invert(1) hue-rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  #pricing .price-card {
    transition: none !important;
  }

  .btn:hover,
  .btn:active,
  #pricing .price-card:hover,
  #pricing .price-card:focus-within {
    transform: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .faq-item__q:hover {
    /* FAQは別ホバー：明度だけ上げる（レイアウトは崩さない） */
    filter: brightness(1.03);
  }
}

.faq-item__q:focus-visible {
  filter: brightness(1.2);
}

.faq-item__q:active {
  filter:brightness(1.0);
}


.btn--primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #0f3d44 0%, #000000 100%);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  box-shadow: none;
}

.btn--lg {
  min-width: 720px;
  padding: 20px 34px;
  font-size: 22px;
}

.btn--block {
  width: 100%;
  min-width: auto;
}

.btn__arrow {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  /* border-radius: 999px; */
  /* border: 1px solid rgba(255, 255, 255, 0.26); */
  /* background: rgba(255, 255, 255, 0.1); */
}

.btn__arrow--dark {
  /* border: 1px solid var(--color-border); */
  /* background: rgba(16, 24, 40, 0.04); */
}

.btn__label {
  flex: 1;
  text-align: center;
  font-weight: var(--w-regular);
}

.btn--support {
  border-radius: 8px;
  padding: 16px 24px;
  padding-left: 56px;
  font-weight: var(--w-medium);
  width: 324px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.btn--support:hover {
  /* background: rgba(16, 24, 40, 0.03); */
}

.btn--support .btn__icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 20px;
  height: 20px; */
}

.btn--support .btn__icon img {
  display: block;
  width: 28px;
  height: 17px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 4px 16px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 16px;
  font-weight: var(--w-medium);
  color: #344054;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.global-header {
  position: relative;
  z-index: 50;
  background: #fff;
}

.global-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0 12px;
}

.global-header__plan {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #475467;
}

.global-header__center {
  text-align: center;
}

.global-header__product {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
}

.global-header__productSmall {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #344054;
}

.global-header__productName {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #101828;
}

.global-header__madeIn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 3px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  font-size: 13px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.14em;
  /* color: #667085; */
  background: #fff;
}

.global-header__right {
  justify-self: end;
}

.unified-content.pricing-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 16px;
}

.unified-content.pricing-content > .mx-auto {
  grid-column: 2;
  justify-self: center;
}

.unified-content.pricing-content > .global-header__right {
  grid-column: 3;
}

.hero {
  padding-top: 60px;
  height: 623px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__plan {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  opacity: 0.9;
}

.hero__headlineWrap {
  margin: 18px 0 0;
  position: relative;
  display: grid;
  justify-items: center;
}

.hero__gangan {
  position: absolute;
  left: 50%;
  top: -26px;
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #77d600;
  transform: translateX(-418px) rotate(-7deg);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
}

.hero__headline {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.hero__lead {
  margin: 10px auto 0;
  max-width: 860px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.hero__visual {
  margin: 18px auto 0;
  position: relative;
  width: 1200px;
  max-width: 100%;
  display: grid;
  place-items: center;
}

.hero__badges {
  position: absolute;
  left: 195px;
  bottom: 10px;
  display: grid;
  gap: 14px;
  justify-items: start;
  pointer-events: none;
}

.hero__badges img {
  width: 137px;
  height: auto;
}

.hero__shot {
  margin: 0;
  display: grid;
  place-items: center;
  position: relative;
  --hero-shot-video-width: 258px;
  --hero-shot-video-x: 0px;
  --hero-shot-video-y: 0px;
  --hero-callout-top: 10px;
  --hero-callout-right: -260px;
  cursor: pointer;
}

.hero__shot img {
  width: 538px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: filter 280ms var(--hover-ease);
}

.hero__shotVideo {
  position: absolute;
  left: 235px;
  top: 106px;
  width: var(--hero-shot-video-width);
  transform: translate(calc(-50% + var(--hero-shot-video-x)), calc(-50% + var(--hero-shot-video-y)));
  max-width: calc(100% - 24px);
  overflow: hidden;
}

.hero__shotVideoEl {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: filter 280ms var(--hover-ease);
}

@media (hover: hover) and (pointer: fine) {
  .hero__shot:hover img,
  .hero__shot:hover .hero__shotVideoEl {
    filter: brightness(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__shot img,
  .hero__shotVideoEl {
    transition: none;
  }
}

.hero__callout {
  position: absolute;
  top: 130px;
  left: 450px;
  width: 300px;
  height: auto;
  z-index: 3;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 240ms var(--hover-ease);
  will-change: opacity;
}

.hero__callout.is-hidden {
  opacity: 0;
}

.hero__calloutImg {
  width: 100%;
  height: 100%;
  display: block;
  height: auto;
  filter: drop-shadow(0 18px 60px rgba(16, 24, 40, 0.22));
}

.hero-features {
  margin-top: 0;
  width: 672px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.18);
  overflow: hidden;
}

.feature-card {
  padding: 22px 20px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-text);
  text-align: left;
}

.feature-card + .feature-card {
  border-left: 1px solid rgba(16, 24, 40, 0.08);
}

.feature-card__icon {
  width: 52px;
  height: auto;
}

.hero-features .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-features .feature-card__icon {
  width: 52px;
  height: 34px;
  object-fit: contain;
}

.hero-features .feature-card__title {
  margin: 10px 0 4px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-features .feature-card__text {
  min-height: 75px;
}

.feature-card__title {
  margin: 12px 0 6px;
  font-size: 18px;
  font-weight: var(--w-semibold);
}

.feature-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  color: #475467;
}

.feature-card--center {
  text-align: center;
}

.feature-card--center .feature-card__icon {
  margin: 4px auto 0;
}

.hero__miniLabels {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(54, 54, 54, 0.98);
  border: 1px solid rgba(176, 176, 176, 0.2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.hero__apps {
  margin-top: 22px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.hero__appsLabel {
  margin: 0;
  font-size: 12px;
  /* color: rgba(255, 255, 255, 0.74); */
}

.hero__appsImage {
  height: 24px;
  width: auto;
}

.hero-apps-panel {
  padding: 10px 0 34px;
}

.hero__apps--dark {
  margin-top: 0;
}

.hero__apps--dark .hero__appsLabel {
  color: #667085;
}

.hero-apps-panel .hero__apps {
  width: 722px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
}

.hero-apps-panel .hero__appsImage {
  width: 722px;
  height: auto;
}

.hero-feature-panel {
  /* height: 623px; */
  padding-top: 0;
  padding-bottom: 20px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.cta {
  padding: 70px 0;
}

.cta--light {
  border-top: 1px solid rgba(16, 24, 40, 0.1);
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
}

.cta--gradient {
  color: #fff;
  background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
}

.cta__inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.cta__title {
  margin: 0;
  font-size: 28px;
  font-weight: var(--w-mi);
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #344054;
}

.cta__title--white {
  color: #fff;
}

.cta__note {
  margin: 4px 0 0;
  display: flex;
  gap: 10px;
}

.cta__sub {
  margin: 0;
  color: var(--color-text);
  font-weight: var(--w-medium);
}

.cta__sub--white {
  color: rgba(255, 255, 255, 0.86);
}

.usecase {
  display: flex;
  align-items: center;
  justify-content: center;

}

.usecase__grid {
  display: grid; /* 2等分カラムのグリッド配置 */
  grid-template-columns: 1fr 1fr; /* 両カラム間の間隔（ギャップ）を64pxに設定する */
  gap: 52px;
  align-items: stretch;
  width: 965px; /* このセクションのみ横幅を小さく */
}

.usecase__left {
  display: grid;
  gap: 36px;
}

.usecase__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.usecase__copy {
  display: grid;
  gap: 18px;
  margin-bottom: 80px;
}

.usecase__visual {
  position: relative;
  --usecase-video-width: 180px;
  --usecase-video-x: 0px;
  --usecase-video-y: 0px;
  --usecase-callout-width: 200px;
  --usecase-callout-left: -40px;
  --usecase-callout-bottom: 110px;
}

.usecase__image {
  --cut-x: 48px;
  --cut-y: 92px;
  filter: drop-shadow(0 18px 50px rgba(16, 24, 40, 0.16));
}

.usecase__visual.usecase__image {
  cursor: pointer;
  isolation: isolate;
}

.usecase__image img {
  display: block;
  transition: filter 280ms var(--hover-ease);
  clip-path: polygon(
    0 var(--cut-y),
    var(--cut-x) 0,
    100% 0,
    100% calc(100% - var(--cut-y)),
    calc(100% - var(--cut-x)) 100%,
    0 100%
  );
}

@media (hover: hover) and (pointer: fine) {
  .usecase__visual.usecase__image:hover > img {
    filter:
      brightness(1.25)
      drop-shadow(0 0 0 rgba(142, 246, 255, 0.0))
      drop-shadow(0 0 26px rgba(64, 161, 255, 0.55))
      drop-shadow(0 0 52px rgba(64, 161, 255, 0.35));
  }
}

@media (prefers-reduced-motion: reduce) {
  .usecase__image img {
    transition: none;
  }
}

.usecase__content .section-title {
  margin-top: 0;
  font-size: 34px;
  font-weight: var(--w-semibold);
}

.usecase__text {
  margin: 0;
  color: #475467;
  font-weight: var(--w-medium);
  line-height: 1.9;
}

.usecase__video {
  margin: 0;
  position: absolute;
  left: 100px;
  top: 610px;
  width: var(--usecase-video-width);
  transform: translate(calc(-50% + var(--usecase-video-x)), calc(-50% + var(--usecase-video-y)));
  max-width: calc(100% - 24px);
  overflow: visible;
  z-index: 2;
}

.usecase__video::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--hover-ease);
  box-shadow:
    0 0 0 2px rgba(142, 246, 255, 0.65),
    0 0 28px rgba(64, 161, 255, 0.5),
    0 0 54px rgba(64, 161, 255, 0.3);
  z-index: 0;
}

.usecase__videoFrame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

@media (hover: hover) and (pointer: fine) {
  .usecase__visual.usecase__image:hover .usecase__video::before {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usecase__video::before {
    transition: none;
  }
}

.usecase__videoEl {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.usecase__callout {
  position: absolute;
  left: -170px;
  bottom: 80px;
  z-index: 3;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 240ms var(--hover-ease);
  will-change: opacity;
}

.usecase__callout.is-hidden {
  opacity: 0;
}

/* モーション適用時（data-motion + is-inview）でも、再生中の非表示を優先する */
html.js-motion .usecase__callout[data-motion]:not([data-motion="off"]).is-hidden {
  opacity: 0;
  translate: 0 0 0;
}

.usecase__calloutImg {
  width: 100%;
  height: auto;
  display: block;
}

.vp-sound-controller {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: grid;
  gap: 6px;
  pointer-events: auto;
}

.vp-sound-controller__btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(16, 24, 40, 0.78);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.vp-sound-controller__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.js-video-overlay {
  cursor: pointer;
}

.usecase__visualSub {
  margin-top: auto;
  width: 100%;
  align-self: flex-end;
}

.usecase__image img {
  width: 100%;
}

.features {
  margin-top: 44px;
  border-top: 1px solid rgba(16, 24, 40, 0.1);
  padding-top: 28px;
}

.usecase__left .features {
  margin-top: 0;
}

.usecase__copy .kicker {
  justify-self: start;
}

.features__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.features__title {
  margin: 0;
  font-size: 34px;
  font-weight: var(--w-semibold);
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.4;
  font-size: 16px;
  display: grid;
  gap: 20px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  font-weight: var(--w-medium);
  color: #344054;
}

.check-list li::before {
  content: "▸";
  position: absolute;
  left: 5px;
  top: -15px;
  font-size: 32px;
  color: #98a2b3;
}

.pain {
  padding-bottom: 40px;
}

.pain-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pain-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.pain-card__bubble {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.pain-card > img {
  margin-top: auto;
}

.pain-card__bubble img {
  width: 100%;
  max-width: 360px;
  opacity: 0.9;
}

.pain-card__bubbleText {
  position: absolute;
  margin: 0;
  padding: 0 24px;
  text-align: center;
  font-weight: var(--w-bold);
  color: #667085;
}

.pain-triangle {
  display: block;
  width: 0;
  height: 0;
  margin: 48px auto 0;
  border-left: 27.5px solid transparent;
  border-right: 27.5px solid transparent;
  border-top: 22px solid var(--color-surface-2);
  opacity: 0.8;
}

.pain-triangle--toBenefit {
  margin: 28px auto -10px;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.benefit.section--tint {
  background: transparent;
}

.benefit {
  padding-top: 0px;
  padding-bottom: 0px;
}

.benefit__inner {
  position: relative;
  /* padding: 上 右 左 下 */
  padding: 38px 72px 46px;
  border-radius: 30px;
  background: var(--color-surface-2);
}

.benefit__kicker {
  margin: 0;
  text-align: center;
  font-weight: var(--w-medium);
  font-size: 24px;
  color: #475467;
  line-height: 1.5;
}

.benefit__headline {
  color: #d92d20;
}

.em {
  color: #d92d20;
}

.benefit__triangle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  opacity: 0.8;
  border-top-color: var(--color-surface-2);
}

.benefit__triangle--bottom {
  bottom: -22px;
}

.benefit-circles {
  width: 810px;
  margin: 34px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  justify-content: center;
}

.circle-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 2px;
}

.circle-card__icon {
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 6px;
}

.circle-card__icon img {
  display: block;
}

.circle-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: var(--w-semibold);
  color: #344054;
  line-height: 1.35;
}

.circle-card__text {
  margin: 0;
  font-size: 13px;
  font-weight: var(--w-medium);
  color: #667085;
  max-width: 320px;
  line-height: 1.75;
}

.benefit__bottom {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 0px;
  align-items: center;
}

.benefit__image {
  display: grid;
  justify-items: center;
}

.benefit__image img {
  width: 480px;
  width: 480px;
  /* 画像に透過フィルターと乗算ブレンドモードを適用 */
  opacity: 0.88;
  /* mix-blend-mode: multiply; */
}

.benefit__points {
  display: grid;
  gap: 0;
  /* border-radius: 12px; */
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.72); */
  border-top: 1px solid rgba(16, 24, 40, 0.1);
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  border-left: none;
  border-right: none;
}

.benefit__point {
  margin: 0;
  padding: 18px 18px;
  font-weight: var(--w-medium);
  color: #344054;
  font-size: 19px;
  line-height: 1.;
}

.benefit__point + .benefit__point {
  border-top: 1px solid rgba(16, 24, 40, 0.1);
}

.step-flow {
  margin-top: 6px;
  display: grid;
  /* 
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    1fr（フレックス領域）の間に幅40pxのカラムを2本はさみ、全体で5カラムのグリッドにする記述。
    例: [Step] [矢印] [Step] [矢印] [Step] のようにコンテンツと矢印（または区切り）を交互に配置したい時に使う。
  */
  grid-template-columns: 1fr 8px 1fr 8px 1fr;
  align-items: center;
  gap: 10px;
}

.why .step-flow {
  width: 976px;
  margin: 6px auto 0;
  align-items: stretch;
}

.why .step-flow__arrow {
  align-self: center;
}

.why .step-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why .step-card__body {
  flex: 1;
}

.why .step-card__icon {
  object-fit: contain;
}

.step-flow--onDark {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-flow__arrow {
  text-align: center;
  font-size: 18px;
  color: #344054;
  font-weight: var(--w-bold);
}

.step-card {
  border-radius: 10px;
  overflow: hidden;
  /* border: 1px solid rgba(16, 24, 40, 0.1); */
  background: #fff;
  width: 300px;
  min-height: 318px;
}

.step-card--dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.95);
}

.step-card__head {
  padding: 14px 18px;
  background: #43495a;
  color: #fff;
  font-weight: var(--w-medium);
  text-align: center;
  font-size: 18px;
  line-height: 1.25;
}

.step-card__body {
  padding: 18px 18px 22px;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.step-card__icon {
  width: 220px;
  height: auto;
}

.step-card__text {
  margin: 0;
  font-weight: var(--w-semibold);
  line-height: 1.2;
  color: #344054;
  font-size: 15px;
  text-align: left;
}

.usage__steps {
  margin: 18px auto 22px;
  width: min(742px, 100%);
  display: grid;
  gap: 8px;
  justify-items: center;
}

._usage__steps-labels {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.usage__steps-line {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

.usage__flow {
  width: 953px;
  margin-top: 10px;
  align-items: stretch;
  gap: 24px;
  width: min(840px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.usage .step-card {
  width: 100%;
  /* min-height: 330px; */
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.14);
}

.usage .step-card__head {
  padding: 16px 18px 14px;
  font-size: 16px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.02em;
}

.usage .step-card__body {
  padding: 18px 20px 22px;
  grid-template-rows: 132px auto;
  gap: 14px;
}

.usage .step-card__icon {
  width: auto;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  align-self: center;
  display: block;
}

.usage .step-card__text {
  font-size: 14px;
  line-height: 1.4;
}

.step-card--badge {
  position: relative;
}

.step-card__badge {
  position: absolute;
  top: 48px;
  right: 10px;
  width: 96px;
  height: auto;
}

.why {
    padding: 30px 0;
}
.why__panel {
  margin-top: 28px;
  padding: 6px 44px 28px;
  background: var(--color-surface-2);
  border-radius: 26px;
}
.capability{
    padding: 52px 0px;
}

.capability__grid {
  width: 1074px;
  margin: 36px auto 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
  justify-content: center;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0px;
}

.feature-item {
  padding: 16px 0;
  border-top: 1px solid rgba(16, 24, 40, 0.1);
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
}

.feature-item__title {
  margin: 0;
  font-size: 16px;
  font-weight: var(--w-bold);
  color: #344054;
  padding-left: 22px;
}
.feature-item__title {
  position: relative;
}
.feature-item__title:before {
  content: "▸";
  position: absolute;
  left: 2px;
  top: -8px;
  color: #98a2b3;
  font-size: 32px;
  line-height: 1.15;
}

.feature-item__text {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: var(--w-semibold);
  color: #667085;
  padding-left: 22px;
}

.capability__image {
  display: grid;
  justify-items: end;
}

.capability__image img {
  width: 440px;
}

.fact{
  padding-bottom: 20px;
}

.fact-grid,
.fact-notes {
  width: 905px;
  margin-left: auto;
  margin-right: auto;
}

.fact-column-image {
  width: 966px;
  /* max-width: 100%; */
  margin: 2rem auto 0;
  text-align: center;
}

.fact-column-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.fact-grid {
  justify-content: center;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fact-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
  display: flex;
  flex-direction: column;
}

.fact-card__head {
  padding: 16px 18px 14px;
  background: #434a5c;
  color: #fff;
  font-weight: var(--w-bold);
  font-size: 17px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(16, 24, 40, 0.12);
}

.fact_num {
  font-weight: var(--w-regular);
  /* font-size: 14px; */
}

.fact-card__body {
  position: relative;
  padding: 18px 18px 20px;
  min-height: 210px;
  flex: 1;
}

.fact-card__meta {
  margin: 0;
  color: #6b7280;
  font-weight: var(--w-medium);
  font-size: 17px;
}

.fact-card__metric {
  margin: 2px 0 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #3a4051;
  font-weight: var(--w-bold);
  flex-wrap: nowrap;
}

.fact-card__metric .num {
  font-size: 62px;
  line-height: 1;
}

.fact-card__metric .unit {
  font-size: 17px;
  font-weight: var(--w-bold);
  white-space: nowrap;
}

.fact-card__desc {
  margin: 10px 0 0;
  font-weight: var(--w-regular);
  color: #667085;
  font-size: 14px;
  max-width: 72%;
}

.fact-card__icon {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 76px;
  height: auto;
  opacity: 0.96;
}

.fact-notes {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fact-note__label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: var(--w-semibold);
  color: #98a2b3;
}

.fact-note__list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 11px;
  line-height: 1.2;
  color: #667085;
  list-style-position: outside;
  list-style: none;
}

.fact-note__list li {
  margin: 0 0 10px;
  font-size: 11px;
}

.fact-note__list li:last-child {
  margin-bottom: 0;
}

.usage--gradient {
  color: #fff;
  background: linear-gradient(115deg, #5c4a8c 0%, #d7a368 100%);
  
}
.usage {
  padding: 42px 0;
  padding-top: 10px;
}

.panel-grid {
  width: 1066px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.panel {
  border-radius: 16px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  padding: 50px 28px;
  padding-bottom: 60px;
  background: #fff;
}

.panel--right {
  display: flex;
  flex-direction: column;
}

.panel__title {
  margin: 0;
  padding-bottom: 30px;
  text-align: center;
  font-size: 22px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.02em;
}

.panel__lead {
  margin: 12px 0 0;
  color: #667085;
  font-weight: var(--w-medium);
}

.panel__block {
  margin-top: 20px;
}

.panel__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: var(--w-bold);
  color: #344054;
}

.panel__text {
  margin: 10px 0 0;
  color: #667085;
  font-weight: var(--w-medium);
}

.panel__hint {
  margin: 18px 0 8px;
  font-weight: var(--w-bold);
  color: #344054;
}

.dot-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #667085;
  font-weight: var(--w-medium);
  display: grid;
  gap: 8px;
}

.pricing-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  --price-accent: #15957b;
  --price-divider: #e2e8f0;
  --price-line-width: 62%;
  border-radius: 14px;
  border: 1px solid #d9e1ee;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  padding: 28px 24px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.price-card--featured {
  --price-accent: #d8a542;
  --price-divider: rgba(216, 165, 66, 0.55);
  border: 2px solid #e0b35a;
  box-shadow: 0 18px 42px rgba(217, 164, 65, 0.24);
}

.price-card--free,
.price-card--team {
  margin-top: 25px;
}

.price-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 218px;
}

.cancelMargin{
  /* height: 133px; */
  height: 193px;
  margin-top: 0px;
}

.price-card__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.price-card__lead {
  margin: 0;
  padding-top: 18px;
  color: #64748b;
  font-weight: var(--w-semibold);
  font-size: 13px;
  line-height: 1.55;
  min-height: 44px;
  display: grid;
  place-items: center;
  position: relative;
}

.price-card__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--price-line-width);
  height: 1px;
  background: var(--price-divider);
}

.plan-list {
  margin: 14px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  text-align: left;
  width: fit-content;
  position: relative;
  padding-top: 14px;
  padding-bottom: 30px;
}

.price-card--featured .plan-list {
  padding-top: 0;
}

.price-card--featured .plan-list::before {
  display: none;
}

.price-card--featured .price-card__lead {
  padding-top: 12px;
}

.price-card--featured .price-card__lead::before {
  display: none;
}

.plan-list__item {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: var(--w-semibold);
  color: #344054;
  line-height: 1.5;
}

.plan-list__item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
}

.plan-list__item.is-ok::before {
  content: "✓";
  color: var(--price-accent);
}

.plan-list__item.is-ng::before {
  content: "✕";
  color: rgba(225, 29, 72, 1);
}

.price-card__cta {
  margin-top: auto;
}

.price-card .btn {
  font-size: 15px;
  font-weight: var(--w-semibold);
  padding: 14px 24px;
}

.price-card .btn--ghost {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-color: #e6edf5;
  color: #111827;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.price-card--featured .btn--primary {
  background: linear-gradient(90deg, #f1c86a 0%, #d79a2a 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(217, 154, 42, 0.28);
}

.pricing__note {
  margin: 22px 0 0;
  text-align: center;
  color: #667085;
  font-weight: var(--w-medium);
}

.faq-list {
  margin-top: 44px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 8px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  overflow: hidden;
  background: #fff;
  /* background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%); */
}

.faq-item__q {
  cursor: pointer;
  padding: 18px 18px;
  /* background: rgba(247, 244, 239, 0.72); */
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  transition: filter 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: var(--w-semibold);
  color: #344054;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 19px;
}

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

.faq-item__q::after {
  content: "+";
  font-size: 22px;
  font-weight: var(--w-bold);
  color: #667085;
}

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

.faq-item__a {
  padding: 16px 18px 20px;
  font-size: 16px;
  font-weight: var(--w-medium);
  color: #667085;
}

.faq-item__a p {
  margin: 0;
}

.faq-item__a p a {
  color: blue;
}

.footer_lp {
  padding: 28px 0;
  border-top: 1px solid rgba(16, 24, 40, 0.1);
}

.footer_lp__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_lp__copy {
  color: #667085;
  font-weight: var(--w-medium);
}

.footer_lp__top {
  color: #344054;
  font-weight: var(--w-bold);
}

/* モーション（既存レイアウトは崩さず、見た目の動きのみ追加） */
:root {
  --motion-duration: 720ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-distance: 70px;
}

@media (prefers-reduced-motion: no-preference) {
  /* 料金プランだけ少しゆっくり */
  #pricing {
    --motion-duration: 920ms;
  }

  html {
    scroll-behavior: smooth;
  }

  html.js-motion [data-motion]:not([data-motion="off"]) {
    opacity: 0;
    translate: 0 var(--motion-distance, 70px) 0;
    transition:
      opacity var(--motion-duration) var(--motion-ease),
      translate var(--motion-duration) var(--motion-ease);
    transition-delay: var(--motion-delay, 0ms);
    will-change: opacity, transform;
  }

  /* CTA内のボタンはホバーも同じ体感に揃える（data-motion の transition 上書きで hover が鈍るのを防ぐ） */
  html.js-motion section.cta .btn[data-motion]:not([data-motion="off"]) {
    transition:
      opacity var(--motion-duration) var(--motion-ease),
      translate var(--motion-duration) var(--motion-ease),
      transform var(--hover-duration) var(--hover-ease),
      box-shadow 120ms ease,
      background-color 120ms ease,
      border-color 120ms ease,
      filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay:
      var(--motion-delay, 0ms),
      var(--motion-delay, 0ms),
      0ms,
      0ms,
      0ms,
      0ms,
      0ms;
  }

  /* サポートボタンも同様（data-motion の transition 上書きで hover が鈍るのを防ぐ） */
  html.js-motion .btn.btn--support[data-motion]:not([data-motion="off"]) {
    transition:
      opacity var(--motion-duration) var(--motion-ease),
      translate var(--motion-duration) var(--motion-ease),
      transform var(--hover-duration) var(--hover-ease),
      box-shadow 120ms ease,
      background-color 120ms ease,
      border-color 120ms ease,
      filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay:
      var(--motion-delay, 0ms),
      var(--motion-delay, 0ms),
      0ms,
      0ms,
      0ms,
      0ms,
      0ms;
  }

  /* motion-hover（カード類）は表示モーションとホバーを両立させる（ホバーだけ遅延させない） */
  html.js-motion .motion-hover[data-motion]:not([data-motion="off"]) {
    transition:
      opacity var(--motion-duration) var(--motion-ease),
      translate var(--motion-duration) var(--motion-ease),
      transform var(--hover-duration) var(--hover-ease);
    transition-delay:
      var(--motion-delay, 0ms),
      var(--motion-delay, 0ms),
      0ms;
    will-change: opacity, transform;
  }

  html.js-motion [data-motion="fade"]:not([data-motion="off"]) {
    translate: 0 0 0;
  }

  html.js-motion [data-motion="fade-left"]:not([data-motion="off"]) {
    translate: calc(var(--motion-distance, 100px) * -1) 0 0;
  }

  html.js-motion [data-motion="fade-right"]:not([data-motion="off"]) {
    translate: var(--motion-distance, 100px) 0 0;
  }

  html.js-motion [data-motion="lines"]:not([data-motion="off"]) {
    opacity: 1;
    transition: border-color var(--motion-duration) var(--motion-ease);
    transition-delay: var(--motion-delay, 0ms);
  }

  html.js-motion [data-motion="lines"]:not([data-motion="off"]) {
    border-top-color: transparent;
    border-bottom-color: transparent;
  }

  html.js-motion [data-motion="lines"]:not([data-motion="off"]) .benefit__point + .benefit__point {
    border-top-color: transparent;
    transition: border-color var(--motion-duration) var(--motion-ease);
  }

  html.js-motion [data-motion="lines"]:not([data-motion="off"]).is-inview {
    border-top-color: rgba(16, 24, 40, 0.1);
    border-bottom-color: rgba(16, 24, 40, 0.1);
  }

  html.js-motion [data-motion="lines"]:not([data-motion="off"]).is-inview .benefit__point + .benefit__point {
    border-top-color: rgba(16, 24, 40, 0.1);
  }

  html.js-motion [data-motion]:not([data-motion="off"]).is-inview {
    opacity: 1;
    translate: 0 0 0;
  }

  @media (hover: hover) and (pointer: fine) {
    html.js-motion .motion-hover {
      transform: translate3d(0, 0, 0);
      transition: transform var(--hover-duration) var(--hover-ease);
      will-change: transform;
    }

    html.js-motion .motion-hover:hover {
      animation: motion-float 0.8s var(--motion-ease) infinite;
      transform: translate3d(0, -4px, 0);
    }

    html.js-motion .price-card.motion-hover:hover {
      animation: none;
      transform: translate3d(0, -6px, 0) scale(1.10);
      z-index: 3;
    }
  }

  .hero__badges img {
    /* animation: motion-float 5.2s var(--motion-ease) infinite; */
  }

  .hero__badges img:nth-child(2) {
    /* animation-duration: 6.2s;
    animation-delay: -1.1s; */
  }

  .hero__shot img {
    animation: motion-float 6.8s var(--motion-ease) infinite;
    animation-delay: -0.6s;
  }

  .hero__shotVideo {
    animation: motion-float 6.8s var(--motion-ease) infinite;
    animation-delay: -0.6s;
  }

  .hero__bgImg {
    transform-origin: 50% 50%;
    animation: motion-zoom 18s ease-in-out infinite alternate;
  }

  @keyframes motion-float {
    0%,
    100% {
      transform: translate3d(0, 0, 0);
    }
    50% {
      transform: translate3d(0, -10px, 0);
    }
  }

  @keyframes motion-zoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.04);
    }
  }
}
