@charset "UTF-8";
/* 力組採用特設サイト - スタイルエントリーポイント */
/* ===== Design widths ===== */
/* ===== Color tokens ===== */
/* ===== Font families ===== */
/* ===== Font weights ===== */
/* ===== z-index ===== */
/* 力組採用特設サイト - スタイルエントリーポイント */
/* ===== px → vw 変換関数 =====
 * - PC基準（1920px）: vw-pc(24) → 24/1920*100vw
 * - SP基準（375px）:  vw-sp(20) → 20/375*100vw
 */
/* ===== 流動フォントサイズ =====
 * 文字サイズの最大はPCデザイン値、最小は16px。
 * 画面幅 768px以上はPCデザイン基準で線形、それ以下はSPデザイン基準で線形にスケール。
 *
 * @include font-fluid(24);          // PC=24px,  SP=24px
 * @include font-fluid(24, 18);      // PC=24px,  SP=18px (but min 16px)
 */
/* ===== 流動サイズ（幅・余白など、最小制約なし） ===== */
/* PC専用にスタイルを当てる */
/* SP専用にスタイルを当てる */
/* 中央寄せ */
/* ===== 画像で文字を切り抜く（background-clip: text） =====
 * 文字の塗りを透明にして、背景画像が文字型にくり抜かれて見える効果。
 * 画像は加工せずそのまま表示する（色味を変えない）。
 *
 * 使い方：
 *   @include text-cutout();                                 // デフォルト画像（assets/images/top/txt-bg.png）
 *   @include text-cutout('../images/path/to/sky.jpg');      // 画像パスを指定
 *   @include text-cutout($size: contain, $position: top);   // サイジング・位置を指定
 *
 * NOTE:
 * - 適用要素は `display: inline-block` 推奨（インライン要素では background-clip:text が効きにくい）。
 * - 画像を文字内で大きく見せたい時は $size: auto, $position: center などに差し替える。
 */
/* 力組採用特設サイト - スタイルエントリーポイント */
/* ===== Reset / Normalize ===== */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* 縦スクロールバー分のガタつきを防ぐ */
  scrollbar-gutter: stable;
  /* SP/PC 共通：横方向の意図しないスクロールを抑止 */
  overflow-x: hidden;
}

body, h1, h2, h3, h4, p, ul, ol, figure, dl, dd {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

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

button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #3e3e3e;
  line-height: 1.7;
  background: #ffffff;
  overflow-x: hidden;
  /* iOSセーフエリア（ノッチ対応） */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  font-size: clamp(16px, 4.2666666667vw, 18px);
}
@media (min-width: 768px) {
  body {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
}

/* PC上限超え時の中央寄せ（1920px超のブラウザに対応） */
.l-main {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden; /* ネガティブマージンによる横はみ出しを切る */
}

/* 全セクションの幅キャップ */
[class^=p-] {
  width: 100%;
  max-width: 100%;
  /* 各セクションでネガティブマージンを使ってもブラウザ全体に
   * 横スクロールが出ないよう、内部のはみ出しを許可しつつ親では切る */
}

/* セクション内側の余白（PC=240px、SP=24px相当） */
/* ===== タップターゲット（モバイルアクセシビリティ） ===== */
button, a {
  /* iOSタップハイライト軽減 */
  -webkit-tap-highlight-color: transparent;
}

/* 画像はデフォルトで親に追従 */
img {
  max-width: 100%;
  height: auto;
}

/* 一定幅以下では行間/語間を少し詰めて窮屈さを軽減 */
@media (max-width: 767.98px) {
  body {
    line-height: 1.6;
  }
}
/* 力組採用特設サイト - スタイルエントリーポイント */
/* ===== 共通CTAボタン ===== */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3em;
  width: 100%;
  padding-block: 5.3333333333vw;
  border-radius: 60px;
  background-image: url("../images/common/botton-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-weight: 500;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  font-size: clamp(16px, 4.8vw, 20px);
}
@media (min-width: 768px) {
  .c-btn {
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
@media (min-width: 768px) {
  .c-btn {
    width: min(23.0208333333vw, 442px);
    padding-block: min(1.0416666667vw, 20px);
  }
}
.c-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
}
.c-btn__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1em;
  height: 1em;
}
.c-btn__icon svg {
  width: 100%;
  height: 100%;
}
.c-btn {
  /* ===== ページ全体共通：画面に入ったら画像１（scale 0→1.2→1）でポップイン ===== */
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: opacity, transform;
}
.c-btn.is-revealed {
  -webkit-animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
          animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .c-btn {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}

/* ===== 表示切替ユーティリティ =====
 * `.sp` : SP（<768px）でだけ表示、PC では非表示
 * `.pc` : PC（≥768px）でだけ表示、SP では非表示
 *
 * `display: revert` を使うことで、要素本来の display（block / inline / inline-block / flex 等）を保持します。
 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media (min-width: 768px) {
  .pc {
    display: revert !important;
  }
}

/* ===== 共通アニメーション定義（汎用キーフレーム） =====
 * 画像１: scale 0 → 1.2 → 1 のポンと出る
 * 画像２: その場でゆっくりフェードイン
 * 画像３: 真っ暗（グレー黒）の枠から、下→上に画像が現れる
 * テキスト１: 下からフェードイン
 * テキスト２: 左から1文字ずつ scale 0 → 1.2 → 1（既存 section-title-char-pop と同等）
 * テキスト３: ランダム方向からスライド（実装は適用要素ごとに transform を指定）
 */
@-webkit-keyframes anim-img-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes anim-img-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes anim-img-2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anim-img-2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes anim-img-3 {
  /* 親要素を黒背景にし、img/コンテンツに `clip-path: inset(100% 0 0 0)` から開始 */
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes anim-img-3 {
  /* 親要素を黒背景にし、img/コンテンツに `clip-path: inset(100% 0 0 0)` から開始 */
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes anim-txt-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes anim-txt-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* テキスト２は既存 section-title-char-pop を使用 */
/* ===== セクション見出し ===== */
/* 文字ポップイン：0 → 110% → 100%（弾むように拡大して戻る） */
@-webkit-keyframes section-title-char-pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes section-title-char-pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.15em;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  letter-spacing: -0.023em;
  line-height: 0.95;
}
.p-section-title__main {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 6.4vw, 30px);
}
@media (min-width: 768px) {
  .p-section-title__main {
    font-size: clamp(16px, 1.5625vw, 30px);
  }
}
.p-section-title__main {
  /* JS未実行時のフォールバック */
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-section-title__sub {
  display: inline-block;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  font-size: clamp(16px, 16vw, 80px);
}
@media (min-width: 768px) {
  .p-section-title__sub {
    font-size: clamp(16px, 4.1666666667vw, 80px);
  }
}
.p-section-title__sub {
  /* JS未実行時のフォールバック */
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-section-title span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-section-title {
  /* JSが文字分割を完了したら、親側の text-cutout を解除し、各 __char に任せる
   * （background-clip:text は transform を持つ子要素では正しく描画されない場合があるため）
   */
}
.p-section-title[data-char-split=done] .p-section-title__main,
.p-section-title[data-char-split=done] .p-section-title__sub {
  background-image: none;
  -webkit-text-fill-color: initial;
  color: inherit;
}
.p-section-title {
  /* JSが挿入する文字span：各々が text-cutout を持ち独立にアニメ
   * `.p-section-title span { display: inline }` の上書き対策で specificity を上げる
   */
}
.p-section-title .p-section-title__char {
  display: inline-block;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  will-change: opacity, transform;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* 画面に入る前は非表示 */
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.p-section-title {
  /* ビューポートに入ったら左から順番にポップイン
   * キーフレーム内で 110% にオーバーシュート→100%に戻るので、イージングは ease-out で
   */
}
.p-section-title.is-revealed .p-section-title__char {
  -webkit-animation: section-title-char-pop 0.7s ease-out forwards;
          animation: section-title-char-pop 0.7s ease-out forwards;
  -webkit-animation-delay: calc(var(--char-i, 0) * 0.07s);
          animation-delay: calc(var(--char-i, 0) * 0.07s);
}
.p-section-title {
  /* モーション抑制ユーザーには即時表示 */
}
@media (prefers-reduced-motion: reduce) {
  .p-section-title__char {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}

/* ===== __decor 要素の文字ポップイン =====
 * .p-vision__decor / .p-interview__decor / .p-about__decor など
 * `xxxx__decor` クラスを持つ要素を JSで文字分割して、同じアニメーションを適用。
 */
[class*=__decor] {
  /* JSが文字を分割し終わったら、親側の text-cutout を解除（transform対策） */
}
[class*=__decor][data-char-split=done] {
  background-image: none !important;
  -webkit-text-fill-color: initial !important;
  color: inherit !important;
}
[class*=__decor] {
  /* JS が挿入する文字span（クラス名はセクション見出しと共用） */
}
[class*=__decor] .p-section-title__char {
  display: inline-block;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  will-change: opacity, transform;
  /* decor 系は txt-bg.png（青空）を使用。差し替えたい場合は個別に上書き */
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}
[class*=__decor] {
  /* ビューポートに入ったら左から順番にポップイン */
}
[class*=__decor].is-revealed .p-section-title__char {
  -webkit-animation: section-title-char-pop 0.7s ease-out forwards;
          animation: section-title-char-pop 0.7s ease-out forwards;
  -webkit-animation-delay: calc(var(--char-i, 0) * 0.07s);
          animation-delay: calc(var(--char-i, 0) * 0.07s);
}
[class*=__decor] {
  /* モーション抑制ユーザーには即時表示 */
}
@media (prefers-reduced-motion: reduce) {
  [class*=__decor] .p-section-title__char {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}

/* ===== スクロール連動フェードイン =====
 * 任意の要素に `.js-reveal` を付けると、画面に入った瞬間に
 * JS（IntersectionObserver）が `.is-revealed` を追加してフェードイン発火。
 * 個別の遅延は HTML 側で  style="--reveal-delay: .3s"  または CSS で指定可。
 *
 * 例:
 *   <h2 class="js-reveal">タイトル</h2>
 *   <p class="js-reveal" style="--reveal-delay: .2s">本文</p>
 */
.js-reveal {
  opacity: 0;
  -webkit-transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition-delay: var(--reveal-delay, 0s);
          transition-delay: var(--reveal-delay, 0s);
  will-change: opacity;
}
.js-reveal.is-revealed {
  opacity: 1;
}

/* モーション抑制ユーザーには即時表示 */
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}
/* 力組採用特設サイト - スタイルエントリーポイント */
/* ===============================================
 * Header
 * =============================================== */
.l-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  width: 100%;
  color: #ffffff;
  background: url("../images/common/header-bg.png") center/cover no-repeat, -webkit-gradient(linear, left top, left bottom, from(#87cefa), to(#b6dbff));
  background: url("../images/common/header-bg.png") center/cover no-repeat, linear-gradient(180deg, #87cefa 0%, #b6dbff 100%);
  /* TOPページではMV演出が終わるまで上に隠す（JSで .is-shown を付ける） */
}
body.home .l-header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body.home .l-header.is-shown {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 13.3333333333vw;
  padding-inline: 4.2666666667vw;
  gap: 2.1333333333vw;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: min(5.2083333333vw, 100px);
    padding-inline: min(2.0833333333vw, 40px);
    gap: min(0.8333333333vw, 16px);
  }
}
.l-header {
  /* ロゴ（丸バッジ + 株式会社力組） */
}
.l-header__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.l-header__brand:hover {
  opacity: 0.8;
}
.l-header__brand img {
  height: 50px;
}
.l-header__brand-mark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 7.4666666667vw;
}
@media (min-width: 768px) {
  .l-header__brand-mark {
    height: min(5.2083333333vw, 100px);
  }
}
.l-header__brand-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__brand-text {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(16px, 3.7333333333vw, 18px);
}
@media (min-width: 768px) {
  .l-header__brand-text {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
}
.l-header {
  /* 「力組採用特設サイト」バッジ */
}
.l-header__sub-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.35em 0.7em;
  background: #ffffff;
  color: #000000;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  font-size: clamp(16px, 2.4vw, 12px);
}
@media (min-width: 768px) {
  .l-header__sub-badge {
    font-size: clamp(16px, 0.625vw, 12px);
  }
}
.l-header {
  /* メニューボタン */
}
.l-header__menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  margin-left: auto;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
  .l-header__menu {
    width: min(3.125vw, 60px);
    height: min(3.125vw, 60px);
    gap: 5px;
  }
}
.l-header__menu:hover {
  opacity: 0.8;
}
.l-header__menu-bars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3333333333vw;
  width: 6.9333333333vw;
}
@media (min-width: 768px) {
  .l-header__menu-bars {
    gap: 5px;
    width: min(1.875vw, 36px);
  }
}
.l-header__menu-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.l-header__menu-label {
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: clamp(16px, 2.4vw, 10px);
}
@media (min-width: 768px) {
  .l-header__menu-label {
    font-size: clamp(16px, 0.5208333333vw, 10px);
  }
}

/* ===============================================
 * Fullscreen Menu Overlay
 * =============================================== */
.l-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  color: #ffffff;
  background: url("../images/common/menu-bg.png") center/cover no-repeat, -webkit-gradient(linear, left top, left bottom, from(#6db5ff), color-stop(60%, #bcdeff), to(#ffffff));
  background: url("../images/common/menu-bg.png") center/cover no-repeat, linear-gradient(180deg, #6db5ff 0%, #bcdeff 60%, #ffffff 100%);
  /* 上から下にスライドして出現 */
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
}
.l-menu.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.l-menu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 13.3333333333vw;
  padding-inline: 4.2666666667vw;
}
@media (min-width: 768px) {
  .l-menu__top {
    height: min(4.1666666667vw, 80px);
    padding-inline: min(2.0833333333vw, 40px);
  }
}
.l-menu__brand-mini {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  color: #ffffff;
}
.l-menu__brand-mini-mark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
}
@media (min-width: 768px) {
  .l-menu__brand-mini-mark {
    width: min(2.0833333333vw, 40px);
    height: min(2.0833333333vw, 40px);
  }
}
.l-menu__brand-mini-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-menu__brand-mini-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.35em 0.7em;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  font-size: clamp(16px, 2.4vw, 12px);
}
@media (min-width: 768px) {
  .l-menu__brand-mini-badge {
    font-size: clamp(16px, 0.625vw, 12px);
  }
}
.l-menu__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
  .l-menu__close {
    width: min(3.125vw, 60px);
    height: min(3.125vw, 60px);
    gap: 5px;
  }
}
.l-menu__close:hover {
  opacity: 0.8;
}
.l-menu__close-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
}
@media (min-width: 768px) {
  .l-menu__close-icon {
    width: min(1.4583333333vw, 28px);
    height: min(1.4583333333vw, 28px);
  }
}
.l-menu__close-icon svg {
  width: 100%;
  height: 100%;
}
.l-menu__close-label {
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: clamp(16px, 2.4vw, 10px);
}
@media (min-width: 768px) {
  .l-menu__close-label {
    font-size: clamp(16px, 0.5208333333vw, 10px);
  }
}
.l-menu {
  /* メインのナビゲーション領域 */
}
.l-menu__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 13.3333333333vw);
  padding: 10.6666666667vw 6.4vw;
  gap: 10.6666666667vw;
}
@media (min-width: 768px) {
  .l-menu__main {
    min-height: calc(100vh - min(4.1666666667vw, 80px));
    padding: min(3.125vw, 60px) min(2.0833333333vw, 40px);
    gap: min(3.125vw, 60px);
  }
}
.l-menu__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.2vw;
}
@media (min-width: 768px) {
  .l-menu__brand {
    gap: min(1.0416666667vw, 20px);
  }
}
.l-menu__brand-mark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 13.3333333333vw;
}
@media (min-width: 768px) {
  .l-menu__brand-mark {
    height: min(4.1666666667vw, 80px);
  }
}
.l-menu__brand-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-menu__brand-text {
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  font-size: clamp(16px, 6.4vw, 32px);
}
@media (min-width: 768px) {
  .l-menu__brand-text {
    font-size: clamp(16px, 1.6666666667vw, 32px);
  }
}
.l-menu__corp-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  padding: 0.5em 0.9em;
  background: #ffffff;
  color: #000000;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  font-size: clamp(16px, 3.2vw, 14px);
}
@media (min-width: 768px) {
  .l-menu__corp-link {
    font-size: clamp(16px, 0.7291666667vw, 14px);
  }
}
.l-menu__corp-link:hover {
  opacity: 0.85;
}
.l-menu__corp-link svg {
  width: 1em;
  height: 1em;
}
.l-menu__nav {
  width: 100%;
}
@media (min-width: 768px) {
  .l-menu__nav {
    width: 70%;
  }
}
.l-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.2666666667vw 2.1333333333vw;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
}
@media (min-width: 768px) {
  .l-menu__list {
    gap: min(1.5625vw, 30px) min(1.0416666667vw, 20px);
  }
}
.l-menu__list > li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-menu__list {
  /* セパレータ：各項目の左右に縦バー（空画像で塗る） */
}
.l-menu__list > li::before, .l-menu__list > li:last-child::after {
  content: "";
  display: inline-block;
  -ms-flex-item-align: center;
      align-self: center;
  width: 2px;
  height: 1.6em;
  margin-inline: 2.1333333333vw;
  background: url("../images/common/txt-bg-2.png") center/cover no-repeat;
}
@media (min-width: 768px) {
  .l-menu__list > li::before, .l-menu__list > li:last-child::after {
    margin-inline: min(0.8333333333vw, 16px);
    height: 2em;
  }
}
.l-menu__list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.l-menu__list a:hover {
  opacity: 0.8;
}
.l-menu {
  /* 強調語（TOP / 5分 / 想い / 職種 / 新 / 社長 / 語る / エントリー） */
}
.l-menu__txt {
  display: inline-block;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 7.4666666667vw, 40px);
}
@media (min-width: 768px) {
  .l-menu__txt {
    font-size: clamp(16px, 2.0833333333vw, 40px);
  }
}
@media (min-width: 768px) {
  .l-menu__txt {
    font-size: clamp(16px, 9.6vw, 60px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .l-menu__txt {
    font-size: clamp(16px, 3.125vw, 60px);
  }
}
.l-menu {
  /* 補助語（で分かる力組 / 力組としての / インタビュー / 力組構想 / が） */
}
.l-menu__txt--sm {
  display: inline-block;
  margin-bottom: 0.12em; /* 大きい文字とのベースラインを合わせる微調整 */
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 4.2666666667vw, 22px);
}
@media (min-width: 768px) {
  .l-menu__txt--sm {
    font-size: clamp(16px, 1.1458333333vw, 22px);
  }
}
@media (min-width: 768px) {
  .l-menu__txt--sm {
    font-size: clamp(16px, 5.8666666667vw, 30px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .l-menu__txt--sm {
    font-size: clamp(16px, 1.5625vw, 30px);
  }
}

/* ===============================================
 * Side Menu（右側固定クイックリンク・全ページ共通）
 * =============================================== */
.l-side-menu {
  position: fixed;
  right: 0;
  bottom: 10.6666666667vw;
  z-index: 90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4.2666666667vw;
}
@media (min-width: 768px) {
  .l-side-menu {
    bottom: min(3.125vw, 60px);
    gap: min(1.0416666667vw, 20px);
  }
}
.l-side-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.1333333333vw;
  width: 13.3333333333vw;
  padding: 3.7333333333vw 2.6666666667vw;
  border-radius: 20px 0 0 20px;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.023em;
  color: #ffffff;
  text-align: center;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  will-change: transform;
}
@media (min-width: 768px) {
  .l-side-menu__item {
    width: min(3.6458333333vw, 70px);
    padding: min(1.0416666667vw, 20px) min(0.7291666667vw, 14px);
    gap: min(0.5208333333vw, 10px);
  }
}
.l-side-menu__item:hover {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}
.l-side-menu__item--translate {
  background: #ffc21b;
  -webkit-box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
.l-side-menu__item--translate .l-side-menu__label {
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.l-side-menu__item--entry {
  background: #6db5ff url("../images/common/menu-bg.png") center/cover no-repeat;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.l-side-menu {
  /* 縦書きラベル */
}
.l-side-menu__label {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-size: clamp(16px, 3.7333333333vw, 16px);
}
@media (min-width: 768px) {
  .l-side-menu__label {
    font-size: clamp(16px, 0.8333333333vw, 16px);
  }
}
@media (min-width: 768px) {
  .l-side-menu__label {
    font-size: clamp(16px, 4.2666666667vw, 20px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .l-side-menu__label {
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
.l-side-menu {
  /* 矢印アイコン（縦書きに合わせて下向き表示） */
}
.l-side-menu__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 4.2666666667vw;
  height: 4.2666666667vw;
}
@media (min-width: 768px) {
  .l-side-menu__icon {
    width: min(1.0416666667vw, 20px);
    height: min(1.0416666667vw, 20px);
  }
}
.l-side-menu__icon svg {
  width: 100%;
  height: 100%;
}

/* メニュー（フルスクリーン）が開いている時はサイドメニューを隠す */
.l-menu.is-open ~ .l-side-menu {
  opacity: 0;
  pointer-events: none;
}

/* 力組採用特設サイト - スタイルエントリーポイント */
/* ===============================================
 * MV
 * =============================================== */
/* --- MVキーフレーム --- */
@-webkit-keyframes mv-bg-cycle {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.76% {
    opacity: 1;
    -webkit-transform: scale(1.015);
            transform: scale(1.015);
  }
  28.57% {
    opacity: 1;
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  33.33% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes mv-bg-cycle {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.76% {
    opacity: 1;
    -webkit-transform: scale(1.015);
            transform: scale(1.015);
  }
  28.57% {
    opacity: 1;
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  33.33% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes mv-char-pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mv-char-pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-mv {
  position: relative;
  width: 100%;
  height: 133.3333333333vw;
  overflow: hidden;
  max-height: 100vh;
}
@media (min-width: 768px) {
  .p-mv {
    height: min(56.25vw, 1080px);
  }
}
.p-mv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-mv__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform, opacity;
  -webkit-animation: mv-bg-cycle 21s ease-in-out infinite;
          animation: mv-bg-cycle 21s ease-in-out infinite;
}
.p-mv__media img:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-mv__media img:nth-child(2) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.p-mv__media img:nth-child(3) {
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}
.p-mv__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
.p-mv__copy {
  inset: 0;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* 中の文字は必ず横並び（折り返さない） */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  white-space: nowrap;
}
.p-mv__copy-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-mv__copy-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-mv {
  /* 力 | は、| 人 | だ。 SP=横、PC=ベースライン揃え */
}
.p-mv__char {
  display: inline-block;
  letter-spacing: -0.023em;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  will-change: transform, opacity;
  -webkit-animation: mv-char-pop 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
          animation: mv-char-pop 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
}
.p-mv__char--01 { /* 力 */
  left: -1.8666666667vw;
  bottom: 23.7333333333vw;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  font-size: clamp(16px, 24vw, 90px);
}
@media (min-width: 768px) {
  .p-mv__char--01 {
    font-size: clamp(16px, 4.6875vw, 90px);
  }
}
@media (min-width: 768px) {
  .p-mv__char--01 {
    left: -2.2916666667vw;
    bottom: 2.2395833333vw;
    font-size: clamp(16px, 30.1333333333vw, 280px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-mv__char--01 {
    font-size: clamp(16px, 14.5833333333vw, 280px);
  }
}
.p-mv__char--02 { /* は、*/
  left: 24.2666666667vw;
  bottom: 16.2666666667vw;
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
  font-size: clamp(16px, 16vw, 60px);
}
@media (min-width: 768px) {
  .p-mv__char--02 {
    font-size: clamp(16px, 3.125vw, 60px);
  }
}
@media (min-width: 768px) {
  .p-mv__char--02 {
    left: 17.7604166667vw;
    bottom: 0.4166666667vw;
    font-size: clamp(16px, 20vw, 160px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-mv__char--02 {
    font-size: clamp(16px, 8.3333333333vw, 160px);
  }
}
.p-mv__char--03 { /* 人 */
  left: 50.4vw;
  bottom: 23.7333333333vw;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  font-size: clamp(16px, 24vw, 90px);
}
@media (min-width: 768px) {
  .p-mv__char--03 {
    font-size: clamp(16px, 4.6875vw, 90px);
  }
}
@media (min-width: 768px) {
  .p-mv__char--03 {
    left: 36.3541666667vw;
    bottom: 0vw;
    font-size: clamp(16px, 30.1333333333vw, 280px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-mv__char--03 {
    font-size: clamp(16px, 14.5833333333vw, 280px);
  }
}
.p-mv__char--04 { /* だ。*/
  left: 79.2vw;
  bottom: 16.2666666667vw;
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
  font-size: clamp(16px, 16vw, 60px);
}
@media (min-width: 768px) {
  .p-mv__char--04 {
    font-size: clamp(16px, 3.125vw, 60px);
  }
}
@media (min-width: 768px) {
  .p-mv__char--04 {
    left: 56.875vw;
    bottom: 0.4166666667vw;
    font-size: clamp(16px, 20vw, 160px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-mv__char--04 {
    font-size: clamp(16px, 8.3333333333vw, 160px);
  }
}
.p-mv {
  /* 右上の縦書きラベル「力組採用特設サイト」（MV内・スクロールで普通に上へ流れる） */
}
.p-mv__label {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  right: 15vw;
  z-index: 3;
  background: #ffffff;
  padding: 5.3333333333vw 2.1333333333vw;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .p-mv__label {
    padding: min(2.6041666667vw, 50px) min(1.0416666667vw, 20px);
  }
}
.p-mv__label-text {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 3.7333333333vw, 20px);
}
@media (min-width: 768px) {
  .p-mv__label-text {
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
@media (min-width: 768px) {
  .p-mv__label-text {
    font-size: clamp(16px, 5.3333333333vw, 40px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-mv__label-text {
    font-size: clamp(16px, 2.0833333333vw, 40px);
  }
}
.p-mv__en {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 16.5333333333vw;
  bottom: 13.3333333333vw;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.023em;
  line-height: 1;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  will-change: transform, opacity;
  -webkit-animation: mv-char-pop 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
          animation: mv-char-pop 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
  -webkit-animation-delay: 1.35s;
          animation-delay: 1.35s;
  font-size: clamp(16px, 9.3333333333vw, 35px);
}
@media (min-width: 768px) {
  .p-mv__en {
    font-size: clamp(16px, 1.8229166667vw, 35px);
  }
}
@media (min-width: 768px) {
  .p-mv__en {
    left: auto;
    right: 3.5416666667vw;
    bottom: 2.2395833333vw;
    font-size: clamp(16px, 9.3333333333vw, 96px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-mv__en {
    font-size: clamp(16px, 5vw, 96px);
  }
}
.p-mv__en br {
  display: none;
}
@media (min-width: 768px) {
  .p-mv__en br {
    display: block;
  }
}
.p-mv {
  /* アクセシビリティ：モーションを抑えたいユーザーへの配慮 */
}
@media (prefers-reduced-motion: reduce) {
  .p-mv__media img {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .p-mv__media img:nth-child(2), .p-mv__media img:nth-child(3) {
    opacity: 0;
  }
  .p-mv__char, .p-mv__en {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

/* ===============================================
 * Intro：この会社をつくっているのは、力だ。
 * =============================================== */
.p-intro {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding-block: 16vw;
}
@media (min-width: 768px) {
  .p-intro {
    padding-block: min(10.4166666667vw, 150px);
  }
}
.p-intro__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: 6.4vw;
  min-height: 106.6666666667vw;
}
@media (min-width: 768px) {
  .p-intro__inner {
    padding-inline: min(10.4166666667vw, 200px);
    min-height: min(35.4166666667vw, 680px);
  }
}
.p-intro__heading {
  position: relative;
  z-index: 2;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-intro__heading span {
  display: block;
}
.p-intro__force {
  position: absolute;
  z-index: 1;
  bottom: 10.6666666667vw;
  right: 5.3333333333vw;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.023em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .p-intro__force {
    bottom: min(4.6875vw, 90px);
    right: min(5.2083333333vw, 100px);
  }
}
.p-intro__force-kanji {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 32.5333333333vw, 200px);
}
@media (min-width: 768px) {
  .p-intro__force-kanji {
    font-size: clamp(16px, 10.4166666667vw, 200px);
  }
}
@media (min-width: 768px) {
  .p-intro__force-kanji {
    font-size: clamp(16px, 32.5333333333vw, 280px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-intro__force-kanji {
    font-size: clamp(16px, 14.5833333333vw, 280px);
  }
}
.p-intro__force-kanji {
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-intro__force-kana {
  display: block;
  margin-bottom: 0.3em;
  margin-left: 2em;
  font-size: clamp(16px, 5.3333333333vw, 35px);
}
@media (min-width: 768px) {
  .p-intro__force-kana {
    font-size: clamp(16px, 1.8229166667vw, 35px);
  }
}
.p-intro__force-kana {
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-intro__force-end {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 8vw, 60px);
}
@media (min-width: 768px) {
  .p-intro__force-end {
    font-size: clamp(16px, 3.125vw, 60px);
  }
}
.p-intro__force-end {
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-intro__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  font-family: "Hina Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  line-height: 1.5;
  letter-spacing: -0.023em;
  font-size: clamp(16px, 9.0666666667vw, 150px);
}
@media (min-width: 768px) {
  .p-intro__floats {
    font-size: clamp(16px, 7.8125vw, 150px);
  }
}
.p-intro__float {
  position: absolute;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-intro__float--01 {
  top: 41.3333333333vw;
  left: 26.6666666667vw;
}
@media (min-width: 768px) {
  .p-intro__float--01 {
    top: -4.1666666667vw;
    left: 45.4166666667vw;
  }
}
.p-intro__float--02 {
  top: 44.5333333333vw;
  left: 8.2666666667vw;
}
@media (min-width: 768px) {
  .p-intro__float--02 {
    top: -1.3541666667vw;
    left: 27.7604166667vw;
  }
}
.p-intro__float--03 {
  top: 51.2vw;
  left: 37.8666666667vw;
}
@media (min-width: 768px) {
  .p-intro__float--03 {
    top: 3.125vw;
    left: 56.40625vw;
  }
}
.p-intro__float--04 {
  top: 58.9333333333vw;
  left: 11.4666666667vw;
}
@media (min-width: 768px) {
  .p-intro__float--04 {
    top: 9.375vw;
    left: 39.84375vw;
  }
}
.p-intro__float--05 {
  top: 70.4vw;
  left: 3.7333333333vw;
}
@media (min-width: 768px) {
  .p-intro__float--05 {
    top: 16.6666666667vw;
    left: 12.5520833333vw;
  }
}
.p-intro__float--06 {
  top: 72.2666666667vw;
  left: 38.6666666667vw;
}
@media (min-width: 768px) {
  .p-intro__float--06 {
    top: 18.2291666667vw;
    left: 40.5729166667vw;
  }
}
.p-intro__float--07 {
  top: 81.3333333333vw;
  left: 26.1333333333vw;
}
@media (min-width: 768px) {
  .p-intro__float--07 {
    top: 28.3333333333vw;
    left: 30vw;
  }
}

/* ===============================================
 * About: 5分で分かる力組
 * =============================================== */
.p-about {
  position: relative;
  overflow: hidden;
  padding-block: 13.3333333333vw;
}
@media (min-width: 768px) {
  .p-about {
    padding-block: min(6.25vw, 120px);
  }
}
.p-about {
  /* ① 背景画像は擬似要素に出して、画像２（ゆっくりフェードイン）で表示 */
}
.p-about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../images/top/play-bg.png) center/cover no-repeat;
  opacity: 0;
  pointer-events: none;
}
.p-about__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding-inline: 6.4vw;
}
@media (min-width: 768px) {
  .p-about__inner {
    padding-inline: min(12.5vw, 240px);
  }
}
.p-about__inner {
  /* 「5分で分かる力組」ボタンを中央配置 */
}
.p-about__inner > .c-btn {
  margin-inline: auto;
  /* ② c-btn は画像１（scale ポンッ）の初期状態 */
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: opacity, transform;
}
.p-about {
  /* 動画エリア全体（サイド文字＋プレイヤー） */
}
.p-about__movie {
  position: relative;
  margin-block: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-about__movie {
    margin-block: min(3.125vw, 60px);
  }
}
.p-about {
  /* プレイヤー本体 */
}
.p-about__player {
  position: relative;
  aspect-ratio: 352/359;
  overflow: hidden;
  background: #000;
}
@media (min-width: 768px) {
  .p-about__player {
    aspect-ratio: 16/9;
  }
}
.p-about__player {
  /* ② プレイヤーは画像１（scale ポンッ）の初期状態 */
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: opacity, transform;
}
.p-about {
  /* サムネ（PLAYボタン） */
}
.p-about__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* 再生開始時のフェードは少し早めに */
}
.p-about__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.p-about__thumb:focus-visible {
  outline: 3px solid #ff0001;
  outline-offset: -3px;
}
.p-about {
  /* 再生中：サムネを隠す */
}
.js-player.is-playing .p-about__thumb {
  opacity: 0;
  pointer-events: none;
}
.p-about {
  /* JSが挿入する YouTube iframe */
}
.p-about__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
.p-about {
  /* 左右の縦書きテキスト（プレイヤー外側） */
}
.p-about__side {
  position: absolute;
  width: 8%;
  z-index: 2;
  top: 30vw;
  /* ② サイドテキストはその場でフェードイン（画像２） */
  opacity: 0;
  will-change: opacity;
}
.p-about__side--left {
  left: 5px;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-about__side--right {
  right: 5px;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (min-width: 768px) {
  .p-about__side {
    max-width: 80px;
    top: unset;
  }
  .p-about__side--left {
    left: min(1.0416666667vw, 20px);
  }
  .p-about__side--right {
    right: min(1.0416666667vw, 20px);
  }
}
.p-about {
  /* 「知る力」装飾：縦書き＋斜体、空画像で文字くり抜き、play画像の右側に配置 */
}
.p-about__decor {
  position: absolute;
  right: 5.3333333333vw;
  top: 20%;
  z-index: 3;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright; /* 全文字を縦に直立で並べる */
  white-space: nowrap; /* 列がふえて横並びに見えるのを防止 */
  font-style: italic;
  -webkit-transform: translateY(-50%) skewY(-6deg);
          transform: translateY(-50%) skewY(-6deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 16vw, 80px);
}
@media (min-width: 768px) {
  .p-about__decor {
    font-size: clamp(16px, 4.1666666667vw, 80px);
  }
}
@media (min-width: 768px) {
  .p-about__decor {
    right: min(-1.0416666667vw, -20px);
    top: 50%;
    font-size: clamp(16px, 26.6666666667vw, 200px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-about__decor {
    font-size: clamp(16px, 10.4166666667vw, 200px);
  }
}
.p-about {
  /* ===== セクションリビール時のステージドアニメーション =====
   * ① 背景画像（画像２：ゆっくりフェードイン）
   * ② 「知る力」以外のコンテンツ（タイトル＝既存アニメ、player/c-btn＝画像１）
   * ③ 最後に「知る力」（既存の文字ポップイン）
   */
}
.p-about.is-revealed {
  /* ① 背景フェードイン */
}
.p-about.is-revealed::before {
  -webkit-animation: anim-img-2 1.5s ease forwards;
          animation: anim-img-2 1.5s ease forwards;
}
.p-about.is-revealed {
  /* ② プレイヤー：画像１ */
}
.p-about.is-revealed .p-about__player {
  -webkit-animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 0.7s forwards;
          animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 0.7s forwards;
}
.p-about.is-revealed {
  /* ② サイドテキスト（RIKIGUMI in 5 Minutes）：画像２ */
}
.p-about.is-revealed .p-about__side {
  -webkit-animation: anim-img-2 1s ease 0.8s forwards;
          animation: anim-img-2 1s ease 0.8s forwards;
}
.p-about.is-revealed {
  /* ② c-btn：画像１ */
}
.p-about.is-revealed .p-about__inner > .c-btn {
  -webkit-animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 1s forwards;
          animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 1s forwards;
}
.p-about {
  /* ② タイトル文字：既存のポップを 0.4s 遅らせて開始 */
}
.p-about.is-revealed .p-section-title.is-revealed .p-section-title__char {
  -webkit-animation-delay: calc(0.4s + var(--char-i, 0) * 0.07s);
          animation-delay: calc(0.4s + var(--char-i, 0) * 0.07s);
}
.p-about {
  /* ③ 「知る力」装飾：既存のポップを 1.5s 遅らせて開始 */
}
.p-about.is-revealed .p-about__decor.is-revealed .p-section-title__char {
  -webkit-animation-delay: calc(1.5s + var(--char-i, 0) * 0.07s);
          animation-delay: calc(1.5s + var(--char-i, 0) * 0.07s);
}
.p-about {
  /* モーション抑制：すべて即時表示 */
}
@media (prefers-reduced-motion: reduce) {
  .p-about::before {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
  .p-about .p-about__player,
  .p-about .p-about__side,
  .p-about .p-about__inner > .c-btn {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}

/* ===============================================
 * Vision: 力組としての想い
 * =============================================== */
.p-vision {
  position: relative;
  background: #fafafa;
  padding-block: 13.3333333333vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-vision {
    padding-block: min(5.2083333333vw, 100px);
  }
}
.p-vision__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: 6.4vw;
}
@media (min-width: 768px) {
  .p-vision__inner {
    padding-inline: min(10.4166666667vw, 200px);
  }
}
.p-vision__head {
  position: relative;
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 768px) {
  .p-vision__head {
    margin-bottom: min(3.125vw, 60px);
  }
}
.p-vision {
  /* 「信じる力」装飾：空画像で文字くり抜き／最前面 */
}
.p-vision__decor {
  position: absolute;
  right: 0;
  bottom: -0.2em;
  z-index: 50;
  display: inline-block;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.023em;
  pointer-events: none;
  text-align: right;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 18.6666666667vw, 100px);
}
@media (min-width: 768px) {
  .p-vision__decor {
    font-size: clamp(16px, 5.2083333333vw, 100px);
  }
}
@media (min-width: 768px) {
  .p-vision__decor {
    font-size: clamp(16px, 29.3333333333vw, 200px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-vision__decor {
    font-size: clamp(16px, 10.4166666667vw, 200px);
  }
}
.p-vision__decor span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-vision__body {
  display: grid;
  gap: 10.6666666667vw;
}
@media (min-width: 768px) {
  .p-vision__body {
    grid-template-columns: 666fr 1030fr;
    gap: min(3.125vw, 60px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.p-vision__lead {
  display: inline-block;
  margin-bottom: 1em;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 6.4vw, 24px);
}
@media (min-width: 768px) {
  .p-vision__lead {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
@media (min-width: 768px) {
  .p-vision__lead {
    font-size: clamp(16px, 6.4vw, 40px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-vision__lead {
    font-size: clamp(16px, 2.0833333333vw, 40px);
  }
}
.p-vision__text {
  margin-bottom: 2em;
  line-height: 1.8;
  font-size: clamp(16px, 4.2666666667vw, 18px);
}
@media (min-width: 768px) {
  .p-vision__text {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
}
.p-vision__text {
  /* テキスト１：下からフェードイン（画面に入ったら） */
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  will-change: opacity, transform;
}
.p-vision__text.is-revealed {
  -webkit-animation: anim-txt-1 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: anim-txt-1 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .p-vision__text {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}
.p-vision {
  /* スライダー全体ラッパ：右端を画面の右端まで到達させる
   * 親 .p-vision__inner の右paddingを negative margin で打ち消す
   * SP: padding-right vw-sp(24) → margin-right vw-sp(-24)
   * PC: padding-right min(vw-pc(200), 200px) → margin-right で相殺
   */
}
.p-vision__slider {
  position: relative;
  min-width: 0; /* gridセル内ではみ出すのを防止 */
  margin-right: -6.4vw;
}
@media (min-width: 768px) {
  .p-vision__slider {
    margin-right: min(-10.4166666667vw, -200px);
  }
}
.p-vision {
  /* スライダー（Swiper） */
}
.p-vision__photos {
  width: auto;
  overflow: hidden; /* Swiper本来の動作。コンテナを超える分は隠す */
}
.p-vision__photos .swiper-slide {
  height: auto;
  /* Swiper初期化前にFOUCで全幅にならないよう保険 */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* 初期状態：その場でふわっと表示するため透明にしておく */
  opacity: 0;
  -webkit-transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.p-vision__photos .swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 540/568;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-vision__photos {
  /* 画面に入ったら親に .is-revealed が付与され、各スライドが順次フェードイン */
}
.p-vision__photos.is-revealed .swiper-slide {
  opacity: 1;
}
.p-vision__photos {
  /* nth-child でスタガー */
}
.p-vision__photos.is-revealed .swiper-slide:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-vision__photos.is-revealed .swiper-slide:nth-child(2) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.p-vision__photos.is-revealed .swiper-slide:nth-child(3) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}
.p-vision__photos.is-revealed .swiper-slide:nth-child(4) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}
.p-vision__photos.is-revealed .swiper-slide:nth-child(5) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}
.p-vision__photos.is-revealed .swiper-slide:nth-child(n+6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .p-vision__photos .swiper-slide {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}
.p-vision {
  /* スライダーのナビゲーション矢印
   * SP：スライダーの左上に絶対配置でオーバーレイ
   * PC：スライダーの下に通常配置
   */
}
.p-vision__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6666666667vw;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /* SP: スライダーの左上 */
  position: absolute;
  top: 2.6666666667vw;
  left: 2.6666666667vw;
  z-index: 5;
}
@media (min-width: 768px) {
  .p-vision__nav {
    /* PC: 通常フローに戻して下に配置 */
    position: static;
    top: auto;
    left: auto;
    gap: min(0.8333333333vw, 16px);
    margin-top: min(1.5625vw, 30px);
  }
}
.p-vision__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: #000000;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
}
@media (min-width: 768px) {
  .p-vision__arrow {
    width: min(3.125vw, 60px);
    height: min(3.125vw, 60px);
  }
}
.p-vision__arrow:hover {
  background: #000000;
  color: #ffffff;
}
.p-vision__arrow svg {
  width: 35%;
  height: 35%;
}
.p-vision__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-vision__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.p-vision__arrow.swiper-button-disabled:hover {
  background: transparent;
  color: #000000;
}

/* ===============================================
 * Interview
 * =============================================== */
.p-interview {
  position: relative;
  padding-block: 13.3333333333vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-interview {
    padding-block: min(6.25vw, 120px);
  }
}
.p-interview__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: 6.4vw;
}
@media (min-width: 768px) {
  .p-interview__inner {
    padding-inline: min(12.5vw, 240px);
  }
}
.p-interview {
  /* 「人の力」装飾：青空画像で文字くり抜き */
}
.p-interview__decor {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%) skewX(-8deg);
          transform: translate(-50%, -50%) skewX(-8deg);
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.023em;
  pointer-events: none;
  z-index: 5;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 26.6666666667vw, 140px);
}
@media (min-width: 768px) {
  .p-interview__decor {
    font-size: clamp(16px, 7.2916666667vw, 140px);
  }
}
@media (min-width: 768px) {
  .p-interview__decor {
    font-size: clamp(16px, 37.3333333333vw, 240px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-interview__decor {
    font-size: clamp(16px, 12.5vw, 240px);
  }
}
.p-interview__decor span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-interview {
  /* 一枚画像のインタビューカードを縦並びに */
}
.p-interview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10.6666666667vw;
  margin-top: 10.6666666667vw;
}
@media (min-width: 768px) {
  .p-interview__list {
    gap: min(4.1666666667vw, 80px);
    margin-top: min(4.1666666667vw, 80px);
  }
}
.p-interview__item {
  position: relative;
  width: 100%;
  /* 画像３: 画像表示前は暗い背景がのぞく */
  background-color: #1a1a1a;
  overflow: hidden;
  /* .c-btn を「画像をラップする透明クリッカブル」として再定義
   * 共通の暗いボタン背景・最大幅・角丸・余白などは打ち消す
   * （.c-btn の global 初期状態 opacity:0 / scale(0) もここで打ち消す）
   */
}
.p-interview__item > .c-btn {
  display: block;
  width: 100%;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
  opacity: 1; /* グローバル .c-btn の初期状態 opacity:0 を打ち消す */
  -webkit-transform: none;
          transform: none; /* グローバル .c-btn の初期状態 scale(0) を打ち消す */
  -webkit-animation: none;
          animation: none; /* 画像３は item 自身が担当するので .c-btn のポップは無効化 */
}
.p-interview__item > .c-btn:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-interview__item > .c-btn:hover .p-interview__photo img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.p-interview__item {
  /* 画面に入ったら下から画像が現れる（画像３） */
}
.p-interview__item.is-revealed .p-interview__photo img {
  -webkit-animation: anim-img-3 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: anim-img-3 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .p-interview__item {
    background-color: transparent;
  }
  .p-interview__item .p-interview__photo img {
    -webkit-clip-path: none;
            clip-path: none;
    -webkit-animation: none;
            animation: none;
  }
}
.p-interview__photo {
  width: 100%;
  overflow: hidden;
}
.p-interview__photo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  /* 画像３の初期状態：上端から100%クリップ＝完全に隠れる */
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}

/* ===============================================
 * Concept
 * =============================================== */
/* --- 新力組構想（concept）キーフレーム --- */
@-webkit-keyframes concept-bg-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes concept-bg-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes concept-frame-pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes concept-frame-pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes concept-text-reveal {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-transform: var(--concept-text-base, none) scale(0.9);
            transform: var(--concept-text-base, none) scale(0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: var(--concept-text-base, none) scale(1.05);
            transform: var(--concept-text-base, none) scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    -webkit-transform: var(--concept-text-base, none) scale(1);
            transform: var(--concept-text-base, none) scale(1);
  }
}
@keyframes concept-text-reveal {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-transform: var(--concept-text-base, none) scale(0.9);
            transform: var(--concept-text-base, none) scale(0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: var(--concept-text-base, none) scale(1.05);
            transform: var(--concept-text-base, none) scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    -webkit-transform: var(--concept-text-base, none) scale(1);
            transform: var(--concept-text-base, none) scale(1);
  }
}
.p-concept {
  position: relative;
  padding-block: 26.6666666667vw;
  background: #f8f2eb;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-concept {
    padding-block: min(10.4166666667vw, 200px);
  }
}
.p-concept {
  /* セクション背景は擬似要素に出して個別アニメーション */
}
.p-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/top/frame-bg.png) center/cover no-repeat;
  opacity: 0;
  -webkit-transform: scale(0.92);
          transform: scale(0.92);
  z-index: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.p-concept__inner {
  position: relative;
  z-index: 1; /* 背景擬似要素より前面に */
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .p-concept__inner {
    max-width: min(62.5vw, 1200px);
  }
}
.p-concept {
  /* フレーム（写真）: ②のpopアニメ用の初期状態 */
}
.p-concept__frame {
  position: relative;
  width: 100%;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: opacity, transform;
}
@media (min-width: 768px) {
  .p-concept__frame {
    margin: 0 auto;
  }
}
.p-concept__frame img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-concept {
  /* タイトル「新 力組構想 →」: フレーム下半分にオーバーラップ */
}
.p-concept__title {
  position: absolute;
  left: 50%;
  bottom: 25%; /* フレーム下から25%（=下半分の中ほど）に配置 */
  z-index: 2;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  /* 元の skewX をベースに、アニメーションでも維持できるよう CSS変数で */
  --concept-text-base: translate(-50%, 0) skewX(-8deg);
  -webkit-transform: var(--concept-text-base);
          transform: var(--concept-text-base);
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  color: #000000;
  line-height: 0.9;
  letter-spacing: -0.023em;
  /* ③のアニメ初期状態（is-revealed まで非表示） */
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  will-change: opacity, clip-path, transform;
  font-size: clamp(16px, 14.6666666667vw, 55px);
}
@media (min-width: 768px) {
  .p-concept__title {
    font-size: clamp(16px, 2.8645833333vw, 55px);
  }
}
@media (min-width: 768px) {
  .p-concept__title {
    max-width: min(46.875vw, 900px);
    font-size: clamp(16px, 16vw, 120px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-concept__title {
    font-size: clamp(16px, 6.25vw, 120px);
  }
}
.p-concept__title svg {
  margin: auto;
  width: 100%;
  height: auto;
}
.p-concept__arrow {
  width: 0.7em;
  height: 0.7em;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.p-concept {
  /* サブコピー「変わりはじめた、現場のかたち」 */
}
.p-concept__sub {
  position: absolute;
  left: 50%;
  bottom: 8%; /* タイトルの下に */
  z-index: 2;
  width: 90%;
  text-align: center;
  --concept-text-base: translate(-50%, 0);
  -webkit-transform: var(--concept-text-base);
          transform: var(--concept-text-base);
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  /* ③のアニメ初期状態 */
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  will-change: opacity, clip-path, transform;
  font-size: clamp(16px, 5.3333333333vw, 24px);
}
@media (min-width: 768px) {
  .p-concept__sub {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
@media (min-width: 768px) {
  .p-concept__sub {
    font-size: clamp(16px, 6.4vw, 40px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-concept__sub {
    font-size: clamp(16px, 2.0833333333vw, 40px);
  }
}
.p-concept {
  /* === スクロール連動：is-revealed が付いた時にステージ発火 === */
}
.p-concept.is-revealed {
  /* ① 背景: ゆっくり拡大しながらフェードイン */
}
.p-concept.is-revealed::before {
  -webkit-animation: concept-bg-in 2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards;
          animation: concept-bg-in 2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards;
}
.p-concept.is-revealed {
  /* ② フレーム: ぽんっと出る */
}
.p-concept.is-revealed .p-concept__frame {
  -webkit-animation: concept-frame-pop 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 0.9s forwards;
          animation: concept-frame-pop 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 0.9s forwards;
}
.p-concept.is-revealed {
  /* ③ タイトル: 左から右へワイプ + 軽くスケール */
}
.p-concept.is-revealed .p-concept__title {
  -webkit-animation: concept-text-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
          animation: concept-text-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}
.p-concept.is-revealed {
  /* ③ サブ: タイトルから少し遅れて */
}
.p-concept.is-revealed .p-concept__sub {
  -webkit-animation: concept-text-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 2s forwards;
          animation: concept-text-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 2s forwards;
}
.p-concept {
  /* モーション抑制ユーザー：アニメーションを止めて即表示 */
}
@media (prefers-reduced-motion: reduce) {
  .p-concept::before {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
  .p-concept__frame, .p-concept__title, .p-concept__sub {
    opacity: 1;
    -webkit-clip-path: none;
            clip-path: none;
    -webkit-animation: none;
            animation: none;
  }
  .p-concept__frame {
    -webkit-transform: none;
            transform: none;
  }
}

/* ===============================================
 * Message
 * =============================================== */
.p-message {
  position: relative;
  background: #000000;
  padding-block: 32vw;
  overflow: hidden;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-message {
    padding-block: min(11.4583333333vw, 220px);
  }
}
.p-message {
  /* ① 背景画像は擬似要素に分離して、画像２でゆっくりフェードイン */
}
.p-message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/top/hung-bg.png") center/cover no-repeat;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.p-message__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding-inline: 6.4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8vw;
}
@media (min-width: 768px) {
  .p-message__inner {
    padding-inline: min(12.5vw, 240px);
    gap: min(2.0833333333vw, 40px);
  }
}
.p-message__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25em;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  line-height: 0.9;
  letter-spacing: -0.023em;
  font-size: clamp(16px, 18.6666666667vw, 100px);
}
@media (min-width: 768px) {
  .p-message__title {
    font-size: clamp(16px, 5.2083333333vw, 100px);
  }
}
@media (min-width: 768px) {
  .p-message__title {
    font-size: clamp(16px, 26.6666666667vw, 200px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-message__title {
    font-size: clamp(16px, 10.4166666667vw, 200px);
  }
}
.p-message__title {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.p-message__title--right {
  margin-left: 1em;
}
.p-message__title-jp {
  position: absolute;
  z-index: 2;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-message__title-jp:nth-child(1) {
  top: 20%;
  left: 3%;
}
.p-message__title-jp:nth-child(2) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .p-message__title-jp:nth-child(2) {
    font-size: clamp(16px, 37.3333333333vw, 300px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-message__title-jp:nth-child(2) {
    font-size: clamp(16px, 15.625vw, 300px);
  }
}
.p-message__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6em;
  width: 100%;
  position: relative;
  font-size: clamp(16px, 4.2666666667vw, 18px);
}
@media (min-width: 768px) {
  .p-message__cta {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
}
@media (min-width: 768px) {
  .p-message__cta {
    max-width: min(76.0416666667vw, 1460px);
    padding: min(1.5625vw, 30px) min(2.0833333333vw, 40px);
    font-size: clamp(16px, 4.8vw, 24px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-message__cta {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
.p-message__cta-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1em;
  height: 1em;
}
.p-message__cta-icon svg {
  width: 100%;
  height: 100%;
}
.p-message__cta img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.p-message__cta {
  /* ② メイン画像（default）に画像１（scale 0→1.2→1）の初期状態 */
}
.p-message__cta img.default {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: opacity, transform;
}
.p-message__cta img.hover {
  display: none;
}
.p-message__cta:hover img.default {
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-message__cta:hover img.hover {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-message {
  /* === セクションリビール時のステージドアニメーション === */
}
.p-message.is-revealed {
  /* ① 背景フェードイン */
}
.p-message.is-revealed::before {
  -webkit-animation: anim-img-2 1.5s ease forwards;
          animation: anim-img-2 1.5s ease forwards;
}
.p-message.is-revealed {
  /* ② 画像ポップイン */
}
.p-message.is-revealed .p-message__cta img.default {
  -webkit-animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 0.5s forwards;
          animation: anim-img-1 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 0.5s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .p-message::before {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
  .p-message .p-message__cta img.default {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}

/* ===============================================
 * FAQ
 * =============================================== */
.p-faq {
  position: relative;
  background: #fafafa;
  padding-block: 16vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-faq {
    padding-block: min(6.25vw, 120px);
  }
}
.p-faq__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: 6.4vw;
}
@media (min-width: 768px) {
  .p-faq__inner {
    padding-inline: min(10.4166666667vw, 200px);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: min(3.125vw, 60px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.p-faq__inner .p-section-title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-faq__inner::before {
  content: "";
  position: absolute;
  aspect-ratio: 1611/1331;
  background-size: cover;
  -o-object-position: center;
     object-position: center;
  width: 70%;
  background-image: url(../images/top/faq-bg.png);
  z-index: 0;
  top: -20vw;
  /* 画像２: 画面に入ったらゆっくりフェードイン */
  opacity: 0;
  right: -10vw;
  will-change: opacity;
}
@media (min-width: 768px) {
  .p-faq__inner::before {
    right: unset;
    top: 0;
  }
}
.p-faq__inner.is-revealed::before {
  -webkit-animation: anim-img-2 1.5s ease forwards;
          animation: anim-img-2 1.5s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  .p-faq__inner::before {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
}
.p-faq__list {
  margin-top: 5.3333333333vw;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .p-faq__list {
    margin-top: 0;
  }
}
.p-faq__item {
  border-bottom: 1px solid #000000;
}
.p-faq__item.is-open .p-faq__toggle svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* 質問文が長い場合は折り返し */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1333333333vw;
  width: 100%;
  padding-block: 6.4vw;
  text-align: left;
}
@media (min-width: 768px) {
  .p-faq__question {
    padding-block: min(1.5625vw, 30px);
    gap: min(0.625vw, 12px);
  }
}
.p-faq__mark {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 5.8666666667vw, 24px);
}
@media (min-width: 768px) {
  .p-faq__mark {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
.p-faq__mark--a {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.p-faq__question-text {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto; /* テキスト幅ぴったりに収まる（flex:1 で広がらない） */
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.023em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 100px);
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 4.8vw, 24px);
}
@media (min-width: 768px) {
  .p-faq__question-text {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
.p-faq {
  /* アコーディオン下向き矢印：質問文の直後に配置 */
}
.p-faq__toggle {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: auto; /* 右側の余白を吸収し、矢印は質問文の直後に貼り付く */
  width: 1.2em;
  height: 1.2em;
}
.p-faq__toggle svg {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}
.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6666666667vw;
  padding-bottom: 6.4vw;
}
@media (min-width: 768px) {
  .p-faq__answer {
    padding-bottom: min(1.5625vw, 30px);
    gap: min(0.8333333333vw, 16px);
  }
}
.p-faq__answer[hidden] {
  display: none;
}
.p-faq__answer-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.7;
  font-size: clamp(16px, 4.2666666667vw, 18px);
}
@media (min-width: 768px) {
  .p-faq__answer-text {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
}

/* ===============================================
 * Entry CTA
 * =============================================== */
.p-entry {
  position: relative;
  padding-block: 21.3333333333vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-entry {
    padding-block: min(8.3333333333vw, 160px);
  }
}
.p-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(24%, rgba(250, 250, 250, 0)), to(#fafafa));
  background: linear-gradient(180deg, rgba(250, 250, 250, 0) 24%, #fafafa 100%);
  pointer-events: none;
}
.p-entry__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8vw;
  width: 100%;
  margin: 0 auto;
  padding-inline: 6.4vw;
}
@media (min-width: 768px) {
  .p-entry__inner {
    padding-inline: min(12.5vw, 240px);
    gap: min(2.0833333333vw, 40px);
  }
}
.p-entry__inner a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  aspect-ratio: 2/1;
  padding-bottom: 10%;
  overflow: hidden;
  /* 背景画像は擬似要素に分離（画像３：clip-path で下から出現） */
  background-image: none;
}
.p-entry__inner a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1a1a url(../images/top/entry-bg.png) center/cover no-repeat;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  will-change: clip-path;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-entry__inner a:hover::before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: url(../images/top/entry-bg-hover.png);
}
.p-entry__inner a {
  /* テキストは前面に重ねる */
}
.p-entry__inner a > * {
  position: relative;
  z-index: 1;
}
.p-entry__copy {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 9.6vw, 52px);
}
@media (min-width: 768px) {
  .p-entry__copy {
    font-size: clamp(16px, 2.7083333333vw, 52px);
  }
}
@media (min-width: 768px) {
  .p-entry__copy {
    font-size: clamp(16px, 13.8666666667vw, 100px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-entry__copy {
    font-size: clamp(16px, 5.2083333333vw, 100px);
  }
}
.p-entry__copy {
  /* テキスト１：下からフェードイン */
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  will-change: opacity, transform;
}
.p-entry__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background-color: transparent;
  background-image: url("../images/top/txt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 4.2666666667vw, 20px);
}
@media (min-width: 768px) {
  .p-entry__btn {
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
@media (min-width: 768px) {
  .p-entry__btn {
    font-size: clamp(16px, 5.3333333333vw, 28px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-entry__btn {
    font-size: clamp(16px, 1.4583333333vw, 28px);
  }
}
.p-entry__btn svg {
  width: 0.6em;
  height: 0.6em;
  color: #002bff;
}
.p-entry__btn:hover {
  opacity: 0.6;
}
.p-entry__btn {
  /* テキスト１：下からフェードイン */
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  will-change: opacity, transform;
}
.p-entry {
  /* === 各要素が個別に画面に入ったタイミングで発火 === */
  /* 背景：画像３（<a> 自身が in-view になったら ::before のクリップを解除） */
}
.p-entry__inner a.is-revealed::before {
  -webkit-animation: anim-img-3 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: anim-img-3 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.p-entry {
  /* テキスト：テキスト１ */
}
.p-entry__copy.is-revealed {
  -webkit-animation: anim-txt-1 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: anim-txt-1 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.p-entry__btn.is-revealed {
  -webkit-animation: anim-txt-1 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: anim-txt-1 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .p-entry .p-entry__inner a::before {
    -webkit-clip-path: none;
            clip-path: none;
    -webkit-animation: none;
            animation: none;
  }
  .p-entry .p-entry__copy,
  .p-entry .p-entry__btn {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}

/* 力組採用特設サイト - スタイルエントリーポイント */
.l-footer {
  position: relative;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  background-color: #fff;
}
.l-footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 16vw 6.4vw;
  background-image: url(../images/common/footer-bg.png);
}
@media (min-width: 768px) {
  .l-footer__inner {
    padding: min(10.4166666667vw, 200px) min(12.5vw, 240px) min(10.4166666667vw, 200px);
  }
}
.l-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .l-footer__brand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: min(2.0833333333vw, 40px);
  }
}
.l-footer__logo {
  width: 74.6666666667vw;
  max-width: 100%;
}
@media (min-width: 768px) {
  .l-footer__logo {
    width: min(29.1666666667vw, 560px);
  }
}
.l-footer__brand-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .l-footer__brand-labels {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: min(0.8333333333vw, 16px);
  }
}
.l-footer__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  padding: 3.2vw 5.3333333333vw;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(16px, 4.2666666667vw, 18px);
}
@media (min-width: 768px) {
  .l-footer__badge {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
}
@media (min-width: 768px) {
  .l-footer__badge {
    padding: min(0.7291666667vw, 14px) min(1.25vw, 24px);
  }
}
.l-footer__badge--link:hover {
  background: #f0f0f0;
}
.l-footer__badge-icon {
  width: 1em;
  height: 1em;
}
.l-footer__nav {
  margin-top: 10.6666666667vw;
}
@media (min-width: 768px) {
  .l-footer__nav {
    margin-top: min(3.125vw, 60px);
  }
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.2666666667vw 2.1333333333vw;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
}
@media (min-width: 768px) {
  .l-footer__nav-list {
    gap: min(1.5625vw, 30px) min(1.0416666667vw, 20px);
  }
}
.l-footer__nav-list > li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-footer__nav-list {
  /* セパレータ：各項目の左右に縦バー（空画像で塗る） */
}
.l-footer__nav-list > li::before, .l-footer__nav-list > li:last-child::after {
  content: "";
  display: inline-block;
  -ms-flex-item-align: center;
      align-self: center;
  width: 2px;
  height: 1.6em;
  margin-inline: 2.1333333333vw;
  background: url("../images/common/txt-bg-2.png") center/cover no-repeat;
}
@media (min-width: 768px) {
  .l-footer__nav-list > li::before, .l-footer__nav-list > li:last-child::after {
    margin-inline: min(0.8333333333vw, 16px);
    height: 2em;
  }
}
.l-footer__nav-list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.l-footer__nav-list a:hover {
  opacity: 0.8;
}
.l-footer {
  /* 強調語（TOP / 5分 / 想い / 職種 / 新 / 社長 / 語る / エントリー） */
}
.l-footer__txt {
  display: inline-block;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 7.4666666667vw, 40px);
}
@media (min-width: 768px) {
  .l-footer__txt {
    font-size: clamp(16px, 2.0833333333vw, 40px);
  }
}
@media (min-width: 768px) {
  .l-footer__txt {
    font-size: clamp(16px, 9.6vw, 60px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .l-footer__txt {
    font-size: clamp(16px, 3.125vw, 60px);
  }
}
.l-footer {
  /* 補助語（で分かる力組 / 力組としての / インタビュー / 力組構想 / が） */
}
.l-footer__txt--sm {
  display: inline-block;
  margin-bottom: 0.12em; /* 大きい文字とのベースラインを合わせる微調整 */
  font-family: "Zen Kaku Gothic New", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.023em;
  background-color: transparent;
  background-image: url("../images/common/txt-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(16px, 4.2666666667vw, 22px);
}
@media (min-width: 768px) {
  .l-footer__txt--sm {
    font-size: clamp(16px, 1.1458333333vw, 22px);
  }
}
@media (min-width: 768px) {
  .l-footer__txt--sm {
    font-size: clamp(16px, 5.8666666667vw, 30px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .l-footer__txt--sm {
    font-size: clamp(16px, 1.5625vw, 30px);
  }
}
.l-footer__copy {
  margin-top: 5.3333333333vw;
  margin-bottom: 5.3333333333vw;
  text-align: center;
  color: #000000;
  font-size: clamp(16px, 3.2vw, 14px);
}
@media (min-width: 768px) {
  .l-footer__copy {
    font-size: clamp(16px, 0.7291666667vw, 14px);
  }
}
@media (min-width: 768px) {
  .l-footer__copy {
    margin-top: min(1.5625vw, 30px);
    margin-bottom: min(1.5625vw, 30px);
  }
}/*# sourceMappingURL=style.css.map */