/* ▼ style.cssの一番上（:rootなどの前）に追加 ▼ */
* {
  box-sizing: border-box;
  font-feature-settings: "palt";
}


:focus { outline: none; }
:root{
  --toc-container: 1120px;
  --gutter: 20px;
  --form-w: 340px;
  --orange: #f36c21;   /* デザインのオレンジ寄せ */
  --text: #32404C;
  --muted: #6b6b6b;
  --line: #D2D6E2;
  --bg: #ffffff;
  --bg-soft: #f6f8f9;  /* FLOWの薄い背景 */
  --peach: #fff2ea;    /* SOLUTIONの帯 */
  --radius: 16px;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --header-h: 76px; 
}
/* 共通 */
.title__head{
  position: relative;
  text-align: center;
  margin: 50px 0;
}
.head__label{
  font-size: clamp(1.17vw, 20px, 20px);
  font-weight: 700;
  letter-spacing: 10%;
  margin:0;
}
.head__title{
  font-size: clamp(5.17vw, 72px, 72px);
  font-weight: 700;
  color: #f97316;
  margin: 0;
  line-height: 100%;
  background: linear-gradient(90deg, #FF8A29 0%, #E55C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body{
  margin:0;
  padding-right: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.8;
  padding-right: var(--form-w);
  text-align: justify;
}
a{color:inherit; text-decoration:none}
.toc-container{max-width:calc(var(--toc-container) + var(--gutter)*2); margin:0 auto; padding:0 var(--gutter)}
button{font-family:inherit}
.toc-container{
  max-width: calc(var(--toc-container) + var(--gutter)*2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sp{display:none}
.skip{position:absolute; left:-9999px}
.skip:focus{left:12px; top:12px; padding:8px 10px; background:#fff; border:1px solid var(--line); border-radius:12px; z-index:1000}

/* Header */
.header{
  position:fixed;
  top:0; z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px) saturate(180%);
  border-bottom:1px solid var(--line);
  width: 100vw;
}
.header__inner{
  height:76px;
  display:flex; align-items:center; gap:20px;
  max-width: 100% !important;
  
}
.header__brand{display:flex; align-items:center; gap:10px;width:16%;}
.header__logo{height:auto; width:100%; max-width: 135px;}
.header__nav{
  margin-left:auto;
  display:flex;
  gap:20px;
  align-items:center
}
.header__link{
  font-weight: 600;
  font-size: 0.833333vw;
  letter-spacing: .04em;
  color: #32404C;
  padding: 0;
}
.header__link:hover{color:var(--orange)}
.header__cta{
  font-size: 14px;
  letter-spacing: 10%;
  line-height: 100%;
}
.header__tob{
  font-size: 14px;
  letter-spacing: 10%;
  line-height: 100%;
}
.header__burger{
  display:none;
  margin-left:auto;

  width:24px;           /* 28 → 24 */
  height:16px;          /* 20 → 16 */
  padding:0;
  border:0;
  background:transparent;

  display:none;         /* SPでflexにする */
  flex-direction:column;
  justify-content:space-between;
  align-items:stretch;

  cursor:pointer;
}
.header__burger span{
  display:block;
  width:100%;
  height:1.5px;          /* 2px → 1.5px */
  background:#5F8397;
  border-radius:999px;
}
/* Drawer */
.drawer{
  border-top:1px solid var(--line);
  background:#fff;
  height: 100vh;
  text-align: center;
}
.drawer__nav{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.drawer__nav a{
  position: relative;
  padding: 0;
  font-weight: 700;
  font-size: 16px;
  display: block;
  text-align: left;
}
.drawer__nav a::after{
  content: "";
  border-top: 2px solid #000;
        border-right: 2px solid #000;
        transform: rotate(45deg) translateY(-50%);
        width: 5px;
        height: 5px;
        top: 44.333333%;
        line-height: 1;
        position: absolute;
        right: 10px;
}

/* Buttons */
.header-drawer-target{
display: flex;
gap: 12px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:auto;
  padding:0 40px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  transition:transform .15s ease, opacity .15s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(90deg, rgba(225, 138, 41, 1) 0%, rgba(229, 92, 1) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(240, 127, 26, .25);
  line-height: 1;
  padding:15px 20px;
  width: auto;
  max-width: 70%;
  margin: 0;
}
.btn--primary2{
  background-color:#32404C;
  color: #fff;
  box-shadow: 0 14px 30px rgba(240, 127, 26, .25);
  line-height: 1;
  padding:15px 20px;
  width: auto;
  max-width: 70%;
  margin: 0;
}
.btn--dark{background:#243645; color:#fff}
.btn--block{width:100%}

/* Fixed Form（client と同一トークン・余白） */
.fixed-form{
  position: fixed;
  top: 0;
  right: 0;
  width: var(--form-w);
  height: 100vh;
  z-index:1000;
  font-weight: 700;
}
.fixed-form *{
  box-sizing: border-box;
  font-size: 14px;
}
/* チェックボックスとラジオは除外 ▼ */
.fixed-form input:not([type="checkbox"]):not([type="radio"]),
.fixed-form select,
.fixed-form textarea{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: 13px;
  list-style: none;
  display: block;
  font-size: 13px;
    line-height: 1.5em;
    padding: 8px;
}
.fixed-form__inner {
  background: #fff;
  box-shadow: var(--shadow);
  padding:15px;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 100vh;
}
.fixed-form__title{
  margin: 0 0 20px;
  line-height: 1;
  font-weight: 700;
  font-size: clamp(1.17vw, 22px, 4.66667vw);
  text-align: center;
}
.fixed-form__lead{
  margin:0 0 10px;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}
.fixed-form__checks{
  list-style:none; padding:0; margin:0 0 12px;
  display:grid; gap:6px;
  font-size:12px;
}
.fixed-form__checks li{
  display:flex; gap:8px; align-items:flex-start;
  color:#32404C;
}
.fixed-form__checks img{width:14px; height:14px; margin-top:3px}
[data-hsfc-id=Renderer] .hsfc-NavigationRow{
  margin-top: 0 !important;
}
/* PC：フォーム枠を右端＆ヘッダー下にピッタリ */
@media (min-width: 1024px){
  .fixed-form{
    right: 0;
    top: 0;
    border-radius: 0;
    width: 340px;
    padding: 20px;
    padding-top: 96px;
    background: linear-gradient(90deg, rgba(225, 138, 41, 1) 0%, rgba(229, 92, 1) 100%);
    z-index: 50;
  }
}


.form{display:grid; gap:20px}
.form__label{
  display:grid; gap:6px;
  font-size:12px;
  font-weight:700;
  color:#32404C;
}
.form__label span{color:var(--orange)}
.form__input{
  width:100%;
  height:38px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:0 12px;
  font-size:13px;
  outline:none;
}
.form__input:focus{border-color: rgba(240,127,26,.5); box-shadow:0 0 0 3px rgba(240,127,26,.15)}
.form__note{margin:6px 0 0; color:var(--muted); font-size:11px; line-height:1.5}

/* 左コンテンツ全体（FV〜MISSION） */
#main{
  width: calc(100vw - var(--form-w));
  max-width: none;
  margin: 0;
  overflow: hidden;
  position: relative;
}
/* 代替：solutionがあるページなら #main に class を付けて制御 */
#main.is-willof{
  overflow:hidden;
}

.section-inner,
.toc-container,
.hero__inner,
.clients__inner,
.solution__inner,
.voice__inner,
.flow__inner,
.mission__inner{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero */
.hero{
  position:relative;
  background:#fbf4ef;
  padding:80px 0 64px;
  overflow:hidden;
  margin-top: var(--header-h);
  height: 68vh;
  display: flex;
  align-items: center;
  /* max-height: 720px; */
}

.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}
/* 縦スライダーのコンテナ */
.hero__v-slider {
  position: absolute;
  right: 20px;
  top: -20%;
  width: calc((1400px - 18px * 2) * .375);
  height: auto;
  overflow: hidden;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.9);
  mix-blend-mode: soft-light;
}

/* スライダーの軌道 */
.hero__v-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* 40秒かけて1周（速度はここで調整） */
  animation: kv-marquee-y 40s linear infinite;
  will-change: transform; /* パフォーマンス最適化 */
}

/* スライダー内の画像 */
.hero__v-track img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3; /* 全ての画像のアスペクト比を強制的に揃える */
  background: #eee;
  display: block;
}

/* 無限ループのアニメーションキーフレーム */
@keyframes kv-marquee-y {
  0% { 
    transform: translateY(0); 
  }
  100% { 
    /* 5枚分（全体の50%）+ gapの半分(10px) を上に移動 */
    transform: translateY(calc(-50% - 10px)); 
  }
}

/* コラージュ本体（回転・サイズ・位置） */
.hero__bg::before {
display: none !important;
  content: "";
  position: absolute;
  right: -300px;
  top: 0;
  width: 100vw;
  height: 100%;
  background: url(../img/bg-slider.png) no-repeat center / cover;
  /* transform: rotate(-14deg); */
  /* opacity: .42; */
  z-index: 0;
  filter: blur(0.2px) saturate(.9);
  mix-blend-mode: multiply;
}
/* 左側を読みやすくする薄い白グラデ（Figmaっぽい抜け） */
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 1) 100%);
  opacity: 0.8;
}


.hero__inner{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 1fr;
  align-items:center;
  min-height:520px;
  padding: 0 10vw;
    width: 100%;
    max-width: 100% !important;
}

/* 上のオレンジ文字 */
.hero__lead-top{
  font-size:15px;
  font-weight:700;
  color:#f36c21;
  margin-bottom:8px;   /* ← 間隔を詰める */
}
.hero__content{
}
.hero__eyebrow{ margin:0 0 10px; font-weight:800; }
.hero__accent{ color:#f36c21; }

.hero__kicker{
  font-size:14px;
  font-weight:700;
  color:#f36c21;
  margin: 0 0 20px;
}
/* メイン見出し（Figma一致） */
.hero__title{
  font-size:42px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing:.02em;
  color:#32404C;
  margin: 0 0 20px;
  text-align: left;
}
.hero__title-accent{
  background: linear-gradient(90deg, #FF8A29 0%, #E55C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(3.17vw, 7.5vw, 64px);
  line-height: 130%;

}
/* PC：アクセント行は改行させる（SPはresponsive側で制御） */
@media (min-width: 768px){
  .hero__title-accent{ display:inline-block;width: 100%; }
}

/* 本文 */
.hero__lead{
  font-size: 1.17vw;
  line-height: 150%;
  color: #32404C;
  margin: 0 0 40px;
  font-weight: bold;
  letter-spacing: 10%;
}
/* ボタン余白 */
.hero .btn{
  height: auto;
  width: fit-content;
  padding: 20px 70px;
  font-size: 1.17vw;
  font-weight: 600;
  min-width: 250px;
  line-height: 150%;
  letter-spacing: 10%;
}
/* ==================================================
   Hero First View Animation (Load) - スピードアップVer
================================================== */
.hero__title,
.hero__lead {
  opacity: 0;
  transition: opacity 0.8s ease-in-out; /* 1.5sから0.8sに短縮し、サクッと出す */
  will-change: opacity;
}

.hero.is-loaded .hero__title,
.hero.is-loaded .hero__lead {
  opacity: 1;
}

/* 時差（ディレイ）も詰めて、テンポ良く表示させる */
.hero.is-loaded .hero__title {
  transition-delay: 0.1s; /* 0.2s -> 0.1s */
}
.hero.is-loaded .hero__lead {
  transition-delay: 0.4s; /* 0.8s -> 0.4s: タイトルが見え始めた直後にスッと重ねる */
}
/* ここまでここまでHero First View Animation (Load) - スピードアップVer */

.sp-only{ display: none; }
.sp-view{display: none;}

/* Clients */
.clients{
  position: relative;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.toc-container.clients-container{
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.clients__head{
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 40px;
  margin-bottom: 0;
  height: 13vh;
  align-items: center;
  padding: 0 10vw;
}
.clients__head .section-title{
  margin: 0;
}
.clients__head::after{
  content:"";
  grid-column: 2;
  width: 1px;
  height: 58px;
  background: rgba(40,60,70,.25);
}

.clients .section-title{
  margin:0;
  font-size:48px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1;
}
.clients .section-title--en{
  color:#b8c7cf;
}

.clients__sub{
  margin:0;
  order:3;
  font-size:20px;
  font-weight:600;
  line-height:1.6;
  letter-spacing:.08em;
  color:#32404C;
}

.clients__marquee{
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 50px;
}

.clients__rail{
  overflow: hidden;
  user-select: none;
  cursor: default;
  touch-action: pan-y;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.clients__track{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  gap: 48px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.clients__logo{
  flex: 0 0 180px;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__logo img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.clients__rail + .clients__rail{
  margin-top: 6px;
}


/* Watermark Section */
.section-watermark{
  position:relative;
  padding: 46px 0 30px;
  overflow:hidden; /* はみ出しを綺麗に隠す（セクション側で） */
}
.section-watermark__head{
  position:relative;
  padding-top: 34px;
  text-align:center;
}
.section-watermark__bg{
  position:absolute;
  left:50%;
  top: var(--wm-top, -10px);
  transform:translateX(-50%);
  font-size: var(--wm-size, 160px);
  font-weight: 900;
  letter-spacing:.08em;
  white-space:nowrap;
  pointer-events:none;
  z-index:0;
  color: var(--wm-color, #eef1f3);
  opacity: var(--wm-opacity, 1);
}
.section-lead{
  margin: 10px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-weight:600;
  font-size: 13px;
}

/* Features */
.feature {
  padding: 50px 0;
}

#solutions {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
}

.feature .toc-container {
  max-width: none;
  width: 100%;
  padding: 0 20px;
  padding-top: 100px;
  position: relative;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
}
.feature .toc-container::before {
  content: "FEATURE";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  font-size: 250px;
  font-weight: 700;
  background: linear-gradient(0deg, #A9C1CA 0%, #5F8397 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 15%;
  white-space: nowrap;
  z-index: -1;
  line-height: 1;
}
.feature__list {
  display: flex;
  flex-direction: column;
}

.feature__head {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}

/* 背景の巨大文字 */
/* .feature__head::before {
  content: "FEATURE";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -150px;
  font-size: 250px;
  font-weight: 1000;
  background: linear-gradient(0deg, #A9C1CA 0%, #5F8397 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 15%;
  white-space: nowrap;
  z-index: -1;
} */

.feature__label {
  font-size: clamp(1.17vw, 20px, 20px);
  font-weight: 700;
  letter-spacing: 10%;
  margin-bottom: 0;
}

.feature__title {
  font-size: clamp(5.17vw, 72px, 72px);
  font-weight: 900;
  background: linear-gradient(90deg, #FF8A29 0%, #E55C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.feature__bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0;
  padding: 15px 21px;
  background: #f6d3bf;
  color: #0f172a;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 8%;
  position: relative;
}

.feature__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #f6d3bf;
}

.feature__lead {
  margin-top: 20px;
  font-size: 1.375vw;
  font-weight: bold;
  line-height: 2;
}

/* Item Base */
.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 100px 50px 0;
  gap: 40px;
}

.feature-item--reverse {
  flex-direction: row-reverse;
  padding: 50px 0 50px 100px;
}

.feature-item--tint {
  background: var(--peach);
}

.feature-item__image {
  flex: 0 0 51.5%;
}

.feature-item__image img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-item__content {
  width: 50%;
}

.feature-item__number {
  display: inline-block;
  background: linear-gradient(90deg, #FF8A29 0%, #E55C00 100%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1em;
}

.feature-item__heading {
  font-size: clamp(2.083333vw, 3.333vw, 40px);
  line-height: 150%;
  margin: 10px 0 20px;
  font-weight: 600;
}

.feature-item__text {
  line-height: 180%;
  text-align: justify;
  font-size: clamp(16px, 1.17vw, 1.17vw);
  margin: 0;
}


/* Voice */
.voice{
  padding: 50px 0;
    background: linear-gradient(0deg, rgba(169, 193, 202, 0.15) 0%, rgba(95, 131, 151, 0.15) 100%);
}
.voice .toc-container{
  position: relative;
  max-width: none;
  width: 100%;
  padding: 0;
  padding-left: var(--gutter);
  padding-top: 100px;
}
.voice .toc-container::before{
  content: "CASE";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  font-size: 250px;
  font-weight: 700;
  background: linear-gradient(0deg, #A9C1CA 0%, #5F8397 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 15%;
  white-space: nowrap;
  z-index: -1;
  line-height: 1;
}
.carousel{margin-top: 26px}
.carousel__track{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 18px;
}
.carousel__slide{display:none;padding-bottom: 20px;}
.carousel__slide.is-active{display:block}
.carousel__slide img{
  width: 100%;
  height: 360px;          /* ← 高さ固定（Figma寄せ） */
  object-fit: cover;      /* はみ出しトリミング */
  border-radius: 20px;    /* ← 角丸強化 */
  display: block;
}
.voice-card{
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.voice-card img{width:100%}
.voice-card__body{padding: 14px 16px 16px}
.voice-card__company{
  margin: 15px 0 5px;
  font-weight: 600;
  font-size: 1.5625vw;}
.voice-card__text{margin:0; color:var(--muted); font-weight:600; font-size:13px}
.carousel__dots{display:flex; justify-content:center; gap:10px; margin-top: 16px}
.dot{
  width:12px; height:12px; border-radius:999px;
  border:1px solid rgba(240,127,26,.5);
  background: transparent;
  cursor:pointer;
}
.dot.is-active{background: var(--orange)}

.voice.toc-container{
  max-width: none;
    width: 100%;
    padding-top: 100px;
    position: relative;
}
.voice__lead{
  margin: 0;
  color: #32404C;
  font-weight: 600;
  font-size: 1.375vw;
  line-height: 200%;
  letter-spacing: 8%;
}

.voice-slider{
  max-width: 1440px; margin: 0 auto}
.voice-slider__viewport{
  overflow-x:auto;
  overflow-y:hidden;
  border-radius: 18px;

  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}
.voice-slider__viewport::-webkit-scrollbar{height:0}
.voice-slider__track{
  display:flex;
  gap: 25px;        /* page gap は維持 */
  padding-bottom: 10px;
}
.voice-slider__track::-webkit-scrollbar{height:0}
.voice-slider__page{
  flex: 0 0 55%;          /* 1社=520px幅のスライドにする */
  scroll-snap-align:start;
  display:block;            /* 2カラムgridをやめる */
}

.voice-card{
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  text-align: center;
}

/* 画像 */
.voice-card__image{
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.voice-card__image img{
  width: 100%;
  height: auto;
  display: block;
}
.voice-card__media{
  aspect-ratio: 16 / 10;
  /* ← ここが最重要 */       /* Figmaの見た目に合わせて固定 */
  border-radius: 12px;    /* 角丸 */
  overflow: hidden;       /* 角丸を効かせるため */
  background: #eee;       /* 画像読み込み前の保険 */
}

/* 画像は枠にフィットさせる */
.voice-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* トリミング */
  display: block;
}

/* テキスト部分 */
.voice-card__body{
  padding: 0 4px;
}

/* タイトル */
.voice-card__title{
  font-size: 1.07vw;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 150%;
}

/* 本文 */
.voice-card__text{
  font-size: 14px;
  line-height: 1.9;
  color: #32404C;
}
.voice-slider__controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 28px;
  margin-top: 26px;
}

.voice-slider__progress{
  position:relative;
  height: 2px;
  flex: 1;
  background: #e7edf3;
  border-radius: 999px;
  overflow: hidden;
  max-width: 720px;
}
.voice-slider__progress-bar{
  position:absolute;
  left:0; top:0; bottom:0;
  width: var(--voice-progress, 50%);
  background: var(--orange);
}
.voice-slider__nav{display:flex; gap:14px}
.voice-slider__btn{
  width:56px; height:56px;
  border-radius:999px;
  border:1px solid rgba(240,127,26,.65);
  background: transparent;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.voice-slider__btn:hover{background: rgba(240,127,26,.08)}
.voice-slider__arrow{
  width:10px; height:10px;
  border-right:2px solid var(--orange);
  border-bottom:2px solid var(--orange);
}
.voice-slider__arrow--prev{transform: rotate(135deg)}
.voice-slider__arrow--next{transform: rotate(-45deg)}








/* CASE */
.voice
.section-voice {
}

.section-voice .div-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 160px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: 100px;
}

.section-voice .div-title-head {
  align-items: center;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.section-voice .div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.section-voice .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #32404c;
  font-size: clamp(1.17vw, 20px, 20px);
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.section-voice .text-wrapper-2 {
  background: linear-gradient(90deg, rgba(255, 138, 41, 1) 0%, rgba(229, 92, 0, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(5.17vw, 72px, 72px);
  line-height: 150%;
}

.section-voice .div-voice-slider {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 50px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  overflow-x: scroll;
}

.section-voice .div-voice-slider::-webkit-scrollbar {
  width: 0;
  display: none;
}

.section-voice .li-voice-item {
  display: flex;
  flex-direction: column;
  width: 270px;
  position: relative;
  flex: 0 0 auto;
}

.section-voice .frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #a9c1ca;
  border-radius: 10px 10px 0px 0px;
  width: 100px;
  display: none;
}

.section-voice .text-wrapper-3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  letter-spacing: 0;
  white-space: nowrap;
}

.section-voice .div-voice-content {
  display: inline-flex;
  flex-direction: column;
  height: 320px;
  align-items: flex-start;
  padding: 20px 25px 25px;
  position: relative;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(225, 138, 41, 1) 90%, rgba(229, 92, 1) 100%);
}

.section-voice .div-title {
  width: 100%;
  align-items: flex-start;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.section-voice .text-wrapper-4 {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #32404c;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 36px;
  line-height: 1.35em;
  text-align: justify;
}

.section-voice .frame-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
}

.section-voice .frame-3 {
  display: flex;
  width: 100%;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 10px;
}

.section-voice .p {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  position: relative;
  flex: 0 0 auto;
  background-color: #efefef;
  border-radius: 4px;
}

.section-voice .text-wrapper-5 {
  justify-content: center;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #32404c;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0;
}

.section-voice .element {
  justify-content: center;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ff8a29;
  font-size: 31px;
  text-align: center;
  line-height: 27px;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: baseline;
  letter-spacing: 0;
}

.section-voice .span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ff8a29;
  font-size: 31px;
  letter-spacing: 0;
  line-height: 27px;
}

.section-voice .text-wrapper-6 {
  font-size: 16px;
}

.section-voice .div-2 {
  justify-content: center;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ff8a29;
  font-size: 16px;
  text-align: center;
  line-height: 27px;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: baseline;
  letter-spacing: 0;
}

.section-voice .text-wrapper-7 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ff8a29;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 27px;
}

.section-voice .text-wrapper-8 {
  font-size: 32px;
}

.section-voice .element-2 {
  justify-content: center;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ff8a29;
  font-size: 32px;
  text-align: center;
  line-height: 27px;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: baseline;
  letter-spacing: 0;
}

.section-voice .text-wrapper-9 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ff8a29;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 27px;
}

.section-voice .div-wrapper {
  width: 220px;
  align-items: flex-start;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.section-voice .prev-bnext {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0px 50px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.section-voice .div-swiper-scrollbar {
  display: flex;
  flex-direction: column;
  height: 2.5px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background: linear-gradient(
    0deg,
    rgba(169, 193, 202, 0.15) 0%,
    rgba(95, 131, 151, 0.15) 100%
  );
}

.section-voice .div-swiper-scrollbar-2 {
  position: relative;
  flex: 1;
  width: 546px;
  flex-grow: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 138, 41, 1) 0%,
    rgba(229, 92, 0, 1) 100%
  );
}

.section-voice .frame-4 {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.section-voice .span-remove-wrapper {
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 35px;
  border: none;
  cursor: pointer;
}

.section-voice .span-remove-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 35px;
  background: linear-gradient(
    90deg,
    rgba(255, 138, 41, 1) 0%,
    rgba(229, 92, 0, 1) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.section-voice .span-remove {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(135deg);
}
.span-remove.arrow--prev {
  transform: rotate(-45deg);
}
.section-voice .text {
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  background: linear-gradient(
    90deg,
    rgba(255, 138, 41, 1) 0%,
    rgba(229, 92, 0, 1) 100%
  );
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--shuuumatu-worker-jp-inter-regular-font-weight);
  color: transparent;
  font-size: var(--shuuumatu-worker-jp-inter-regular-font-size);
  text-align: center;
  line-height: var(--shuuumatu-worker-jp-inter-regular-line-height);
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: var(--shuuumatu-worker-jp-inter-regular-letter-spacing);
  font-style: var(--shuuumatu-worker-jp-inter-regular-font-style);
}

.section-voice .div-bg-title {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 50px;
}

.section-voice .SOLUTION {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: -1.00px;
  background: linear-gradient(
    0deg,
    rgba(169, 193, 202, 0.15) 0%,
    rgba(95, 131, 151, 0.15) 100%
  );
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: transparent;
  font-size: 250px;
  text-align: center;
  letter-spacing: 0;
  line-height: 250px;
}
.voice-img{
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.voice-img img{
  width: 100%;
  height: auto;
}
/* Flow */
.flow{
  padding: 50px 0;
}
.flow
#flow{
  background:#eef3f6;
  --wm-size:240px;
  --wm-top:-410px;
  --wm-color:#aebbc5;
  --wm-opacity:.28;

  position: relative;
  overflow: hidden;
}
.flow .toc-container{
  max-width: none;
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 100px;
  position: relative;
}
.flow .toc-container::before{
  content: "FLOW";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  font-size: 250px;
  font-weight: 700;
  letter-spacing: 0;
  color: #e9eef2;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  background: linear-gradient(0deg, #A9C1CA 0%, #5F8397 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    opacity: 15%;
}
.flow__head{
  position: relative;
  text-align: center;
  margin: 0 0 50px;
}
.flow__label{
  position: relative;
    z-index: 2;
    font-size: clamp(1.17vw, 20px, 20px);
    font-weight: 700;
    color: #32404C;
        letter-spacing: 10%;
    margin: 0;
    line-height: 1;
}
.section-title,
.section-lead{
  position:relative;
  z-index:1;
}
.flow-list{
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
  max-width: 86%;
  margin: 0 auto;
}
.flow__item{
  flex: 0 0 20%;  /* ← 230 → 180（重要） */
  text-align:center;
  padding: 0;
}
.flow__icon{
  width: 100%;
  height:auto;
  margin: 0 auto 24px;
}

.flow__icon img{
  width: 77%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background: #fff;
  padding: 10px;
}
.flow__circle{
  width: auto;
  height: auto;
  border: none;
  background: none;
  font-size: 1.17vw;
  font-weight: 700;
  color: var(--orange);
  margin: 0;
  line-height: 1;
}
.flow__title{
  position: relative;
  z-index: 2;
  font-size: clamp(5.17vw, 72px, 72px);
  font-weight: 900;
  color: #f97316;
  margin: 0;
  line-height: 150%;
  background: linear-gradient(90deg, #FF8A29 0%, #E55C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flow-con__title{
font-size: 1.17vw;
text-align: center;
line-height: 180%;
font-weight: bold;
margin: 0 0 20px;
}
#flow .section-title{
  color: var(--orange);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .08em;
}
#flow .section-lead{
  color:#5f6c78;
  font-size:14px;
  font-weight:600;
}
#flow .section-watermark__head{
  margin-bottom: 70px;
}

.flow__text{
  margin:0;
  color:#32404C;
  font-size:.8333333333vw;
  font-weight:500;
  line-height:150%;
  text-align: justify;
}
.flow__arrow{
  flex: 0 0 auto;
  font-size:1.875vw;   /* ← 矢印を大きく */
  margin-top:6.555%;
  color:#f07f1a;
  letter-spacing:-2px;
  background: linear-gradient(90deg, #FF8A29 0%, #E55C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title{
  position:relative;
  z-index:1;
}

.section-lead{
  position:relative;
  z-index:1;
}
/* ▼ FLOWセクション：順番に時差でフワッと出す） */
.flow__item:nth-child(1) .flow__icon { transition-delay: 0s; }
.flow__item:nth-child(3) .flow__icon { transition-delay: 0.15s; } /* ステップ2 */
.flow__item:nth-child(5) .flow__icon { transition-delay: 0.3s; }  /* ステップ3 */
.flow__item:nth-child(7) .flow__icon { transition-delay: 0.45s; } /* ステップ4 */





/* faq */
.faq{padding: 50px 0}
.faq .toc-container{
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 100px;
  position: relative;
}
.faq .toc-container::before{
  content: "FAQ";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    font-size: 250px;
    font-weight: 700;
    background: linear-gradient(0deg, #A9C1CA 0%, #5F8397 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 15%;
    white-space: nowrap;
    z-index: -1;
    line-height: 1;
}
.section-faq {
}

.section-faq .div-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 155px 50px 0px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.section-faq .div-title-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.flow__label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.section-faq .text-wrapper {
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.17vw, 20px, 20px);
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  color: #32404c;
  letter-spacing: 0;
}

.section-faq .text-wrapper-2 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -1.00px;
  background: linear-gradient(
    90deg,
    rgba(255, 138, 41, 1) 0%,
    rgba(229, 92, 0, 1) 100%
  );
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: transparent;
  font-size: 80px;
  letter-spacing: 0;
  line-height: 120px;
}

.section-faq .div-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 50px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: 86%;
}

.section-faq .ul-faq-list {
  display: flex;
  flex-direction: column;
  max-width:100%;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #ffffff;
  margin: 0 auto;
}

.section-faq .li {
  align-items: flex-start;
  gap: 20px;
  display: flex;
  padding: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: transparent;
  border-image: linear-gradient(
      0deg,
      rgba(169, 193, 202, 0.15) 0%,
      rgba(95, 131, 151, 0.15) 100%
    )
    1;
}

.section-faq .open {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.section-faq .table {
  margin-right: -52.22px;
  display: flex;
  width: 880px;
  height: 35px;
  align-items: center;
  gap: 15px;
  position: relative;
}

.section-faq .q {
  display: flex;
  flex-direction: column;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 100px;
  background: linear-gradient(
    0deg,
    rgba(169, 193, 202, 0.15) 0%,
    rgba(95, 131, 151, 0.15) 100%
  );
}

.section-faq .text-wrapper-3 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #32404c;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 25px;
  white-space: nowrap;
}

.section-faq .text-wrapper-4 {
  width: fit-content;
  font-weight: 500;
  font-size: .8333333333vw;
  line-height: 150%;
  position: relative;
  display: flex;
  align-items: center;
  color: #32404c;
}

.section-faq .frame {
  display: flex;
  height: 46px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.section-faq .a {
  flex-direction: column;
  width: 35px;
  height: 35px;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    rgba(255, 138, 41, 1) 0%,
    rgba(229, 92, 0, 1) 100%
  );
  display: flex;
  align-items: center;
  position: relative;
}

.section-faq .text-wrapper-5 {
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 25px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
}

.section-faq .text-wrapper-6 {
  flex: 1;
  margin-top: -1.00px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  position: relative;
  display: flex;
  align-items: center;
  color: #32404c;
  letter-spacing: 0;
}

.section-faq .image {
  position: relative;
  width: 12.22px;
  height: 2.35px;
}

.section-faq .li-2 {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: transparent;
  border-image: linear-gradient(
      0deg,
      rgba(169, 193, 202, 0.15) 0%,
      rgba(95, 131, 151, 0.15) 100%
    )
    1;
}

.section-faq .table-wrapper {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.section-faq .table-2 {
  margin-right: -70.65px;
  display: flex;
  width: 880px;
  height: 35px;
  align-items: center;
  gap: 15px;
  position: relative;
}

.section-faq .img {
  position: relative;
  width: 10.65px;
  height: 10.65px;
}

.section-faq .li-3 {
  align-items: center;
  gap: 40px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: flex;
  padding: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: transparent;
  border-image: linear-gradient(
      0deg,
      rgba(169, 193, 202, 0.15) 0%,
      rgba(95, 131, 151, 0.15) 100%
    )
    1;
}

.section-faq .div-bg-title {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
}

.section-faq .SOLUTION {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: -1.00px;
  background: linear-gradient(
    0deg,
    rgba(169, 193, 202, 0.15) 0%,
    rgba(95, 131, 151, 0.15) 100%
  );
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: transparent;
  font-size: 250px;
  text-align: center;
  letter-spacing: 0;
  line-height: 250px;
}
/* faq accordion fix */
.section-faq .faq-item {
  position: relative;
}

.section-faq .faq-question {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.section-faq .table,
.section-faq .table-2 {
  margin-right: 0;
  width: 100%;
  height: auto;
  min-height: 35px;
  align-items: center;
}

.section-faq .faq-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.section-faq .faq-toggle::before,
.section-faq .faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #32404c;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.section-faq .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.section-faq .faq-item.is-open .faq-toggle::after {
  opacity: 0;
}

.section-faq .faq-answer {
  display: none;
  height: auto;
  width: 100%;
  gap: 15px;
  align-items: baseline;
  background: #FBEFE8;
    padding: 15px;
    border-radius: 8px;
}

.section-faq .faq-item.is-open .faq-answer {
  display: flex;
}

.section-faq .table-wrapper {
  width: 100%;
}

.section-faq .text-wrapper-6 {
  display: block;
  align-items: initial;
}

/* 以前の画像アイコンを消す */
.section-faq .faq-item > .image,
.section-faq .faq-item > .img {
  display: none;
}



/* Mission */
/* ==================================================
   Mission（Figma完全一致PC）
================================================== */

.mission{
  position: relative;
  padding: 50px 0 120px;
  color: #fff;
  overflow: hidden;

  background: linear-gradient(
    90deg,
    #ff8a1f 0%,
    #ff7a12 30%,
    #ff6a00 70%,
    #f25c00 100%
  );
}

/* 背景巨大文字 */
.mission__bgtext{
  position: absolute;
  top: clamp(14px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;

  font-size: clamp(120px, 22vw, 220px);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;

  color: rgba(255,255,255,.20);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* レイアウト */
.mission__inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 0 0;
}
.mission__inner::before{
  content: "MISSION";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    font-size: 250px;
    font-weight: 1000;
    letter-spacing: 0;
    color: #FFD5C2;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    display: inline-block;
    opacity: 25%;
}

/* 左 */
.mission__content{
  max-width: 620px;
  padding-left: 50px;
}

.mission__kicker{
  margin: 0;
  font-size: clamp(1.17vw, 20px, 20px);
  font-weight: 700;
  letter-spacing: .05em;
}

.mission__title{
  margin: 0 0 30px;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.1;
}

.mission__lead{
  margin: 0 0 28px;
  font-size: clamp(2vw, 22px, 22px);
  font-weight: 600;
  line-height: 1.9;
}

.mission__text{
  margin: 0 0 16px;
  font-size:clamp(0.833333vw, 15px, 15px);
  line-height: 2;
  font-weight: 500;
  opacity: .95;
}

.mission__company-link{
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 24px;
  font-size: clamp(1vw, 17px, 18px);
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mission__company-link:hover{
  opacity: .88;
}
.mission__company-link-icon{
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.05em;
}

/* ボタン（Figma寄せ） */
.mission .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;

  padding: 20px 48px;
  font-size: 1.17vw;
  font-weight: 700;

  border-radius: 50px;
  background: #32404C;
  color: #fff;
}

/* 右 */
.mission__media{
  display: flex;
  justify-content: flex-end;
  padding: 0 50px;
}

.mission__circle{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

/* Footer */
.footer{
  padding: 20px 0 0;
  background:#fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 80px;
  padding: 20px 50px;
}
.footer__logo-link{
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.footer__logo-link:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 4px;
}
.footer__logo{height: auto; width:100%;max-width:135px;}
.footer__nav{display:flex; flex-wrap:wrap; gap: 20px; font-size:0.833333vw; color:#32404C; font-weight:700; align-items: center;}
.footer__nav a{position: relative;
  font-weight: 600;
  font-size: 0.833333vw;
  letter-spacing: .04em;}
.footer__nav a:hover{color:var(--orange)}
.footer__nav a.btn:hover{color:#fff}
.footer__bottom{border-top:1px solid var(--line); padding: 12px 0; color:#6b7280; font-size:0.833333vw;text-align: center;}
.footer-active{
  width: fit-content;
}
.section{
  position:relative;
  padding:90px 0;
}
.section::before{
  content: attr(data-bg);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  font-size: 250px;
  font-weight: 1000;
  letter-spacing: 0;
  color: #e9eef2;
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
} 
.section > .toc-container{ position:relative; z-index:1; }

.section__title{
  margin:0;
  text-align:center;
  font-size:44px;
  font-weight:800;
  color:var(--orange);
  letter-spacing:.08em;
}
.section__lead{
  text-align:center;
  color:var(--muted);
  margin:14px 0 0;
}
.solution__item{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:center;
  margin-top:26px;
  position:relative;
}
.solution__item::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:180px;
  transform:translateY(-50%);
  background:var(--peach);
  z-index:0;
}
.solution__item > *{ position:relative; z-index:1; }

.solution__item--reverse{
  grid-template-columns: 1fr 1fr;
}
.solution__item--reverse .solution__image{ order:2; }
.solution__item--reverse .solution__content{ order:1; }

.solution__image img{
  width:100%;
  border-radius:14px;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.solution__badge{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#fff;
  background:var(--orange);
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.solution__content h3{ margin:0 0 10px; font-size:20px; }
.solution__content p{ margin:0; color:var(--muted); }

/* ===== SOLUTIONカードレイアウト（Figma寄せ） ===== */

.solutions{
  display:grid;
  gap:32px;
  margin-top:40px;
}

.solution-card{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap:32px;
  position:relative;
  padding:40px 0;
}

/* 薄オレンジ帯 */
.solution-card--tint::before{
  content:"";
  position:absolute;
  left:50%;
  transform:translate(-50%, -50%);
  width:100vw;
  max-width:100vw;
  top:50%;
  height:180px;
  background:#fff2ea;
  z-index:0;
}

.solution-card__media,
.solution-card__body{
  position:relative;
  z-index:1;
}
.solution-card__media img{
  width:100%;
  max-width:520px;
  border-radius:16px;
  box-shadow:0 16px 32px rgba(0,0,0,.12);
}

.solution-card--reverse .solution-card__media{
  order:2;
}
.solution-card--reverse .solution-card__body{
  order:1;
}

.solution-card__media img{
  width:100%;
  border-radius:14px;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.solution-card__title{
  margin:8px 0 12px;
  font-size:20px;
  font-weight:700;
}

.solution-card__text{
  color:#666;
  line-height:1.8;
}

/* ==================================================
   Fixed Form Highlight Animation (PC Option C) - 修正版
================================================== */
@keyframes formHighlight {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-8px); }
  50%  { transform: translateX(4px); }
  75%  { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}
@keyframes formFlash {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  100% { opacity: 0; }
}

/* アニメーションをかける対象を .fixed-form 本体に変更 */
.fixed-form.is-highlighted {
  animation: formHighlight 0.5s ease-out;
}

/* 視線誘導のためのフラッシュ効果を疑似要素で追加 */
.fixed-form::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
.fixed-form.is-highlighted::after {
  animation: formFlash 0.5s ease-out;
}

/* ===== 固定フォーム：中身スクロールできるように ===== */
@media (min-width: 1024px){

  /* カード自体の高さを画面内に収める */
  .fixed-form{
    max-height: 100%;
    overflow: hidden; /* 外側は隠して、内側でスクロール */
  }

  /* 中身をスクロール領域にする（どっちか一方でOK） */
  .fixed-form__inner{
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* ==================================================
   Scroll Animation (SOLUTION, FLOW, MISSION共通)
================================================== */
.feature-item__image,
.flow__icon,
.mission__circle {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.feature-item__image.is-visible,
.flow__icon.is-visible,
.mission__circle.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ==================================================
   HubSpot Form Override (React/V2 Embed)
================================================== */
/* 項目ごとの余白 */
.fixed-form .hs-form-field {
  margin-bottom: 8px;
}
/* HubSpot V2: 行の下余白（グローバルで hsfc-Row の margin-bottom が 0 のため） */
.fixed-form [data-hsfc-id=Renderer] .hsfc-Row:not(:last-child) {
  margin-bottom: 8px !important;
}
/* 送信ボタン行の直前は下余白なし */
.fixed-form [data-hsfc-id=Renderer] .hsfc-Row:nth-last-child(2) {
  margin-bottom: 0 !important;
}
.fixed-form [data-hsfc-id=Renderer] .hsfc-NavigationRow {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.fixed-form [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.fixed-form [data-hsfc-id=Renderer] .hsfc-Button {
  margin-top: 0 !important;
}

/* 非表示 input のみのブロックは余白なし（トラッキング用 hidden 等） */
.fixed-form .hs-form-field:has(input[type="hidden"]):not(:has(input:not([type="hidden"]))):not(:has(select)):not(:has(textarea)) {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  overflow: hidden;
}
.fixed-form [data-hsfc-id=Renderer] .hsfc-Row:has(input[type="hidden"]):not(:has(input:not([type="hidden"]))):not(:has(select)):not(:has(textarea)) {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
  gap: 0 !important;
}
.fixed-form [data-hsfc-id=Renderer] .hsfc-Row[hidden] {
  display: none !important;
}

/* ラベル（お名前、役職など） */
.fixed-form label {
  font-size: 13px;
  font-weight: 700;
  color: #32404C;
  display: block;
  margin-bottom: 6px;
}

/* 必須マーク（*）をオレンジのバッジ風に上書き */
.fixed-form .hs-form-required {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #FF8A29 0%, #E55C00 100%);
  color: #fff;
  margin-left: 8px;
  vertical-align: middle;
}

/* 入力欄（テキスト、セレクトボックス）のデザイン */
.fixed-form .hs-input:not([type="checkbox"]):not([type="radio"]) {
  height: 38px;
  padding: 0 12px;
  border: 1px solid #D2D6E2;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.fixed-form .hs-input:focus {
  outline: none;
  border-color: rgba(240,127,26,.5); 
  box-shadow: 0 0 0 3px rgba(240,127,26,.15);
}

/* チェックボックス・ラジオボタンのリストを綺麗に並べる */
.fixed-form .inputs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fixed-form .inputs-list li {
  margin-bottom: 8px;
}
.fixed-form .inputs-list label {
  display: flex !important;
  align-items: flex-start;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}
/* チェックボックス本体の位置調整 */
.fixed-form .inputs-list input {
  margin-right: 10px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* 個人情報の取り扱いなどの法的同意テキスト */
.fixed-form .legal-consent-container p {
  font-size: 11px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 送信ボタン（オレンジグラデーション） */
.fixed-form .hs-button {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a00, #f36c21);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 0;
  transition: transform .15s ease, opacity .15s ease;
}
.fixed-form .hs-button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content{
  padding: 0 !important;
}
[data-hsfc-id=Renderer] .hsfc-Row {gap:10px !important; margin-bottom: 0px !important;display: grid !important;}
[data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons:has(>*:only-child){
  justify-content: center !important;
}
[data-hsfc-id=Renderer] .hsfc-Button{
  width: 86% !important;
}
[data-hsfc-id=Renderer] .hsfc-TextField>*:not(:last-child){
  margin-bottom: 0px !important;
}
[data-hsfc-id=Renderer] .hsfc-RadioFieldGroup>*:not(:last-child){
  margin-bottom: 5px !important;}[data-hsfc-id=Renderer] .hsfc-RadioFieldGroup__Options label{
    font-weight: 400;
  }
  [data-hsfc-id=Renderer] .hsfc-RadioFieldGroup__Options>*:not(:last-child) {
    margin-bottom: 4px !important;
}
[data-hsfc-id=Renderer] .hsfc-EmailField>*:not(:last-child){
  margin-bottom: 5px !important;

}
[data-hsfc-id=Renderer] .hsfc-RadioInput:checked:after{
  background-color: var(--hsf-button__background-color, var(--hsf-default-button__background-color))!important;
}
[data-hsfc-id=Renderer] .hsfc-RadioFieldGroup__Options label{font-size: 14px !important;}
[data-hsfc-id=Renderer] .hsfc-CheckboxField label{font-size: 14px !important;}
[data-hsfc-id=Renderer] .hsfc-ErrorAlert{
  font-size: 12px !important;
}
button.c-modal__close{
  display: none;
}
/* =========================
サンクスページ
========================= */
.body_thanks{
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
body.body_thanks{
  padding-right: 0 !important;
}
#thanks{
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  position: relative; 
}
.thanks-section {
  padding: 180px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.thanks-card {
  background: #fff;
  width: 100%;
  max-width: 760px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.04);
  padding: 70px 60px;
  position: relative;
  z-index: 1;
}
.thanks-card__title {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.4;
}
.thanks-card__lead {
  text-align: center;
  font-weight: 700;
  margin: 0 0 40px;
  line-height: 1.9;
  font-size: clamp(14px, 1vw, 16px);
}
.thanks-card__divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 50px 0;
}
.thanks-section-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  line-height: 1.4;
}
.thanks-section-text {
  margin: 0 0 20px;
  line-height: 1.8;
  font-size: 14px;
}
.thanks-calendar-placeholder {
  background: var(--bg-soft);
  border: 1px dashed #b8c7cf;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}
.thanks-mail {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.thanks-mail:hover {
  opacity: 0.7;
}
.thanks-back {
  text-align: center;
  margin-top: 60px;
}
.footer-thanks{
  padding: 20px 0 0;
  background: #fff; 
}
  /* HubSpot余白打ち消し */
  [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content>:last-child{margin-top: 0 !important; }

  /* ==================================================
   Breakpoint: 1200px
================================================== */
@media (max-width: 1200px){
  .hero__inner { padding: 0 0 0 50px; }
  .feature__head::before{ font-size: 180px; }
  .feature-item { padding: 50px 50px 50px 0; }
  .feature-item--reverse{ padding: 50px 0 50px 50px; }
  h3.feature-item__heading{ font-size: 32px; }
  .sp-only { display: block; }
}

/* ==================================================
   Breakpoint: 1024px (Tablet & SP Common Modal)
================================================== */
@media (max-width:1024px){
  /* 全体レイアウト */
  :root{ --form-w: 0px; }
  body{ padding: 0; padding-right: 0 !important; }
  .section-inner, .toc-container, .hero__inner, .clients__inner, .solution__inner, .voice__inner, .flow__inner, .mission__inner { padding: 0 20px; }
  #main{ width: 100% !important; max-width: none !important; }
  
  /* Header */
  .header__brand{ width: 28%; }
  .header__burger{
display: flex;
width: 42px;
height: 20px;
  }
  .header__burger span{
    height: 1.6px;
  }
  .header__nav,
  .header__cta,
  .header__tob {
    display: none;
  }
    .header-drawer-target{
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 70%;
      width: 100%;
      margin: 20px auto;
      align-items: center;
      }
    
      .btn--primary, .btn--primary2{
        width: 70%;
        padding: 20px;

      }
      .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
  }
  .header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

  /* HERO */
  .hero__inner{ grid-template-columns: 1fr; padding: 0 10vw; }
  .hero__lead{ font-size: 22px; }
  .hero .btn{ font-size: 18px; }
  .hero__bg::before{ right: -250px; top: 0; width: 120vw; }
  
  /* FEATURE */
  .feature__bubble{ font-size: 2vw; }
  .feature__lead{ font-size: 16px; }
  .feature__head::before{ font-size: 220px; }
  
  /* FLOW */
  .flow{ padding: 50px 0; }
  .hero__v-slider{
    right: 0;
  }

  /* Contact Modal & Fixed Form (HubSpot Logic) */
  .c-modal { 
    position: fixed; inset: 0; z-index: 9999; 
    opacity: 0; visibility: hidden; pointer-events: none; 
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .c-modal.is-open { 
    opacity: 1; visibility: visible; pointer-events: auto; 
  }
  .c-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.35); }
  .c-modal__panel {
    position: relative;
    width: min(92vw, 420px);
    max-height: 100vh;
    margin: 5vh auto;
    background: #F57C22;
    padding: 18px 14px 14px;
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
    box-sizing: border-box;
  }
  .c-modal__close { position: absolute; top: 8px; right: 8px; width: 44px; height: 44px; border-radius: 999px; border: 0; background: rgba(255,255,255,.92); display: grid !important; place-items: center; font-size: 22px; cursor: pointer; }
  .c-modal__body { background: #fff; border-radius: 14px; padding: 0; overflow: auto; max-height: none; box-sizing: border-box; }
  .c-modal .fixed-form__inner { max-height: none !important; overflow: auto !important; padding: 20px; height: auto;}
  .fixed-form .hs-form-html, .c-modal .hs-form-html { width: 100%; }

  /* HubSpot Custom Overrides */
  [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content{ padding: 0 !important;}
  [data-hsfc-id=Renderer] .hsfc-ErrorAlert{font-size: 13px !important;}
  [data-hsfc-id=Renderer] .hsfc-Row{flex-direction: row !important;gap:10px !important; display: grid !important;}
  [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons:has(>*:only-child){justify-content: center !important;}
  [data-hsfc-id=Renderer] .hsfc-Button{width:80% !important;}
  
  .fixed-form {
    position: static !important;
    width: 100% !important;
    height: 88vh;
    background: transparent !important;
    padding: 0 !important;
    display: block !important;
  }
  .sp-only { display: block; }

  /* CASE & FAQ */
  .section-voice .div-inner { padding: 100px 40px 0; }
  .section-voice .li-voice-item { flex: 0 0 auto; }
  .section-voice .div-voice-slider { gap: 20px;padding: 20px;}
  .section-faq .div-content{
    max-width: 100%;
  }
  .section-faq .div-inner { padding: 100px 20px 0; width: 100%; max-width: 100%; }
  .section-faq .ul-faq-list { min-width: 0; max-width: 100%; width: 100%; }
  .section-faq .table, .section-faq .table-2 { width: 100%; min-width: 0; margin-right: 0; padding-right: 40px; }
  .section-faq .text-wrapper-4,
  .section-faq .text-wrapper-6 {
     white-space: normal; word-break: break-word; font-size: clamp(0.833333vw, 15px, 15px);
    }
.feature .toc-container{
  margin: 0 -40px;
        width: auto !important;
}
.feature .toc-container::before,.voice .toc-container::before,.flow .toc-container::before,.faq .toc-container::before{
  top: 20px;
    font-size: 200px;
}
.footer__inner{
  gap: 40px;
  flex-direction: column;
  align-items: baseline;
}
.footer__nav{
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.footer__nav a{
  font-size: 12px;
  line-height: 1em;
}
.footer-active{
  width: fit-content;
 }
a.header__tob.btn.btn--primary2.footer-active{
  display: block;
}
.footer__bottom{
  font-size: 12px;
}
}
/* ==================================================
   Breakpoint: 980px
================================================== */
@media (max-width: 980px){
  /* Header & Hero */
  .header__nav, .header__cta,.header__tob { display: none; }
  .header__brand{ width: 22%; }
  .header__burger { display: flex; }
  .hero__bg::before{ width: 150vw !important; }
  .hero__inner{ padding: 0 50px; }
  
  /* Voice */
  .voice { padding:0 0 50px; }
  .voice__title { font-weight: 700; letter-spacing: 0.06em; margin: 0 0 14px; }
  .voice__lead { font-size: 16px; line-height: 150%; }
  .voice-slider { max-width: 860px; }
 
  /* CLIENTS */
  .clients__head{ padding: 0 50px; height: 12vh; }
  
  /* FEATURE */
  .feature__head::before{ font-size: 170px; top:-130px; }
  .feature-item{ padding: 50px 50px 50px 0; }
  .feature-item--reverse{ padding: 50px 0 50px 50px; }

  /* FLOW */
  .flow-list{ max-width: 100%; flex-direction: column; gap: 20px; }
  .flow__item{ display: grid; grid-template-columns: auto 2fr; gap: 40px; align-items: center; }
  .flow-con__title{ font-size: 24px; text-align: left; }
  .flow__text{ font-size: 16px; }
  .flow__icon{ margin: 0; }
  .flow__icon img{ width: 100%; max-width: 200px; }
  .flow__arrow{ display: none; }
  .flow__circle{
    font-size: 20px;
    text-align: left;
  }
  
  /* MISSION */
  .mission__inner::before{ font-size: 220px; }
  
  /* Others */
  .section-voice .SOLUTION, .section-faq .SOLUTION { font-size: 250px;top:-20px; }
}

/* ==================================================
   Breakpoint: 767px (SP)
================================================== */
@media (max-width: 767px){
  :root { --gutter: 16px; --header-h: 65px; }
  html, body { overflow-x: hidden;  scroll-padding-top: 64px; /* 固定ヘッダーの高さ */}
  .sp-only { display: block; }
  .toc-container { padding-left: 20px; padding-right: 20px; }
/* 共通 */
.head__title{
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.title__head{
  margin: 0 0 20px;
}

  /* Header */
  .header { background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
  .header .toc-container { padding-left: 16px; padding-right: 16px; }
  .header__inner { height: 64px; }
  .header__logo { height: 22px; width: auto; margin:0; }
  .header__burger { width: 42px; height: 15px; display: flex; flex-direction: column; justify-content: space-between; }
  .header__burger span { display: block; height: 1.6px; width: 100%; background: #32404C; border-radius: 999px; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
  .header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .drawer__nav{
    padding: 40px 20px;
  }
    /* ボタンCSS */
    .btn--primary{
      background: linear-gradient(90deg, rgba(225, 138, 41, 1) 0%, rgba(229, 92, 1) 100%);
      color: #fff;
      box-shadow: 0 14px 30px rgba(240, 127, 26, .25);
      line-height: 1;
      padding: 20px;
      width: 100%;
      max-width: 70%;
      margin: 0;
    }
    .btn--primary2{
      background-color:#32404C;
      color: #fff;
      box-shadow: 0 14px 30px rgba(240, 127, 26, .25);
      line-height: 1;
      padding: 20px;
      width: 100%;
      max-width: 70%;
      margin: 0;
    }
    .header-drawer-target{
      max-width: 100%;
    }
  /* SP Bottom Fixed CTA */
  .sp-bottom-cta {
    position: fixed; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(8px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); z-index: 90; box-sizing: border-box;
    transform: translateY(100%); opacity: 0; visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, visibility 0.4s;
  }
  .sp-view{display: block;}
  .sp-bottom-cta.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }
  .sp-bottom-cta .btn { width: 100%; max-width: 80%; margin: 0 auto; padding: 16px; font-size: 18px; display: flex; }

  /* Hero */
  .hero { display: flex; flex-direction: column; background: #fbf4ef;max-height: 100%; min-height: 75vh; height: 100%;padding: 0;display: flex; align-items: center; justify-content: center; padding-bottom: 40px;}
  .hero__inner { order: 1; padding: 20px 20px 40px; width: auto; min-height: auto;}
  .hero__bg { order: 2; position: relative; width: 100vw; overflow: hidden; }
  .hero__v-slider { position: relative; width: 100%; mix-blend-mode: normal; filter: none; opacity: 1;}
  .hero__v-track { flex-direction: row; width: max-content; animation: kv-marquee-x 25s linear infinite; }
  .hero__v-track img { width: 200px; height: 150px; }
  @keyframes kv-marquee-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } 
  }
  .hero__title { font-size: 26px; }
  .hero__title-accent { font-size: 10.66vw; width: 100%; white-space: nowrap; width: 100%;display: block;}
  .hero__lead { font-size: 14px; margin: 0 0 40px 0; }
  .hero .btn { width: 100%; font-size: 4.26vw; padding: 20px; min-width: 100%; display: flex;}
  .hero__bg::after{display: none;
}
/* Clients */
.clients{
  background: #fff;
  padding: 10px 0 0;
}

.clients__head{
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1px auto;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
}

.clients__head::after{
  content: "";
  grid-column: 2;
  width: 1px;
  height: 44px;
  background: #cfd8dc;
}

.clients .section-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: .08em;
  line-height: 1;
  color: #b9c7cf;
}

.clients .section-title--en::after{
  content: none;
}

.clients__sub{
  margin: 0;
  width: auto;
  font-size: 3.2vw;
  line-height: 1.45;
  font-weight: 700;
  color: #1f2937;
}

.clients__marquee{
  width: calc(100% + 45px);
  margin-left: -16px;
  margin-right: -16px;
  gap: 10px;
  padding: 0;
}

.clients__rail{
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.clients__track{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  gap: 24px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.clients__logo{
  flex: 0 0 110px;
  width: 110px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__logo img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-grid{
  grid-template-columns: repeat(2, 1fr);
}
  /* FEATURE (SP) */
  #solutions{ margin: 0; width: 100%; }
  .feature { padding: 50px 0; }
  .feature__head { margin-bottom: 20px; }
  .feature .toc-container{
    margin: 0;
  }
  .feature .toc-container::before{
    font-size: 90px;
    top:60px;

  
} 
  .feature__label { font-size: 20px; }
  .feature__title { font-size: 52px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 14px; }
  .feature__bubble { font-size: 13px; margin: 0 0 20px; }
  .feature__bubble::after { border-top: 8px solid #f6d3bf; }
  .feature__lead { font-size: 13px;margin: 0; }
  
  .feature-item { gap:0; padding: 20px 0; flex-direction: column; }
  .feature-item__image img { border-radius: 10px; width: 110%; position: relative; left: -40px; }
  .feature-item__content { padding-top: 20px; width: 100%; }
  h3.feature-item__heading { font-size: 5.86vw !important; margin: 0 0 20px; }
  .feature-item__text { font-size: 3.73vw; }
  
  .feature-item--tint { position: relative; padding: 20px 0}
  .feature-item--tint::before { content: ""; position: absolute; inset: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: #FBEFE8; z-index: -1; }
  .feature-item--reverse-img { left: unset !important; right: 0px; }
  
  /* CASE & FAQ (SP) */
  .section-voice .div-inner { padding: 90px 16px 0; }
  .section-voice .text-wrapper-2 { font-size: 56px; }
  .section-voice .SOLUTION { font-size: 140px; }
  .section-voice .span-remove-wrapper{
    width: 48px;
    height: 48px;
  }
  .voice{padding: 100px 0 50px;}
  .voice .toc-container{
padding: 0;
  }
  .voice .toc-container::before{
    font-size: 100px;
    top: -70px;
  }
  .section-voice .span{
    font-size: 24px;
  }
  .section-voice .li-voice-item { flex: 0 0 auto; width: 220px;}
  .section-voice .div-voice-content{
    height: 250px;
    padding: 10px 15px 15px;
  }
  .section-voice .text-wrapper-4{
    font-size: 16px;
  }
  .section-voice .text-wrapper-5{
    font-size: 12px;
  }
  .section-voice .text-wrapper-7{
    font-size: 14px;
  }
  .section-voice .text-wrapper-6{
    font-size: 14px;
  }
  .section-voice .text-wrapper-8{
    font-size: 24px;
  }
  .section-voice .text-wrapper-9{
    font-size: 24px;
  }
  .section-faq .div-inner { padding: 72px 16px 0; }
  .section-faq .text-wrapper-2 { font-size: 56px; }
  .section-faq .frame.faq-answer { background: #FBEFE8; padding: 15px; border-radius: 8px; }
  .section-faq .SOLUTION { font-size: 140px; }
  .section-voice .prev-bnext{
    padding: 0;
    padding-right: 15px;
  }
  .voice-img{
    width: 75px;
    height: 75px;
  }

  /* Flow (SP) */
  .flow{ padding: 100px 0 50px; }
  .flow__title { font-size: 52px; }
  .flow__head::before{ top:-70px; font-size: 100px; }
  .flow-list { gap: 30px; }
  .flow__item { grid-template-columns: 120px 1fr; gap: 18px; }
  .flow__icon { width: 120px; height: 120px; }
  .flow-con__title { font-size: 18px; }
  .flow .toc-container {
    padding: 0 20px 
     }
  .flow .toc-container::before{ Top: -60px;
    font-size: 100px;}
    .flow__circle{
      font-size: 16px;
      text-align: left;
    }
  /* Mission (SP) */
  #mission { padding: 100px 0 50px; }
  #mission .mission__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px;
}
.mission__content{display: contents;}
.mission__media{    margin: 40px 0 20px;
  padding: 0 20px;}
  .mission__inner::before{ font-size: 100px; top:-70px; }
  .mission__kicker{text-align: center;}
  .mission__title { font-size: 52px; margin: 0;text-align: center;}
  .mission__lead {grid-row: 4;
    margin: 0;
    font-size: 20px;
    padding: 0 20px;}
  .mission__text { grid-row: 5;
    margin: 16px 0 0;
    font-size: 16px;}
  #mission .mission__company-link {
    grid-row: 6;
    justify-self: start;
    margin: 20px 0 0;
    padding: 0 20px;
    font-size: 17px;
  }
  #mission .btn { grid-row: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 80%;
    margin: 50px auto 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 4.2666666667vw;
    line-height: 1;}
   
/* FAQ */
.faq {
  padding: 100px 0 50px;
}
.faq .toc-container{
padding: 0 20PX;
}
.faq .toc-container::before{
  top: -65px;
  font-size: 100px;
}
.section-faq .faq-item{
  padding: 20px 0;
}

  /* Footer (SP) */
  .footer{ padding: 20px 0 90px; }
  .footer__inner{
    flex-direction: column;
    align-items: flex-start;

  }
  .footer__logo { margin: 0 0 20px; }
  .footer__nav {        display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    row-gap: 30px;
    font-size: 12px;
    font-weight: 600;
    max-width: 100%;
    letter-spacing: 0.08em;
    width: 100%;
    margin-bottom: 20px; }
    .footer__nav a{
      font-size: 14px;
    }
  .footer__nav a::after { content: ""; border-top: 2px solid #000; border-right: 2px solid #000; transform: rotate(45deg) translateY(-50%); width: 5px; height: 5px; position: absolute; right: 0; top: 44%;
   }
   a.header__tob.btn.btn--primary2.footer-active{
    display: block;
    max-width: 80%;
    margin: 20px auto 0;
    text-align: center;
  }
   .footer-active::after{
    display:none;
   }
.footer__bottom{
  font-size: 12px;
}


/* ==================================================
   State Locks
================================================== */
html.is-drawer-open, body.is-drawer-open,
html.is-modal-open, body.is-modal-open { overflow: hidden !important; }

body.is-drawer-open .sp-bottom-cta { opacity: 0 !important; visibility: hidden !important; transform: translateY(100%) !important; pointer-events: none !important; }

/* =========================
サンクスページ
========================= */
.thanks-section {
  padding: 120px 16px 80px;
}
.thanks-card {
  padding: 40px 24px;
}
.thanks-card__title {
  font-size: 22px;
}
.thanks-section-title {
  font-size: 18px;
}
.thanks-calendar-placeholder {
  padding: 40px 10px;
}
.thanks-back .btn {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.footer-thanks{
  padding: 20px 0 0;
  background: #fff; 
}

  /* HubSpot余白打ち消し */
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content>:last-child{margin-top: 0 !important; }
}