@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button,
::file-selector-button {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

*:focus-visible {
  outline: 2px solid magenta;
  outline-offset: 2px;
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * line-heightの計算
******************************************/
/*****************************************
 * percentの計算
******************************************/
/*****************************************
 * emの計算
******************************************/
/*****************************************
 * 流動値（clamp）の計算
 * px の最小・最大値を渡すと px+vw の clamp を返す。
 * rem を使わないので、可変rootフォントの影響を受けない。
 * 例: left: fluid(20px, 97px);              // 768〜1440px で 20→97px
 *     width: fluid(70px, 166px, 375px, 768px); // 区間を指定も可
******************************************/
/* Grid */
.grid {
  --grid-cols-sm: 1;
  --grid-gap-sm: 0;
  --grid-cols: var(--grid-cols-sm);
  --grid-gap: var(--grid-gap-sm);
  display: block grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(var(--grid-min-size, 0), 1fr));
  gap: var(--grid-gap);
}
@media (width >= 48rem) {
  .grid {
    --grid-cols-md: var(--grid-cols-sm);
    --grid-gap-md: var(--grid-gap-sm);
    --grid-cols: var(--grid-cols-md);
    --grid-gap: var(--grid-gap-md);
  }
}
@media (width >= 64rem) {
  .grid {
    --grid-cols-lg: var(--grid-cols-md);
    --grid-gap-lg: var(--grid-gap-md);
    --grid-cols: var(--grid-cols-lg);
    --grid-gap: var(--grid-gap-lg);
  }
}
.grid > * {
  --grid-col-sm: auto;
  --grid-row-sm: auto;
  --grid-order-sm: 0;
  --grid-col: var(--grid-col-sm);
  --grid-row: var(--grid-row-sm);
  --grid-order: var(--grid-order-sm);
  grid-column: var(--grid-col);
  grid-row: var(--grid-row);
  order: var(--grid-order);
}
@media (width >= 48rem) {
  .grid > * {
    --grid-col-md: var(--grid-col-sm);
    --grid-row-md: var(--grid-row-sm);
    --grid-order-md: var(--grid-order-sm);
    --grid-col: var(--grid-col-md);
    --grid-row: var(--grid-row-md);
    --grid-order: var(--grid-order-md);
  }
}
@media (width >= 64rem) {
  .grid > * {
    --grid-col-lg: var(--grid-col-md);
    --grid-row-lg: var(--grid-row-md);
    --grid-order-lg: var(--grid-order-md);
    --grid-col: var(--grid-col-lg);
    --grid-row: var(--grid-row-lg);
    --grid-order: var(--grid-order-lg);
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

:root {
  /* Space */
  --space-md: clamp(
    1rem,
    0.6479rem + 1.5023vi,
    2rem
  );
  --space-lg: clamp(
    1.5rem,
    0.9718rem + 2.2535vi,
    2rem
  );
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

/* 共通アニメーション・UI */
/* =========================================================
   アニメーション共通パーツ（マルチクラスで付与するだけで適用）
   JS が画面内で .is-show を付与（1回限り発火）。
   例: <h2 class="service__title js-up">  /  <ul class="js-stagger"> ...
   ========================================================= */
/* ----- 出現：下からフェードアップ → js-up ----- */
.js-up {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.js-up--fast {
  transition-duration: 0.6s;
}

.js-up--slow {
  transition-duration: 1.3s;
}

/* ----- 出現：フェードのみ → js-fade ----- */
.js-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: opacity;
}

.js-fade.is-show {
  opacity: 1;
}

/* ----- スタッガー：親に付けると直下の子を順番にフェードアップ → js-stagger ----- */
.js-stagger > * {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.12s);
  will-change: opacity, transform;
}

.js-stagger.is-show > * {
  opacity: 1;
  transform: translateY(0);
}

/* PCはまとめて／SPは順番（画像先出し→テキスト追従などのレスポンシブ） → js-stagger--rwd */
@media screen and (min-width: 768px) {
  .js-stagger--rwd > * {
    transition-delay: 0s;
  }
}
/* ----- 遅延ユーティリティ（追従させたい要素に併用） → js-d1..js-d5 ----- */
.js-d1 {
  transition-delay: 0.1s;
}

.js-d2 {
  transition-delay: 0.2s;
}

.js-d3 {
  transition-delay: 0.3s;
}

.js-d4 {
  transition-delay: 0.4s;
}

.js-d5 {
  transition-delay: 0.5s;
}

/* ----- 文字分割：1文字ずつブラー＋透明度で出現 → js-split（JSが自動で1文字spanに分割） ----- */
.js-split__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7em);
  filter: blur(5px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease;
  transition-delay: calc(var(--ci, 0) * 0.05s);
  will-change: opacity, transform, filter;
}

.js-split.is-show .js-split__char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ----- ホバー：通常グラデ → ホバーで別グラデにフェード → c-grad ----- */
/* 色は --grad / --grad-hover で差し替え可（既定はFV青→ティール） */
.c-grad {
  position: relative;
  overflow: hidden;
  background-image: var(--grad, linear-gradient(90deg, #2193c8 19%, #1178a8 100%));
}

.c-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--grad-hover, linear-gradient(90deg, #1483aa 0%, #1bbaad 99%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.c-grad > * {
  position: relative;
  z-index: 1;
}

@media (any-hover: hover) {
  .c-grad:hover::before {
    opacity: 1;
  }
}
/* ----- ホバー：中の矢印が右へ揺れる → c-arrow（矢印に c-arrow__icon） ----- */
.c-arrow__icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .c-arrow:hover .c-arrow__icon {
    transform: translateX(0.5rem);
  }
}
/* ----- 押せない表現：ホバー無効（反応しない） → is-static ----- */
.is-static {
  cursor: default;
  pointer-events: none;
}

@media (any-hover: hover) {
  .is-static:hover {
    opacity: 1; /* base の a:hover 減光も無効化＝完全に無反応 */
  }
}
/* ----- モーション軽減設定の尊重 ----- */
@media (prefers-reduced-motion: reduce) {
  .js-up,
  .js-fade,
  .js-stagger > *,
  .js-split__char {
    transition: none;
  }
}
/* ===== ヘッダー（PC：ロゴ＋ナビ＋CONTACTブロック／SP：ロゴ＋ハンバーガー） ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  background-color: #fff;
}

.header__inner {
  display: flex;
  flex: 1;
  align-items: center;
  min-height: 3.75rem;
  padding: 0.65625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    min-height: 5.25rem;
    padding: 0.875rem 1.25rem 0.875rem 1.375rem;
  }
}

.header__logo {
  display: block;
}

.header__logo img {
  width: 14.9375rem;
  height: 2.4375rem;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    margin-left: clamp(40px, -28.5714285714px + 8.9285714286vw, 100px);
  }
}

.header__list {
  display: flex;
}

.header__item:not(:first-child) {
  margin-left: clamp(20px, -16.5714285714px + 4.7619047619vw, 52px);
}

.header__link {
  position: relative;
  display: block;
  padding-block: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 5.4285714286px + 0.5952380952vw, 14px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #231815;
  transition: color 0.3s ease;
}

.header__link::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0.875rem;
  left: 0;
  height: 0.125rem;
  background-color: #189ee2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* 現在地（このカンプでは CONCEPT がアクティブ表示） */
.header__link.is-current {
  color: #189ee2;
}

.header__link.is-current::after {
  transform: scaleX(1);
}

@media (any-hover: hover) {
  .header__link:hover {
    color: #189ee2;
    opacity: 1;
  }
  .header__link:hover::after {
    transform: scaleX(1);
  }
}
.header__link:focus-visible {
  outline: 0.125rem solid #189ee2;
  outline-offset: 0.125rem;
}

/* CONTACT：ヘッダー全高の青いブロック（右端まで・最大幅260px） */
.header__contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    max-width: 16.25rem;
    padding: 0 3.8125rem 0 2rem;
    background-color: #189ee2;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: background-color 0.3s ease;
  }
}

/* CONTACT 内の矢印アイコン（Figma書き出しSVG・65px幅） */
.header__contact-arrow {
  width: 4.0625rem;
}

@media (any-hover: hover) {
  .header__contact:hover {
    background-color: #1178a8;
    opacity: 1;
  }
}
.header__contact:focus-visible {
  outline: 0.125rem solid #1178a8;
  outline-offset: -0.25rem;
}

/* PC ではハンバーガーを使わない */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
/* ===== ハンバーガーボタン（青い四角・3本線 ⇄ ✕）
   閉じている時はヘッダー右上、開いている時はドロワーのダーク帯右上に重なり×として機能 ===== */
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 3.75rem;
  height: 3.75rem;
  border: none;
  background-color: #189ee2;
  cursor: pointer;
}

/* 3本線（左右insetで中央寄せ＝transformはアニメ専用に温存） */
.hamburger__line {
  position: absolute;
  left: 1.125rem;
  right: 1.125rem;
  height: 0.125rem;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease;
}

.hamburger__line:nth-child(1) {
  top: 1.5rem;
}

.hamburger__line:nth-child(2) {
  top: 1.875rem;
}

.hamburger__line:nth-child(3) {
  top: 2.25rem;
}

/* ✕へ変化：上=中央へ＋45度／中=消える／下=中央へ＋-45度 */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

/* ===== ドロワーメニュー（SP全画面・白背景／ボタンと連動） ===== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.drawer.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s;
}

/* 上部のダーク帯（ロゴ＋右上の×はハンバーガーが兼ねる） */
.drawer__bar {
  display: flex;
  align-items: center;
  height: 3.75rem;
  padding-inline: 1.25rem;
  background-color: #fff;
}

/* ロゴはヘッダー（header__logo img）と同じ寸法・自然色に統一 */
.drawer__logo {
  width: 14.9375rem;
}

.drawer__logo img {
  width: 14.9375rem;
  height: 2.4375rem;
}

.drawer__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 1.5rem 3rem;
}

.drawer__list {
  width: 100%;
  text-align: center;
}

.drawer__item {
  margin-top: 1.5rem;
}

.drawer__item:first-child {
  margin-top: 0;
}

/* リンクはほんの少し遅れて立ち上がる演出 */
.drawer__link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #231815;
  transform: translateY(1rem);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, color 0.3s ease;
}

.drawer.is-active .drawer__link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

@media (any-hover: hover) {
  .drawer__link:hover {
    color: #189ee2;
    opacity: 1;
  }
}
.drawer__link:focus-visible {
  outline: 0.125rem solid #189ee2;
  outline-offset: 0.25rem;
}

/* 下部のボタン2つ（既存 .button を再利用） */
.drawer__buttons {
  width: 100%;
  max-width: 22.5rem;
  margin-top: 1.875rem;
}

.drawer__button {
  width: 100%;
}

.drawer__button:not(:first-child) {
  margin-top: 1rem;
}

/* メニュー展開中は背面スクロールを固定 */
body.is-drawer-open {
  overflow: hidden;
}

/* ===== FVセクション（左コピー＋右レーダーあしらい）===== */
.fv {
  position: relative;
  /* SP：ヘッダー(60) + FV = 100vh（追従CTAはFVを過ぎてから出現） */
  height: calc(100vh - 3.75rem);
  min-height: 32.5rem;
  overflow: hidden;
  background-color: #2b2b2b;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fv {
    height: calc(100vh - 5.25rem);
  }
}

.fv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 80rem;
  height: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    align-items: flex-start;
    padding-top: 7.1875rem;
    padding-inline: 3.75rem;
  }
}

.fv__copy {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__copy {
    max-width: 46.5625rem;
  }
}

/* 左コピーの出現：順番にフェードアップ（--i で段差）。
   見出し（js-split）は1文字ずつブラー出現のため、ここの素のフェードアップからは除外 */
.fv__copy > *:not(.js-split) {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.14s);
  will-change: opacity, transform;
}

.fv.is-show .fv__copy > *:not(.js-split) {
  opacity: 1;
  transform: translateY(0);
}

.fv__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, -3.4285714286px + 8.5714285714vw, 30px);
  line-height: 1.23;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 390px) {
  .fv__lead {
    font-size: clamp(32px, 13.4285714286px + 4.7619047619vw, 42px);
  }
}
@media screen and (min-width: 768px) {
  .fv__lead {
    font-size: 4.1875rem;
  }
}

.fv__en {
  margin-top: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(9px, 4.4285714286px + 1.4285714286vw, 10px);
  letter-spacing: 0.1em;
  color: #a0a0a0;
}
@media screen and (min-width: 768px) {
  .fv__en {
    font-size: 0.9375rem;
  }
}

.fv__text {
  margin-top: 1.125rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.64;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 390px) {
  .fv__text {
    font-size: clamp(14px, 6.5714285714px + 1.9047619048vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .fv__text {
    margin-top: 2.8125rem;
    font-size: clamp(12px, 6.2857142857px + 0.744047619vw, 17px);
  }
}

.fv__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .fv__buttons {
    flex-direction: row;
    align-items: center;
    gap: 2.625rem;
    margin-top: 4.75rem;
  }
}

/* FV内のボタン（Figma：padding 16/42/15・テキストと矢印gap 18・中央寄せ）
   SPは縦積みで全幅／PCは横並びでコンテンツ幅（折り返さない） */
.fv__buttons .button {
  width: 15.875rem;
  max-width: 100%;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.0625rem 1.6875rem;
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 390px) {
  .fv__buttons .button {
    width: clamp(254px, 131.4285714286px + 31.4285714286vw, 320px);
    font-size: clamp(12px, 6.4285714286px + 1.4285714286vw, 15px);
    padding: 1.125rem clamp(27px, 10.2857142857px + 4.2857142857vw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .fv__buttons .button {
    width: auto;
    flex-shrink: 0;
    justify-content: center;
    gap: 1.125rem;
    padding: 1rem 2.625rem 0.9375rem;
    font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
  }
}

/* FVボタン内の矢印：SPは小さめ（Figma 30.75px）／PCは通常 */
.fv__buttons .button__arrow {
  width: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .fv__buttons .button__arrow {
    width: 2.65625rem;
  }
}

/* 右：レーダーあしらい（背面・はみ出し配置） */
.fv__deco {
  position: absolute;
  z-index: 1;
  /* レーダーの大きさは --deco-w（vw）だけで調整できる。
     小さく → ズームアウト ／ 大きく → ズームイン。
     left / top は --deco-w から自動計算され、リング中心は常に
     「横 53vw・縦 73vh（＝ボタン直下）」に固定される。
     （SVGのリング中心は要素ボックスの約 59% / 39% の位置にあるため） */
  --deco-w: 158;
  top: calc(67vh - 0.39 * var(--deco-w) * 1vw);
  left: calc(53vw - 0.59 * var(--deco-w) * 1vw);
  width: calc(var(--deco-w) * 1vw);
  aspect-ratio: 1/1;
  transform: none;
  opacity: 1;
}
@media (min-width: 700px) {
  .fv__deco {
    --deco-w: 158;
    top: calc(42vh - 0.39 * var(--deco-w) * 1vw);
  }
}
@media (min-width: 500px) {
  .fv__deco {
    --deco-w: 137;
    top: calc(67vh - 0.39 * var(--deco-w) * 1vw);
    left: calc(65vw - 0.59 * var(--deco-w) * 1vw);
  }
}
@media screen and (min-width: 768px) {
  .fv__deco {
    --deco-w: 215;
    top: 65%;
    left: auto;
    right: -19.125rem;
    width: min(131.25rem, 123%);
    transform: translateY(-50%);
    opacity: 1;
  }
}

/* SCROLL誘導 */
.fv__scroll-wrap {
  position: absolute;
  right: 1.25rem;
  bottom: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__scroll-wrap {
    right: 2.5rem;
  }
}

/* ===== SCROLL誘導インジケーター（ドットが縦線を下る・常時ループ） → c-scroll ===== */
/* SPファースト：base = Figma SP（54×103・線83・テキスト10px）／PC = 768px以上 */
.c-scroll {
  position: relative;
  display: flex;
  justify-content: center;
  width: 3.375rem;
  height: 6.4375rem;
}
@media screen and (min-width: 768px) {
  .c-scroll {
    width: 7.5rem;
    height: 12.5rem;
  }
}

.c-scroll__text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-scroll__text {
    margin-top: 1.375rem;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
  }
}

.c-scroll__line {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  width: 0.09375rem;
  height: 5.1875rem;
  background-color: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-scroll__line {
    top: 3.25rem;
    width: 0.0625rem;
    height: 8.125rem;
  }
}

.c-scroll__dot {
  --scroll-travel: 4.75rem; /* 線の高さ83 − ドット7.5 ≒ 76 */
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.46875rem;
  height: 0.46875rem;
  margin-left: -0.234375rem;
  border-radius: 50%;
  background-color: #fff;
  animation: c-scroll-dot 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@media screen and (min-width: 768px) {
  .c-scroll__dot {
    --scroll-travel: 7.6875rem;
    width: 0.4375rem;
    height: 0.4375rem;
    margin-left: -0.21875rem;
  }
}

@keyframes c-scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(var(--scroll-travel));
    opacity: 0;
  }
}
/* ===== レーダーあしらいのアニメ（js-fv 配下のSVG各パーツ）===== */
/* 同心円：内→外へ順にふわっと出現（--d で段差） */
.js-fv__ring {
  opacity: 0;
  transform: scale(0.86);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--d, 0) * 0.13s);
}

.js-fv.is-show .js-fv__ring {
  opacity: 1;
  transform: scale(1);
}

/* 矢（中心へ刺さる針）：画面の端から強く加速して中心へ勢いよく刺さる（さらに速く・シャープ・揺れなし）
   デザイナー依頼：速度を上げ、よりシャープで勢いのある印象に */
.js-fv__arrow {
  opacity: 0;
  transform: translate(60%, -55%);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.1s ease, transform 0.18s cubic-bezier(0.65, 0, 0.85, 0);
  transition-delay: 0.95s; /* 着地=1.13s */
}

.js-fv.is-show .js-fv__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* 中央グロー（背景のぼかし）：矢が刺さった瞬間（1.13s）から発光して広がり、そのまま保持（点滅なし）。
   デザイナー依頼：ぼかしの広がりは背景演出。次のモーション（2本線）はこの広がりを待たずに進む */
.js-fv__glow {
  opacity: 0;
  transform: scale(0.55);
  transform-box: fill-box;
  transform-origin: center;
}

.js-fv.is-show .js-fv__glow {
  animation: js-fv-glow 0.8s ease-out 1.13s forwards;
}

@keyframes js-fv-glow {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}
/* 2本線：矢が刺さった直後（1.18s／着地1.13sの直後・gap≒0.05s）に開始。
   デザイナー依頼：矢→2本線の間隔をさらに短縮し、ぼかしの広がりを待たずテンポよく展開 */
.js-fv__sweep {
  opacity: 0.25;
  transition: opacity 1.1s ease-out;
  transition-delay: 1.18s;
}

.js-fv.is-show .js-fv__sweep {
  opacity: 1;
}

.js-fv__reveal {
  transform: scaleX(0);
  transform-origin: left center;
  transform-box: fill-box;
  transition: transform 1.4s cubic-bezier(0.5, 0, 0.75, 0);
  transition-delay: 1.18s;
}

.js-fv.is-show .js-fv__reveal {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .fv__copy > *,
  .js-fv__sweep,
  .js-fv__reveal,
  .js-fv__ring,
  .js-fv__arrow {
    transition: none;
  }
  .js-fv.is-show .js-fv__glow {
    animation: none;
    opacity: 0.4;
    transform: scale(1);
  }
}
.fv__text-br {
  display: inline;
}
@media screen and (min-width: 768px) {
  .fv__text-br {
    display: none;
  }
}

/* 共通ボタン（再利用Block）。動きは c-grad / c-arrow / is-static を併用する
   例（③）: <a class="button c-grad c-arrow"><span>受ける案件・受けない案件</span><span class="c-arrow__icon">⟶</span></a>
   例（④）: <a class="button button--gray is-static"><span>他社をご紹介します</span></a> */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 22.5rem;
  padding: 1.375rem 1.75rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: clamp(12px, 8.5714285714px + 0.4464285714vw, 15px);
  }
}

@media (any-hover: hover) {
  .button:hover {
    opacity: 1; /* base の a:hover 減光を打ち消す（動きは c- ユーティリティ側で表現） */
  }
}
.button--dark {
  background-color: #2b2b2b;
  border: 0.0625rem solid #fff;
}

.button--gray {
  background-color: #a7aeb1;
}

/* ボタン内の矢印アイコン（Figma書き出しSVG・42.5px幅） */
.button__arrow {
  width: 2.65625rem;
}

/* 共通パーツ */
/* ===== 共通セクション見出し（SERVICE / WORK / POLICY / BLOG 共通） =====
   <div class="xxx__head heading" data-title="WORK">        ← 透かしは data-title
     <p class="heading__jp">実績</p>
     <p class="heading__en">WORK</p>
     <p class="heading__lead">
       <span class="heading__line" aria-hidden="true"></span>
       <span class="heading__catch">受ける案件を選んできた、その結果</span>
     </p>
   </div>

   ・透かし（巨大英字）は ::before で data-title を描画し、左へブリード
   ・背景が白いセクション   → 透かしは $gray-light（既定）
   ・背景がグレーのセクション → heading--wm-white を併用して透かしを白に */
.heading {
  --heading-wm: #e6eaeb;
  position: relative;
  z-index: 0;
  display: inline-grid;
  grid-template: auto auto auto/max-content;
  text-align: left;
}

.heading--wm-white {
  --heading-wm: #fff;
}

/* 透かし：::before を同じ列・全行に重ねて背面へ（absolute は使わない） */
.heading::before {
  content: attr(data-title);
  grid-column: 1;
  grid-row: 1/4;
  z-index: -1;
  align-self: center;
  justify-self: start;
  width: 0; /* 列幅を広げない（テキストははみ出して描画） */
  /* インナー左端を越えて左へブリード。ただしビューポート左端より外へは出さない（先頭文字が切れない） */
  margin-left: max(-8vw, -20px);
  transform: translateY(-1rem); /* 透かしを少し上へ */
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--heading-wm);
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .heading::before {
    font-size: 12.875rem;
    transform: translateY(-6.25rem);
    margin-left: max(-8vw, -1 * (max((100vw - 1200px) / 2, 0px) + 25px));
  }
}

.heading__jp {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .heading__jp {
    font-size: 1.4375rem;
  }
}

.heading__en {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  margin-top: 0.5625rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 4.375rem;
  }
}

.heading__lead {
  grid-column: 1;
  grid-row: 3;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .heading__lead {
    gap: 2.3125rem;
    margin-top: 1.0625rem;
  }
}

.heading__line {
  display: block;
  flex-shrink: 0;
  width: 1.4375rem;
  height: 0.125rem;
  background-color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .heading__line {
    width: 3.4375rem;
  }
}

.heading__catch {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .heading__catch {
    font-size: 1.875rem;
  }
}

/* ===== チェックリスト（再利用：チェックマーク付き箇条書き） ===== */
.check-list__item {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.check-list__item:not(:first-child) {
  margin-top: 0.75rem;
}

.check-list__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0.42em;
  left: 0.125rem;
  width: 0.9375rem;
  height: 0.5rem;
  border-left: 0.125rem solid #189ee2;
  border-bottom: 0.125rem solid #189ee2;
  transform: rotate(-45deg);
}

.check-list__note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #a0a0a0;
}

/* 明色テキスト（暗い背景で使う） */
.check-list--light .check-list__item {
  color: rgba(255, 255, 255, 0.9);
}

.check-list--light .check-list__note {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== タグ（再利用：実績などのカテゴリラベル） ===== */
.tag {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  border: 0.0625rem solid #189ee2;
  border-radius: 62.4375rem;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #189ee2;
}

/* ===== もっと見るボタン（再利用：実績・ブログ一覧導線） ===== */
.more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-width: 16.25rem;
  padding: 1.0625rem 1.875rem;
  background-color: #189ee2;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .more-button {
    font-size: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .more-button:hover {
    background-color: #1178a8;
    opacity: 1;
  }
}
.more-button:focus-visible {
  outline: 0.125rem solid #1178a8;
  outline-offset: 0.125rem;
}

/* セクション */
/* ブランドグラデーション（お受けする案件） */
/* ===== COMPARE：受けない案件 / お受けする案件 ===== */
.compare {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .compare {
    padding-block: 2.75rem;
  }
}

.compare__inner {
  max-width: 67.5rem;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .compare__inner {
    padding-inline: 25px;
  }
}

.compare__head {
  text-align: center;
}

.compare__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .compare__title {
    font-size: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  }
}

.compare__lead {
  margin-top: 0.5625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .compare__lead {
    font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  }
}

.compare__body {
  display: flex;
  flex-direction: column;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .compare__body {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    margin-top: 2.875rem;
  }
}

.compare__card {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .compare__card {
    flex: 1 1 0;
    max-width: 28.4375rem;
  }
}

/* 中間の矢印（SP：下向き／PC：右向き）。Figma の2色シェブロンSVG */
.compare__arrow {
  width: 2.125rem;
  height: 1.5625rem;
  margin: 0.875rem auto;
  background: url("../images/compare/compare_arrow.svg") no-repeat center/contain;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .compare__arrow {
    width: 3.125rem;
    height: 2.3125rem;
    margin: 0 0.875rem;
    align-self: center;
    transform: rotate(0);
  }
}

/* ===== カード本体（再利用Block：compare-card） ===== */
.compare-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0.1875rem solid #80949b;
  background-color: #fff;
}

/* お受けする案件：枠線をグラデーションに（background-clip） */
.compare-card--yes {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #2193c8 19%, #1178a8 100%) border-box;
}

.compare-card__head {
  padding: 1.375rem 0.75rem;
  background-color: #80949b;
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}
@media screen and (min-width: 768px) {
  .compare-card__head {
    padding: 1.125rem 0.75rem;
    font-size: clamp(18px, 11.1428571429px + 0.8928571429vw, 24px);
  }
}

.compare-card--yes .compare-card__head {
  background: linear-gradient(90deg, #2193c8 19%, #1178a8 100%);
}

.compare-card__list {
  flex: 1;
  padding: 1.25rem clamp(10px, -12.8571428571px + 2.9761904762vw, 30px) 0;
}

.compare-card__item {
  position: relative;
  z-index: 0;
  padding-left: 1.9375rem;
}

.compare-card__item:not(:first-child) {
  margin-top: 0.875rem;
}

/* チェックアイコン（SVG：NO=ブルーグレー / YES=グラデーション） */
.compare-card__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0.25rem;
  left: 0;
  width: 1.25rem;
  height: 0.9375rem;
  background: no-repeat center/contain;
}

.compare-card--no .compare-card__item::before {
  background-image: url("../images/compare/compare_no.svg");
}

.compare-card--yes .compare-card__item::before {
  background-image: url("../images/compare/compare_yes.svg");
}

.compare-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .compare-card__name {
    font-size: clamp(14px, 10.5714285714px + 0.4464285714vw, 17px);
  }
}

.compare-card__desc {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .compare-card__desc {
    font-size: clamp(11px, 8.7142857143px + 0.2976190476vw, 13px);
  }
}

/* ボタン（NO=ブルーグレー単色 / YES=グラデーション c-grad） */
.compare-card__button {
  width: auto;
  justify-content: center;
  gap: 1.125rem;
  margin: 1rem auto;
  padding: 0.875rem 2.625rem 0.8125rem;
  font-size: 1rem;
  font-weight: 700;
}

.compare-card--no .compare-card__button {
  background-color: #80949b;
}

.compare__title-br, .compare__lead-br {
  display: inline;
}

@media (min-width: 500px) {
  .compare__title-br {
    display: none;
  }
}
@media (min-width: 620px) {
  .compare__lead-br {
    display: none;
  }
}
/* ===== CTA：ご相談導線（上下で再利用・ダークカード） ===== */
.cta {
  padding-block: 3.5rem;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-block: 1.875rem 6.25rem;
  }
}

.cta__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .cta__inner {
    padding-inline: 25px;
  }
}

.cta__card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .cta__card {
    border-radius: 1.5rem;
  }
}

/* 背景写真は SP では全面、PC では右側のみ。左のコンテンツはソリッドな黒背景 */
.cta__image {
  /* 画像の表示位置は --cta-pos（横% 縦%）だけで調整できる。
     値を変えると焦点が動く（例: "92% 60%" で上寄せ、"80% 71%" で左寄せ） */
  --cta-pos: 92% 71%; /* SP */
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("../images/cta/cta_bg.png");
  background-repeat: no-repeat;
  background-size: auto 132%;
  background-position: var(--cta-pos);
}
@media screen and (min-width: 768px) {
  .cta__image {
    --cta-pos: 92% 71%; /* PC：横=手先寄り / 縦=やや下で口元を見せる */
    left: auto;
    width: 42%;
    background-size: auto 132%; /* ズームイン（やや引き） */
  }
}

/* 写真を均一にトーンダウン。境界（左端）はごく短く黒へ繋いで鮮明に分ける */
.cta__image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(43, 43, 43, 0.95) 0%, rgba(43, 43, 43, 0.6) 100%);
}

.cta__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .cta__content {
    max-width: 47.5rem;
    padding: 4rem 5.125rem;
  }
}

.cta__title {
  font-size: clamp(15px, -7.8571428571px + 7.1428571429vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (min-width: 390px) {
  .cta__title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .cta__title {
    font-size: 2.1875rem;
  }
}

.cta__text {
  margin-top: 0.625rem;
  font-size: clamp(9px, -0.1428571429px + 2.8571428571vw, 11px);
  line-height: 1.78;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (min-width: 390px) {
  .cta__text {
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: clamp(12px, 7.4285714286px + 0.5952380952vw, 16px);
  }
}

.cta__points {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, -32.5714285714px + 11.4285714286vw, 12px);
  margin-top: 1.25rem;
}
@media screen and (min-width: 390px) {
  .cta__points {
    gap: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .cta__points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.125rem;
  }
}

.cta__point {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: clamp(12px, -1.7142857143px + 4.2857142857vw, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (min-width: 390px) {
  .cta__point {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .cta__point {
    font-size: 1rem;
  }
}

.cta__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.3125rem;
  height: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .cta__check {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.cta__check img {
  display: block;
  width: 100%;
  height: 100%;
}

.cta__button {
  width: 100%;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.125rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cta__button {
    width: auto;
    padding: 1.3125rem 3.5rem 1.25rem;
    font-size: 1.375rem;
  }
}

/* ===== CONCEPT（水彩テクスチャ背景・中央寄せ白文字） =====
   背景は Figma の水彩イメージfill（concept_bg）。元画像は明るいシアンだが、
   カンプ表示は彩度を落とし暗く沈めたトーンのため、画像側を補正して忠実に再現済み。 */
.concept {
  padding-block: 4rem;
  background-color: #122a36;
  background-image: url("../images/concept/concept_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .concept {
    padding-block: 5.25rem;
  }
}

.concept__inner {
  max-width: 56.25rem;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    padding-inline: 25px;
  }
}

.concept__label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .concept__label {
    font-size: 1.0625rem;
  }
}

.concept__en {
  margin-top: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.125rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .concept__en {
    font-size: 3.4375rem;
  }
}

.concept__title {
  margin-top: 1rem;
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .concept__title {
    font-size: clamp(31px, 9.2857142857px + 2.8273809524vw, 50px);
  }
}

.concept__text {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .concept__text {
    font-size: 1.125rem;
  }
}

/* concept__text：650px 未満のみ改行する <br>（650px 以上は非表示） */
.concept__text-br, .concept__title-br {
  display: inline;
}

@media (min-width: 650px) {
  .concept__text-br {
    display: none;
  }
}
@media (min-width: 480px) {
  .concept__title-br {
    display: none;
  }
}
/* ===== SERVICE：事業内容（ライト背景・写真と本文を交互配置） ===== */
.service {
  overflow: hidden;
  padding-block: 4rem;
  background-color: #fff;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .service {
    padding-block: 7.5rem;
  }
}

.service__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .service__inner {
    padding-inline: 25px;
  }
}

/* ----- 見出しは共通コンポーネント .heading（_heading.scss）に統合 ----- */
/* ----- アイテム ----- */
.service-item {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .service-item {
    display: flex;
    align-items: flex-start;
    gap: 3.625rem;
    margin-top: 6rem;
  }
}

@media screen and (min-width: 768px) {
  .service-item--reverse {
    flex-direction: row-reverse;
  }
}

/* 画像＋オフセット装飾 */
.service-item__image {
  position: relative;
  z-index: 0;
  aspect-ratio: 609/401;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 38.0625rem;
}
@media screen and (min-width: 768px) {
  .service-item__image {
    flex-shrink: 0;
    width: 54%;
  }
}

.service-item__image img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-item__image::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -1.125rem;
  bottom: -1.125rem;
  width: 100%;
  height: 100%;
  background-color: #d8dddf;
}
@media screen and (min-width: 768px) {
  .service-item__image::after {
    right: -1.375rem;
    bottom: -1.375rem;
  }
}

/* 本文 */
.service-item__body {
  position: relative;
  z-index: 1;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .service-item__body {
    flex: 1;
    margin-top: 0;
  }
}

.service-item__number {
  position: absolute;
  z-index: 0;
  top: -1.125rem;
  right: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: #e6eaeb;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .service-item__number {
    top: -5.875rem;
    font-size: 9.375rem;
  }
}

.service-item__title {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .service-item__title {
    font-size: 2.25rem;
  }
}

.service-item__text {
  position: relative;
  z-index: 1;
  margin-top: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.81;
  letter-spacing: 0.08em;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .service-item__text {
    font-size: clamp(12px, 7.4285714286px + 0.5952380952vw, 16px);
  }
}

.service-item__sub {
  margin-top: 1.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .service-item__sub {
    font-size: 1.5625rem;
  }
}

.service-item__list {
  margin-top: 1.125rem;
}

/* 本セクションのチェックは濃色・16px */
.service-item__list .check-list__item {
  padding-left: 1.8125rem;
  font-size: clamp(11px, -2.7142857143px + 4.2857142857vw, 14px);
  letter-spacing: 0.03em;
  color: #2b2b2b;
}
@media screen and (min-width: 390px) {
  .service-item__list .check-list__item {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .service-item__list .check-list__item {
    font-size: clamp(11px, 5.2857142857px + 0.744047619vw, 16px);
  }
}

.service-item__list .check-list__item:not(:first-child) {
  margin-top: 0.8125rem;
}

.service-item__list .check-list__item::before {
  border-color: #2b2b2b;
}

/* 運営メディア（03：見出し＋説明） */
.service-media__item {
  position: relative;
  z-index: 0;
  padding-left: 1.8125rem;
}

.service-media__item:not(:first-child) {
  margin-top: 1.0625rem;
}

.service-media__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0.42em;
  left: 0.125rem;
  width: 0.9375rem;
  height: 0.5rem;
  border-left: 0.125rem solid #2b2b2b;
  border-bottom: 0.125rem solid #2b2b2b;
  transform: rotate(-45deg);
}

.service-media__name {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .service-media__name {
    font-size: 1rem;
  }
}

.service-media__desc {
  margin-top: 0.5rem;
  font-size: clamp(11px, -2.7142857143px + 4.2857142857vw, 14px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 390px) {
  .service-media__desc {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .service-media__desc {
    font-size: 1rem;
  }
}

/* ===== WORK：実績（ライトグレー背景／PC3枚・SPスライダー） ===== */
.work {
  overflow: hidden;
  padding: 4rem 0;
  background-color: #e6eaeb;
}
@media screen and (min-width: 768px) {
  .work {
    padding: 9rem 0 3.125rem;
  }
}

.work__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .work__inner {
    padding-inline: 25px;
  }
}

/* ----- 見出しは共通コンポーネント .heading（_heading.scss）に統合 ----- */
/* ----- スライダー ----- */
.work__slider {
  position: relative;
  /* PCで矢印を中央カードの左右境界付近に置くためのオフセット（中心からの距離） */
  --nav-offset: 16.5%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .work__slider {
    margin-top: 3.9375rem;
  }
}

.work__swiper {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .work__swiper {
    overflow: hidden;
  }
}

/* ページャー（ナビ矢印）：カンプ準拠＝44円・白80%・軽い影・ブルーの幾何シェブロン */
.work__prev,
.work__next {
  position: absolute;
  z-index: 10;
  top: 50%; /* スワイパーの上下中央に配置 */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.25rem 0.4375rem rgba(0, 0, 0, 0.05);
  font-size: 0; /* テキスト字形を隠し、::beforeのシェブロンを使う */
  cursor: pointer;
}

.work__prev::before,
.work__next::before {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #2193c8;
  border-right: 0.1875rem solid #2193c8;
}

.work__prev::before {
  transform: translateX(0.125rem) rotate(-135deg);
}

.work__next::before {
  transform: translateX(-0.125rem) rotate(45deg);
}

/* SPは左右端／PCは中央カードの左右境界付近に配置 */
.work__prev {
  left: -0.375rem;
}
@media screen and (min-width: 768px) {
  .work__prev {
    left: calc(50% - var(--nav-offset));
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.work__next {
  right: -0.375rem;
}
@media screen and (min-width: 768px) {
  .work__next {
    left: calc(50% + var(--nav-offset));
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.work__more {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work__more {
    margin-top: 2.875rem;
  }
}

/* グラデーションの「実績をもっと見る」ボタン（.button c-grad c-arrow を併用） */
.work__more-button {
  width: auto;
  justify-content: center;
  gap: 1.125rem;
  padding: 1rem 2.625rem 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .work__more-button {
    font-size: 1rem;
  }
}

/* ===== 実績カード（再利用Block：work-card） ===== */
/* 中央強調：左右カードは縮小・半透明、中央(active)で等倍・不透明に滑らかに変化 */
.work-card {
  position: relative;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 1.3125rem 1.3125rem 0 0;
  background-color: #fff;
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.06);
  transform: scale(0.82);
  opacity: 0.6;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.swiper-slide-active .work-card {
  transform: scale(1);
  opacity: 1;
}

.work-card__link {
  display: block;
  height: 100%;
}

.work-card__image {
  aspect-ratio: 351.79/204.46; /* Figma の画像エリア比率（≈1.72） */
  overflow: hidden;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform; /* GPU 合成に昇格しホバー拡大を滑らかに（カクつき対策） */
  backface-visibility: hidden;
}

.work-card__body {
  padding: 1.25rem 1.3125rem 3.75rem;
}

.work-card__company {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .work-card__company {
    font-size: 1.375rem;
  }
}

.work-card__title {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: justify;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .work-card__title {
    font-size: 1rem;
  }
}

.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem 0.375rem;
  margin-top: 1.25rem;
}

/* タグは青濃色（.tag の上書き） */
.work-card__tag {
  padding: 0.5625rem 0.875rem;
  border-color: #1178a8;
  font-size: 0.8125rem;
  color: #1178a8;
}
@media screen and (min-width: 768px) {
  .work-card__tag {
    font-size: 0.875rem;
  }
}

/* 右下の円形矢印アイコン */
.work-card__arrow {
  position: absolute;
  z-index: 2;
  right: 1.3125rem;
  bottom: 1.25rem;
  display: block;
  width: 2rem;
}

@media (any-hover: hover) {
  .work-card__link:hover .work-card__image img {
    transform: scale(1.36); /* ベースの 1.3 から少しだけ拡大 */
  }
}
.work-card__link:focus-visible {
  outline: 0.125rem solid #1178a8;
  outline-offset: -0.125rem;
}

/* ===== POLICY：SEOへの熱意（代表プロフィール＋3つの価値観／白背景） ===== */
.policy {
  overflow: hidden;
  padding-block: 4rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .policy {
    padding: 8.125rem 0 5rem;
  }
}

.policy__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .policy__inner {
    padding-inline: 25px;
  }
}

/* ----- プロフィール（PC：写真左・詳細右／SP：縦積み） ----- */
.policy__profile {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .policy__profile {
    display: flex;
    align-items: center;
    gap: 3.125rem;
    margin-top: 3.9375rem;
  }
}

/* 写真＋オフセット装飾（背面のグレー箱が右下にのぞく） */
.policy__photo {
  position: relative;
  z-index: 0;
  width: calc(100% - 1.5rem);
}
@media screen and (min-width: 768px) {
  .policy__photo {
    flex-shrink: 0;
    width: 44%;
  }
}

.policy__photo img {
  position: relative;
  z-index: 1;
  aspect-ratio: 480/364;
  -o-object-fit: cover;
     object-fit: cover;
}

.policy__photo::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  background-color: #d8dddf;
}
@media screen and (min-width: 768px) {
  .policy__photo::after {
    top: 2rem;
    left: 2.0625rem;
  }
}

.policy__detail {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .policy__detail {
    flex: 1;
    margin-top: 0;
  }
}

.policy__role {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .policy__role {
    font-size: 1rem;
  }
}

.policy__name-row {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .policy__name-row {
    flex-direction: row;
  }
}

.policy__name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .policy__name {
    font-size: 3.0625rem;
  }
}

.policy__name-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600; /* Montserrat SemiBold */
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .policy__name-en {
    margin-left: 1rem;
    font-size: 1rem;
  }
}

.policy__career {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.81;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .policy__career {
    margin-top: 1.25rem;
    font-size: clamp(10.8px, 4.8571428571px + 0.7738095238vw, 16px);
  }
}

/* ----- 価値観（3カラム／中央寄せ） ----- */
.policy__values {
  --grid-cols-sm: 1;
  --grid-cols-md: 3;
  --grid-gap-sm: 2.75rem;
  --grid-gap-md: 3.125rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .policy__values {
    margin-top: 3.9375rem;
  }
}

.policy-value {
  text-align: center;
}

.policy-value__icon {
  margin-inline: auto;
  aspect-ratio: 1/1;
  max-width: 8.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .policy-value__icon {
    max-width: 9.875rem;
  }
}

.policy-value__icon img {
  width: 100%;
  height: 100%;
}

.policy-value__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .policy-value__title {
    font-size: 2.0625rem;
  }
}

.policy-value__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.81;
  letter-spacing: 0.08em;
  text-align: justify;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .policy-value__text {
    font-size: clamp(12px, 7.4285714286px + 0.5952380952vw, 16px);
  }
}

/* ===== BLOG（ライトグレー背景／PC3枚・SPスライダー） ===== */
.blog {
  overflow: hidden;
  padding: 4rem 0;
  background-color: #e6eaeb;
}
@media screen and (min-width: 768px) {
  .blog {
    padding: 9rem 0 3.125rem;
  }
}

.blog__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .blog__inner {
    padding-inline: 25px;
  }
}

.blog__slider {
  position: relative;
  /* PCで矢印を中央カードの左右境界付近に置くためのオフセット（中心からの距離） */
  --nav-offset: 16.5%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .blog__slider {
    margin-top: 4.25rem;
  }
}

.blog__swiper {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .blog__swiper {
    overflow: hidden;
  }
}

/* ページャー（ナビ矢印）：カンプ準拠＝44円・白80%・軽い影・ブルーの幾何シェブロン */
.blog__prev,
.blog__next {
  position: absolute;
  z-index: 10;
  top: 50%; /* スワイパーの上下中央に配置 */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.25rem 0.4375rem rgba(0, 0, 0, 0.05);
  font-size: 0; /* テキスト字形を隠し、::beforeのシェブロンを使う */
  cursor: pointer;
}

.blog__prev::before,
.blog__next::before {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #2193c8;
  border-right: 0.1875rem solid #2193c8;
}

.blog__prev::before {
  transform: translateX(0.125rem) rotate(-135deg);
}

.blog__next::before {
  transform: translateX(-0.125rem) rotate(45deg);
}

/* SPは左右端／PCは中央カードの左右境界付近に配置 */
.blog__prev {
  left: -0.375rem;
}
@media screen and (min-width: 768px) {
  .blog__prev {
    left: calc(50% - var(--nav-offset));
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.blog__next {
  right: -0.375rem;
}
@media screen and (min-width: 768px) {
  .blog__next {
    left: calc(50% + var(--nav-offset));
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.blog__more {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog__more {
    margin-top: 2.875rem;
  }
}

/* グラデーションの「ブログをもっと見る」ボタン（.button c-grad c-arrow を併用） */
.blog__more-button {
  width: auto;
  justify-content: center;
  gap: 1.125rem;
  padding: 1rem 2.625rem 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .blog__more-button {
    font-size: 1rem;
  }
}

/* ===== ブログカード（再利用Block：blog-card） ===== */
/* 中央強調：左右カードは縮小・半透明、中央(active)で等倍・不透明に滑らかに変化 */
.blog-card {
  position: relative;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 1.3125rem 1.3125rem 0 0;
  background-color: #fff;
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.06);
  transform: scale(0.82);
  opacity: 0.6;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.swiper-slide-active .blog-card {
  transform: scale(1);
  opacity: 1;
}

.blog-card__link {
  display: block;
  height: 100%;
}

.blog-card__image {
  aspect-ratio: 351.79/204.46; /* WORK カードと同じ画像エリア比率（≈1.72） */
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card__body {
  padding: 1.125rem 1.375rem 3.5rem;
}

.blog-card__date {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .blog-card__date {
    font-size: 1rem;
  }
}

.blog-card__title {
  margin-top: 0.4375rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}
@media screen and (min-width: 768px) {
  .blog-card__title {
    font-size: 1.375rem;
  }
}

/* 右下の円形矢印アイコン */
.blog-card__arrow {
  position: absolute;
  z-index: 2;
  right: 1.375rem;
  bottom: 1.125rem;
  display: block;
  width: 2rem;
}

@media (any-hover: hover) {
  .blog-card__link:hover .blog-card__image img {
    transform: scale(1.05);
  }
}
.blog-card__link:focus-visible {
  outline: 0.125rem solid #1178a8;
  outline-offset: -0.125rem;
}

/* ===== フッター ===== */
.footer {
  padding: 4.0625rem 0 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 3.125rem 0 2.5rem;
  }
}

.footer__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 25px;
  }
}

.footer__logo {
  width: 16.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 14.375rem;
    margin-inline: 0;
  }
}

.footer__nav {
  width: 16.875rem;
  margin-top: 3.1875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: auto;
    margin-top: 2rem;
    margin-inline: 0;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.25rem;
  }
}

.footer__link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #231815;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .footer__link:hover {
    color: #189ee2;
    opacity: 1;
  }
}
.footer__link:focus-visible {
  outline: 0.125rem solid #189ee2;
  outline-offset: 0.125rem;
}

.footer__copy {
  margin-top: 3.125rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #a0a0a0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 2.5rem;
    text-align: left;
  }
}

/* 追従CTA */
/* ===== フッター追従CTA（〜767px 画面下部に固定） ===== */
.fixed-cta {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem clamp(8px, 2.2729306488px + 1.7897091723vw, 16px);
  background-image: linear-gradient(90deg, #1bbaad 0%, #1485aa 100%);
  box-shadow: 0 0.25rem 0.4125rem rgba(0, 0, 0, 0.25);
  /* 初期は非表示（FVを過ぎてから .is-show で出現） */
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0s linear 0.4s;
}
@media screen and (min-width: 768px) {
  .fixed-cta {
    display: none;
  }
}

/* FVを過ぎたら出現 */
.fixed-cta.is-show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0s linear 0s;
}

/* ドロワー展開中は追従CTAを隠す */
body.is-drawer-open .fixed-cta {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .fixed-cta {
    transition: none;
  }
}
.fixed-cta__body {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}

.fixed-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.fixed-cta__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(12px, 7.7046979866px + 1.3422818792vw, 18px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #fff;
}

.fixed-cta__strong {
  font-size: clamp(16px, 14.9977628635px + 0.3131991051vw, 17.4px);
  font-weight: 900;
}

.fixed-cta__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.74375rem;
  font-weight: 400;
  line-height: 1.54;
  letter-spacing: 0.07em;
  color: #fff;
}

.fixed-cta__button {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  width: 7.0625rem;
  height: 2.75rem;
  border-radius: 0.4rem;
  background-color: #fff;
  box-shadow: 0.0625rem 0.125rem 0.25rem rgba(0, 0, 0, 0.07);
}

.fixed-cta__label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  color: #1486aa;
}

.fixed-cta__arrow {
  display: block;
  width: 1.375rem;
  height: 0.5rem;
}

.fixed-cta__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

/* 追従CTA分の余白を確保し、フッター下端が隠れないようにする */
body {
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}
/*# sourceMappingURL=style.css.map */
