@charset "UTF-8";
/* destyle.css ベースに足りない/方針違いを補う軽量の上書き群 */
/* タイポグラフィ（プロジェクトの標準フォント） */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: "Fustat", "Noto Sans JP", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #00296B;
  background-color: #fff;
  font-feature-settings: "palt" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* メディア（MV右の動画を含む） */
img, picture, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  fill: currentColor;
}

/* リンクの初期値（デザインで統一） */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  opacity: 0.85;
}

/* フォーム類は継承させる */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

/* アクセシビリティ：focus-visible をはっきり */
:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 2px;
}

/* 視覚的に隠すユーティリティと整合 */
[hidden] {
  display: none !important;
}

/* アニメーション低減 */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html,
body {
  background-color: #fff;
  color: #00296B;
}

body {
  font-family: "Fustat", "Noto Sans JP", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* 英字だけ確実にFustatにする（見出し等の混在に強い） */
:lang(en) {
  font-family: "Fustat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* 和文はNoto Sans JPを優先 */
:lang(ja) {
  font-family: "Noto Sans JP", "Noto Sans", "Hiragino Sans", Meiryo, sans-serif;
}

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.l-main {
  background: #fff;
}

.l-container {
  width: min(1400px, 100% - 32px);
  margin-inline: auto;
}
.l-container--min {
  width: min(1200px, 100% - 32px);
  margin-inline: auto;
}

@media (max-width: 1600px) {
  .l-container {
    width: min(1200px, 100% - 32px);
    margin-inline: auto;
  }
}
/* layout/_header.scss */
#header-placeholder {
  position: sticky;
  top: 0;
  z-index: 100;
}

.l-header {
  background-color: #fff;
}
.l-header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-areas: "left right1 right2";
  align-items: center;
  gap: 0 64px;
  padding: 20px;
}
.l-header .l-header__brand {
  grid-area: left;
}
.l-header .p-nav {
  grid-area: right1;
}
.l-header .l-header__actions {
  grid-area: right2;
}
.l-header__brand {
  display: inline-flex;
  align-items: center;
}
.l-header__actions {
  display: inline-flex;
  gap: 20px;
}
.l-header__actions .c-button--ghost {
  border: none;
}
@media (max-width: 1280px) {
  .l-header__inner {
    /* 列数はそのままでもOK。配置だけ2行に変更 */
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "left   left   right1" ".      .      right2";
    /* 2行目：右2つを横並びで */
  }
  .l-header__actions {
    justify-self: end;
  }
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 8px;
    gap: 20px;
    grid-template-areas: "left   right2   right1";
  }
}

.l-footer {
  background: #00296B;
  /* 濃紺 */
  color: #fff;
  padding: 38px 0 50px;
}
.l-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}
.l-footer__brand img {
  display: block;
  width: 323px;
  height: auto;
}
.l-footer__copy {
  margin-top: 15px;
  font-family: Fustat;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.8px;
}
.l-footer__nav {
  justify-self: end;
}
.l-footer__list {
  display: flex;
  gap: clamp(12px, 3vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer__link {
  color: #FFF;
  text-align: center;
  font-family: Fustat;
  font-size: clamp(22px, 2.4vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: opacity 0.2s;
}
.l-footer__link.--last {
  position: relative;
  padding-left: clamp(12px, 3vw, 40px);
}
.l-footer__link.--last::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80%;
  background: #FFF;
}
.l-footer__link:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .l-footer {
    padding: 38px 0 50px;
    position: relative;
  }
  .l-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
  }
  .l-footer__copy {
    position: absolute;
    bottom: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .l-footer__nav {
    justify-self: center;
  }
}
@media (max-width: 768px) {
  .l-footer {
    padding: 38px 0 100px;
  }
  .l-footer__list {
    flex-direction: column;
  }
  .l-footer__link.--last {
    padding-left: 0;
    padding-top: clamp(12px, 3vw, 40px);
    display: block;
  }
  .l-footer__link.--last::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
  }
  .l-footer__brand img {
    width: 80%;
    margin: 0 auto;
    max-width: 300px;
  }
  .l-footer__copy {
    font-size: 13px;
  }
}

.c-button {
  --btn-bg: #fff;
  --btn-color: $color-text;
  --btn-bd: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-color);
  border-radius: 9999px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(20, 35, 80, 0.08);
  transition: transform 0.02s ease, box-shadow 0.2s ease, background-color 0.2s;
  min-width: 300px;
}
.c-button:active {
  transform: translateY(1px);
}
.c-button--primary {
  --btn-bg: #185BCC;
  --btn-color: #fff;
  --btn-bd: transparent;
}
.c-button--ghost {
  --btn-bg: #fff;
  --btn-color: #00296B;
  --btn-bd: #185BCC;
}
.c-button--sm {
  padding: 14px 14px;
  font-size: 16px;
  min-width: 200px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.c-button--block {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .c-button {
    min-width: 230px;
    padding: 10px 14px;
    font-size: 16px;
  }
  .c-button--sm {
    width: 100%;
    padding: 10px 14px;
    font-size: 12px;
    min-width: 0;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 35, 80, 0.15);
  overflow: hidden;
}
.c-card__header {
  padding: 24px;
  background: #F2F5F8;
}
.c-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}
.c-card__meta {
  color: #6b7280;
  margin-top: 8px;
  font-size: 14px;
}
.c-card__list {
  padding: 24px;
  display: grid;
  gap: 10px;
}
.c-card__footer {
  padding: 24px;
  background: #fff;
  margin-top: auto;
}

.c-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 9999px;
  color: #fff;
}
.c-badge--blue {
  background: #4c8dff;
}
.c-badge--navy {
  background: #00296B;
}
.c-badge--gold {
  background: #f1b400;
  color: #111;
}

.c-eyebrow {
  color: #00296B;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: Fustat;
  font-size: clamp(20px, 1.8vw, 26px);
}
.c-eyebrow.--muted {
  color: #00509D;
}
.c-eyebrow.--wh {
  color: #fff;
}

.c-title {
  color: #00296B;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
  font-size: clamp(28px, 4.2vw, 50px);
}
@media (max-width: 768px) {
  .c-title {
    margin-bottom: 12px;
  }
}
.c-title.--muted {
  color: #00509D;
}
.c-title.--wh {
  color: #fff;
}

.c-lead {
  color: #00296B;
  font-weight: 700;
  line-height: 1.66;
  font-size: clamp(15px, 1.9vw, 24px);
}
.c-lead.--muted {
  color: #00509D;
}
.c-lead.--wh {
  color: #fff;
}

/* 初期値は「下からフェード」のみに適用 */
[data-ani=up] {
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
}

/* 文字1つずつ：親は非透明のまま。子の .char だけを段階表示 */
[data-ani=chars] {
  opacity: 1;
  transform: none;
}

[data-ani=chars] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em) rotate(0.3deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.6s;
  transition-delay: calc(var(--char-index, 0) * 40ms);
}

.is-in[data-ani=chars] .char {
  opacity: 1;
  transform: none;
}

/* 下からフェード（要素単位） */
.is-in[data-ani=up] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--ani-delay, 100ms);
}

/* モーション低減ユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  [data-ani=up] {
    opacity: 1 !important;
    transform: none !important;
  }
  [data-ani=chars] .char {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ===== 下層ヘッダータイトル ===== */
.p-pageHead {
  position: relative;
  isolation: isolate;
  color: #fff;
  /* 高さ（SP/PC） */
  min-height: 226px;
  display: grid;
  align-items: center;
}
@media (max-width: 768px) {
  .p-pageHead {
    min-height: 160px;
  }
}
.p-pageHead .l-container {
  position: relative;
  z-index: 1;
}

.p-pageHead__title {
  font-family: Fustat;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  font-size: clamp(24px, 3.8vw, 50px);
}

/* 背景：濃淡グラデ＋薄いネットワーク線（SVG） */
.p-pageHead__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* 画像を使わない場合のデフォルト背景 */
  background: #2B55C9;
}

/* object/project/_nav.scss */
.p-nav {
  /* デスクトップ */
  /* 開く時は「×」に変形（中心y=22基準で±10px動かす） */
  /* モバイルレイアウト */
}
.p-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.p-nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 4px;
  color: #00296B;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.p-nav__link:hover::after {
  background: rgba(28, 95, 212, 0.35);
  transform: scaleX(1);
}
.p-nav__link.is-active::after {
  background: #1c5fd4;
  transform: scaleX(1);
}
.p-nav__toggle {
  display: none;
  inline-size: 44px;
  block-size: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: currentColor;
}
.p-nav .c-hamburger {
  width: 44px;
  height: 44px;
  display: block;
}
.p-nav .c-hamburger__line {
  stroke: currentColor;
  stroke-width: 2;
  /* 高さ2px */
  stroke-linecap: round;
  fill: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.p-nav .p-nav__toggle[aria-expanded=true] .c-hamburger__line:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}
.p-nav .p-nav__toggle[aria-expanded=true] .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.p-nav .p-nav__toggle[aria-expanded=true] .c-hamburger__line:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .p-nav .c-hamburger__line {
    transition: none;
  }
}
.is-open + .p-nav__list, .p-nav__list.is-open {
  display: flex;
}
@media (max-width: 768px) {
  .p-nav {
    margin-left: auto;
  }
  .p-nav__toggle {
    display: inline-grid;
  }
  .p-nav__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 3rem;
  }
  .p-nav__item {
    border-bottom: 1px solid #eef2f7;
  }
  .p-nav__link {
    display: block;
    padding: 14px 4px;
  }
  .p-nav__listwrap {
    display: none;
    position: fixed;
    inset: 56px 0 0 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e5e7eb;
    padding: 12px 16px 16px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  }
  .p-nav__listwrap.is-open {
    display: flex;
  }
}

/* 画面ロック（任意） */
:root body.is-nav-open {
  overflow: hidden;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p-mv {
  --mv-eyebrow: #00296B;
  --mv-lead: #00296B;
  position: relative;
  isolation: isolate;
  padding: 50px 0 150px;
  /* 左側 */
  /* 右側イラスト＋動画 */
  /* 1400px以上は“ご指定の値”を厳密に固定 */
  /* 浮く動画：右上に白枠＋影 */
  /* レスポンシブ */
}
.p-mv__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}
.p-mv__left {
  position: relative;
  z-index: 2;
}
.p-mv__eyebrow {
  color: var(--mv-eyebrow);
  font-weight: 700;
  letter-spacing: clamp(1px, 0.28vw, 3.8px);
  font-size: clamp(20px, 2.4vw, 30px);
}
.p-mv__brand {
  margin: 30px 0;
}
.p-mv__brand-mark {
  width: clamp(80%, 40vw, 500px);
  max-width: 100%;
  height: auto;
}
.p-mv__brand-text {
  margin: 0;
  line-height: 1.1;
}
.p-mv__lead {
  color: var(--mv-lead);
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.7;
  font-weight: 500;
  line-height: 2;
}
.p-mv__right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 50%;
  max-width: 900px;
  height: 100%;
}
.p-mv__right img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1600px) {
  .p-mv {
    padding: 80px 0 180px;
  }
  .p-mv__eyebrow {
    font-size: 38px;
    letter-spacing: 3.8px;
  }
  .p-mv__brand {
    margin: 30px 0;
  }
  .p-mv__brand-mark {
    width: 600px;
  }
  .p-mv__lead {
    font-size: 22px;
    line-height: 2;
  }
}
.p-mv__video {
  height: auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .p-mv {
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
    padding-bottom: 0;
    /* 右側イラスト＋動画 */
  }
  .p-mv__inner {
    grid-template-columns: 1fr;
  }
  .p-mv__left {
    margin-top: 0;
  }
  .p-mv__right {
    position: static;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .p-mv__right img {
    position: static;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 768px) {
  .p-mv__left {
    text-align: center;
  }
  .p-mv__brand-mark {
    margin-inline: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-mv__video {
    animation: none;
  }
}

/* 小さなユーティリティ（見出し内改行制御） */
.u-hide-sm {
  display: none;
}

@media (min-width: 768px) {
  .u-hide-sm {
    display: inline;
  }
}
.p-pricing {
  margin-top: -100px;
  padding: 40px 0 64px;
  background: linear-gradient(180deg, #fff 0%, #F2F5F8 100%);
  /* ヘッダー（濃い青、白文字） */
  /* タイトル：40px到達/固定 */
  /* 想定期間の細い帯 */
  /* 説明文 */
  /* 箇条書き（黄色の丸チェック） */
  /* フッター：ボタン2つを中央に */
  /* MVボタンのmin-widthが大きい場合の調整 */
}
.p-pricing__grid {
  position: relative;
  z-index: 1;
}
.p-pricing__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  border: 2px solid #185BCC;
  box-shadow: 0 4px 20px 0 rgba(36, 55, 223, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-pricing__head {
  background: #185BCC;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-pricing__head {
    padding: 10px;
  }
}
.p-pricing__title {
  margin: 0;
  line-height: 1.2;
  font-family: "Fustat", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 2.9vw, 34px);
}
@media (min-width: 1600px) {
  .p-pricing__title {
    font-size: 40px;
  }
}
.p-pricing__body {
  padding: 20px 20px 30px;
}
@media (max-width: 768px) {
  .p-pricing__body {
    padding: 20px 10px;
  }
}
.p-pricing__badge {
  background: #185BCC;
  margin-bottom: 20px;
  padding: 10px 0;
  text-align: center;
  color: #FFF;
  font-size: clamp(14px, 1.6vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.p-pricing__intro {
  text-align: center;
  color: #000;
  font-size: clamp(17px, 1.6vw, 22px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 20px;
}
@media (min-width: 1600px) {
  .p-pricing__intro {
    font-size: 24px;
  }
}
.p-pricing__list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0 10px;
  list-style: none;
  color: #001226;
  font-size: clamp(14px, 1.6vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .p-pricing__list {
    gap: 15px;
  }
}
.p-pricing__list li {
  position: relative;
  padding-left: 36px;
}
.p-pricing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M14 0C6.31039 0 0 6.31039 0 14C0 21.6896 6.31039 28 14 28C21.6896 28 28 21.6896 28 14C28 6.31039 21.6896 0 14 0ZM12.3057 20.3678L6.17498 14.2371L8.49494 11.9172L12.4131 15.8353L20.2789 8.68481L22.4867 11.1121L12.3057 20.3678Z' fill='%23FDC500'/%3E%3C/svg%3E");
}
.p-pricing__list li.is-disactive {
  color: #A3A3A3;
}
.p-pricing__list li.is-disactive::before {
  content: none;
}
@media (max-width: 768px) {
  .p-pricing__list li {
    padding-left: 30px;
  }
  .p-pricing__list li::before {
    width: 20px;
    height: 20px;
  }
}
.p-pricing__foot {
  display: grid;
  gap: 16px;
  padding: 0 0 20px;
}
@media (max-width: 768px) {
  .p-pricing__foot {
    gap: 10px;
  }
}
.p-pricing .c-button {
  justify-self: center;
}

.p-pricing .swiper-slide {
  height: auto;
  width: 440px;
}
@media (max-width: 560px) {
  .p-pricing .swiper-slide {
    width: auto;
  }
}
.p-pricing .swiper-slide .p-pricing__card {
  height: 100%;
}
@media (max-width: 560px) {
  .p-pricing .l-container {
    width: 100%;
  }
}

/* object/project/_what.scss */
.p-what {
  background: #F2F5F8;
  /* 画像の淡いグレー寄りに */
  padding: clamp(32px, 6vw, 72px) 0;
}
.p-what__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}
.p-what__visual {
  justify-self: center;
}
.p-what__lottie {
  max-width: 396px;
  aspect-ratio: 396/343;
}
@media (max-width: 560px) {
  .p-what__inner {
    grid-template-columns: 1fr;
  }
  .p-what__lottie {
    width: min(520px, 88vw);
  }
}

.p-flowmix {
  background-color: #F2F5F8;
  padding: clamp(25px, 5vw, 50px) 0;
  /* 下：画像ボード */
}
.p-flowmix__head {
  position: relative;
  z-index: 1;
}
.p-flowmix__inner {
  background: #fff;
  padding: 28px 20px;
}
@media (max-width: 768px) {
  .p-flowmix__inner {
    padding: 10px 8px;
  }
}
.p-flowmix__title {
  border-radius: 5px;
  background-color: #185BCC;
  /* 置き換え */
  margin: 0 0 clamp(24px, 4.5vw, 60px);
  text-align: center;
  color: #fff;
  display: flex;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2.2vw, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.p-flowmix__hero {
  display: grid;
  justify-items: center;
  gap: 73px;
}
@media (max-width: 768px) {
  .p-flowmix__hero {
    gap: 30px;
  }
}
.p-flowmix__fromto {
  margin-right: 55px;
  max-width: 675.16px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-flowmix__fromto {
    margin-right: 0;
  }
}
.p-flowmix__fromto img {
  width: 100%;
}
.p-flowmix__pill {
  position: relative;
  display: flex;
  max-width: 900px;
  width: 100%;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #00509D;
  font-size: clamp(18px, 1.8vw, 26px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 39px */
  border-radius: 10px;
  border: 2px solid #00509D;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-flowmix__pill {
    text-align: center;
    padding: 10px 0;
  }
}
.p-flowmix__figure {
  margin-top: -10%;
  width: 100%;
}
.p-flowmix__figure img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-flowmix__figure {
    margin-top: -25%;
  }
}
@media (max-width: 1024px) {
  .p-flowmix__fromto {
    grid-auto-flow: row;
  }
}

/* 既存の視覚的非表示ユーティリティ */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/* object/project/_service.scss */
.p-service {
  background: #F2F5F8;
  padding: clamp(50px, 10vw, 100px) 0;
}
.p-service__panel {
  margin-top: 60px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 10px 20px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
}
.p-service__ribbon {
  background-color: #185BCC;
  border-radius: 10px;
  /* 置き換え */
  margin: 0 0 clamp(24px, 3.5vw, 40px);
  text-align: center;
  color: #fff;
  display: flex;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 1.8vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.p-service__logos {
  margin: 0 0 clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px) 0;
  align-items: center;
  justify-content: center;
}
.p-service__logos.--mb0 {
  margin-bottom: 0;
}
.p-service__logos.--tri {
  gap: clamp(12px, 2vw, 20px) 1px;
}
.p-service__logos li {
  text-align: center;
  width: 25%;
}
.p-service__logos img {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-service__logos {
    justify-content: flex-start;
  }
  .p-service__logos.--tri {
    gap: clamp(12px, 2vw, 20px) 0;
  }
  .p-service__logos li {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .p-service__panel {
    margin-top: 30px;
    padding: 20px;
  }
}

.p-performance {
  background: #E8EFFA;
  padding: clamp(50px, 10vw, 100px) 0;
}
.p-performance__list {
  margin-top: 113px;
  display: grid;
  gap: 50px;
  color: #00509D;
}
.p-performance__item {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  /* 左テキスト / 右グラフ画像 */
  gap: 35px;
}
@media (max-width: 768px) {
  .p-performance__item {
    grid-template-columns: 1fr;
  }
}
.p-performance__value {
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Montserrat Alternates", "Fustat", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(70px, 12.2vw, 170px);
  line-height: 1;
}
.p-performance__value span {
  font-family: "Montserrat Alternates", "Fustat", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(14px, 2.2vw, 30px);
}
.p-performance__value span span {
  font-family: "Montserrat Alternates", "Fustat", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(12px, 1.6vw, 22px);
}
.p-performance__heading {
  font-size: clamp(15px, 2.6vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
}
.p-performance__desc {
  text-align: justify;
  font-size: clamp(10px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 2;
}
.p-performance__desc span {
  font-size: clamp(10px, 1.4vw, 15px);
  display: block;
  margin-top: 6px;
}
.p-performance__graph {
  margin: 0;
  align-self: center;
}
.p-performance__graph img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .p-performance__left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .p-performance__list {
    margin-top: 30px;
    gap: 30px;
  }
  .p-performance__heading {
    margin-bottom: 0px;
  }
  .p-performance__value {
    gap: 0;
  }
  .p-performance__item {
    gap: 10px;
  }
}

.p-option {
  background: #F2F5F8;
  padding: clamp(50px, 10vw, 100px) 0;
}
.p-option__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 40px);
}
@media (max-width: 768px) {
  .p-option__grid {
    grid-template-columns: 1fr;
  }
}
.p-option__card {
  background: #fff;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  justify-items: center;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.p-option__card:hover {
  transform: translateY(-2px);
}
.p-option__media {
  width: min(380px, 80%);
  aspect-ratio: 4/3;
  margin-bottom: clamp(12px, 2.4vw, 20px);
}
.p-option__lottie {
  width: 100%;
  height: 100%;
  display: block;
}
.p-option__title {
  color: #00296B;
  text-align: center;
  font-size: clamp(25px, 2.2vw, 30px);
  font-weight: 700;
  margin: 20px 0;
}
.p-option__desc {
  text-align: left;
  color: #000;
  font-size: clamp(14px, 1.8vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}
@media (prefers-reduced-motion: reduce) {
  .p-option__lottie {
    animation: none !important;
  }
}
@media (max-width: 768px) {
  .p-option__grid {
    margin-top: 30px;
  }
}

.p-plan {
  padding: clamp(50px, 10vw, 100px) 0 clamp(80px, 15vw, 150px);
  background: #fff;
  /* ヘッダー（濃い青、白文字） */
  /* タイトル：40px到達/固定 */
  /* 想定期間の細い帯 */
  /* 説明文 */
}
.p-plan__grid {
  margin-top: 55px;
}
.p-plan__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  border: 3px solid #185BCC;
  box-shadow: 0 4px 20px 0 rgba(36, 55, 223, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-plan__head {
  background: #185BCC;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-plan__head {
    padding: 10px;
  }
}
.p-plan__title {
  margin: 0;
  line-height: 1.2;
  font-family: "Fustat", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 2.2vw, 30px);
}
@media (min-width: 1400px) {
  .p-plan__title {
    font-size: 30px;
  }
}
.p-plan__body {
  padding: 20px;
}
@media (max-width: 768px) {
  .p-plan__body {
    padding: 20px 10px;
  }
}
.p-plan__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  gap: 16px;
}
@media (max-width: 768px) {
  .p-plan__price {
    min-height: 100px;
    gap: 8px;
  }
}
.p-plan__price__num {
  color: #185BCC;
  text-align: center;
  font-family: Fustat;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-plan__price__num span {
  font-size: 50%;
}
.p-plan__price__disc {
  line-height: 1;
  color: #000;
  text-align: center;
  font-family: Fustat;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: bold;
  text-decoration-line: line-through;
}
.p-plan__price__banner {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  padding: 7px 20px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  align-self: stretch;
  line-height: 1;
  border-radius: 999px;
  background: var(--sub, linear-gradient(94deg, #FFD500 0%, #D35235 100%));
}
.p-plan__price__banner span {
  line-height: 1;
  color: #FFF;
  text-align: center;
  font-family: "Montserrat Alternates";
  font-size: clamp(14px, 2.2vw, 30px);
  font-style: normal;
  font-weight: 500;
}
.p-plan__badge {
  background: #185BCC;
  margin-bottom: 20px;
  padding: 10px 0;
  text-align: center;
  color: #FFF;
  font-size: clamp(14px, 1.6vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.p-plan__intro {
  text-align: left;
  color: #000;
  font-size: clamp(14px, 1.6vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 20px 0;
  min-height: 109px;
}
@media (min-width: 1400px) {
  .p-plan__intro {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .p-plan__intro {
    min-height: 90px;
  }
}
.p-plan__list {
  margin-top: 20px;
  border-top: 1px solid #185BCC;
  display: grid;
  gap: 20px;
  padding: 30px 10px 20px;
  list-style: none;
  color: #001226;
  font-size: clamp(14px, 1.6vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .p-plan__list {
    gap: 15px;
  }
}
.p-plan__list li {
  position: relative;
  padding-left: 36px;
}
.p-plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M14 0C6.31039 0 0 6.31039 0 14C0 21.6896 6.31039 28 14 28C21.6896 28 28 21.6896 28 14C28 6.31039 21.6896 0 14 0ZM12.3057 20.3678L6.17498 14.2371L8.49494 11.9172L12.4131 15.8353L20.2789 8.68481L22.4867 11.1121L12.3057 20.3678Z' fill='%23FDC500'/%3E%3C/svg%3E");
}
.p-plan__list li.is-disactive {
  color: #A3A3A3;
}
.p-plan__list li.is-disactive::before {
  content: none;
}
@media (max-width: 768px) {
  .p-plan__list li {
    padding-left: 30px;
  }
  .p-plan__list li::before {
    width: 20px;
    height: 20px;
  }
}

.p-plan {
  /* ----- Options Panel ----- */
  /* 青い帯リボン */
}
.p-plan__plus {
  display: grid;
  place-items: center;
  color: #185BCC;
  /* ← ここで色をコントロール */
  margin: clamp(40px, 6vw, 60px) 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}
.p-plan__plus-icon {
  width: clamp(40px, 6vw, 80px);
  /* 画像と同じ最大80px */
  height: auto;
  display: block;
}
.p-plan__options {
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  border: 3px solid #185BCC;
  box-shadow: 0 4px 20px 0 rgba(36, 55, 223, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-plan__ribbon {
  background: #185BCC;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  font-size: clamp(16px, 2.9vw, 40px);
}
@media (min-width: 1400px) {
  .p-plan__ribbon {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .p-plan__ribbon {
    padding: 16px;
  }
}
.p-plan__optgrid {
  padding: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
}
@media (max-width: 768px) {
  .p-plan__optgrid {
    grid-template-columns: 1fr;
  }
}
.p-plan__optcard {
  padding: clamp(20px, 4vw, 40px);
  border-radius: 10px;
  border: 1px solid #97B1DE;
  background: #FFF;
}
.p-plan__opttitle {
  color: var(--BLUE01, #185BCC);
  text-align: center;
  font-size: clamp(20px, 2.2vw, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-plan__opttitle {
    margin-bottom: 10px;
  }
}
.p-plan__opttitle .p-plan__optsub {
  display: block;
  font-size: clamp(15px, 1.8vw, 20px);
}
.p-plan__optdesc {
  color: #00296B;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 1.9;
  text-align: justify;
}

.p-plan .swiper-slide {
  height: auto;
  width: 380px;
}
@media (max-width: 560px) {
  .p-plan .swiper-slide {
    width: auto;
  }
}
.p-plan .swiper-slide .p-pricing__card {
  height: 100%;
}
@media (max-width: 560px) {
  .p-plan .l-container--swiper {
    width: 100%;
  }
}

.p-contact {
  /* 背景：深いブルーのプレーン（うっすらグラデ） */
  background: #185BCC;
  color: #fff;
  /* ボタンは白ベースのピル形（既存c-buttonを上書き） */
}
.p-contact__inner {
  position: relative;
  overflow: hidden;
  padding: 143px 0 160px;
}
.p-contact__title {
  font-weight: 700;
  font-family: "Fustat", "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.45;
  margin-bottom: 12px;
}
.p-contact__lead {
  color: var(--white, #FFF);
  font-size: clamp(14px, 1.8vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.66;
}
.p-contact__actions {
  margin-top: 60px;
  display: flex;
  gap: 12px;
}
.p-contact__button {
  --btn-bg: #fff;
  --btn-color: #185BCC;
  --btn-bd: transparent;
  gap: 36px;
  padding: 20px;
  font-size: clamp(20px, 1.8vw, 20px);
}
.p-contact__button:hover {
  opacity: 0.95;
}
@media (max-width: 768px) {
  .p-contact__button {
    width: 100%;
  }
}
.p-contact__arrow {
  width: 24px;
  height: 24px;
  flex: none;
}
.p-contact__right {
  position: absolute;
  right: 0;
  bottom: -40px;
}
.p-contact__lottie {
  display: block;
  width: min(520px, 42vw);
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .p-contact__inner {
    grid-template-columns: 1fr;
    padding: 70px 0 0;
  }
  .p-contact__right {
    text-align: center;
    position: relative;
    right: 0;
    bottom: -40px;
  }
  .p-contact__lottie {
    margin: 0 auto;
    width: min(560px, 88vw);
  }
  .p-contact__actions {
    justify-content: center;
  }
  .p-contact__left {
    text-align: center;
  }
}

#contact-title {
  margin-top: 20px;
}

.u-hide-sm {
  display: none;
}

@media (min-width: 768px) {
  .u-hide-sm {
    display: inline;
  }
}
.p-form {
  padding: clamp(50px, 10vw, 100px) 0;
  background: #F2F5F8;
  position: relative;
}
.p-form__inner {
  z-index: 1;
  position: relative;
  border-radius: 10px;
  background: #E8EFFA;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 767px) {
  .p-form__inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 16px;
  }
}

form#mail_form * {
  box-sizing: border-box !important;
}

form#mail_form {
  max-width: 935px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.8;
  /* 見出し */
  /* DL行の体裁（ツール標準DLに軽く寄せて整える） */
  /* 必須バッジ */
  /* 同意 */
  /* 送信ボタン */
  /* SP */
}
form#mail_form .p-contactForm__lead {
  margin: 0 0 40px;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  color: #00296B;
  font-size: clamp(20px, 2.2vw, 32px);
}
form#mail_form .p-contactForm__sub {
  color: #000;
  margin: 0 0 40px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
form#mail_form dl {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  gap: 30px 40px;
  border-bottom: 0;
  width: 100%;
}
form#mail_form dl dt {
  width: 100%;
  color: #000;
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  padding: 0;
  margin: 0;
  text-align: left;
  float: none;
  display: flex;
  align-items: center;
  padding-top: 10px;
  justify-content: space-between;
}
form#mail_form dl dt::after {
  content: none;
}
form#mail_form dl dd {
  width: 100%;
  padding: 0;
  margin: 0;
}
form#mail_form dd select,
form#mail_form dd input[type=text],
form#mail_form dd input[type=email],
form#mail_form dd textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 17px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #CCC;
  background: #FFF;
}
form#mail_form dd.--select {
  position: relative;
}
form#mail_form dd.--select::before {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #666;
}
form#mail_form dd textarea {
  min-height: 213px;
}
form#mail_form dd .start-timing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
form#mail_form dd ul.start-timing li label {
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}
form#mail_form dd ul.start-timing li input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin: 0;
  background: #E8EFFA;
}
form#mail_form .req {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  background: #D60F0F;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
  font-size: clamp(14px, 1.8vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
}
form#mail_form .c-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
form#mail_form .p-contactForm__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 8px;
  color: #173158;
  font-weight: 500;
}
form#mail_form .c-check input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  inline-size: auto;
  block-size: auto;
  width: 25px;
  background-color: #F2F5F8;
  height: 24px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 2px solid #CCC;
}
form#mail_form .c-link {
  color: #000;
}
form#mail_form .c-link:hover {
  text-decoration: underline;
}
form#mail_form #form_submit {
  text-align: left;
  margin-top: 70px !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin-left: 225px !important;
  position: relative;
  width: 469px !important;
}
form#mail_form #form_submit::after {
  content: "";
  position: absolute;
  inset-inline-end: 24px;
  inset-block: 0;
  margin-block: auto;
  inline-size: 0.6em;
  block-size: 0.6em;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  pointer-events: none;
}
form#mail_form #form_submit_button {
  margin: 0;
  display: block;
  width: 100%;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  text-align: center;
  background: var(--BLUE01, #185BCC);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  line-height: 1.5;
  transition: transform 0.02s ease, box-shadow 0.2s ease, background-color 0.2s;
}
form#mail_form #form_submit_button:hover {
  filter: brightness(1.05);
}
form#mail_form #form_submit_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 767px) {
  form#mail_form {
    /* 送信ボタン */
  }
  form#mail_form dl {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  form#mail_form dt {
    line-height: 1.6;
  }
  form#mail_form #form_submit {
    margin-left: 0 !important;
    margin: 50px auto 0 !important;
  }
  form#mail_form .p-contactForm__agree {
    padding-left: 0;
  }
}

.p-thanks {
  background-color: #F2F5F8;
  padding: clamp(25px, 5vw, 50px) 0;
  display: grid;
  place-items: center;
}
.p-thanks__inner {
  text-align: center;
  padding: clamp(24px, 4vw, 48px) 16px;
  margin-inline: auto;
}
.p-thanks__lottie {
  width: min(520px, 82vw);
  height: auto;
  margin-inline: auto;
  display: block;
}
.p-thanks__lottieFallback {
  display: none;
  margin: 0 auto clamp(16px, 2vw, 24px);
}
.p-thanks__lottieFallback img {
  width: min(520px, 82vw);
  height: auto;
  display: block;
}
.p-thanks__text {
  margin-top: clamp(8px, 1.2vw, 12px);
}
.p-thanks__lead {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.9;
  font-weight: 600;
  margin: 0 0 6px;
}
.p-thanks__action {
  margin-top: clamp(40px, 6vw, 80px);
}
.p-thanks::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #0a4bff;
  opacity: 0.08;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .p-thanks__lottie {
    display: none !important;
  }
  .p-thanks__lottieFallback {
    display: block !important;
  }
}
.u-visuallyHidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.p-privacy {
  background-color: #F2F5F8;
  padding: clamp(25px, 5vw, 50px) 0;
}
.p-privacy__inner {
  padding: clamp(24px, 4vw, 48px) 16px;
  margin-inline: auto;
}
.p-privacy__txt {
  font-weight: 500;
  line-height: 1.8;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #000;
}
.p-privacy__list {
  margin-top: clamp(30px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
  counter-reset: section;
}
.p-privacy__list li {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 20px);
}
.p-privacy__list h2 {
  color: #00296B;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1;
}
.p-privacy__list p {
  font-weight: 500;
  line-height: 1.8;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #000;
}
.p-privacy__item {
  counter-increment: section;
}
.p-privacy__heading {
  position: relative;
  padding-left: 2em;
  /* 数字分スペース */
}
.p-privacy__heading::before {
  content: counter(section) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8em;
  color: #00296B;
  font-weight: 700;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-sm {
  font-size: 14px !important;
}

.u-color-primary {
  color: #185BCC !important;
}

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

.u-shadow-sm {
  box-shadow: 0 4px 12px rgba(20, 35, 80, 0.08) !important;
}

.u-shadow-md {
  box-shadow: 0 10px 24px rgba(20, 35, 80, 0.15) !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-flex {
  display: flex !important;
}

.u-display-sp {
  display: none !important;
}

.u-display-pc {
  display: inline-flex !important;
}

@media (max-width: 768px) {
  .u-display-sp {
    display: inline-flex !important;
  }
  .u-display-pc {
    display: none !important;
  }
}
.u-w-full {
  width: 100% !important;
}

.u-h-auto {
  height: auto !important;
}/*# sourceMappingURL=style.css.map */