@charset "UTF-8";
/* ==========================================================================
   テキザイ LP — Foundation
   デザインルール準拠：
   - フォント: Noto Sans JP（本文）/ Lato（英字あしらい）/ Noto Serif JP（斜体あしらい）
   - カラー: メイン濃 #223131 / サブ #12E0E6 / アクセント #FF5C2F
             背景サブ #223131 / 背景アクセント #E4F5F6 / 背景白 #EEEEEE
   - 本文: PC 15px / SP 13px, line-height 1.6, MEDIUM/BOLD
   - ジャンプ率: H1 2.15/2.2, H2 1.75/1.8, H3 1.4/1.5, H4 1.2/1.2
   - セクション間余白: PC 100px / SP 80px
   ========================================================================== */
:root {
  /* colors */
  --c-dark: #223131;
  --c-cyan: #12E0E6;
  --c-cyan-deep: #089098;   /* 注目色（明るい背景用） */
  --c-orange: #FF5C2F;      /* 進行色（CTA・ボタン） */
  --c-orange-bright: #FF8A5F; /* 黒地の上で使う明るいオレンジ */
  --c-orange-deep: #d95c00; /* 明るい背景上の強調テキスト用オレンジ */
  --bg-accent: #E4F5F6;
  --bg-base: #EEEEEE;
  --c-white: #fff;
  --c-line: rgba(34, 49, 49, .14);

  /* fonts */
  --font-body: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: 'Lato', sans-serif;
  --font-deco: 'Noto Serif JP', serif;

  /* font size (SP first / 本文13px基準) */
  --fs-h1: 29px;   /* 13 * 2.2 */
  --fs-h2: 23px;   /* 13 * 1.8 */
  --fs-h3: 20px;   /* 13 * 1.5 */
  --fs-h4: 16px;   /* 13 * 1.2 */
  --fs-body: 13px;
  --fs-small: 11px;

  /* spacing */
  --sec-space: 80px;

  /* button */
  --btn-padding: 16px 28px;
  --btn-radius: 999px;
  --btn-bg: var(--c-orange); /* 進行色：CTAはオレンジで統一 */
  --btn-color: #fff;

  --header-h: 60px;
  --animation-duration: .7s;
}

@media (min-width: 768px) {
  :root {
    /* PC 本文15px基準 */
    --fs-h1: 32px;   /* 15 * 2.15 */
    --fs-h2: 26px;   /* 15 * 1.75 */
    --fs-h3: 21px;   /* 15 * 1.4 */
    --fs-h4: 18px;   /* 15 * 1.2 */
    --fs-body: 15px;
    --fs-small: 12px;
    --sec-space: 100px;
    --header-h: 72px;
  }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-dark);
  background: var(--bg-base);
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* 横はみ出しによる右余白を防止 */
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
blockquote { quotes: none; }
section { scroll-margin-top: var(--header-h); }

/* ==========================================================================
   Layout — header
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background .3s ease, box-shadow .3s ease;
}
.l-header.is-scrolled {
  background: rgba(238, 238, 238, .9);
  box-shadow: 0 1px 0 var(--c-line);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px 0 20px;
}
.l-header__logo { display: flex; align-items: center; gap: 8px; }
.l-header__logo-mark { width: 34px; height: 34px; }
.l-header__logo-text {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .08em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.l-header__logo-en {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(34,49,49,.62);
}
.l-header__right { display: flex; align-items: center; gap: 12px; }
.l-header__right .l-header__cta.c-btn { display: none; }
@media (min-width: 768px) {
  .l-header__inner { padding: 0 20px 0 32px; }
  .l-header__logo-mark { width: 40px; height: 40px; }
  .l-header__right .l-header__cta.c-btn { display: inline-block; }
}

/* burger */
.l-header__burger {
  position: relative;
  z-index: 210;
  width: 48px; height: 48px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  background: var(--c-white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .3s ease;
}
.l-header__burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform .35s ease, opacity .3s ease, background .3s ease;
  margin: 2.5px 0;
  grid-area: 1 / 1;
}
.l-header__burger span:nth-child(1) { transform: translateY(-6px); }
.l-header__burger span:nth-child(3) { transform: translateY(6px); }
body.is-menu-open .l-header__burger { background: var(--c-dark); }
body.is-menu-open .l-header__burger span { background: var(--c-cyan); }
body.is-menu-open .l-header__burger span:nth-child(1) { transform: rotate(45deg); }
body.is-menu-open .l-header__burger span:nth-child(2) { opacity: 0; }
body.is-menu-open .l-header__burger span:nth-child(3) { transform: rotate(-45deg); }

/* mega menu */
.l-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 200;
  background:
    radial-gradient(circle at 85% 15%, rgba(18, 224, 230, .12), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 92, 47, .08), transparent 40%),
    var(--c-dark);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  overflow-y: auto;
  padding: calc(var(--header-h) + 24px) 24px 40px;
}
body.is-menu-open .l-menu { opacity: 1; visibility: visible; }
.l-menu__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.l-menu__brand { display: none; }
.l-menu__list { display: grid; gap: 4px; }
.l-menu__link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 8px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px dashed rgba(255,255,255,.15);
  transition: color .3s ease, padding-left .3s ease;
}
.l-menu__link small {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.65);
  margin-left: auto;
}
.l-menu__num {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 12px;
  color: var(--c-cyan);
}
.l-menu__link:hover { color: var(--c-cyan); padding-left: 14px; }
.l-menu__cta {
  border: 1px solid rgba(18,224,230,.35);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  background: rgba(18,224,230,.05);
}
.l-menu__cta-text { font-size: 13px; color: rgba(255,255,255,.85); }
@media (min-width: 768px) {
  .l-menu { padding: calc(var(--header-h) + 40px) 40px 60px; }
  .l-menu__inner {
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: "brand list" "cta list";
    align-items: start;
    gap: 40px 64px;
  }
  .l-menu__brand {
    grid-area: brand;
    display: block;
    border-left: 2px solid var(--c-cyan);
    padding-left: 28px;
  }
  .l-menu__logo { width: 76px; margin-bottom: 16px; filter: drop-shadow(0 0 24px rgba(18,224,230,.35)); }
  .l-menu__brand-name { font-size: 26px; font-weight: 900; letter-spacing: .1em; }
  .l-menu__brand-copy { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.8; }
  .l-menu__brand-tag {
    margin-top: 18px;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: .3em;
    color: rgba(18,224,230,.7);
  }
  .l-menu__list { grid-area: list; }
  .l-menu__cta { grid-area: cta; }
  .l-menu__link { font-size: 16px; padding: 15px 8px; }
}

/* ==========================================================================
   Component
   ========================================================================== */
.c-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.c-container--narrow { max-width: 860px; }
/* セクション見出しは広い幅で開始位置を統一し、表・フォーム系UIのみ狭い幅に収める */
.c-narrow { max-width: 820px; margin: 0 auto; }

/* button */
.c-btn {
  display: inline-block;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  border: none;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  box-shadow: 0 6px 18px rgba(255,92,47,.35);
}
.c-btn:hover {
  transform: translateY(-2px);
  background: #ff6f43;
  box-shadow: 0 10px 28px rgba(255,92,47,.45);
}
.c-btn--accent {
  background: var(--c-orange);
  box-shadow: 0 6px 18px rgba(255,92,47,.35);
}
.c-btn--accent:hover { box-shadow: 0 10px 28px rgba(255,92,47,.45); }
.c-btn--small { padding: 10px 22px; font-size: 12px; }
.c-btn--large { padding: 20px 48px; font-size: 16px; }
@media (min-width: 768px) {
  .c-btn { font-size: 15px; }
  .c-btn--large { padding: 24px 64px; font-size: 17px; }
}

/* section head */
.c-sec-head { margin-bottom: 40px; }
@media (min-width: 768px) { .c-sec-head { margin-bottom: 56px; } }
.c-sec-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 34px;
  letter-spacing: .12em;
  line-height: 1;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* SPでラベルがはみ出す場合は折り返す */
  gap: 10px 14px;
  margin-bottom: 18px;
}
.c-sec-label::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--c-dark);
  flex: none;
}
.c-sec-label__jp {
  font-family: var(--font-deco);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-cyan);
  background: var(--c-dark);
  padding: 4px 12px;
  border-radius: 2px;
  transform: rotate(-4deg) translateY(2px);
  display: inline-block;
  white-space: nowrap;
}
.c-sec-label--cyan { color: var(--c-cyan); }
.c-sec-label--cyan::before { background: var(--c-cyan); }
.c-sec-label--cyan .c-sec-label__jp {
  color: var(--c-dark);
  background: var(--c-cyan);
}
@media (min-width: 768px) {
  .c-sec-label { font-size: 52px; }
  .c-sec-label::before { width: 56px; }
  .c-sec-label__jp { font-size: 14px; }
}
.c-sec-title {
  font-size: var(--fs-h2);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .04em;
}
.c-sec-title em {
  font-style: normal;
  color: var(--c-cyan-deep); /* 注目色 */
  text-shadow: none;
}
.c-sec-head--light .c-sec-title { color: #fff; }
.c-sec-lead { margin-top: 18px; max-width: 720px; }
.c-sec-head--light .c-sec-lead { color: rgba(255,255,255,.85); }

/* 見出しの真ん中寄せルール：横棒なし・日本語チップは英字の下に水平配置 */
.c-sec-head--center { text-align: center; }
.c-sec-head--center .c-sec-label {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.c-sec-head--center .c-sec-label::before { display: none; }
.c-sec-head--center .c-sec-label__jp { transform: none; }
.c-sec-head--center .c-sec-lead { margin-left: auto; margin-right: auto; }

/* あしらいタグ（Noto Serif 斜体風） */
.c-deco-tag {
  font-family: var(--font-deco);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(34,49,49,.55);
  transform: rotate(-3deg);
  display: inline-block;
  margin-top: 14px;
  padding-left: 20px;
  position: relative;
}
.c-deco-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--c-orange);
}

/* fixed CTA (SP) */
.c-fixed-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(238,238,238,.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-line);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform .4s ease, visibility .4s ease;
}
.c-fixed-cta.is-visible { transform: translateY(0); visibility: visible; }
.c-fixed-cta__btn { display: block; width: 100%; }
@media (min-width: 768px) { .c-fixed-cta { display: none; } }

/* fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--animation-duration) ease, transform var(--animation-duration) ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .p-fv__ticker-track { animation-play-state: paused; }
}

/* ==========================================================================
   Project — FV / CTA（画像＋absoluteボタン構造）
   ========================================================================== */
.p-fv,
.p-cta-section {
  width: 100%;
}
.p-fv { padding-top: var(--header-h); }
.p-fv__inner,
.p-cta-section__inner { position: relative; width: 100%; }
.p-fv__image,
.p-cta-section__image { width: 100%; height: auto; display: block; }
.p-fv__ticker {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 61%;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.p-fv__ticker-track {
  display: flex;
  width: max-content;
  animation: fv-ticker 36s linear infinite;
  will-change: transform;
}
.p-fv__ticker-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}
.p-fv__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  flex: none;
  background: #fff;
  border-radius: 999px;
  padding: .14em .95em;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--c-dark);
  box-shadow: 0 6px 18px rgba(34,49,49,.14);
  white-space: nowrap;
}
.p-fv__ticker-item img {
  width: 28px;
  height: 28px;
  max-width: none;
  flex: none;
}
@keyframes fv-ticker {
  to { transform: translate3d(-50%, 0, 0); }
}

/* FV サブコピー帯（PCのみHTMLで重ねる：canvasより上に表示して透け防止） */
.p-fv__copy { display: none; }
@media (min-width: 768px) {
  .p-fv__copy {
    display: grid;
    position: absolute;
    left: 9.15%;
    top: 53.6%;
    z-index: 2;
    justify-items: start;
    gap: .35vw;
    pointer-events: none;
  }
  .p-fv__copy-line {
    background: var(--c-dark);
    color: #fff;
    font-weight: 700;
    font-size: 1.285vw; /* 画像と同比率でスケールさせる（clamp下限があると狭幅で下の要素を飲み込むため） */
    letter-spacing: .05em;
    line-height: 1;
    padding: .26em .5em .3em;
    white-space: nowrap;
  }
  .p-fv__copy-line em { font-style: normal; color: var(--c-cyan); }
  .p-fv__copy-line strong { font-weight: 700; color: var(--c-orange); }
  .p-fv__copy-line-big { font-size: 1.4em; font-weight: 900; }
}

/* 3Dシャード演出（PCのみ・FV右側）— 画像の三角形デザインを覆って3D化 */
.p-fv__particles {
  display: none;
  position: absolute;
  top: 0; right: 0;
  width: 66%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: #eeeeee; /* 画像側の静的アートを覆う */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%);
  mask-image: linear-gradient(90deg, transparent, #000 16%);
}
@media (min-width: 768px) {
  .p-fv__particles { display: block; }
}

/* FV：タイプ表示ピル（PC画像内の絵文字ピルを新アイコンで置き換え） */
.p-fv__labels { display: none; }
@media (min-width: 768px) {
  .p-fv__labels {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }
  .p-fv__label {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: .45em;
    background: #fff;
    border-radius: 999px;
    padding: .5em 1.05em;
    font-weight: 900;
    font-size: clamp(11px, 1.05vw, 16px);
    letter-spacing: .04em;
    color: var(--c-dark);
    box-shadow: 0 6px 18px rgba(34,49,49,.14);
    white-space: nowrap;
  }
  .p-fv__label img { width: 1.15em; height: 1.15em; }
  /* 浮遊アニメーションはJS側（ランダム軌道）で制御 */
}

/* 画像内の描き込みボタンを覆う実体ボタン（進行色オレンジ） */
.p-fv__btn,
.p-cta-section__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-orange);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(255,92,47,.4);
  transition: box-shadow .3s ease, background .3s ease, transform .3s ease;
  z-index: 2;
}
.p-fv__btn-label {
  font-weight: 700;
  font-size: clamp(12px, 3.4vw, 15px);
  letter-spacing: .04em;
  white-space: nowrap;
}
.p-fv__btn-label::after {
  content: '→';
  margin-left: 8px;
  font-family: var(--font-en);
}
.p-fv__btn:hover,
.p-cta-section__btn:hover {
  background: #ff6f43;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,92,47,.5);
}
/* CTAセクション：CVボタン2種（同サイズ・SP縦積み／PC横並び） */
.p-cta-section { background: #e2f2f3; }
.p-cta-section__btns {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: -25vw;
  padding: 0 20px 30px;
}
.p-cta-section__cv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 340px);
  padding: 16px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.p-cta-section__cv svg { width: 20px; height: 20px; flex: none; }
.p-cta-section__cv--orange {
  background: var(--c-orange);
  box-shadow: 0 6px 18px rgba(255, 92, 47, .35);
}
.p-cta-section__cv--orange::after {
  content: '→';
  font-family: var(--font-en);
  margin-left: 2px;
}
.p-cta-section__cv--orange:hover {
  transform: translateY(-2px);
  background: #ff6f43;
  box-shadow: 0 10px 28px rgba(255, 92, 47, .45);
}
.p-cta-section__cv--line {
  background: #06C755;
  box-shadow: 0 6px 18px rgba(6, 199, 85, .35);
}
.p-cta-section__cv--line:hover {
  transform: translateY(-2px);
  background: #1fd166;
  box-shadow: 0 10px 28px rgba(6, 199, 85, .45);
}
/* LINE特典オファー（CV訴求：6タイプ別求人例文プレゼント） */
.p-cta-section__line-offer {
  margin-top: 8px;
  width: min(100%, 560px);
  background: #fff;
  border: 1px solid rgba(6, 199, 85, .45);
  border-radius: 8px;
  padding: 22px 20px 24px;
  display: grid;
  gap: 14px;
  justify-items: center;
  box-shadow: 0 8px 24px rgba(34, 49, 49, .08);
}
.p-cta-section__line-tag {
  display: inline-block;
  background: #06C755;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 4px 14px;
  border-radius: 999px;
}
.p-cta-section__line-copy {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.75;
}
.p-cta-section__line-copy strong { color: #059a46; }
@media (min-width: 768px) {
  .p-cta-section__btns { gap: 20px; margin-top: -24.5vw; padding-bottom: 40px; }
  .p-cta-section__cv { width: 340px; font-size: 15px; padding: 18px 10px; }
  .p-cta-section__line-offer { padding: 26px 32px 28px; }
  .p-cta-section__line-copy { font-size: 16px; }
}

/* SP-MV: ボタン位置（画像 1480x1532 実測） */
.p-fv__btn { left: 14.5%; right: 15%; top: 78.8%; height: 11.9%; }
@media (min-width: 768px) {
  .p-fv__ticker { display: none; }
  .p-fv__btn-label { font-size: clamp(13px, 1.15vw, 17px); }
  /* PC-MV: 2880x1200 実測比率 */
  .p-fv__btn { left: 8.6%; right: auto; width: 21.3%; top: 74.5%; height: 10.5%; }
}

/* ==========================================================================
   Project — 2. Problem
   ========================================================================== */
.p-problem {
  position: relative;
  background: var(--c-white);
  padding: var(--sec-space) 0;
  overflow: hidden;
}
.p-problem__grid { display: grid; gap: 36px; }
.p-problem__lead { margin-bottom: 24px; }
.p-problem__list { display: grid; gap: 12px; }
.p-problem__item {
  background: none;
  border: none;
  border-left: 3px solid var(--c-cyan-deep);
  border-radius: 0;
  padding: 6px 18px;
  position: relative;
  font-weight: 500;
}
.p-problem__item strong { color: var(--c-orange-deep); font-size: 1.12em; font-weight: 700; }
/* PROBLEM見出しの強調（"欲しい人"）を大きく */
.p-problem .c-sec-title em { font-size: 1.18em; }
.p-problem__figure img {
  border-radius: 4px;
  border: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .p-problem__grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
  }
  .p-problem__item { padding: 8px 24px; }
}

/* ==========================================================================
   Project — 3. Solution（背景アクセント）
   ========================================================================== */
.p-solution {
  background:
    linear-gradient(rgba(18,224,230,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,224,230,.05) 1px, transparent 1px),
    var(--bg-accent);
  background-size: 32px 32px, 32px 32px, auto;
  padding: var(--sec-space) 0;
}
.p-solution__lab {
  position: relative;
}
.p-solution__bubble {
  margin: 0 auto 8px;
  max-width: 520px;
  background: var(--c-dark);
  color: #fff;
  border-radius: 4px;
  padding: 18px 22px;
  text-align: center;
  position: relative;
  font-weight: 700;
  font-size: 14px;
}
.p-solution__bubble::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: var(--c-dark);
  border-bottom: none;
}
.p-solution__bubble-from {
  display: block;
  margin-top: 6px;
  font-family: var(--font-deco);
  font-weight: 500;
  font-size: 10px;
  color: rgba(255,255,255,.78);
  letter-spacing: .1em;
}
.p-solution__types {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  counter-reset: personality;
}
.p-solution__type {
  counter-increment: personality;
  --segment-color: var(--c-cyan);
  --segment-tint: #eefcfc;
  border: none;
  border-left: 3px solid var(--segment-color);
  border-radius: 0 4px 4px 0;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(34,49,49,.05);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
/* 左ライン・見出し文字カラーはアイコンの色に合わせる（視認性の低い色は明度を調整） */
.p-solution__type:nth-child(1) { --segment-color: #0b57c2; --segment-tint: #eaf1fc; } /* 思考型：青 */
.p-solution__type:nth-child(2) { --segment-color: #703898; --segment-tint: #f4edf9; } /* 信念型：紫 */
.p-solution__type:nth-child(3) { --segment-color: #d95c00; --segment-tint: #fff1e8; } /* 共感型：オレンジ */
.p-solution__type:nth-child(4) { --segment-color: #786048; --segment-tint: #f4f0ec; } /* 内省型：ブラウン */
.p-solution__type:nth-child(5) { --segment-color: #a8862e; --segment-tint: #f9f4e8; } /* 直感型：黄→ベージュ（明度を下げて視認性UP） */
.p-solution__type:nth-child(6) { --segment-color: #d41d1d; --segment-tint: #fdecec; } /* 挑戦型：赤 */
.p-solution__type:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(34,49,49,.12);
}
/* 丸囲みはやめてアイコンのみ・大きく表示 */
.p-solution__type-emoji { display: inline-block; }
.p-solution__type-emoji img { width: 36px; height: 36px; display: block; }
.p-case__badge-icon { display: inline-block; vertical-align: -6px; margin-right: 4px; }
.p-solution__type-name {
  display: inline-block;
  margin-left: 10px;
  font-weight: 900;
  font-size: 18px;
  vertical-align: 8px;
  color: var(--segment-color);
}
/* タイプごとの小見出し（重視ポイント） */
.p-solution__type-focus {
  margin-top: 10px;
  font-weight: 900;
  font-size: 14px;
  color: var(--c-dark);
}
.p-solution__type-say {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(34,49,49,.85);
  border-top: 1px solid color-mix(in srgb, var(--segment-color) 22%, transparent);
  padding-top: 10px;
  display: grid;
  gap: 4px;
}
.p-solution__type-say li {
  position: relative;
  padding-left: 14px;
}
.p-solution__type-say li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--segment-color);
}
.p-solution__bridge {
  margin-top: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,.65);
  border-left: 3px solid var(--c-cyan);
  padding: 22px 24px;
  border-radius: 0 4px 4px 0;
}
.p-solution__bridge strong {
  font-size: 1.12em;
  font-weight: 900;
  background: linear-gradient(transparent 68%, rgba(255,92,47,.4) 68%);
}
@media (min-width: 768px) {
  .p-solution__lab { padding: 0; }
  .p-solution__types { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .p-solution__type { padding: 20px; }
  .p-solution__type-emoji img { width: 42px; height: 42px; }
  .p-solution__type-name { font-size: 20px; vertical-align: 10px; }
  .p-solution__type-focus { font-size: 15px; }
  .p-solution__type-say { font-size: 13px; }
  .p-solution__bubble { font-size: 17px; padding: 22px 32px; }
  .p-solution__bridge { padding: 28px 36px; }
}

/* ==========================================================================
   Project — 4. Evidence
   ========================================================================== */
.p-evidence {
  position: relative;
  background: var(--c-white);
  padding: var(--sec-space) 0;
  overflow: hidden;
}
.p-evidence__grid { display: grid; gap: 36px; }
.p-evidence__figure img { border-radius: 4px; border: 1px solid var(--c-line); }
.p-evidence__lead { margin-bottom: 28px; }
.p-evidence__lead strong { color: var(--c-cyan-deep); }
.p-evidence__list { display: grid; gap: 20px; }
.p-evidence__item {
  --evidence-color: #078e96;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px dashed var(--c-line);
  padding-bottom: 20px;
}
.p-evidence__item:nth-child(1) { --evidence-color: #078e96; }
.p-evidence__item:nth-child(2) { --evidence-color: #df7045; }
.p-evidence__item:nth-child(3) { --evidence-color: #536bd8; }
.p-evidence__item:last-child { border-bottom: none; padding-bottom: 0; }
.p-evidence__num {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
  color: var(--evidence-color);
  flex: none;
  padding-top: 2px;
}
.p-evidence__item-title {
  display: inline;
  font-size: var(--fs-h4);
  font-weight: 700;
}
.p-evidence__item-title + p { margin-top: 6px; }
@media (min-width: 768px) {
  .p-evidence__grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    align-items: center;
  }
  .p-evidence__num { font-size: 38px; }
}

/* ==========================================================================
   Project — 5. Service（ダーク・近未来ラボ）
   ========================================================================== */
.p-service {
  background:
    radial-gradient(circle at 90% 5%, rgba(18,224,230,.14), transparent 40%),
    radial-gradient(circle at 5% 95%, rgba(255,92,47,.1), transparent 35%),
    linear-gradient(rgba(18,224,230,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,224,230,.04) 1px, transparent 1px),
    var(--c-dark);
  background-size: auto, auto, 40px 40px, 40px 40px, auto;
  padding: var(--sec-space) 0;
  color: #fff;
}
.p-service .c-sec-title em { color: var(--c-cyan); text-shadow: none; }
.p-service__cards { display: grid; gap: 20px; align-items: stretch; }
.p-service__card {
  --feature-color: #078e96;
  background: rgba(255,255,255,.97);
  color: var(--c-dark);
  border-radius: 6px;
  padding: 24px 22px 28px;
  border: 1px solid rgba(255,255,255,.16);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.p-service__card:nth-child(1) { --feature-color: #078e96; }
.p-service__card:nth-child(2) { --feature-color: #db5b33; }
.p-service__card:nth-child(3) { --feature-color: #536bd8; }
.p-service__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(0,0,0,.35),
    0 0 0 1px color-mix(in srgb, var(--feature-color) 55%, transparent);
}
.p-service__card-num {
  align-self: flex-start;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--feature-color);
  margin-bottom: 14px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--feature-color);
}
.p-service__card-figure {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--bg-accent);
}
.p-service__card-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.p-service__card-title {
  position: relative;
  font-size: var(--fs-h4);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-bottom: 12px;
  color: var(--feature-color);
}
.p-service__card-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--feature-color);
}
.p-service__card-text { font-size: var(--fs-body); color: rgba(34,49,49,.9); }
@media (min-width: 768px) {
  .p-service__cards { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .p-service__card { padding: 28px 26px 34px; }
}

/* ==========================================================================
   Project — 6. Case
   ========================================================================== */
.p-case {
  position: relative;
  background: var(--bg-base);
  padding: var(--sec-space) 0;
  overflow: hidden;
}
.p-case__before {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 24px 22px;
  position: relative;
}
.p-case__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.p-case__badge span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 5px 14px;
  border-radius: 999px;
}
.p-case__badge span .p-case__badge-icon { vertical-align: middle; margin-right: 6px; }
.p-case__badge--before { color: rgba(34,49,49,.72); }
.p-case__badge--before span { background: var(--bg-base); color: rgba(34,49,49,.7); }
.p-case__badge--after { color: var(--c-cyan); }
.p-case__badge--after span { background: rgba(18,224,230,.12); color: var(--c-dark); }
.p-case__badge--orange { color: var(--c-orange); }
.p-case__badge--orange span { background: rgba(255,92,47,.1); }
.p-case__quote {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  padding: 16px 18px;
  background: var(--bg-base);
  border-radius: 3px;
}
.p-case__before .p-case__quote { color: rgba(34,49,49,.65); }
.p-case__note { margin-top: 12px; font-size: var(--fs-small); color: rgba(34,49,49,.7); }
.p-case__note--good { color: var(--c-dark); font-weight: 700; }
.p-case__arrow {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 24px auto;
  color: var(--c-orange);
}
.p-case__arrow-label {
  font-family: var(--font-deco);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .15em;
  transform: rotate(-3deg);
  color: var(--c-dark);
}
.p-case__arrow-icon { width: 36px; height: 36px; animation: arrow-bob 1.8s ease-in-out infinite; }
@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.p-case__afters { display: grid; gap: 20px; }
.p-case__after {
  --case-color: #078e96;
  --case-tint: #e9f9fa;
  background: #fff;
  border-radius: 6px;
  padding: 24px 22px;
  border: 1px solid color-mix(in srgb, var(--case-color) 35%, var(--c-line));
  box-shadow: 0 8px 24px rgba(34,49,49,.08);
}
.p-case__after--thinker { --case-color: #0b57c2; --case-tint: #eaf1fc; } /* 思考型：SOLUTIONと同じ青に統一 */
.p-case__after--harmonizer { --case-color: #df7045; --case-tint: #fff0ea; }
.p-case__badge--after,
.p-case__badge--orange { color: var(--case-color); }
.p-case__badge--after span,
.p-case__badge--orange span {
  background: var(--case-tint);
  color: var(--c-dark);
}
.p-case__after .p-case__quote,
.p-case__after--harmonizer .p-case__quote {
  background: var(--case-tint);
  border-left: 3px solid var(--case-color);
  border-radius: 0 3px 3px 0;
}
/* AFTER原稿内のキーワード強調 */
.p-case__after .p-case__quote strong { color: var(--case-color); }
/* AFTERごとのPoint解説 */
.p-case__point {
  margin-top: 16px;
  padding: 14px 16px 16px;
  border: 1px dashed color-mix(in srgb, var(--case-color) 50%, transparent);
  border-radius: 4px;
}
.p-case__point-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--case-color);
  margin-bottom: 8px;
}
.p-case__point-title::before {
  content: '';
  flex: none;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--case-color);
}
.p-case__point-text {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(34,49,49,.85);
}
.p-case__point-text strong { color: var(--case-color); }
@media (min-width: 768px) {
  .p-case__afters { grid-template-columns: 1fr 1fr; gap: 28px; }
  .p-case__before { padding: 30px 34px; }
  .p-case__after { padding: 30px 30px 34px; }
  .p-case__quote { font-size: 15px; }
  .p-case__point-title { font-size: 16px; }
  .p-case__point-text { font-size: 13px; }
}

/* ==========================================================================
   Project — 7. FAQ
   ========================================================================== */
.p-faq { background: var(--c-white); padding: var(--sec-space) 0; }
.p-faq__list { display: grid; gap: 14px; }
.p-faq__item {
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.p-faq__item:has(.js-accordion[aria-expanded="true"]) { box-shadow: 0 8px 24px rgba(34,49,49,.08); }
.p-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-dark);
  padding: 18px 52px 18px 18px;
  position: relative;
  line-height: 1.5;
}
.p-faq__q-mark {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 18px;
  color: var(--c-cyan);
  flex: none;
}
.p-faq__toggle {
  position: absolute;
  right: 18px; top: 50%;
  width: 22px; height: 22px;
  transform: translateY(-50%);
}
.p-faq__toggle::before,
.p-faq__toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--c-orange);
  transition: transform .35s ease;
}
.p-faq__toggle::before { width: 14px; height: 2px; }
.p-faq__toggle::after { width: 2px; height: 14px; }
.js-accordion[aria-expanded="true"] .p-faq__toggle::after { transform: rotate(90deg); }
.p-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.p-faq__a > * { overflow: hidden; min-height: 0; }
.js-accordion[aria-expanded="true"] + .p-faq__a { grid-template-rows: 1fr; }
.p-faq__a-inner {
  display: flex;
  gap: 14px;
  margin: 0 18px;
  padding: 0;
  border-top: 1px dashed transparent;
  transition: padding .4s ease, border-color .4s ease;
}
.js-accordion[aria-expanded="true"] + .p-faq__a .p-faq__a-inner {
  padding: 16px 0 20px;
  border-top-color: var(--c-line);
}
.p-faq__a-mark {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 18px;
  color: var(--c-cyan-deep);
  flex: none;
}
@media (min-width: 768px) {
  .p-faq__q { font-size: 16px; padding: 22px 60px 22px 24px; }
  .p-faq__a-inner { margin: 0 24px; }
}

/* ==========================================================================
   Project — 8. Price
   ========================================================================== */
.p-price {
  background:
    linear-gradient(rgba(18,224,230,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,224,230,.05) 1px, transparent 1px),
    var(--bg-accent);
  background-size: 32px 32px, 32px 32px, auto;
  padding: var(--sec-space) 0;
}
.p-price__plan {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(34,49,49,.12);
  border: 1px solid var(--c-line);
}
.p-price__plan-head {
  background:
    radial-gradient(circle at 85% 20%, rgba(18,224,230,.25), transparent 50%),
    var(--c-dark);
  color: #fff;
  text-align: center;
  padding: 32px 20px;
}
.p-price__plan-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--c-cyan);
  margin-bottom: 10px;
}
.p-price__plan-price {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 52px;
  line-height: 1.1;
}
.p-price__plan-yen { font-size: 28px; margin-right: 2px; }
.p-price__plan-tax {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.8);
}
.p-price__plan-badge {
  display: inline-block;
  margin-top: 16px;
  background: var(--c-cyan); /* 注目色 */
  color: var(--c-dark);
  font-weight: 900;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(18,224,230,.35);
}
.p-price__plan-body { padding: 26px 22px 30px; text-align: center; }
/* 含まれる内容：図解グリッド */
.p-price__flow {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.p-price__flow-item {
  position: relative;
  background: var(--bg-accent);
  border-radius: 4px;
  padding: 18px 14px 16px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}
.p-price__flow-item--pickup {
  background: var(--c-dark);
  color: #fff;
}
.p-price__flow-item--pickup .p-price__flow-name { color: var(--c-cyan); }
.p-price__flow-item--pickup .p-price__flow-text { color: rgba(255,255,255,.8); }
.p-price__flow-num {
  position: absolute;
  top: 8px; left: 10px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--c-cyan-deep);
}
.p-price__flow-item--pickup .p-price__flow-num { color: var(--c-cyan); }
.p-price__flow-icon { width: 40px; height: 40px; color: var(--c-cyan-deep); margin-top: 6px; }
.p-price__flow-item--pickup .p-price__flow-icon { color: var(--c-cyan); }
.p-price__flow-icon svg { width: 100%; height: 100%; }
.p-price__flow-name { font-weight: 900; font-size: 13px; line-height: 1.4; }
.p-price__flow-text { font-size: 11px; color: rgba(34,49,49,.7); }
.p-price__options { margin-top: 36px; }
.p-price__options-title {
  font-size: var(--fs-h4);
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.p-price__options-title span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(34,49,49,.6);
}
.p-price__options-list { display: grid; gap: 12px; }
.p-price__option {
  background: #fff;
  border: 1px dashed rgba(34,49,49,.25);
  border-radius: 4px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
}
.p-price__option-name { font-weight: 700; font-size: 13px; }
.p-price__option-name::before {
  content: '+';
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--c-orange);
  margin-right: 8px;
}
.p-price__option-price {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 19px;
}
.p-price__option-price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: rgba(34,49,49,.65);
}
.p-price__option-note { font-size: 11px; color: rgba(34,49,49,.65); }
.p-price__note { margin-top: 18px; font-size: var(--fs-small); color: rgba(34,49,49,.65); }
@media (min-width: 768px) {
  .p-price__plan-head { padding: 40px; }
  .p-price__plan-price { font-size: 68px; }
  .p-price__plan-body { padding: 34px 40px 38px; }
  .p-price__flow { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .p-price__flow-name { font-size: 14px; }
  .p-price__options-list { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .p-price__option { min-height: 118px; align-content: start; }
}

/* ==========================================================================
   Project — 10. Contact
   ========================================================================== */
.p-contact { background: var(--c-white); padding: var(--sec-space) 0 calc(var(--sec-space) + 40px); }
.p-contact__form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 28px 20px 34px;
  box-shadow: 0 12px 36px rgba(34,49,49,.07);
  display: grid;
  gap: 20px;
}
.p-contact__field { display: grid; gap: 8px; }
.p-contact__label {
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-contact__req,
.p-contact__opt {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.p-contact__req { background: var(--c-orange); color: #fff; }
.p-contact__opt { background: var(--bg-base); color: rgba(34,49,49,.65); }
.p-contact__input,
.p-contact__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(34,49,49,.25);
  border-radius: 4px;
  background: var(--bg-base);
  color: var(--c-dark);
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(18,224,230,.2);
}
.p-contact__input::placeholder,
.p-contact__textarea::placeholder { color: rgba(34,49,49,.35); }
.p-contact__privacy {
  border-top: 1px solid var(--c-line);
  padding-top: 22px;
}
.p-contact__privacy-title {
  font-size: var(--fs-h4);
  font-weight: 900;
}
.p-contact__privacy-guide {
  margin-top: 6px;
  font-size: var(--fs-small);
  color: rgba(34,49,49,.68);
}
.p-contact__privacy-scroll {
  height: 220px;
  overflow-y: auto;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(34,49,49,.18);
  border-radius: 4px;
  background: #f7f8f8;
  font-size: 12px;
  line-height: 1.8;
  scrollbar-color: rgba(34,49,49,.38) transparent;
}
.p-contact__privacy-scroll:focus {
  outline: 2px solid var(--c-cyan);
  outline-offset: 2px;
}
.p-contact__privacy-scroll h4 {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 900;
}
.p-contact__privacy-scroll h4:first-child { margin-top: 0; }
.p-contact__privacy-scroll p { margin-top: 5px; }
.p-contact__consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  cursor: pointer;
}
.p-contact__consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--c-dark);
}
.p-contact__consent input:disabled { cursor: not-allowed; }
.p-contact__consent:has(input:disabled) {
  color: rgba(34,49,49,.42);
  cursor: not-allowed;
}
.p-contact__consent small {
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--c-orange);
  color: #fff;
  font-size: 9px;
}
.p-contact__submit { text-align: center; margin-top: 6px; }
.p-contact__assure {
  margin-top: 4px;
  display: grid;
  gap: 6px;
  justify-content: center;
}
.p-contact__assure li {
  font-size: var(--fs-small);
  color: rgba(34,49,49,.7);
  padding-left: 20px;
  position: relative;
}
.p-contact__assure li::before {
  content: '';
  position: absolute;
  left: 2px; top: .4em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--c-cyan);
  border-bottom: 2px solid var(--c-cyan);
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .p-contact__form { padding: 44px 56px 48px; }
  .p-contact__field { grid-template-columns: 220px 1fr; align-items: center; }
  .p-contact__field:has(.p-contact__textarea) { align-items: start; }
  .p-contact__field:has(.p-contact__textarea) .p-contact__label { padding-top: 12px; }
  .p-contact__privacy { grid-column: 1 / -1; }
  .p-contact__submit { grid-column: 1 / -1; }
  .p-contact__assure { grid-column: 1 / -1; }
}

/* ==========================================================================
   Layout — footer
   ========================================================================== */
.l-footer {
  background: var(--c-dark);
  color: #fff;
  padding: 48px 20px calc(56px + 70px); /* SP追従CTAぶんの余白 */
  text-align: center;
}
.l-footer__brand { display: grid; justify-items: center; gap: 10px; }
.l-footer__logo { width: 52px; filter: drop-shadow(0 0 18px rgba(18,224,230,.3)); }
.l-footer__name {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .12em;
  display: grid;
  gap: 2px;
}
.l-footer__name small {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: .4em;
  color: rgba(255,255,255,.5);
}
.l-footer__company { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,.75); }
.l-footer__policy {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.l-footer__copy { margin-top: 22px; font-family: var(--font-en); font-size: 10px; color: rgba(255,255,255,.72); letter-spacing: .1em; }
@media (min-width: 768px) {
  .l-footer { padding: 64px 20px 56px; }
}

/* ==========================================================================
   Thanks page
   ========================================================================== */
.p-thanks {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    linear-gradient(rgba(18,224,230,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,224,230,.045) 1px, transparent 1px),
    var(--c-dark);
  background-size: 40px 40px;
}
.p-thanks__main {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}
.p-thanks__card {
  width: min(100%, 720px);
  padding: 42px 24px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.p-thanks__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .1em;
}
.p-thanks__brand img { width: 44px; }
.p-thanks__brand span { display: grid; line-height: 1.1; }
.p-thanks__brand small {
  margin-top: 4px;
  font-family: var(--font-en);
  font-size: 8px;
  letter-spacing: .28em;
  color: rgba(34,49,49,.5);
}
.p-thanks__eyebrow {
  margin-top: 34px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  color: rgba(34,49,49,.52);
}
.p-thanks__card h1 {
  margin-top: 12px;
  font-size: clamp(25px, 6vw, 38px);
  line-height: 1.45;
}
.p-thanks__lead {
  margin: 18px auto 0;
  max-width: 520px;
}
.p-thanks__note {
  margin: 28px auto 0;
  max-width: 540px;
  padding: 18px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: #f6f7f7;
  text-align: left;
  font-size: var(--fs-small);
  color: rgba(34,49,49,.72);
}
.p-thanks__back { margin-top: 28px; }
@media (min-width: 768px) {
  .p-thanks__card { padding: 58px 64px; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.u-sp { display: inline; }
@media (min-width: 768px) { .u-sp { display: none; } }

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