/**
 * ISEYASUテーマ メインCSS
 * モバイルファースト / BEM記法
 * ブレイクポイント: @media (min-width: 800px)
 *
 * プロパティ記述順序:
 * 1. レイアウト: display, position, float, clear, flex, grid
 * 2. ボックスモデル: width, height, margin, padding, border
 * 3. タイポグラフィ: font, color, line-height, text-align
 * 4. 見栄え・その他: background, opacity, transform, transition
 */

/*------------------------------
CSS変数（デザイントークン）
------------------------------*/
:root {
  --color-black: #4b5055;
  --color-white: #ffffff;
  --color-red: #e65649;
  --color-blue: #0785c0;
  --color-gray-line: #d1d9df;
  --color-light-bg: #f3f9fd;
  --color-recruit-teal: #70cec0;
  --color-recruit-teal-dark: #53c2cb;
  --color-recruit-teal-accent: #1eb2a7;
  --color-recruit-navy: #142f58;
  --color-recruit-light-teal: #d7efef;
  --color-drawer-bg: rgba(7, 133, 192, 0.85);
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  scroll-padding-top: 70px;
}

@media (min-width: 1200px) {
  html {
    scroll-padding-top: 120px;
  }
}

@media (min-width: 1800px) {
  html {
    scroll-padding-top: 160px;
  }
}

body {
  position: relative;
  width: 100%;
  min-width: 390px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

body:not(.home) .site-main {
  background-color: var(--color-white);
}

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

ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

/* SVGスプライト（非表示） */
.svg-sprite {
  display: none;
}

/* 固定背景（将来的に動画へ差し替え予定） */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.site-bg__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

/* 汎用: 丸矢印アイコン（背景色=currentColor / 矢印色=--icon-arrow-color） */
.icon-circle-arrow__arrow {
  fill: var(--icon-arrow-color, var(--color-blue));
}

/* ========================================
   スクロール連動アニメーション（汎用）
   ======================================== */

/* 波打ち文字の初期状態（非表示） */
.js-scroll-trigger .js-wave-chars > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

/* セクションが可視になったらアニメーション開始 */
.js-scroll-trigger.is-visible .js-wave-chars > span {
  animation: heading-fade-up 0.7s cubic-bezier(0.33, 1, 0.68, 1)
    calc(var(--i) * 0.06s) forwards;
}

@keyframes heading-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* h2直後の要素: 見出しアニメーション開始0.3秒後にフェードイン */
.js-scroll-trigger h2 + * {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}

.js-scroll-trigger.is-visible h2 + * {
  opacity: 1;
}

/* NEWS: h2直後ではなく.news__bodyをフェードイン対象にする */
.news.js-scroll-trigger h2 + * {
  opacity: 1;
  transition: none;
}

.news.js-scroll-trigger .news__body {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}

.news.js-scroll-trigger.is-visible .news__body {
  opacity: 1;
}

/* COMPANY & SDGs: h2直後ルールを打ち消し、カード単位でフェードイン */
.company-sdgs.js-scroll-trigger h2 + * {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}

.company-sdgs.js-scroll-trigger.is-visible h2 + * {
  opacity: 1;
}

.company-sdgs.js-scroll-trigger .company-sdgs__card {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.company-sdgs.js-scroll-trigger.is-visible .company-sdgs__card {
  opacity: 1;
}

.recruit.js-scroll-trigger h2 + * {
  opacity: 1;
  transition: none;
}

.recruit.js-scroll-trigger .recruit__content {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}

.recruit.js-scroll-trigger.is-visible .recruit__content {
  opacity: 1;
}

/* ========================================
   サイトヘッダー（フローティング）
   ======================================== */
.site-header {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 300;
}
@media (min-width: 1650px) {
  .site-header {
    top: 60px;
    right: 60px;
  }
}

/* フロントページ: Phase2でスライドイン */
body.home .site-header {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 2.94s,
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 2.94s;
}

body.home.is-loaded .site-header {
  opacity: 1;
  transform: none;
}

/* スクロール済みリロード時: 遅延なしで即時表示 */
body.home .site-header.is-no-delay {
  transition-delay: 0s;
}

.site-header__inner {
  display: flex;
  align-items: center;
  border-radius: 15px;
  background-color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

/* PCナビゲーション（モバイルでは非表示） */
.site-header__nav {
  display: none;
}
@media (min-width: 1262px) {
  .site-header__nav {
    display: block;
  }
}

.site-header__nav-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 25px 0 20px;
}

.site-header__nav-list::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 1px;
  height: 15px;
  margin: auto;
  background-color: var(--color-gray-line);
}

@media (min-width: 2100px) {
  .site-header__nav-list::before {
    height: 20px;
  }
}

@media (min-width: 2100px) {
  .site-header__nav-list {
    gap: 20px;
    padding-right: 30px;
  }
}

.site-header__nav-item {
  position: relative;
  white-space: nowrap;
}

.site-header__nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--color-black);
  transition: color 0.3s;
}

@media (min-width: 2100px) {
  .site-header__nav-link {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

@media (hover: hover) {
  .site-header__nav-link:hover {
    color: var(--color-blue);
  }
}

.site-header__nav-arrow {
  flex-shrink: 0;
  width: 10px;
  height: 6px;
  color: var(--color-black);
  transition: transform 0.3s;
}

/* ドロップダウン付きナビ項目 */
.site-header__nav-link--has-child {
  position: relative;
}

/* ホバー時: 矢印180度回転 */
@media (hover: hover) {
  .site-header__nav-item:has(.site-header__nav-link--has-child):hover
    .site-header__nav-arrow {
    color: var(--color-black);
    transform: rotate(180deg);
  }
}

/* ドロップダウンパネル */
.site-header__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 10;
  width: max-content;
  padding: 10px 15px 15px;
  border-radius: 15px;
  visibility: hidden;
  background-color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(-50%);
  transition:
    visibility 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ホバー時のヒットエリア拡張（親リンクとドロップダウン間の隙間を埋める） */
.site-header__dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

@media (hover: hover) {
  .site-header__nav-item:has(.site-header__nav-link--has-child):hover
    > .site-header__dropdown {
    visibility: visible;
    opacity: 1;
  }
}

/* ドロップダウン: グループ（各リンクブロック） */
.site-header__dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
}
.site-header__dropdown-group:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.site-header__dropdown-group + .site-header__dropdown-group {
  padding-top: 10px;
}

/* ドロップダウン: リンク */
.site-header__dropdown-link {
  display: block;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-black);
  line-height: 1.25;
  white-space: nowrap;
  transition: color 0.3s;
}
@media (min-width: 2100px) {
  .site-header__dropdown-link {
    font-size: 1.4rem;
  }
}

@media (hover: hover) {
  .site-header__dropdown-link:hover {
    color: var(--color-blue);
  }
}

.site-header__dropdown-bullet {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  color: var(--color-blue);
}

/* CTAボタン（モバイルでは非表示） */
.site-header__cta {
  display: none;
}
@media (min-width: 1262px) {
  .site-header__cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 7.5px 0 15px;
  }
}
@media (min-width: 2100px) {
  .site-header__cta {
    gap: 20px;
    margin: 0 7.5px 0 20px;
    padding: 15px 0;
  }
}

.site-header__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border-radius: 30px;
  color: var(--color-white);
  transition: opacity 0.3s;
}

@media (min-width: 2100px) {
  .site-header__cta-btn {
    padding: 10px 15px;
  }
}

@media (hover: hover) {
  .site-header__cta-btn:hover {
    opacity: 0.8;
  }
}

.site-header__cta-btn--document {
  background-color: var(--color-black);
}

.site-header__cta-btn--contact {
  background-color: var(--color-red);
}

.site-header__cta-label {
  display: none;
}

@media (min-width: 2100px) {
  .site-header__cta-label {
    display: inline;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.25;
    white-space: nowrap;
  }
}

.site-header__cta-icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 2100px) {
  .site-header__cta-icon {
    display: none;
  }
}

.site-header__cta-arrow {
  display: none;
  width: 10px;
  height: 9px;
}

@media (min-width: 2100px) {
  .site-header__cta-arrow {
    display: inline-block;
  }
}

/* ハンバーガーボタン（=⇔×アニメーション） */
.site-header__hamburger {
  position: relative;
  width: 25px;
  height: 40px;
  padding: 30px 35px;
  border: none;
  background: none;
  cursor: pointer;
}

.site-header__hamburger-line {
  display: block;
  position: absolute;
  inset: 0;
  width: 25px;
  height: 2px;
  margin: auto;
  background-color: var(--color-black);
  transition:
    top 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s,
    bottom 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s,
    transform 0.15s cubic-bezier(0.33, 1, 0.68, 1);
}

.site-header__hamburger-line:first-child {
  top: -10px;
}

.site-header__hamburger-line:last-child {
  bottom: -10px;
}

.site-header__hamburger.is-active .site-header__hamburger-line:first-child {
  top: 0;
  transform: rotate(45deg);
  transition:
    top 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    bottom 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s;
}

.site-header__hamburger.is-active .site-header__hamburger-line:last-child {
  bottom: 0;
  transform: rotate(-45deg);
  transition:
    top 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    bottom 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s;
}

/* ========================================
   ドロワーメニュー
   ======================================== */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background: url(../images/header_menu_bg.jpg) no-repeat center center / cover;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.drawer.is-open {
  visibility: visible;
  opacity: 1;
}

/* オーバーレイ */
.drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ロゴエリア（PC時のみ表示） */
.drawer__logo-area {
  display: none;
}
@media (min-width: 1200px) {
  .drawer__logo-area {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    align-items: center;
    justify-content: center;
    width: 500px;
    max-width: 35%;
    height: 100%;
    padding: 50px;
    background-color: var(--color-white);
  }
}

@media (min-width: 1200px) {
  .drawer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .drawer__logo-icon {
    width: 172px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .drawer__logo-text {
    width: 200px;
    height: auto;
    margin-top: 10px;
  }
}

/* メインコンテンツ */
.drawer__content {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 133, 192, 0.85);
}
@media (min-width: 1200px) {
  .drawer__content {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    width: calc(100% - min(500px, 35%));
    margin-left: min(500px, 35%);
    padding: 100px 60px;
  }
}

.drawer__content-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 120px 20px 50px;
}

@media (min-width: 1200px) {
  .drawer__content-inner {
    padding: 0;
  }
}

/* ドロワー ナビゲーション */
.drawer__nav {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
}

.drawer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.drawer__nav-item {
  width: 200px;
}

.drawer__nav-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.25;
  transition: opacity 0.3s;
}

.drawer__nav-title span {
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .drawer__nav-title:hover {
    opacity: 0.7;
  }

  .drawer__nav-title:hover span {
    transform: translateX(10px);
  }
}

.drawer__nav-arrow {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  --icon-arrow-color: var(--color-blue);
}

@media (hover: hover) {
  .drawer__nav-title:hover .drawer__nav-arrow {
    scale: 0.75;
  }
}

/* サブナビ */
.drawer__sub-nav {
  margin-top: 10px;
}

.drawer__sub-nav-link {
  display: block;
  padding: 5px 0;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 1.25;
  transition:
    opacity 0.3s,
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .drawer__sub-nav-link:hover {
    opacity: 0.7;
    transform: translateX(10px);
  }
}

/* ドロワー フッター */
.drawer__footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 700px;
  margin-top: 60px;
}
@media (min-width: 1200px) {
  .drawer__footer {
    justify-content: flex-end;
  }
}

.drawer__footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.25;
  background-color: var(--color-red);
  border-radius: 25px;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .drawer__footer-btn:hover {
    opacity: 0.8;
  }
}

.drawer__footer-sns {
  display: block;
  width: 40px;
  height: 41px;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .drawer__footer-sns:hover {
    opacity: 0.7;
  }
}

.drawer__footer-sns img {
  width: 100%;
  height: 100%;
}

/* body スクロール防止（ドロワー表示時） */
body.is-drawer-open {
  overflow: hidden;
}
body.is-drawer-open .site-header__nav,
body.is-drawer-open .site-header__cta {
  display: none;
}

/* ========================================
   メインコンテンツ
   ======================================== */
.page-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
@media (min-width: 800px) {
  .page-title {
    font-size: 2rem;
  }
}

/* ========================================
   メインビジュアル
   ======================================== */

/*
 * MVアニメーション タイミング設計（すべてCSSで制御）
 * トリガー: body.is-loaded
 *
 * 0.0s  MV全体フェードイン開始（0.8s duration）
 * 1.0s  Phase1: タイトル文字・デコレーション開始
 *        - タイトル: 各文字 delay = 1s + i*0.06s, duration 0.7s
 *        - デコ: delay 1s, duration 1.5s
 * 1.84s サブタイトル開始（タイトル完了と同時に完了するよう逆算）
 * 2.94s Phase2: ロゴ・ヘッダー・スクロールインジケーター
 */

.mv {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  background-color: var(--color-white);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 1650px) {
  .mv {
    padding: 30px;
  }
}

body.is-loaded .mv {
  opacity: 1;
}

/* 背景コンテナ（角丸マスク） */
.mv__bg {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  overflow: hidden;
  border-radius: 30px;
}
@media (min-width: 1650px) {
  .mv__bg {
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border-radius: 50px;
  }
}

/* 背景スライド: 全スライド初期非表示 → is-active で表示 */
.mv__bg-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1),
    visibility 1.5s;
}

.mv__bg-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__bg-slide:first-child .mv__bg-slide-img {
  object-position: 68% center;
}

@media (min-width: 800px) {
  .mv__bg-slide:first-child .mv__bg-slide-img {
    object-position: center;
  }
}

.mv__bg-slide.is-active {
  visibility: visible;
  opacity: 1;
}

/* コピーライト表記（1枚目スライド表示時のみ） */
.mv__bg-copyright {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 1200px) {
  .mv__bg-copyright {
    right: 50px;
    bottom: 50px;
    font-size: 1.4rem;
  }
}

.mv__bg-copyright.is-visible {
  opacity: 1;
}

/* グラデーションオーバーレイ */
.mv__bg-overlay {
  position: absolute;
  inset: 0;
}

.mv__bg-overlay--blue {
  background: linear-gradient(
    to right,
    rgba(7, 133, 192, 0.8) 1.5%,
    rgba(7, 133, 192, 0.16)
  );
}

.mv__bg-overlay--green {
  background: linear-gradient(
    to right,
    rgba(7, 133, 192, 0.56) 1.5%,
    rgba(38, 181, 151, 0.26)
  );
}

/* 左上ロゴ（h1） — Phase2でスライドイン */
.mv__logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 15px 30px;
  border-radius: 0 0 30px 0;
  background-color: var(--color-white);
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 2.94s,
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 2.94s;
}
@media (min-width: 1200px) {
  .mv__logo {
    padding: 40px 50px;
  }
}

body.is-loaded .mv__logo {
  opacity: 1;
  transform: translateY(0);
}

.mv__logo-img {
  display: block;
  width: 160px;
  height: auto;
}

@media (min-width: 1200px) {
  .mv__logo-img {
    width: 200px;
  }
}

/* コンテンツ領域 */
.mv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: calc(100dvh - 30px);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .mv__inner {
    min-height: calc(100dvh - 60px);
    max-width: 1500px;
    padding: 0 60px;
  }
}

/* 装飾パターン（ブランドマーク） — Phase1でフェードイン */
.mv__deco {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 350px;
  height: 222px;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1s;
}
@media (min-width: 1200px) {
  .mv__deco {
    left: -30px;
    width: 800px;
    height: 508px;
  }
}

body.is-loaded .mv__deco {
  opacity: 0.15;
}

.mv__deco svg {
  width: 100%;
  height: 100%;
}

/* テキストグループ */
.mv__text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .mv__text {
    gap: 30px;
  }
}

/* タイトル: Wirenet Creation */
.mv__title {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-style: italic;
  font-family: "Noto Sans", sans-serif;
  font-size: 6rem;
  color: var(--color-white);
  line-height: 1.25;
}
@media (min-width: 1200px) {
  .mv__title {
    font-size: 10rem;
  }
}
@media (min-width: 1650px) {
  .mv__title {
    font-size: 15rem;
  }
}

.mv__title-line {
  display: block;
  margin-bottom: -20px;
}

@media (min-width: 1200px) {
  .mv__title-line {
    margin-bottom: -30px;
  }
}

.mv__title-line--indent {
  padding-left: 30px;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .mv__title-line--indent {
    padding-left: 100px;
  }
}

/* タイトル文字: Phase1で1文字ずつフェードアップ */
.mv__title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1) calc(var(--i) * 0.06s + 1s),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1) calc(var(--i) * 0.06s + 1s);
}

body.is-loaded .mv__title-char {
  opacity: 1;
  transform: translateY(0);
}

/* サブタイトル: タイトル完了と同時に完了するよう逆算（delay 1.84s） */
.mv__subtitle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--color-white);
  line-height: 2;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1) 1.84s,
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1) 1.84s;
}

body.is-loaded .mv__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.mv__subtitle-main {
  font-weight: 700;
  font-size: 2.4rem;
}

@media (min-width: 1200px) {
  .mv__subtitle-main {
    font-size: 4rem;
    letter-spacing: 2px;
  }
}

.mv__subtitle-sub {
  font-weight: 500;
  font-size: 1.4rem;
}

@media (min-width: 1200px) {
  .mv__subtitle-sub {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
  }
}

/* スクロールインジケーター — Phase2でスライドイン */
.mv__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-50%) translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 2.94s,
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 2.94s;
}
@media (min-width: 1200px) {
  .mv__scroll {
    bottom: 70px;
  }
}
@media (max-height: 480px) {
  .mv__scroll {
    display: none;
  }
}
@media (min-width: 1200px) and (max-height: 880px) {
  .mv__scroll {
    display: none;
  }
}

body.is-loaded .mv__scroll {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mv__scroll-label {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  letter-spacing: 0.19em;
}

@media (min-width: 1200px) {
  .mv__scroll-label {
    font-size: 2.4rem;
  }
}

.mv__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background-color: var(--color-white);
  animation: scroll-line 1.5s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}

@media (min-width: 1200px) {
  .mv__scroll-line {
    height: 60px;
  }
}

@keyframes scroll-line {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ========================================
   ABOUTセクション
   ======================================== */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}
@media (min-width: 800px) {
  .about {
    padding: 200px 0;
  }
}

.about__upper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .about__upper {
    padding: 0 60px 100px;
  }
}

/* 見出し */
.about__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .about__heading {
    width: 100%;
    padding-bottom: 60px;
  }
}

.about__heading-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__heading-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .about__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.about__heading-label {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-black);
  line-height: 1.25;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .about__heading-label {
    font-size: 2.4rem;
  }
}

.about__heading-en {
  font-weight: 700;
  font-style: italic;
  font-size: 4.8rem;
  font-family: "Noto Sans", sans-serif;
  color: var(--color-black);
  line-height: 1.25;
}

.about__heading-en span {
  font-style: italic;
}

@media (min-width: 800px) {
  .about__heading-en {
    font-size: 7.2rem;
  }
}

@media (min-width: 1200px) {
  .about__heading-en {
    font-size: 12rem;
  }
}

.about__heading-en-accent {
  color: var(--color-blue);
}

/* 本文 */
.about__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 800px;
  padding-bottom: 40px;
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-black);
  line-height: 2;
}
@media (min-width: 1200px) {
  .about__body {
    gap: 30px;
    padding-bottom: 60px;
    font-size: 3rem;
  }
}

.about__accent {
  color: var(--color-blue);
}

/* カードコンテナ */
.about__lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
}
@media (min-width: 800px) {
  .about__lower {
    padding: 0 60px;
  }
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 40px 0;
  border-radius: 40px;
  background-color: var(--color-white);
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
}

@media (min-width: 800px) {
  .about__cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
    padding: 30px;
    border-radius: 30px;
  }
}

@media (min-width: 1200px) {
  .about__cards {
    gap: 100px;
    padding: 60px;
    border-radius: 60px;
  }
}

/* カード */
.about__card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}
@media (min-width: 800px) {
  .about__card {
    justify-content: space-between;
    gap: 20px;
    width: calc(50% - 20px);
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .about__card {
    width: calc(50% - 50px);
    gap: 40px;
  }
}

.about__card:first-child {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-gray-line);
}

@media (min-width: 800px) {
  .about__card:first-child {
    height: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.about__card-content {
  width: calc(100% - 40px - 40px);
  min-width: 0;
  max-width: 800px;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .about__card-content {
    width: calc(100% - 40px - 20px);
  }
}

@media (min-width: 1200px) {
  .about__card-content {
    width: calc(100% - 40px - 40px);
  }
}

.about__card-title {
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .about__card-title {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.about__card-desc {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-black);
  line-height: 2;
}

@media (min-width: 800px) {
  .about__card-desc {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.about__card-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .about__card:hover .about__card-content {
    transform: translate(30px, 0);
  }

  .about__card:hover .about__card-arrow {
    scale: 0.75;
  }
}

/* ========================================
   SERVICEセクション
   ======================================== */
.service {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
@media (min-width: 800px) {
  .service {
    padding: 171.5px 0;
  }
}
@media (min-width: 1650px) {
  .service {
    padding: 343px 0;
  }
}

/* 背景画像 + オーバーレイ */
.service__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.service__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 133, 192, 0.6);
}

/* コンテンツ */
.service__inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}
@media (min-width: 800px) {
  .service__inner {
    max-width: 1100px;
    padding: 0 60px;
  }
}

.service__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* 見出し */
.service__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .service__heading {
    padding-bottom: 60px;
  }
}

.service__heading-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service__heading-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .service__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.service__heading-label {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 1.25;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .service__heading-label {
    font-size: 2.4rem;
  }
}

.service__heading-en {
  font-weight: 700;
  font-style: italic;
  font-size: 4.8rem;
  font-family: "Noto Sans", sans-serif;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .service__heading-en {
    font-size: 7.2rem;
  }
}

@media (min-width: 1650px) {
  .service__heading-en {
    font-size: 12rem;
  }
}

.service__heading-en-accent {
  color: var(--color-light-bg);
}

/* 本文 */
.service__body {
  padding-bottom: 40px;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 2;
  text-align: center;
}
@media (min-width: 800px) {
  .service__body {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* CTAボタンエリア */
.service__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
}
@media (min-width: 800px) {
  .service__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ボタン */
.service__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
}

.service__btn-label {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.service__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-blue);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ボタン: ホバーエフェクト（共通UIルール） */
@media (hover: hover) {
  .service__btn:hover .service__btn-label {
    transform: translate(30px, 0);
  }

  .service__btn:hover .service__btn-arrow {
    scale: 0.75;
  }
}

/*------------------------------
NEWS
------------------------------*/
.news {
  padding: 60px 20px 100px;
  background-color: var(--color-light-bg);
}
@media (min-width: 800px) {
  .news {
    padding: 200px 60px;
  }
}

.news__inner {
  margin: 0 auto;
}

@media (min-width: 800px) {
  .news__inner {
    display: flex;
    gap: 100px;
    max-width: 1500px;
  }
}

/* 見出し */
.news__heading {
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .news__heading {
    padding-bottom: 60px;
  }
}

.news__heading-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news__heading-icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 800px) {
  .news__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.news__heading-label {
  font-weight: 700;
  font-size: 1.4rem;
}

@media (min-width: 800px) {
  .news__heading-label {
    font-size: 1.6rem;
  }
}

.news__heading-en {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 4.8rem;
  line-height: 1;
}

@media (min-width: 800px) {
  .news__heading-en {
    font-size: 7.2rem;
  }
}

@media (min-width: 1650px) {
  .news__heading-en {
    font-size: 12rem;
  }
}

.news__heading-en-accent {
  color: var(--color-blue);
}

/* 「一覧を見る」ボタン */
.news__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-gray-line);
}

.news__more-label {
  font-weight: 700;
  font-size: 2rem;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.news__more-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .news__more:hover .news__more-label {
    transform: translate(30px, 0);
  }

  .news__more:hover .news__more-arrow {
    scale: 0.75;
  }
}

/* SP: ヘッダー側ボタン非表示、フッター側ボタン表示 */
.news__more--header {
  display: none;
}
@media (min-width: 800px) {
  .news__more--header {
    display: flex;
  }
}

.news__more--footer {
  margin-top: 40px;
  margin-left: auto;
}

@media (min-width: 800px) {
  .news__more--footer {
    display: none;
  }
}

/* ニュースリスト */
@media (min-width: 800px) {
  .news__header {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
  }
}

@media (min-width: 800px) {
  .news__body {
    flex: 1;
    min-width: 0;
  }
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 800px) {
  .news__list {
    gap: 40px;
  }
}

/* ニュースアイテム */
.news__item {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-line);
}

.news__item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  min-width: 0;
  padding-right: 20px;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .news__item-content {
    gap: 15px;
    padding-right: 30px;
  }
}

.news__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news__item-date {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .news__item-date {
    font-size: 1.6rem;
  }
}

.news__item-cat {
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 23px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-white);
  background: var(--color-blue);
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .news__item-cat:hover {
    opacity: 0.7;
  }
}

/* タイトルリンク: ::afterで全体をカバー */
.news__item-link {
  display: block;
  padding-bottom: 20px;
}

.news__item-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news__item-title {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .news__item-title {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.news__item-arrow {
  width: 20px;
  height: 17px;
  flex-shrink: 0;
  color: var(--color-black);
}

/* ホバーエフェクト */
@media (hover: hover) {
  .news__item:hover .news__item-content {
    transform: translate(20px, 0);
  }
}

/*------------------------------
COMPANY & SDGs
------------------------------*/
.company-sdgs {
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 100px;
  background: var(--color-white);
}
@media (min-width: 800px) {
  .company-sdgs {
    padding-bottom: 200px;
  }
}

.company-sdgs__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .company-sdgs__inner {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1500px;
    padding: 0 60px;
  }
  .company-sdgs__inner::before {
    content: "";
    position: absolute;
    top: -200vh;
    right: -100vw;
    bottom: 50%;
    left: -100vw;
    background: var(--color-light-bg);
    z-index: -1;
  }
}

@media (min-width: 1200px) {
  .company-sdgs__inner {
    gap: 50px;
  }
}

/* カード共通 */
.company-sdgs__card {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  border-radius: 30px;
}
@media (min-width: 800px) {
  .company-sdgs__card {
    width: calc(50% - 15px);
    padding: 30px;
    border-radius: 40px;
  }
}
@media (min-width: 1200px) {
  .company-sdgs__card {
    width: calc(50% - 25px);
    padding: 60px;
  }
}

.company-sdgs__card-upper {
  flex: 1;
}

/* COMPANYカード（青） */
.company-sdgs__card--blue {
  background: var(--color-blue);
}

/* SDGsカード（白） */
.company-sdgs__card--white {
  position: relative;
  gap: 40px;
  border: 1px solid var(--color-light-bg);
  background: var(--color-white);
}

/* SP: card--whiteの半分の位置で背景を分割 */
.company-sdgs__card--white::before {
  content: "";
  position: absolute;
  top: -200vh;
  right: -100vw;
  bottom: 50%;
  left: -100vw;
  background: var(--color-light-bg);
  z-index: -1;
}
@media (min-width: 800px) {
  .company-sdgs__card--white::before {
    content: none;
  }
}

/* 見出し */
.company-sdgs__heading {
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .company-sdgs__heading {
    padding-bottom: 60px;
  }
}

.company-sdgs__heading-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-sdgs__heading-icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 800px) {
  .company-sdgs__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.company-sdgs__card--blue .company-sdgs__heading-label {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .company-sdgs__card--blue .company-sdgs__heading-label {
    font-size: 2.4rem;
  }
}

.company-sdgs__card--white .company-sdgs__heading-label {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-black);
}

@media (min-width: 800px) {
  .company-sdgs__card--white .company-sdgs__heading-label {
    font-size: 2.4rem;
  }
}

.company-sdgs__heading-en {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 4.8rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .company-sdgs__heading-en {
    font-size: 6.6rem;
  }
}

@media (min-width: 1650px) {
  .company-sdgs__heading-en {
    font-size: 8.4rem;
  }
}

.company-sdgs__card--blue .company-sdgs__heading-en {
  color: var(--color-white);
}

.company-sdgs__card--blue .company-sdgs__heading-en-accent {
  color: var(--color-light-bg);
}

.company-sdgs__card--white .company-sdgs__heading-en {
  color: var(--color-black);
}

.company-sdgs__card--white .company-sdgs__heading-en-accent {
  color: var(--color-blue);
}

/* 本文 */
.company-sdgs__body {
  line-height: 2;
}

.company-sdgs__card--blue .company-sdgs__body {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .company-sdgs__card--blue .company-sdgs__body {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.company-sdgs__card--white .company-sdgs__body {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-black);
}

@media (min-width: 800px) {
  .company-sdgs__card--white .company-sdgs__body {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* COMPANYカード: 本文とボタンのグループ */
.company-sdgs__card--blue .company-sdgs__body {
  padding-bottom: 40px;
}

/* ボタン共通 */
.company-sdgs__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
}
@media (min-width: 800px) {
  .company-sdgs__btn {
    width: min(100%, 350px);
  }
}

.company-sdgs__btn-label {
  font-weight: 700;
  font-size: 2rem;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.company-sdgs__btn-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* COMPANYボタン: 白テーマ */
.company-sdgs__btn--white {
  border-bottom-color: var(--color-white);
}

.company-sdgs__btn--white .company-sdgs__btn-label {
  color: var(--color-white);
}

.company-sdgs__btn--white .company-sdgs__btn-arrow {
  color: var(--color-white);
  --icon-arrow-color: var(--color-blue);
}

/* SDGsボタン: デフォルトテーマ */
.company-sdgs__card--white .company-sdgs__btn-label {
  color: var(--color-black);
}

/* ホバーエフェクト */
@media (hover: hover) {
  .company-sdgs__btn:hover .company-sdgs__btn-label {
    transform: translate(30px, 0);
  }

  .company-sdgs__btn:hover .company-sdgs__btn-arrow {
    scale: 0.75;
  }
}

/*------------------------------
RECRUIT
------------------------------*/
.recruit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-white);
}

/* 見出しラッパー */
.recruit__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1500px;
  padding: 0 20px 40px;
}
@media (min-width: 800px) {
  .recruit__heading-wrap {
    padding: 0 60px 60px;
  }
}

/* 見出し */
.recruit__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recruit__heading-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recruit__heading-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .recruit__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.recruit__heading-label {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-black);
  line-height: 1.25;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .recruit__heading-label {
    font-size: 2.4rem;
  }
}

.recruit__heading-en {
  font-weight: 700;
  font-style: italic;
  font-size: 4.8rem;
  font-family: "Noto Sans", sans-serif;
  color: var(--color-black);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .recruit__heading-en {
    font-size: 7.2rem;
  }
}

@media (min-width: 1650px) {
  .recruit__heading-en {
    font-size: 12rem;
  }
}

.recruit__heading-en-accent {
  color: var(--color-blue);
}

/* コンテンツ */
.recruit__content {
  width: min(100%, 1860px);
  padding: 0 15px 100px;
}
@media (min-width: 800px) {
  .recruit__content {
    padding: 0 15px 200px;
  }
}
@media (min-width: 1650px) {
  .recruit__content {
    padding: 0 30px 200px;
  }
}

/* カード（背景画像付き） */
.recruit__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 200px 0 80px;
  border-radius: 30px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .recruit__card {
    aspect-ratio: 3720 / 1538;
    padding: 0;
  }
}

@media (min-width: 1650px) {
  .recruit__card {
    border-radius: 60px;
  }
}

/* 背景画像 */
.recruit__card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.recruit__card-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}
@media (min-width: 1200px) {
  .recruit__card-bg-img {
    object-position: center center;
  }
}

/* カード内コンテンツ */
.recruit__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .recruit__card-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 0 60px;
  }
}

@media (min-width: 1200px) {
  .recruit__card-inner {
    padding: 0 60px 30px;
  }
}

@media (min-width: 1650px) {
  .recruit__card-inner {
    padding: 0 60px 60px;
  }
}

/* テキストグループ */
.recruit__card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 800px) {
  .recruit__card-text {
    gap: 15px;
    max-width: 60%;
  }
}
@media (min-width: 1650px) {
  .recruit__card-text {
    gap: 30px;
    max-width: 800px;
  }
}

/* キャッチコピー */
.recruit__card-catchcopy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7.5px;
}

@media screen and (min-width: 1650px) {
  .recruit__card-catchcopy {
    gap: 15px;
  }
}

.recruit__card-catchcopy-line {
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-black);
  line-height: 1.25;
  white-space: nowrap;
  background-color: var(--color-white);
}

.recruit__card-catchcopy-line span {
  display: inline-block;
  line-height: 1;
  transform: translateY(-0.075em);
}

@media (min-width: 800px) {
  .recruit__card-catchcopy-line {
    padding: 7.5px 15px;
    font-size: 3.6rem;
  }
}
@media (min-width: 1650px) {
  .recruit__card-catchcopy-line {
    padding: 15px 20px;
    font-size: 5.4rem;
  }
}

.recruit__card-catchcopy-accent {
  color: var(--color-blue);
}
/* 説明文 */
.recruit__card-desc {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 2;
  text-shadow: 0 0 6px var(--color-black);
}
@media (min-width: 800px) {
  .recruit__card-desc {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* ボタン */
.recruit__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
}
@media (min-width: 800px) {
  .recruit__btn {
    width: 350px;
  }
}

.recruit__btn-label {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-blue);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ボタン: ホバーエフェクト */
@media (hover: hover) {
  .recruit__btn:hover .recruit__btn-label {
    transform: translate(30px, 0);
  }

  .recruit__btn:hover .recruit__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * FOOTER CTA（CONTACT & DOCUMENT）
 * ======================================== */
.footer-cta {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to right,
    rgba(64, 133, 183, 0.8) 1.2%,
    rgba(64, 173, 183, 0.4)
  );
}

/* ブロック共通 */
.footer-cta__block {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.footer-cta__block--contact {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ホバーオーバーレイ */
.footer-cta__block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(38, 42, 62, 0.3);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
}

@media (hover: hover) {
  .footer-cta__block:hover::after {
    opacity: 1;
  }
}

/* スクロールアニメーション: bodyフェードイン */
.footer-cta__block.js-scroll-trigger .footer-cta__body {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}

.footer-cta__block.js-scroll-trigger.is-visible .footer-cta__body {
  opacity: 1;
}

.footer-cta__block-inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-cta__block-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .footer-cta__block-content {
    justify-content: space-between;
    gap: 60px;
    padding: 0 60px;
  }
}

@media (min-width: 1200px) {
  .footer-cta__block-content {
    flex-direction: row;
    align-items: center;
    gap: 150px;
  }
}

/* CONTACT余白 */
.footer-cta__block--contact .footer-cta__block-content {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .footer-cta__block--contact .footer-cta__block-content {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

/* DOCUMENT余白 */
.footer-cta__block--document .footer-cta__block-content {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 800px) {
  .footer-cta__block--document .footer-cta__block-content {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

/* 見出しエリア */
.footer-cta__heading-wrap {
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .footer-cta__heading-wrap {
    width: fit-content;
    padding-bottom: 0;
  }
}
@media (min-width: 1650px) {
  .footer-cta__heading-wrap {
    width: calc(100% - 42.02%);
  }
}

.footer-cta__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-cta__heading-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-cta__heading-icon {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .footer-cta__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.footer-cta__heading-label {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .footer-cta__heading-label {
    font-size: 2.4rem;
  }
}

.footer-cta__heading-en {
  font-weight: 700;
  font-style: italic;
  font-size: 4.8rem;
  font-family: "Noto Sans", sans-serif;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .footer-cta__heading-en {
    font-size: 7.2rem;
  }
}

@media (min-width: 1650px) {
  .footer-cta__heading-en {
    font-size: 12rem;
  }
}

.footer-cta__heading-en-accent {
  color: var(--color-light-bg);
}

/* 本文エリア */
.footer-cta__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1200px) {
  .footer-cta__body {
    width: 42.02%;
  }
}

.footer-cta__desc {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 2;
}

@media (min-width: 800px) {
  .footer-cta__desc {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* ボタン */
.footer-cta__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
}
@media (min-width: 800px) {
  .footer-cta__btn {
    width: min(100%, 350px);
  }
}

.footer-cta__btn-label {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.footer-cta__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ボタン: ホバーエフェクト */
@media (hover: hover) {
  .footer-cta__block:hover .footer-cta__btn-label {
    transform: translate(30px, 0);
  }

  .footer-cta__block:hover .footer-cta__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * SITE FOOTER
 * ======================================== */
.site-footer {
  padding: 80px 20px 40px;
  background-color: var(--color-black);
}
@media (min-width: 800px) {
  .site-footer {
    padding: 150px 60px 60px;
  }
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* 上部エリア: ロゴ・拠点 + ナビ */
.site-footer__upper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-white);
}
@media (min-width: 800px) {
  .site-footer__upper {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    gap: 50px 0;
    padding-bottom: 60px;
  }
}

/* ── 左カラム: ロゴ + 拠点情報 ── */
.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 800px) {
  .site-footer__info {
    gap: 50px;
    padding-right: 30px;
  }
}

.site-footer__info + .site-footer__info .site-footer__logo {
  visibility: hidden;
}

.site-footer__logo {
  display: block;
  width: 180px;
}

.site-footer__logo-img {
  display: block;
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__offices {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 800px) {
  .site-footer__offices {
    gap: 20px;
    width: 300px;
  }
}

.site-footer__office {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__office-name {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.25;
}

.site-footer__office-detail {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.25;
}

/* ── 右カラム: ナビゲーション ── */
.site-footer__nav-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 800px) {
  .site-footer__nav-area {
    gap: 60px;
    width: 660px;
  }
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

@media (min-width: 800px) {
  .site-footer__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* ナビグループ */
.site-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
}

/* 親リンク */
.site-footer__nav-parent {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: var(--color-white);
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .site-footer__nav-parent:hover {
    opacity: 0.6;
  }
}

.site-footer__nav-parent-label {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .site-footer__nav-parent:hover .site-footer__nav-parent-label {
    transform: translateX(10px);
  }
}

.site-footer__nav-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .site-footer__nav-parent:hover .site-footer__nav-arrow {
    scale: 0.75;
  }
}

/* 子リンク */
.site-footer__nav-children {
  display: flex;
  flex-direction: column;
}

.site-footer__nav-child-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 10px;
}

.site-footer__nav-child {
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 1.25;
  text-decoration: none;
  transition:
    opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.site-footer__nav-child:last-of-type {
  padding-bottom: 0;
}

@media (hover: hover) {
  .site-footer__nav-child:hover {
    opacity: 0.6;
    transform: translateX(10px);
  }
}

/* 孫リンク（インデント付き） */
.site-footer__nav-grandchild {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 10px;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.25;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .site-footer__nav-grandchild:hover {
    opacity: 0.6;
  }
}

.site-footer__nav-bullet {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  color: var(--color-white);
}

/* 外部リンクボタン */
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 800px) {
  .site-footer__links {
    justify-content: flex-end;
  }
}

.site-footer__product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--color-red);
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .site-footer__product-btn:hover {
    opacity: 0.7;
  }
}

.site-footer__sns-link {
  display: block;
  flex-shrink: 0;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .site-footer__sns-link:hover {
    opacity: 0.7;
  }
}

.site-footer__instagram-icon {
  display: block;
  width: 40px;
  height: 41px;
}

.site-footer__basket-logo {
  display: block;
  width: 80px;
  height: 41px;
  object-fit: cover;
}

/* コピーライト */
.site-footer__copyright {
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.25;
  text-align: center;
}

/* 採用ページ用フッター */
.site-footer--recruit {
  background-color: var(--color-recruit-navy);
}

.site-footer__corporate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--color-white);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-recruit-navy);
  line-height: 1.25;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .site-footer__corporate-btn:hover {
    opacity: 0.7;
  }
}

.site-footer--recruit .site-footer__links {
  flex-wrap: wrap;
}

/* ========================================
 * RECRUIT HEADER（採用ページ専用）
 * ======================================== */
.recruit-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  width: max(100%, 390px);
}

/* メインバー（白背景） */
.recruit-header__main {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 0 20px;
  background-color: var(--color-white);
}
@media (min-width: 1200px) {
  .recruit-header__main {
    padding: 20px 60px;
  }
}

/* ロゴ */
.recruit-header__logo {
  display: block;
  flex-shrink: 0;
}

.recruit-header__logo-img {
  display: block;
  width: 120px;
  height: auto;
}

@media (min-width: 1200px) {
  .recruit-header__logo-img {
    width: 180px;
  }
}

/* PCナビゲーション（1200px未満で非表示） */
.recruit-header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .recruit-header__nav {
    display: block;
  }
}

.recruit-header__nav-list {
  display: flex;
  align-items: center;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-header__nav-link {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-recruit-navy);
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-header__nav-link:hover {
    opacity: 0.6;
  }
}

.recruit-header__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 70px;
  height: 70px;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .recruit-header__hamburger {
    display: none;
  }
}

.recruit-header__hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-recruit-navy);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* 右側CTAボタン */
.recruit-header__cta {
  display: flex;
  flex-shrink: 0;
  background-color: var(--color-white);
}

.recruit-header__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  padding: 10px;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 1200px) {
  .recruit-header__cta-btn {
    width: 150px;
    height: 120px;
  }
}

@media (min-width: 1650px) {
  .recruit-header__cta-btn {
    width: 160px;
    height: 160px;
  }
}

@media (hover: hover) {
  .recruit-header__cta-btn:hover {
    opacity: 0.8;
  }
}

.recruit-header__cta-btn--video {
  background: linear-gradient(to right, #1b95ba, #27c5c0);
}

.recruit-header__cta-btn--entry {
  background-color: var(--color-red);
}

/* 動画アイコン: SP版表示 / PC版非表示 */
.recruit-header__cta-video-icon--pc {
  display: none;
}
@media (min-width: 1200px) {
  .recruit-header__cta-video-icon--pc {
    display: block;
    width: 80px;
    height: auto;
    translate: 0 -2.5px;
  }
}
@media (min-width: 1650px) {
  .recruit-header__cta-video-icon--pc {
    width: 100px;
  }
}

.recruit-header__cta-video-icon--sp {
  display: block;
  width: 50px;
  height: auto;
}

@media (min-width: 1200px) {
  .recruit-header__cta-video-icon--sp {
    display: none;
  }
}

/* ENTRYラベル */
.recruit-header__cta-entry-label {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: var(--color-white);
  line-height: 1.25;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .recruit-header__cta-entry-label {
    font-size: 3rem;
  }
}
@media (min-width: 1650px) {
  .recruit-header__cta-entry-label {
    font-size: 3.6rem;
  }
}

/* ========================================
 * RECRUIT DRAWER（採用ドロワーメニュー）
 * ======================================== */

/* 背景: 写真 + グラデーションオーバーレイ */
@media (min-width: 1200px) {
  .drawer--recruit {
    display: none;
  }
}

.drawer--recruit .drawer__content {
  position: relative;
  width: 100%;
  margin-left: 0;
  padding-top: 70px;
  background: linear-gradient(
    to bottom,
    rgba(38, 181, 151, 0.85),
    rgba(6, 102, 146, 0.72)
  );
}

@media (min-width: 1200px) {
  .drawer--recruit .drawer__content {
    padding-top: 120px;
  }
}

.drawer--recruit .drawer__content-inner {
  padding: 50px 20px;
}

.drawer--recruit .drawer__nav-arrow {
  --icon-arrow-color: #26b597;
}

.drawer--recruit .drawer__footer {
  justify-content: flex-start;
}

/* 「コーポレートサイトはこちら」ボタン */
.drawer__footer-btn--corporate {
  background-color: var(--color-white);
  color: var(--color-recruit-navy);
}

/* ハンバーガーボタン: ライン配置（=⇔×アニメーション） */
.recruit-header__hamburger {
  position: relative;
}

.recruit-header__hamburger-line {
  position: absolute;
  inset: 0;
  margin: auto;
  transition:
    top 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s,
    bottom 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s,
    transform 0.15s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-header__hamburger-line:first-child {
  top: -10px;
}

.recruit-header__hamburger-line:last-child {
  bottom: -10px;
}

/* アクティブ状態（×マーク） */
.recruit-header__hamburger.is-active
  .recruit-header__hamburger-line:first-child {
  top: 0;
  transform: rotate(45deg);
  transition:
    top 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    bottom 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s;
}

.recruit-header__hamburger.is-active
  .recruit-header__hamburger-line:last-child {
  bottom: 0;
  transform: rotate(-45deg);
  transition:
    top 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    bottom 0.15s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.15s cubic-bezier(0.33, 1, 0.68, 1) 0.15s;
}

/* ========================================
 * RECRUIT MV（採用メインビジュアル）
 * ======================================== */

.recruit-page {
  padding-top: 70px;
}

@media (min-width: 1200px) {
  .recruit-page {
    padding-top: 80px;
  }
}

/* ページ全体フェードイン */
.recruit-mv {
  position: relative;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

body.is-loaded .recruit-mv {
  opacity: 1;
}

/* 背景画像ラッパー */
.recruit-mv__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding-left: 20px;
}
@media (min-width: 1200px) {
  .recruit-mv__img-wrap {
    padding-left: 150px;
  }
}

.recruit-mv__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .recruit-mv__img {
    object-position: calc(-280px + (100vw - 1200px) * 0.3888) center;
  }
}

@media (min-width: 1920px) {
  .recruit-mv__img {
    object-position: left center;
  }
}

@media (min-width: 2938px) {
  .recruit-mv__img {
    object-fit: contain;
    object-position: center;
  }
}

/* コンテンツ */
.recruit-mv__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 300px;
  width: 100%;
  max-width: 2938px;
  margin: 0 auto;
  padding: 60px 20px 150px 40px;
}
@media (min-width: 1200px) {
  .recruit-mv__content {
    gap: 200px;
    padding: 80px 60px 200px 210px;
  }
}
@media (min-width: 2164.87px) {
  .recruit-mv__content {
    padding: 80px 60px 450px 210px;
  }
}

/* Iseyasu Recruit ロゴ */
.recruit-mv__logo {
  width: 180px;
  max-width: 450px;
}
@media (min-width: 1200px) {
  .recruit-mv__logo {
    width: 100%;
  }
}
@media (min-width: 2164.87px) {
  .recruit-mv__logo {
    width: 550px;
    max-width: none;
  }
}

.recruit-mv__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

/* キャッチコピー */
.recruit-mv__catchcopy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* 各行（白背景ラベル） */
.recruit-mv__catchcopy-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: var(--color-white);
  clip-path: inset(0 100% 0 0);
}
@media (min-width: 1200px) {
  .recruit-mv__catchcopy-line {
    align-items: flex-start;
    padding: 5px 20px;
  }
}

/* is-loaded 後にインジケーターアニメーション発動（全行同時開始） */
body.is-loaded .recruit-mv__catchcopy-line {
  animation: recruit-mv-reveal 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.8s;
}

@keyframes recruit-mv-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* テキスト共通 */
.recruit-mv__catchcopy-text {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  white-space: nowrap;
  transform: translateY(-0.075em);
}
@media (min-width: 1200px) {
  .recruit-mv__catchcopy-text {
    font-size: 6rem;
  }
}
@media (min-width: 2164.87px) {
  .recruit-mv__catchcopy-text {
    font-size: 8rem;
  }
}

/* 行ごとの色 */
.recruit-mv__catchcopy-line--green .recruit-mv__catchcopy-text {
  color: var(--color-recruit-teal-accent);
}

.recruit-mv__catchcopy-line--black .recruit-mv__catchcopy-text {
  color: var(--color-recruit-navy);
}

.recruit-mv__catchcopy-line--navy .recruit-mv__catchcopy-text {
  color: var(--color-recruit-navy);
}

/* ========================================
 * RECRUIT ABOUT（私たちについて）
 * ======================================== */

.recruit-about {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(
      104deg,
      rgba(219, 234, 242, 0) 0%,
      rgba(219, 234, 242, 0.4) 100%
    ),
    linear-gradient(180deg, var(--color-white) 0%, #d6f2ef 100%);
}

@media (min-width: 800px) {
  .recruit-about {
    padding: 200px 0;
    background:
      linear-gradient(
        132deg,
        rgba(219, 234, 242, 0) 0%,
        rgba(219, 234, 242, 0.4) 100%
      ),
      linear-gradient(180deg, var(--color-white) 0%, #d6f2ef 100%);
  }
}

/* 背景装飾パターン */
.recruit-about__bg-pattern {
  position: absolute;
  inset: 0;
  place-self: center;
  width: min(100%, 1264px);
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
  pointer-events: none;
}

/* コンテナ */
.recruit-about__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 800px) {
  .recruit-about__inner {
    padding: 0 60px;
  }
}

/* コンテンツカラム */
.recruit-about__content {
  position: relative;
  width: 100%;
}
@media (min-width: 800px) {
  .recruit-about__content {
    width: 800px;
  }
}

/* タイトル */
/* 写真と重なるテキストの可読性確保: 白テキストシャドー（1920px未満） */
@media (max-width: 1919px) {
  .recruit-about__heading-ja,
  .recruit-about__body {
    text-shadow:
      0 0 15px rgba(255, 255, 255, 0.9),
      0 0 30px rgba(255, 255, 255, 0.7),
      0 0 60px rgba(255, 255, 255, 0.5);
  }
}

.recruit-about__heading {
  position: relative;
  z-index: 1;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .recruit-about__heading {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 70px;
  }
}

.recruit-about.is-visible .recruit-about__heading {
  opacity: 1;
  transform: translateY(0);
}

/* 背景英字 "About" */
.recruit-about__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  width: 320px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-recruit-light-teal);
  text-transform: capitalize;
}
@media (min-width: 800px) {
  .recruit-about__heading-en {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    font-size: 18rem;
  }
}

/* 見出し「私たちについて」 */
.recruit-about__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}
@media (min-width: 800px) {
  .recruit-about__heading-ja {
    position: absolute;
    top: 90px;
    left: 0;
    font-size: 4.8rem;
  }
}

/* 本文 */
.recruit-about__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  padding-bottom: 40px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}
@media (min-width: 480px) {
  .recruit-about__body p {
    overflow-wrap: break-word;
    word-break: keep-all;
  }
}
:is(.recruit-about__body p) br,
:is(.recruit-about__body p) wbr {
  display: none;
}
@media (min-width: 480px) {
  :is(.recruit-about__body p) br,
  :is(.recruit-about__body p) wbr {
    display: inline;
  }
}
@media (min-width: 800px) {
  .recruit-about__body {
    gap: 30px;
    padding-bottom: 60px;
    font-size: 3rem;
  }
}

.recruit-about__accent {
  color: var(--color-recruit-teal-accent);
}

/* ボタン */
.recruit-about__btn-wrap {
  width: 350px;
}

.recruit-about__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-red);
  color: var(--color-white);
  text-decoration: none;
}

.recruit-about__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-about__btn:hover .recruit-about__btn-label {
    transform: translate(30px, 0);
  }
}

.recruit-about__btn-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-red);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-about__btn:hover .recruit-about__btn-arrow {
    scale: 0.75;
  }
}

.recruit-about__btn-arrow .icon-circle-arrow__arrow {
  fill: var(--icon-arrow-color);
}

/* 写真ラッパー: PC時はscaleで一括縮小 */
.recruit-about__photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* JSが --photo-scale を設定。未設定時は非表示 */
  transform: scale(var(--photo-scale, 0));
}

/* 個別写真 */
.recruit-about__photo {
  position: absolute;
  visibility: visible;
  opacity: 0;
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.09);
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* 1920px未満: 不透明度40% / 1920px以上: 元デザインの不透明度 */
.recruit-about__photo.is-visible {
  opacity: 0.4;
}
@media (min-width: 1920px) {
  .recruit-about__photo.is-visible {
    opacity: 0.84;
  }
}

/* --- 800px以上: 1920pxデザイン基準の位置・サイズ（ラッパーのscaleで縮小） --- */
.recruit-about__photo--lt {
  top: -60px;
  left: -488px;
  width: 350px;
  height: 300px;
}

.recruit-about__photo--lb {
  top: 460px;
  left: -649px;
  width: 470px;
  height: 432px;
}

.recruit-about__photo--rt {
  top: 90px;
  right: -629px;
  width: 450px;
  height: 400px;
}

.recruit-about__photo--rb {
  top: 692px;
  right: -304px;
  width: 250px;
  height: 200px;
}

/* SP（<800px）: 写真は非表示 */
@media (max-width: 799px) {
  .recruit-about__photos {
    display: none;
  }
}

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

/* ========================================
 * RECRUIT WORKS（職種紹介）
 * ======================================== */
.recruit-works {
  padding: 100px 0 80px;
  background: linear-gradient(90deg, #1b95ba 0%, #27c5c0 100%);
}
@media (min-width: 800px) {
  .recruit-works {
    padding: 200px 0 120px;
  }
}

.recruit-works__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .recruit-works__inner {
    padding: 0 60px;
  }
}

@media (min-width: 1200px) {
  .recruit-works__inner {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
  }
}

/* --- スライダー --- */
.recruit-works__slider-viewport {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}
@media (min-width: 800px) {
  .recruit-works__slider-viewport {
    width: 550px;
    height: 550px;
    margin: 0 auto;
    aspect-ratio: auto;
  }
}

.recruit-works__slider {
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .recruit-works__slider {
    flex-shrink: 0;
    order: 2;
  }
}

@media (min-width: 1200px) {
  .recruit-works__content {
    flex: 1;
    min-width: 400px;
    max-width: 800px;
    padding-right: 30px;
  }
}

.recruit-works__slider-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.recruit-works__slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
}

.recruit-works__slider-img.is-active {
  z-index: 1;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-works__slider-img.is-leaving {
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* 逆方向（前へ戻る）: 左から入場、右へ退場 */
.recruit-works__slider-img.is-entering-reverse {
  z-index: 1;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-works__slider-img.is-leaving-reverse {
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* 縦書きテキスト（画像上に固定） */
.recruit-works__slider-text {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: 1;
  gap: 8px;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .recruit-works__slider-text {
    top: -21px;
    right: 20px;
    height: 335px;
  }
}

.recruit-works__slider-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-recruit-navy);
  line-height: 1.25;
  white-space: nowrap;
  background-color: var(--color-white);
  transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-works__slider-text-col {
    width: 58px;
    padding: 10px 5px;
    font-size: 3.6rem;
  }
}

.recruit-works__slider-text-col.is-fading {
  color: transparent;
}

/* ページネーション */
.recruit-works__slider-pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.recruit-works__slider-dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.recruit-works__slider-dot.is-active {
  background-color: var(--color-white);
  opacity: 1;
}

/* --- テキストコンテンツ --- */

/* タイトル（フェードイン） */
.recruit-works__heading {
  position: relative;
  z-index: 2;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .recruit-works__heading {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 70px;
  }
}

.recruit-works.is-visible .recruit-works__heading {
  opacity: 1;
  transform: translateY(0);
}

/* 背景英字 */
.recruit-works__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  width: 320px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  color: var(--color-recruit-teal-dark);
  line-height: 1;
  text-transform: capitalize;
}
@media (min-width: 800px) {
  .recruit-works__heading-en {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    font-size: 18rem;
  }
}

/* 見出し */
.recruit-works__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--color-white);
  line-height: 1.25;
  white-space: nowrap;
}
@media (min-width: 800px) {
  .recruit-works__heading-ja {
    position: absolute;
    top: 90px;
    left: 0;
    font-size: 4.8rem;
  }
}

/* 本文 */
.recruit-works__body {
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 2;
}
@media (min-width: 800px) {
  .recruit-works__body {
    max-width: 545px;
    padding-bottom: 40px;
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* 職種ボタン一覧 */
.recruit-works__btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  padding-bottom: 30px;
}
@media (min-width: 800px) {
  .recruit-works__btn-list {
    gap: 20px;
    padding-bottom: 40px;
  }
}

.recruit-works__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 170px;
  height: 60px;
  padding: 10px 15px;
  border: 1px solid var(--color-white);
  border-radius: 50px;
  text-decoration: none;
}

.recruit-works__btn-label {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-works__btn:hover .recruit-works__btn-label {
    transform: translate(10px, 0);
  }
}

.recruit-works__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-works__btn:hover .recruit-works__btn-arrow {
    scale: 0.75;
  }
}

/* 「詳しく見る」ボタン */
.recruit-works__more-wrap {
  width: 350px;
  max-width: 100%;
}

.recruit-works__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-white);
  text-decoration: none;
}

.recruit-works__more-label {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-recruit-navy);
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-works__more:hover .recruit-works__more-label {
    transform: translate(30px, 0);
  }
}

.recruit-works__more-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-works__more-arrow .icon-circle-arrow__arrow {
  fill: var(--icon-arrow-color);
}

@media (hover: hover) {
  .recruit-works__more:hover .recruit-works__more-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * RECRUIT INTERVIEW（社員インタビュー）
 * ======================================== */
.recruit-interview {
  background-color: var(--color-white);
}

/* 写真エリア */
.recruit-interview__photo-area {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-left: 20px;
}
@media (min-width: 800px) {
  .recruit-interview__photo-area {
    padding-left: 60px;
  }
}
@media (min-width: 1500px) {
  .recruit-interview__photo-area {
    padding-left: calc((100vw - 1380px) / 2);
  }
}

.recruit-interview__photo-wrap {
  overflow: hidden;
  width: 1241px;
}

@media (min-width: 800px) {
  .recruit-interview__photo-wrap {
    width: 2500px;
  }
}

.recruit-interview__photo-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 50%;
  width: 100vw;
  background: linear-gradient(to right, #1b95ba, #27c5c0);
  z-index: -1;
}

.recruit-interview__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1241 / 286;
}

@media (min-width: 800px) {
  .recruit-interview__photo-img {
    aspect-ratio: 625 / 154;
  }
}

/* コンテンツエリア（白背景） */
.recruit-interview__content {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-interview__content {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}

.recruit-interview__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .recruit-interview__inner {
    padding: 0 60px;
  }
}

/* タイトル（フェードイン） */
.recruit-interview__heading {
  position: relative;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .recruit-interview__heading {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 70px;
  }
}

.recruit-interview.is-visible .recruit-interview__heading {
  opacity: 1;
  transform: translateY(0);
}

/* 背景英字 */
.recruit-interview__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  width: 320px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  color: var(--color-recruit-light-teal);
  line-height: 1;
  text-transform: capitalize;
}
@media (min-width: 800px) {
  .recruit-interview__heading-en {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    font-size: 18rem;
  }
}

/* 見出し */
.recruit-interview__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--color-recruit-navy);
  line-height: 1.25;
  white-space: nowrap;
}
@media (min-width: 800px) {
  .recruit-interview__heading-ja {
    position: absolute;
    top: 90px;
    left: 0;
    font-size: 4.8rem;
  }
}

/* 本文 + ボタン行 */
.recruit-interview__row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .recruit-interview__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.recruit-interview__body {
  max-width: 800px;
  padding-right: 30px;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-recruit-navy);
  line-height: 2;
}

@media (min-width: 800px) {
  .recruit-interview__body {
    flex: 1;
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* ボタン */
.recruit-interview__btn-wrap {
  width: 350px;
  max-width: 100%;
}
@media (min-width: 800px) {
  .recruit-interview__btn-wrap {
    flex-shrink: 0;
  }
}

.recruit-interview__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-red);
  text-decoration: none;
}

.recruit-interview__btn-label {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-interview__btn:hover .recruit-interview__btn-label {
    transform: translate(30px, 0);
  }
}

.recruit-interview__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-red);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-interview__btn-arrow .icon-circle-arrow__arrow {
  fill: var(--icon-arrow-color);
}

@media (hover: hover) {
  .recruit-interview__btn:hover .recruit-interview__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * 採用リンクカード
 * ======================================== */
.recruit-links {
  background-color: var(--color-white);
}

.recruit-links__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 20px 60px;
  border-bottom: 1px solid var(--color-gray-line);
}

@media (min-width: 800px) {
  .recruit-links__inner {
    flex-direction: row;
    gap: 40px;
    padding: 200px 60px 100px;
  }
}

.recruit-links__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background-color: var(--color-white);
  box-shadow: 20px 20px 66px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-links__card {
    width: calc(50% - 20px);
    padding: 40px 30px;
  }
}

@media (min-width: 1650px) {
  .recruit-links__card {
    padding: 40px 60px;
  }
}

.recruit-links__card-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-links__card-heading {
    gap: 10px;
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.recruit-links__card-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  color: var(--color-recruit-teal-accent);
}

.recruit-links__card-ja {
  font-weight: 700;
  color: var(--color-recruit-navy);
}

.recruit-links__card-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

/* ホバーエフェクト */
@media (hover: hover) {
  .recruit-links__card:hover .recruit-links__card-heading {
    transform: translate(30px, 0);
  }

  .recruit-links__card:hover .recruit-links__card-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * 採用 動画セクション
 * ======================================== */
.recruit-movie {
  padding-top: 60px;
  background-color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-movie {
    padding-top: 100px;
  }
}

.recruit-movie__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  background: linear-gradient(180deg, #ebf7f7 0%, #ffffff 100%);
}

@media (min-width: 800px) {
  .recruit-movie__inner {
    padding: 100px 60px 200px;
  }
}

@media (min-width: 1500px) {
  .recruit-movie__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 120px;
  }
}

.recruit-movie__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .recruit-movie__content {
    align-items: center;
    width: min(100%, 800px);
    margin: 0 auto;
  }
}

.recruit-movie__heading {
  position: relative;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-movie__heading {
    width: min(100%, 680px);
    margin-bottom: 40px;
    padding-top: 0;
    padding-left: 70px;
    padding-bottom: 0;
    padding: 0 0 0 70px;
  }
}

.recruit-movie.is-visible .recruit-movie__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-movie__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  width: 320px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-recruit-light-teal);
  text-transform: capitalize;
}

@media (min-width: 800px) {
  .recruit-movie__heading-en {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    font-size: 18rem;
  }
}

.recruit-movie__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-movie__heading-ja {
    position: absolute;
    left: 0;
    bottom: 30px;
    font-size: 4.8rem;
    white-space: nowrap;
  }
  .recruit-movie__heading-ja br {
    display: none;
  }
}

.recruit-movie__video {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  aspect-ratio: 16 / 9;
}

@media (min-width: 800px) {
  .recruit-movie__video {
    width: min(100%, 680px);
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.recruit-movie__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.recruit-movie__btn-wrap {
  width: 350px;
  max-width: 100%;
}

.recruit-movie__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-red);
  text-decoration: none;
}

.recruit-movie__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-movie__btn:hover .recruit-movie__btn-label {
    transform: translate(30px, 0);
  }
}

.recruit-movie__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-red);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-movie__btn:hover .recruit-movie__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * 採用 エントリーセクション
 * ======================================== */
.recruit-entry {
  background: linear-gradient(
    180deg,
    var(--color-white) 50%,
    var(--color-recruit-navy) 50%
  );
}
@media (min-width: 800px) {
  .recruit-entry {
    padding: 0 60px;
  }
}

.recruit-entry__banner {
  padding: 40px 0;
  background: linear-gradient(90deg, #1b95ba 0%, #27c5c0 100%);
}

@media (min-width: 800px) {
  .recruit-entry__banner {
    padding: 60px 0;
  }
}

.recruit-entry__inner {
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .recruit-entry__inner {
    padding: 0 60px;
  }
}

.recruit-entry__heading {
  position: relative;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-entry__heading {
    /* margin-bottom: 40px; */
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 70px;
  }
}

.recruit-entry.is-visible .recruit-entry__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-entry__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  width: 320px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-recruit-teal-dark);
  text-transform: capitalize;
}

@media (min-width: 800px) {
  .recruit-entry__heading-en {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    font-size: 18rem;
  }
}

.recruit-entry__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-entry__heading-ja {
    position: absolute;
    top: 90px;
    left: 0;
    font-size: 4.8rem;
  }
}

.recruit-entry__row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .recruit-entry__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
}

@media (min-width: 800px) {
  .recruit-entry__body {
    width: calc(100% - 350px - 30px);
    max-width: 800px;
  }
}

.recruit-entry__body p {
  overflow-wrap: break-word;
  word-break: keep-all;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-entry__body p {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.recruit-entry__btn-wrap {
  width: min(100%, 350px);
}

@media (min-width: 800px) {
  .recruit-entry__btn-wrap {
    flex-shrink: 0;
  }
}

.recruit-entry__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-white);
  text-decoration: none;
}

.recruit-entry__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-entry__btn:hover .recruit-entry__btn-label {
    transform: translate(30px, 0);
  }
}

.recruit-entry__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-entry__btn:hover .recruit-entry__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * マーキーテキスト（共通コンポーネント）
 * ======================================== */
.marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}
@media (min-width: 1200px) {
  .marquee {
    padding: 60px 0 20px;
  }
}

.marquee__track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee__text {
  font-weight: 700;
  font-size: 8rem;
  font-family: "Montserrat", sans-serif;
  color: var(--color-white);
  line-height: 1;
  white-space: nowrap;
  opacity: 0.5;
}

@media (min-width: 1200px) {
  .marquee__text {
    font-size: 15rem;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-780.0033333333333px);
  }
}
@media (min-width: 1200px) {
  @keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1411.193333333333px);
    }
  }
}

/* カラーバリエーション: 採用グレー */
.marquee--recruit-gray {
  background-color: #cde2ed;
}

/* カラーバリエーション: 採用会社概要 */
.marquee--recruit-about {
  background-color: #cde2ed;
}

/* ========================================
 * マーキーギャラリー（共通コンポーネント）
 * 画像の無限ループスクロール
 * ======================================== */
.marquee-gallery {
  overflow: hidden;
  width: 100%;
}

.marquee-gallery__track {
  display: flex;
  width: max-content;
  animation: marquee-gallery-scroll 30s linear infinite;
}
@media (min-width: 800px) {
  .marquee-gallery__track {
    animation: marquee-gallery-scroll 40s linear infinite;
  }
}

.marquee-gallery__item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

@media (min-width: 800px) {
  .marquee-gallery__item {
    width: 500px;
    height: 500px;
  }
}

.marquee-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* マーキーテキストの逆方向（右方向）にスクロール */
@keyframes marquee-gallery-scroll {
  0% {
    transform: translateX(-1600px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (min-width: 800px) {
  @keyframes marquee-gallery-scroll {
    0% {
      transform: translateX(-4000px);
    }
    100% {
      transform: translateX(0);
    }
  }
}

/* ============================================
 * 採用 — 下層MV + パンくずリスト（共通）
 * ============================================ */
.recruit-subpage-mv {
  padding-bottom: 60px;
  background-color: var(--color-white);
}
@media (min-width: 1200px) {
  .recruit-subpage-mv {
    padding-bottom: 90px;
  }
}

.recruit-subpage-mv__img-area {
  position: relative;
  width: min(100%, 2500px);
  margin: 0 auto;
  padding-left: 20px;
}

@media (min-width: 800px) {
  .recruit-subpage-mv__img-area {
    padding-left: 60px;
  }
}

@media (min-width: 1800px) {
  .recruit-subpage-mv__img-area {
    padding-left: 150px;
  }
}

.recruit-subpage-mv__img-wrap {
  position: relative;
}

.recruit-subpage-mv__img {
  width: 100%;
  height: 203px;
  aspect-ratio: 370 / 203;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 1800px) {
  .recruit-subpage-mv__img {
    width: min(100%, 2500px);
    height: 300px;
    aspect-ratio: 25 / 3;
    object-position: left top;
  }
}

body.is-loaded .recruit-subpage-mv__img {
  opacity: 1;
}

.recruit-subpage-mv__title-chip {
  position: absolute;
  left: -1px;
  bottom: -1px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 15px;
  padding: 10px 15px 10px 0;
  background-color: var(--color-white);
  clip-path: inset(0 100% 0 0);
}

@media (min-width: 1800px) {
  .recruit-subpage-mv__title-chip {
    gap: 20px;
    padding: 20px 30px 20px 0;
  }
}

/* 画像フェードイン(0.8s)完了後にリビール開始 */
body.is-loaded .recruit-subpage-mv__title-chip {
  animation: recruit-mv-reveal 0.7s cubic-bezier(0.33, 1, 0.68, 1) 1s forwards;
}

.recruit-subpage-mv__title-ja {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

@media (min-width: 1800px) {
  .recruit-subpage-mv__title-ja {
    font-size: 4.8rem;
  }
}

.recruit-subpage-mv__title-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  white-space: nowrap;
}

@media (min-width: 1800px) {
  .recruit-subpage-mv__title-en {
    font-size: 3.6rem;
  }
}

/* パンくずリスト */
.recruit-subpage-mv__breadcrumb {
  overflow: hidden;
}

.recruit-subpage-mv__breadcrumb-inner {
  display: flex;
  justify-content: flex-end;
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px 20px 0;
}

@media (min-width: 1200px) {
  .recruit-subpage-mv__breadcrumb-inner {
    padding: 30px 60px 0;
  }
}

.recruit-subpage-mv__breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  list-style: none;
}

.recruit-subpage-mv__breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-black);

  /* 最後の要素（現在ページ）は長文時に縮小・スクロール可能にする */
}

.recruit-subpage-mv__breadcrumb-item:last-child {
  flex: 0 1 auto;
  min-width: 0;
  overflow-x: auto;
  -ms-overflow-style: none; /* IE, Edge */
  scrollbar-width: none; /* Firefox */
}

.recruit-subpage-mv__breadcrumb-item:last-child::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

@media (min-width: 1200px) {
  .recruit-subpage-mv__breadcrumb-item {
    font-size: 1.6rem;
  }
}

.recruit-subpage-mv__breadcrumb-arrow {
  width: 8px;
  height: 14px;
  color: var(--color-black);
}

.recruit-subpage-mv__breadcrumb-link {
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-subpage-mv__breadcrumb-link:hover {
    opacity: 0.6;
  }
}

.recruit-subpage-mv__breadcrumb-current {
  white-space: nowrap;
  color: var(--color-black);
  opacity: 0.4;
}

/* ============================================
 * 採用 — 会社概要: 代表メッセージ
 * ============================================ */
.recruit-about-message {
  padding: 0 20px 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-about-message {
    padding: 0 60px 200px;
  }
}

.recruit-about-message__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.recruit-about-message__row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 800px) {
  .recruit-about-message__row {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
}

.recruit-about-message__photo-area {
  width: 100%;
}

@media (min-width: 800px) {
  .recruit-about-message__photo-area {
    width: min(50%, 600px);
  }
}

.recruit-about-message__photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  max-height: 600px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
}

.recruit-about-message__text-area {
  width: 100%;
}

@media (min-width: 800px) {
  .recruit-about-message__text-area {
    width: calc(50% - 30px);
  }
}

/* 見出し — h2-2パターン（縦積み） */
.recruit-about-message__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .recruit-about-message__heading {
    padding-bottom: 60px;
  }
}

.recruit-about-message.is-visible .recruit-about-message__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-about-message__heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-about-message__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-about-message__heading-ja {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-message__heading-ja {
    font-size: 4.8rem;
  }
}

/* 本文 */
.recruit-about-message__body {
  padding-bottom: 30px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}
@media (min-width: 800px) {
  .recruit-about-message__body {
    font-size: 2rem;
  }
}

/* 署名 */
.recruit-about-message__signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.recruit-about-message__signature-company,
.recruit-about-message__signature-position {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-message__signature-company,
  .recruit-about-message__signature-position {
    font-size: 1.6rem;
  }
}

.recruit-about-message__signature-name {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-message__signature-name {
    font-size: 2.4rem;
  }
}

/* ============================================
 * 採用 — 会社概要: 経営理念と行動指針
 * ============================================ */
.recruit-about-identity {
  padding: 0 20px 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-about-identity {
    padding: 0 60px 200px;
  }
}

.recruit-about-identity__inner {
  max-width: 1500px;
  margin: 0 auto;
}

/* 見出し — h2-2パターン（縦積み） */
.recruit-about-identity__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .recruit-about-identity__heading {
    padding-bottom: 60px;
  }
}

.recruit-about-identity.is-visible .recruit-about-identity__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-about-identity__heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-about-identity__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-about-identity__heading-ja {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-identity__heading-ja {
    font-size: 4.8rem;
  }
}

/* 理念 + 行動指針 カード */
.recruit-about-identity__cards {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}
@media (min-width: 800px) {
  .recruit-about-identity__cards {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
  }
}

.recruit-about-identity__card {
  width: 100%;
  padding: 30px 20px;
  background-color: #f9fcfc;
}

@media (min-width: 800px) {
  .recruit-about-identity__card {
    width: calc(50% - 10px);
  }
}

@media (min-width: 1200px) {
  .recruit-about-identity__card {
    padding: 60px;
  }
}

.recruit-about-identity__card-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-gray-line);
  margin-bottom: 30px;
}

@container (min-width: 1380px) {
  .recruit-about-identity__card-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.recruit-about-identity__card-header-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  text-transform: capitalize;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .recruit-about-identity__card-header-en {
    font-size: 4.8rem;
  }
}

.recruit-about-identity__card-header-ja {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .recruit-about-identity__card-header-ja {
    font-size: 2rem;
  }
}

.recruit-about-identity__card-body {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-identity__card-body {
    font-size: 2rem;
  }
}

.recruit-about-identity__card-body p {
  padding-bottom: 15px;
}

.recruit-about-identity__card-lead {
  padding-bottom: 30px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-identity__card-lead {
    font-size: 1.6rem;
  }
}

.recruit-about-identity__card-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.recruit-about-identity__card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-identity__card-list-item {
    font-size: 2rem;
  }
}

.recruit-about-identity__card-list-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  color: var(--color-recruit-teal-accent);
}

/* コーポレートアイデンティティ */
.recruit-about-identity__ci {
  padding: 30px 20px;
  background-color: #f9fcfc;
}
@media (min-width: 800px) {
  .recruit-about-identity__ci {
    padding: 60px;
  }
}

.recruit-about-identity__ci-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 5px 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-gray-line);
  margin-bottom: 30px;
}

.recruit-about-identity__ci-header-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  text-transform: capitalize;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .recruit-about-identity__ci-header-en {
    font-size: 4.8rem;
  }
}

.recruit-about-identity__ci-header-ja {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

@media (min-width: 800px) {
  .recruit-about-identity__ci-header-ja {
    font-size: 2rem;
  }
}

.recruit-about-identity__ci-text {
  padding-bottom: 30px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-identity__ci-text {
    font-size: 1.6rem;
  }
}

.recruit-about-identity__ci-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
}

.recruit-about-identity__ci-logo {
  display: block;
  width: 250px;
  height: auto;
}

@media (min-width: 800px) {
  .recruit-about-identity__ci-logo {
    width: 350px;
  }
}

/* ============================================
 * 採用 — 会社概要: 数字で見るISEYASU
 * ============================================ */
.recruit-about-data {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ebf7f7 0%, var(--color-white) 100%);
}
@media (min-width: 800px) {
  .recruit-about-data {
    padding: 200px 60px;
  }
}

.recruit-about-data__inner {
  container-type: inline-size;
  max-width: 1500px;
  margin: 0 auto;
}

/* 見出し — h2-2パターン（縦積み） */
.recruit-about-data__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .recruit-about-data__heading {
    padding-bottom: 60px;
  }
}

.recruit-about-data.is-visible .recruit-about-data__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-about-data__heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-about-data__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-about-data__heading-ja {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-data__heading-ja {
    font-size: 4.8rem;
  }
}

/* データカードグリッド */
.recruit-about-data__cards {
  display: grid;
  grid-template-columns: repeat(1, 300px);
  justify-content: center;
  gap: 20px;
}
@container (min-width: 620px) {
  .recruit-about-data__cards {
    grid-template-columns: repeat(2, 300px);
    margin-bottom: 15px;
  }
}
@container (min-width: 940px) {
  .recruit-about-data__cards {
    grid-template-columns: repeat(3, 300px);
  }
}
@container (min-width: 1260px) {
  .recruit-about-data__cards {
    grid-template-columns: repeat(4, 300px);
  }
}

.recruit-about-data__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 300px;
  padding: 27.5px 30px;
  background-color: var(--color-white);
  box-shadow: 25px 25px 60px rgba(0, 0, 0, 0.02);
  text-align: center;
}

.recruit-about-data__card-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

.recruit-about-data__card-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.recruit-about-data__card-icon {
  margin-bottom: 24px;
}

.recruit-about-data__card-icon img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.recruit-about-data__card-icon--large {
  margin-bottom: 0;
}

.recruit-about-data__card-icon--large img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.recruit-about-data__card-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.recruit-about-data__card-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 0.74074em;
  color: var(--color-recruit-teal-accent);
}

.recruit-about-data__card-number--small {
  font-size: 3.6rem;
  line-height: 0.833333em;
}

.recruit-about-data__card-unit {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-data__card-unit {
    font-size: 2.4rem;
  }
}

.recruit-about-data__card-unit-small {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-about-data__card-unit-small {
    font-size: 1.6rem;
  }
}

/* 男女比・新卒中途比率: 2行レイアウト */
.recruit-about-data__card-value--dual {
  flex-direction: row;
  gap: 15px;
}

.recruit-about-data__card-pair {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.recruit-about-data__card-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.071em;
  color: var(--color-black);
}

.recruit-about-data__card-label--exception {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.25em;
}

.recruit-about-data__note {
  width: min(100%, 1260px);
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-black);
}

@container (min-width: 1260px) {
  .recruit-about-data__note {
    text-align: right;
  }
}

/* ============================================
 * 採用 — 会社概要: CTAボタン
 * ============================================ */
.recruit-about-cta {
  padding: 60px 20px;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-line);
}
@media (min-width: 800px) {
  .recruit-about-cta {
    padding: 80px 60px;
  }
}

.recruit-about-cta__inner {
  display: flex;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
}

.recruit-about-cta__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 350px);
  height: 70px;
  padding: 15px 20px;
  border-radius: 50px;
  background-color: var(--color-red);
  text-decoration: none;
}

@media (min-width: 800px) {
  .recruit-about-cta__btn {
    height: 80px;
    padding: 20px 30px;
  }
}

.recruit-about-cta__btn-label {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-about-cta__btn-label {
    font-size: 2rem;
  }
}

@media (hover: hover) {
  .recruit-about-cta__btn:hover .recruit-about-cta__btn-label {
    transform: translate(30px, 0);
  }
}

.recruit-about-cta__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-red);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-about-cta__btn:hover .recruit-about-cta__btn-arrow {
    scale: 0.75;
  }
}

/*------------------------------
RECRUIT WORKS — 職種紹介
------------------------------*/
.works-detail {
  padding: 60px 0;
  background-color: #f9fcfc;
}
@media (min-width: 1200px) {
  .works-detail {
    padding: 90px 0;
  }
}

.works-detail__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .works-detail__inner {
    padding: 0 60px;
  }
}

@media (min-width: 1200px) {
  .works-detail__inner {
    display: flex;
    gap: 140px;
  }
}

@media (min-width: 1200px) {
  .works-detail__content {
    width: calc(100% - 440px);
    max-width: 1000px;
  }
}

/* セクション見出し */
.works-detail__header {
  padding-bottom: 60px;
}
@media (min-width: 800px) {
  .works-detail__header {
    padding-bottom: 80px;
  }
}

.works-detail__heading {
  position: relative;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .works-detail__heading {
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 70px;
  }
}

.works-detail.is-visible .works-detail__heading {
  opacity: 1;
  transform: translateY(0);
}

.works-detail__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-recruit-light-teal);
  text-transform: capitalize;
}

@media (min-width: 800px) {
  .works-detail__heading-en {
    position: relative;
    top: auto;
    left: auto;
    font-size: 18rem;
  }
}

.works-detail__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .works-detail__heading-ja {
    position: absolute;
    top: 90px;
    left: 0;
    font-size: 4.8rem;
  }
}

.works-detail__lead {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .works-detail__lead {
    font-weight: 700;
  }
}

/* SP用 職種ナビ */
.works-detail__nav-sp {
  position: sticky;
  top: 70px;
  z-index: 10;
  width: calc(100% + 40px);
  margin-bottom: 60px;
  padding: 10px 20px;
  background-color: var(--color-white);
  translate: -20px 0;
}
@media (min-width: 800px) {
  .works-detail__nav-sp {
    width: calc(100% + 120px);
    padding: 20px 60px;
    translate: -60px 0;
  }
}
@media (min-width: 1200px) {
  .works-detail__nav-sp {
    display: none;
  }
}

.works-detail__nav-sp-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.works-detail__nav-sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 16px;
  border-radius: 50px;
  background: linear-gradient(90deg, #1b95ba 0%, #27c5c0 100%);
  text-decoration: none;
}

.works-detail__nav-sp-btn.is-active {
  background: linear-gradient(
    90deg,
    var(--color-recruit-navy) 0%,
    #1b3a6b 100%
  );
}

.works-detail__nav-sp-btn-label {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-white);
}

/* 職種カード */
.works-detail__cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 800px) {
  .works-detail__cards {
    gap: 100px;
  }
}

.works-detail__card {
  /* 1199px以下: JSが --works-scroll-offset を動的に設定（70px + SPナビ高さ） */
  scroll-margin-top: var(--works-scroll-offset, 200px);
}
@media (min-width: 1200px) {
  .works-detail__card {
    scroll-margin-top: 120px;
  }
}
@media (min-width: 1650px) {
  .works-detail__card {
    scroll-margin-top: 160px;
  }
}

.works-detail__card-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .works-detail__card-heading {
    gap: 10px;
    padding-bottom: 60px;
  }
}

.works-detail__card-heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .works-detail__card-heading-en {
    font-size: 3.6rem;
  }
}

.works-detail__card-heading-ja {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .works-detail__card-heading-ja {
    font-size: 4.8rem;
  }
}

.works-detail__card-main-img {
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .works-detail__card-main-img {
    padding-bottom: 60px;
  }
}

.works-detail__card-main-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #d9d9d9;
}

.works-detail__card-desc {
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .works-detail__card-desc {
    padding-bottom: 30px;
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* 主な仕事内容ボックス */
.works-detail__card-tasks {
  margin-bottom: 40px;
  padding: 30px;
  border-left: 3px solid var(--color-recruit-teal-accent);
  background-color: var(--color-white);
  box-shadow: 20px 20px 80px rgba(0, 0, 0, 0.08);
}
@media (min-width: 800px) {
  .works-detail__card-tasks {
    padding: 40px;
  }
}

.works-detail__card-tasks-title {
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .works-detail__card-tasks-title {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.works-detail__card-tasks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.works-detail__card-tasks-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .works-detail__card-tasks-item {
    font-weight: 700;
    font-size: 2.4rem;
  }
}

.works-detail__card-tasks-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--color-recruit-teal-accent);
}

/* サブ画像 */
.works-detail__card-photos {
  display: flex;
  gap: 10px;
}
@media (min-width: 800px) {
  .works-detail__card-photos {
    gap: 30px;
  }
}

.works-detail__card-photos picture {
  width: calc(33.33% - (10px * 2 / 3));
  max-width: calc(33.33% - (10px * 2 / 3));
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (min-width: 800px) {
  .works-detail__card-photos picture {
    width: calc(33.33% - (30px * 2 / 3));
    max-width: calc(33.33% - (30px * 2 / 3));
  }
}

/* PC用サイドナビ */
.works-detail__sidebar {
  display: none;
}
@media (min-width: 1200px) {
  .works-detail__sidebar {
    display: block;
    width: 300px;
    flex-shrink: 0;
  }
}

.works-detail__sidebar-inner {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}

@media (min-width: 1650px) {
  .works-detail__sidebar-inner {
    top: 220px;
    max-height: calc(100vh - 240px);
  }
}

.works-detail__sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  padding: 20px 20px 20px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #1b95ba 0%, #27c5c0 100%);
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.works-detail__sidebar-btn.is-active {
  background: linear-gradient(
    90deg,
    var(--color-recruit-navy) 0%,
    #1b3a6b 100%
  );
}

.works-detail__sidebar-btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
}

.works-detail__sidebar-btn-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.works-detail__sidebar-btn.is-active .works-detail__sidebar-btn-thumb {
}

@media (hover: hover) {
  .works-detail__sidebar-btn:hover {
    opacity: 0.85;
  }
}

/*------------------------------
RECRUIT WORKS INTERVIEW — 社員インタビューCTA
------------------------------*/
.recruit-works-interview {
  padding: 100px 20px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-works-interview {
    padding: 100px 60px;
  }
}
@media (min-width: 1200px) {
  .recruit-works-interview {
    padding: 200px 60px;
  }
}

.recruit-works-interview__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.recruit-works-interview__heading {
  position: relative;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-works-interview__heading {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 70px;
  }
}

.recruit-works-interview.is-visible .recruit-works-interview__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-works-interview__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-recruit-light-teal);
  text-transform: capitalize;
}

@media (min-width: 800px) {
  .recruit-works-interview__heading-en {
    position: relative;
    top: auto;
    left: auto;
    font-size: 18rem;
  }
}

.recruit-works-interview__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-works-interview__heading-ja {
    position: absolute;
    top: 90px;
    left: 0;
    font-size: 4.8rem;
  }
}

.recruit-works-interview__row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .recruit-works-interview__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 800px) {
  .recruit-works-interview__body {
    max-width: 800px;
    padding-right: 30px;
  }
}

.recruit-works-interview__body p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-works-interview__body p {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.recruit-works-interview__btn-wrap {
  width: min(100%, 350px);
}

@media (min-width: 800px) {
  .recruit-works-interview__btn-wrap {
    flex-shrink: 0;
  }
}

.recruit-works-interview__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-red);
  text-decoration: none;
}

.recruit-works-interview__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-works-interview__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-red);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-works-interview__btn:hover .recruit-works-interview__btn-label {
    transform: translate(30px, 0);
  }

  .recruit-works-interview__btn:hover .recruit-works-interview__btn-arrow {
    scale: 0.75;
  }
}

/*------------------------------
RECRUIT INTERVIEW — 社員インタビュー
------------------------------*/

/* ==========================================
 * Member 一覧（上部ナビ）
 * ========================================== */
.recruit-interview-member {
  padding: 0 20px 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-interview-member {
    padding: 0 60px 200px;
  }
}

.recruit-interview-member__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-bottom: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-interview-member__heading {
    gap: 10px;
    padding-bottom: 60px;
  }
}

.recruit-interview-member.is-visible .recruit-interview-member__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-interview-member__heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-interview-member__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-interview-member__heading-ja {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-interview-member__heading-ja {
    font-size: 4.8rem;
  }
}

/* メンバーカード一覧 */
.recruit-interview-member__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .recruit-interview-member__cards {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .recruit-interview-member__cards {
    gap: 50px;
  }
}

.recruit-interview-member__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: none;
  padding: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.04);
}

@media (min-width: 800px) {
  .recruit-interview-member__card {
    width: calc(33.33% - (20px * 2 / 3));
  }
}

@media (min-width: 1200px) {
  .recruit-interview-member__card {
    width: calc(33.33% - (50px * 2 / 3));
  }
}

.recruit-interview-member__card.is-active {
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
}

.recruit-interview-member__card-img {
  aspect-ratio: 400 / 225;
  overflow: hidden;
}

.recruit-interview-member__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-interview-member__card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 20px 20px;
  background-color: var(--color-white);
}

.recruit-interview-member__card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.recruit-interview-member__card-category {
  padding: calc(5px - 0.075em) 10px calc(5px + 0.075em);
  background-color: var(--color-recruit-teal-accent);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
}

.recruit-interview-member__card-year {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-gray-line);
  /* white-space: nowrap; */
}

.recruit-interview-member__card-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recruit-interview-member__card-name {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

.recruit-interview-member__card-name-main {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
}

.recruit-interview-member__card-name-suffix {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
}

.recruit-interview-member__card-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform: rotate(90deg);
}

/* ==========================================
 * 社員コンテンツ（切り替え対象）
 * ========================================== */
.recruit-interview-content {
  display: none;
}

.recruit-interview-content.is-active {
  display: block;
}

/* ==========================================
 * ヒーローMV
 * ========================================== */
.recruit-interview-hero {
  background:
    linear-gradient(180deg, var(--color-white) 50%, transparent 50%),
    linear-gradient(90deg, #1b95ba 0%, #27c5c0 100%);
}

.recruit-interview-hero__inner {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 200px 20px 40px;
}

@media (min-width: 961px) {
  .recruit-interview-hero__inner {
    padding: 350px 60px 60px;
  }
}

.recruit-interview-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-interview-hero__overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* キャッチコピー */
.recruit-interview-hero__catch {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recruit-interview-hero__catch-line {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  background-color: var(--color-white);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
}

@media (min-width: 961px) {
  .recruit-interview-hero__catch-line {
    padding: 5px 20px;
    font-size: 6rem;
  }
}

/* 可視領域に入ったらclip-pathリビール */
.recruit-interview-hero__catch.is-visible .recruit-interview-hero__catch-line {
  animation: recruit-mv-reveal 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* 2行目以降は0.2秒ずつ遅延 */
.recruit-interview-hero__catch.is-visible
  .recruit-interview-hero__catch-line:nth-child(2) {
  animation-delay: 0.2s;
}

.recruit-interview-hero__catch.is-visible
  .recruit-interview-hero__catch-line:nth-child(3) {
  animation-delay: 0.4s;
}

.recruit-interview-hero__catch-accent {
  color: var(--color-recruit-teal-accent);
  transform: translateY(-0.075em);
}

.recruit-interview-hero__catch-text {
  color: var(--color-recruit-navy);
  transform: translateY(-0.075em);
}

/* 社員情報 */
.recruit-interview-hero__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recruit-interview-hero__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.recruit-interview-hero__category {
  padding: calc(5px - 0.075em) 10px calc(5px + 0.075em);
  background-color: var(--color-white);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  white-space: nowrap;
}

.recruit-interview-hero__year {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
}

.recruit-interview-hero__name {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--color-white);
  white-space: nowrap;
}

.recruit-interview-hero__name-main {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
}

.recruit-interview-hero__name-suffix {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.25;
}

/* ==========================================
 * インタビュー本文エリア
 * ========================================== */
.recruit-interview-body {
  padding-bottom: 80px;
  background: linear-gradient(90deg, #1b95ba 0%, #27c5c0 100%);
}
@media (min-width: 1200px) {
  .recruit-interview-body {
    padding-bottom: 200px;
  }
}

.recruit-interview-body__inner {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 20px 0;
}

@media (min-width: 800px) {
  .recruit-interview-body__inner {
    padding: 200px 60px 0;
  }
}

.recruit-interview-body__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1000px;
}

@media (min-width: 1200px) {
  .recruit-interview-body__content {
    padding-right: 30px;
  }
}

/* セクション見出し（白文字） */
.recruit-interview-body__section-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .recruit-interview-body__section-heading {
    gap: 10px;
    padding-bottom: 60px;
  }
}

.recruit-interview-body__section.is-visible
  .recruit-interview-body__section-heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-interview-body__section-heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-interview-body__section-heading-en {
    font-size: 3.6rem;
  }
}

.recruit-interview-body__section-heading-ja {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-interview-body__section-heading-ja {
    font-size: 4.8rem;
  }
}

/* プロフィールカード */
.recruit-interview-body__profile-card {
  display: flex;
  flex-direction: column;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
}

.recruit-interview-body__profile-img {
  aspect-ratio: 400 / 225;
  overflow: hidden;
}

.recruit-interview-body__profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-interview-body__profile-qa {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  background-color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-interview-body__profile-qa {
    gap: 60px;
    padding: 60px;
  }
}

/* Q&Aアイテム */
.recruit-interview-body__qa-title {
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}
@media (min-width: 800px) {
  .recruit-interview-body__qa-title {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.recruit-interview-body__qa-text {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-interview-body__qa-text {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.recruit-interview-body__qa-text p + p {
  margin-top: 0;
}

/* 私の「新規創造」 */
.recruit-interview-body__creation {
  position: relative;
  padding: 20px;
  overflow: hidden;
}
@media (min-width: 800px) {
  .recruit-interview-body__creation {
    padding: 30px 40px;
  }
}

.recruit-interview-body__creation::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-red);
}

.recruit-interview-body__creation::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/recruit_about_bg-pattern.png");
  background-size: 442px;
  background-repeat: no-repeat;
  background-position: -67.5px 32px;
  opacity: 0.15;
}

.recruit-interview-body__creation-title {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-interview-body__creation-title {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.recruit-interview-body__creation-text {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-white);
}

@media (min-width: 800px) {
  .recruit-interview-body__creation-text {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* タイムラインカード */
.recruit-interview-body__timeline-card {
  padding: 40px 20px;
  background-color: var(--color-white);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
}
@media (min-width: 800px) {
  .recruit-interview-body__timeline-card {
    padding: 60px;
  }
}

/* タイムライン共通 */
.recruit-interview-body__timeline {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
}

/* スケジュール: PCで2カラム横並び */
@media (min-width: 800px) {
  .recruit-interview-body__timeline--schedule {
    flex-direction: row;
    gap: 10px;
  }
}

/* カラムコンテナ（スケジュール用） */
.recruit-interview-body__timeline-col {
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .recruit-interview-body__timeline-col {
    width: calc(50% - 5px);
  }
}

.recruit-interview-body__timeline-row {
  display: flex;
  gap: 20px;
}

.recruit-interview-body__timeline-row--last {
  padding-bottom: 0;
}

/* ドット列 */
.recruit-interview-body__timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35px;
  flex-shrink: 0;
}

/* ドット: アウトライン（枠線のみ） */
.recruit-interview-body__timeline-dot {
  width: 20px;
  height: 20px;
  border: 3px solid var(--color-recruit-teal);
  border-radius: 50%;
  background-color: transparent;
  flex-shrink: 0;
}

/* ライン: 2本の平行線 */
.recruit-interview-body__timeline-line {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.recruit-interview-body__timeline-line::before,
.recruit-interview-body__timeline-line::after {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--color-gray-line);
}

/* テキスト部分 */
.recruit-interview-body__timeline-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
}

.recruit-interview-body__timeline-time {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal);
}

.recruit-interview-body__timeline-task {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

/* キャリアパス */
.recruit-interview-body__career-year {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}
@media (min-width: 800px) {
  .recruit-interview-body__career-year {
    font-size: 1.4rem;
  }
}

.recruit-interview-body__career-desc {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-interview-body__career-desc {
    font-weight: 700;
    font-size: 2rem;
  }
}

.recruit-interview-body__career-desc p + p {
  margin-top: 0;
}

/* ==========================================
 * PC サイドナビ
 * ========================================== */
.recruit-interview-body__sidebar {
  display: none;
}
@media (min-width: 1200px) {
  .recruit-interview-body__sidebar {
    display: block;
    width: 300px;
    flex-shrink: 0;
  }
}

.recruit-interview-body__sidebar-inner {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}

@media (min-width: 1650px) {
  .recruit-interview-body__sidebar-inner {
    top: 220px;
    max-height: calc(100vh - 240px);
  }
}

.recruit-interview-body__sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  padding: 20px 20px 20px 30px;
  border: none;
  border-radius: 50px;
  background-color: var(--color-white);
  cursor: pointer;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-interview-body__sidebar-btn.is-active {
  background: linear-gradient(
    90deg,
    var(--color-recruit-navy) 0%,
    #1b3a6b 100%
  );
}

.recruit-interview-body__sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.recruit-interview-body__sidebar-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.recruit-interview-body__sidebar-category {
  padding: calc(2px - 0.075em) 5px calc(2px + 0.075em);
  background-color: var(--color-recruit-teal-accent);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
}

.recruit-interview-body__sidebar-year {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

.recruit-interview-body__sidebar-btn.is-active
  .recruit-interview-body__sidebar-year {
  color: var(--color-white);
}

.recruit-interview-body__sidebar-name {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

.recruit-interview-body__sidebar-btn.is-active
  .recruit-interview-body__sidebar-name {
  color: var(--color-white);
}

.recruit-interview-body__sidebar-name-main {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
}

.recruit-interview-body__sidebar-name-suffix {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
}

.recruit-interview-body__sidebar-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

@media (hover: hover) {
  .recruit-interview-body__sidebar-btn:hover {
    opacity: 0.85;
  }
}

/* ==========================================
 * SP 社員ナビ
 * ========================================== */
.recruit-interview-sp-nav {
  padding: 0 20px 80px;
  background: linear-gradient(90deg, #1b95ba 0%, #27c5c0 100%);
}
@media (min-width: 1200px) {
  .recruit-interview-sp-nav {
    display: none;
  }
}

.recruit-interview-sp-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 450px;
  margin: 0 auto;
}

.recruit-interview-sp-nav__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px 20px 30px;
  border: none;
  border-radius: 50px;
  background-color: var(--color-white);
  cursor: pointer;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-interview-sp-nav__btn.is-active {
  background: linear-gradient(
    90deg,
    var(--color-recruit-navy) 0%,
    #1b3a6b 100%
  );
}

.recruit-interview-sp-nav__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.recruit-interview-sp-nav__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.recruit-interview-sp-nav__category {
  padding: 2px 5px;
  background-color: var(--color-recruit-teal-accent);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
}

.recruit-interview-sp-nav__year {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

.recruit-interview-sp-nav__btn.is-active .recruit-interview-sp-nav__year {
  color: var(--color-white);
}

.recruit-interview-sp-nav__name {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--color-recruit-navy);
  white-space: nowrap;
}

.recruit-interview-sp-nav__btn.is-active .recruit-interview-sp-nav__name {
  color: var(--color-white);
}

.recruit-interview-sp-nav__name-main {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
}

.recruit-interview-sp-nav__name-suffix {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
}

.recruit-interview-sp-nav__thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* ==========================================
 * 職種紹介CTA
 * ========================================== */
.recruit-interview-works {
  padding: 100px 20px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-interview-works {
    padding: 100px 60px;
  }
}
@media (min-width: 1200px) {
  .recruit-interview-works {
    padding: 200px 60px;
  }
}

.recruit-interview-works__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.recruit-interview-works__heading {
  position: relative;
  padding-top: 35px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .recruit-interview-works__heading {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 70px;
  }
}

.recruit-interview-works.is-visible .recruit-interview-works__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-interview-works__heading-en {
  position: absolute;
  top: 0;
  left: 30px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-recruit-light-teal);
  text-transform: capitalize;
}

@media (min-width: 800px) {
  .recruit-interview-works__heading-en {
    position: relative;
    top: auto;
    left: auto;
    font-size: 18rem;
  }
}

.recruit-interview-works__heading-ja {
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-interview-works__heading-ja {
    position: absolute;
    top: 90px;
    left: 0;
    font-size: 4.8rem;
  }
}

.recruit-interview-works__row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .recruit-interview-works__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 800px) {
  .recruit-interview-works__body {
    max-width: 800px;
    padding-right: 30px;
  }
}

.recruit-interview-works__body p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-interview-works__body p {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.recruit-interview-works__btn-wrap {
  width: min(100%, 350px);
}

@media (min-width: 800px) {
  .recruit-interview-works__btn-wrap {
    flex-shrink: 0;
  }
}

.recruit-interview-works__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-red);
  text-decoration: none;
}

.recruit-interview-works__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-white);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-interview-works__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-red);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .recruit-interview-works__btn:hover .recruit-interview-works__btn-label {
    transform: translate(30px, 0);
  }

  .recruit-interview-works__btn:hover .recruit-interview-works__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * 研修・福利厚生ページ
 * ======================================== */

/* ----------------------------------------
 * 研修について
 * ---------------------------------------- */
.recruit-training {
  padding: 0 20px 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-training {
    padding: 0 60px 200px;
  }
}

.recruit-training__inner {
  max-width: 1500px;
  margin: 0 auto;
}

/* SP: 見出し→画像→テキストの順（HTMLの自然順）
   PC: Grid で左列に画像、右列に見出し+テキスト */
.recruit-training__row {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
}
@media (min-width: 800px) {
  .recruit-training__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 0 60px;
    align-items: start;
  }
}

.recruit-training__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

@media (min-width: 800px) {
  .recruit-training__heading {
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
  }
}

.recruit-training__img-wrap {
  margin-bottom: 30px;
  box-shadow: 25px 25px 60px rgba(0, 0, 0, 0.08);
}

@media (min-width: 800px) {
  .recruit-training__img-wrap {
    grid-column: 1;
    grid-row: 1 / -1;
    max-width: 600px;
    margin-bottom: 0;
    box-shadow: -25px 25px 60px rgba(0, 0, 0, 0.08);
  }
}

.recruit-training__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (min-width: 800px) {
  .recruit-training__img {
    max-height: 600px;
  }
}

@media (min-width: 800px) {
  .recruit-training__text {
    grid-column: 2;
    grid-row: 2;
  }
}

.recruit-training.is-visible .recruit-training__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-training__heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-training__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-training__heading-ja {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-training__heading-ja {
    font-size: 4.8rem;
  }
}

.recruit-training__lead {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-training__lead {
    font-weight: 700;
    font-size: 2rem;
  }
}

/* ----------------------------------------
 * 福利厚生・社内イベント（カードセクション共通）
 * ---------------------------------------- */
.recruit-training-cards {
  padding: 0 20px 60px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-training-cards {
    padding: 0 60px 200px;
  }
}

.recruit-training-cards__box {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f9fcfc;
}

@media (min-width: 800px) {
  .recruit-training-cards__box {
    padding: 60px 100px;
  }
}

.recruit-training-cards__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.recruit-training-cards__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
@media (min-width: 800px) {
  .recruit-training-cards__heading {
    gap: 10px;
    padding-bottom: 60px;
  }
}

.recruit-training-cards.is-visible .recruit-training-cards__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-training-cards__heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-training-cards__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-training-cards__heading-ja {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-training-cards__heading-ja {
    font-size: 4.8rem;
  }
}

/* リード文（社内イベント用） */
.recruit-training-cards__lead {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-recruit-navy);
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .recruit-training-cards__lead {
    font-weight: 700;
    font-size: 2rem;
  }
}

/* カード一覧 */
.recruit-training-cards__list {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 800px) {
  .recruit-training-cards__list {
    flex-direction: row;
  }
}

.recruit-training-cards__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 800px) {
  .recruit-training-cards__card {
    width: calc(33.33% - 20px);
    gap: 30px;
  }
}

.recruit-training-cards__card-img {
  aspect-ratio: 400 / 300;
  overflow: hidden;
}

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

.recruit-training-cards__card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 800px) {
  .recruit-training-cards__card-body {
    gap: 15px;
  }
}

.recruit-training-cards__card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-training-cards__card-title {
    font-size: 2rem;
  }
}

.recruit-training-cards__card-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--color-recruit-teal-accent);
}

.recruit-training-cards__card-desc {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-training-cards__card-desc {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* ----------------------------------------
 * ISEYASUの日常
 * ---------------------------------------- */
.recruit-training-daily {
  padding: 0 20px 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-training-daily {
    padding: 0 60px 200px;
  }
}

.recruit-training-daily__inner {
  max-width: 1500px;
  margin: 0 auto;
}

/* 見出し */
.recruit-training-daily__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
@media (min-width: 800px) {
  .recruit-training-daily__heading {
    padding-bottom: 60px;
    gap: 10px;
  }
}

.recruit-training-daily.is-visible .recruit-training-daily__heading {
  opacity: 1;
  transform: translateY(0);
}

.recruit-training-daily__heading-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .recruit-training-daily__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-training-daily__heading-ja {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-training-daily__heading-ja {
    font-size: 4.8rem;
  }
}

/* サブセクション */
.recruit-training-daily__sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 800px) {
  .recruit-training-daily__sections {
    gap: 60px;
  }
}

.recruit-training-daily__section-title {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  padding-bottom: 30px;
}

@media (min-width: 800px) {
  .recruit-training-daily__section-title {
    font-size: 3.6rem;
    padding-bottom: 40px;
  }
}

/* 写真グリッド */
.recruit-training-daily__photos {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 800px) {
  .recruit-training-daily__photos {
    flex-direction: row;
  }
}

.recruit-training-daily__photo {
  aspect-ratio: 400 / 300;
  overflow: hidden;
}

@media (min-width: 800px) {
  .recruit-training-daily__photo {
    width: calc(33.33% - 20px);
  }
}

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

/* ----------------------------------------
 * Footer前ボタン（採用下層ページ共通）
 * ---------------------------------------- */
.recruit-page-bottom-cta {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-line);
}

.recruit-page-bottom-cta__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media (min-width: 800px) {
  .recruit-page-bottom-cta__inner {
    padding: 80px 60px;
  }
}

.recruit-page-bottom-cta__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 350px);
  padding: 20px;
  background-color: var(--color-red);
  border-radius: 50px;
  text-decoration: none;
}

.recruit-page-bottom-cta__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-white);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.recruit-page-bottom-cta__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-red);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

@media (hover: hover) {
  .recruit-page-bottom-cta__btn:hover .recruit-page-bottom-cta__btn-label {
    transform: translate(30px, 0);
  }

  .recruit-page-bottom-cta__btn:hover .recruit-page-bottom-cta__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * 募集要項 — ページ見出し（採用_h2-2）
 * ======================================== */
.recruit-requirements-h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 40px 20px 40px;
  text-align: center;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-requirements-h2 {
    gap: 10px;
    padding: 0 60px 60px;
  }
}

.recruit-requirements-h2__en {
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

@media (min-width: 800px) {
  .recruit-requirements-h2__en {
    font-size: 3.6rem;
  }
}

.recruit-requirements-h2__ja {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

@media (min-width: 800px) {
  .recruit-requirements-h2__ja {
    font-size: 4.8rem;
  }
}

.recruit-requirements-h2.is-visible .recruit-requirements-h2__en,
.recruit-requirements-h2.is-visible .recruit-requirements-h2__ja {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
 * 募集要項 — テーブルセクション
 * ======================================== */
.recruit-requirements {
  background-color: var(--color-white);
}
.recruit-requirements__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px 100px;
}
@media (min-width: 800px) {
  .recruit-requirements__inner {
    padding: 0 60px 200px;
  }
}

/* テーブル一覧 */
.recruit-requirements__tables {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* 個別テーブル */
.recruit-requirements__table {
  background-color: #f9fcfc;
  border-top: 3px solid var(--color-recruit-teal-accent);
}

.recruit-requirements__table-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 60px 20px;
}

@media (min-width: 800px) {
  .recruit-requirements__table-inner {
    padding: 100px 60px;
  }
}

.recruit-requirements__table-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  padding-bottom: 30px;
}

@media (min-width: 800px) {
  .recruit-requirements__table-title {
    font-size: 3.6rem;
    padding-bottom: 40px;
  }
}

.recruit-requirements__table-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 行 */
.recruit-requirements__row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-line);
}
@media (min-width: 800px) {
  .recruit-requirements__row {
    flex-direction: row;
    gap: 30px;
    padding-bottom: 30px;
  }
}

/* ラベル */
.recruit-requirements__row-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
}
@media (min-width: 800px) {
  .recruit-requirements__row-label {
    flex-shrink: 0;
    width: 224px;
    font-size: 2rem;
  }
}

.recruit-requirements__row-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--color-recruit-teal-accent);
}

/* 値 */
.recruit-requirements__row-value {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: var(--color-recruit-navy);
}
@media (min-width: 800px) {
  .recruit-requirements__row-value {
    padding-top: 5px;
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.recruit-requirements__row-value p,
.recruit-requirements__row-text p {
  margin: 0;
}

/* 子項目（各種手当など） */
.recruit-requirements__row-children {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 800px) {
  .recruit-requirements__row-children {
    gap: 30px;
  }
}

.recruit-requirements__row-child {
  display: flex;
  flex-direction: column;
}

.recruit-requirements__row-child-label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  padding-bottom: 10px;
}

@media (min-width: 800px) {
  .recruit-requirements__row-child-label {
    font-size: 2rem;
  }
}

.recruit-requirements__row-child-value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-requirements__row-child-value {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

/* 固定残業代の注釈テキスト */
.recruit-requirements__small {
  font-size: 1.2rem;
}

/* ========================================
 * 募集要項 — 採用フロー
 * ======================================== */
.recruit-requirements-flow {
  padding-bottom: 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-requirements-flow {
    padding-bottom: 200px;
  }
}

.recruit-requirements-flow__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 800px) {
  .recruit-requirements-flow__inner {
    padding: 0 60px;
  }
}

/* 見出し（採用_h2-2パターン） */
.recruit-requirements-flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-bottom: 40px;
  text-align: center;
}
@media (min-width: 800px) {
  .recruit-requirements-flow__heading {
    gap: 10px;
    padding-bottom: 60px;
  }
}

.recruit-requirements-flow__heading-en {
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

@media (min-width: 800px) {
  .recruit-requirements-flow__heading-en {
    font-size: 3.6rem;
  }
}

.recruit-requirements-flow__heading-ja {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

@media (min-width: 800px) {
  .recruit-requirements-flow__heading-ja {
    font-size: 4.8rem;
  }
}

.recruit-requirements-flow.is-visible .recruit-requirements-flow__heading-en,
.recruit-requirements-flow.is-visible .recruit-requirements-flow__heading-ja {
  opacity: 1;
  transform: translateY(0);
}

/* ステップ一覧 */
.recruit-requirements-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 800px) {
  .recruit-requirements-flow__steps {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__steps {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
  }
}

/* 個別ステップ */
.recruit-requirements-flow__step {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__step {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1500px) {
  .recruit-requirements-flow__step {
    gap: 30px;
  }
}

/* ステップコンテンツ部分 — SP~1199px: Grid（円左+テキスト右）、1200px~: Flex縦積み中央 */
.recruit-requirements-flow__step-content {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto;
  gap: 0 15px;
  align-items: start;
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
  }
}
@media (min-width: 1500px) {
  .recruit-requirements-flow__step-content {
    width: 250px;
  }
}

/* 丸アイコン */
.recruit-requirements-flow__step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / -1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--color-recruit-teal-accent);
  background-color: var(--color-white);
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__step-circle {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1500px) {
  .recruit-requirements-flow__step-circle {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
  }
}

.recruit-requirements-flow__step-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .recruit-requirements-flow__step-icon {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1500px) {
  .recruit-requirements-flow__step-icon {
    width: 140px;
    height: 140px;
  }
}

/* 最終ステップの塗りつぶし */
.recruit-requirements-flow__step--filled
  .recruit-requirements-flow__step-circle {
  background-color: var(--color-recruit-teal-accent);
  border-color: var(--color-recruit-teal-accent);
}

/* ステップ番号 + タイトル — SP~1199px: 縦並び左寄せ、1200px~: 横並び中央 */
.recruit-requirements-flow__step-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__step-label {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 5px 15px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1500px) {
  .recruit-requirements-flow__step-label {
    gap: 5px 20px;
    padding-bottom: 30px;
  }
}

.recruit-requirements-flow__step-num {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  text-transform: capitalize;
}

@media (min-width: 1200px) {
  .recruit-requirements-flow__step-num {
    font-size: 3.6rem;
  }
}

@media (min-width: 1500px) {
  .recruit-requirements-flow__step-num {
    font-size: 4.8rem;
  }
}

.recruit-requirements-flow__step-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 1200px) {
  .recruit-requirements-flow__step-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 1500px) {
  .recruit-requirements-flow__step-title {
    font-size: 2rem;
  }
}

/* ステップ説明 */
.recruit-requirements-flow__step-desc {
  grid-column: 2;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: var(--color-recruit-navy);
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__step-desc {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
  }
}
@media (min-width: 1500px) {
  .recruit-requirements-flow__step-desc {
    font-size: 1.6rem;
  }
}

.recruit-requirements-flow__step-desc p {
  margin: 0;
}

/* ステップ間の矢印 — SP~1199px: 水平線+下矢印セパレーター、1200px~: 右矢印 */
.recruit-requirements-flow__step-arrow {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0 0;
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__step-arrow {
    align-self: center;
    gap: 0;
    padding: 0;
  }
}

/* SP~1199px: 矢印の左右に水平線 */
.recruit-requirements-flow__step-arrow::before,
.recruit-requirements-flow__step-arrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--color-gray-line);
}
@media (min-width: 1200px) {
  .recruit-requirements-flow__step-arrow::before,
  .recruit-requirements-flow__step-arrow::after {
    display: none;
  }
}

.recruit-requirements-flow__arrow-icon {
  flex-shrink: 0;
  width: 35px;
  height: 40px;
  color: var(--color-recruit-teal-accent);
  transform: rotate(90deg);
}

@media (min-width: 1200px) {
  .recruit-requirements-flow__arrow-icon {
    width: 30px;
    height: 30px;
    transform: none;
  }
}

@media (min-width: 1500px) {
  .recruit-requirements-flow__arrow-icon {
    width: 40px;
    height: 35px;
  }
}

/* ========================================
 * 採用 — エントリーフォーム
 * ======================================== */

/* --- セクション外枠・カード --- */
.recruit-entry-form {
  padding: 0 0 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .recruit-entry-form {
    padding: 0 0 200px;
  }
}

.recruit-entry-form__outer {
  display: flex;
  justify-content: center;
}

.recruit-entry-form__card {
  max-width: 1500px;
  width: calc(100% - 40px);
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: 20px 20px 80px rgba(0, 0, 0, 0.08);
}

@media (min-width: 800px) {
  .recruit-entry-form__card {
    width: calc(100% - 120px);
  }
}

.recruit-entry-form__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media (min-width: 800px) {
  .recruit-entry-form__inner {
    padding: 80px 60px;
  }
}

/* --- 見出しエリア --- */
.recruit-entry-form__heading-area {
  padding-bottom: 30px;
}

.recruit-entry-form__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .recruit-entry-form__h2 {
    gap: 10px;
    padding-bottom: 60px;
  }
}

.recruit-entry-form__h2-en {
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-teal-accent);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

@media (min-width: 800px) {
  .recruit-entry-form__h2-en {
    font-size: 3.6rem;
  }
}

.recruit-entry-form__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-recruit-navy);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

@media (min-width: 800px) {
  .recruit-entry-form__h2-ja {
    font-size: 4.8rem;
  }
}

.recruit-entry-form.is-visible .recruit-entry-form__h2-en,
.recruit-entry-form.is-visible .recruit-entry-form__h2-ja {
  opacity: 1;
  transform: translateY(0);
}

.recruit-entry-form__lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .recruit-entry-form__lead {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

/* エラー画面・直接アクセス・完了画面では見出しエリアを非表示 */
.recruit-entry-form__inner:has(.mw_wp_form_send_error)
  .recruit-entry-form__heading-area,
.recruit-entry-form__inner:has(.mw_wp_form_direct_access_error)
  .recruit-entry-form__heading-area,
.recruit-entry-form__inner:has(.entry-form__complete)
  .recruit-entry-form__heading-area {
  display: none;
}

/* --- フォーム全体（MW WP Form出力） --- */
.entry-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* --- フォーム各項目グループ --- */
.entry-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px 20px;
}

/* --- ラベル部分 --- */
.entry-form__label-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 800px) {
  .entry-form__label-wrap {
    gap: 10px;
    max-width: 242px;
  }
}

.entry-form__label {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-recruit-navy);
}

@media (min-width: 800px) {
  .entry-form__label {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.entry-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(3px - 0.075em) 5px calc(3px + 0.075em);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-recruit-teal-accent);
}

@media (min-width: 800px) {
  .entry-form__required {
    padding: calc(4px - 0.075em) 10px calc(4px + 0.075em);
    font-size: 1.6rem;
  }
}

.entry-form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(3px - 0.075em) 5px calc(3px + 0.075em);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-gray-line);
}
@media (min-width: 800px) {
  .entry-form__optional {
    padding: calc(4px - 0.075em) 10px calc(4px + 0.075em);
    font-size: 1.6rem;
  }
}

/* --- 入力フィールド部分 --- */
.entry-form__field {
  min-width: 0;
  font-size: 0;
}

.mw_wp_form_confirm .entry-form__field {
  font-size: 1.6rem;
}

.entry-form__field:has(.horizontal-item) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

/* テキスト・メール・電話入力 */
.entry-form__field input[type="text"],
.entry-form__field input[type="email"],
.entry-form__field input[type="tel"] {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-recruit-navy);
  background-color: var(--color-light-bg);
  border: none;
  transition: box-shadow 0.2s ease;
}

.entry-form__field input[type="text"]:focus,
.entry-form__field input[type="email"]:focus,
.entry-form__field input[type="tel"]:focus,
.entry-form__field textarea:focus {
  box-shadow: inset 0 0 0 2px var(--color-blue);
  outline: none;
}

/* テキストエリア */
.entry-form__field textarea {
  width: 100%;
  min-height: 150px;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-recruit-navy);
  background-color: var(--color-light-bg);
  border: none;
  resize: vertical;
  transition: box-shadow 0.2s ease;
}

/* ファイル入力 — カスタムUI */
.entry-form__field:has(input[type="file"]) {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 330px;
  padding: 10px 35px 10px 10px;
  background-color: var(--color-light-bg);
  cursor: pointer;
}

/* プレースホルダーテキスト + ファイル名表示 */
.entry-form__field:has(input[type="file"])::before {
  content: "ファイルをアップロード";
  font-size: 1.6rem;
  line-height: 1.5;
  color: #aab4bd;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ファイル選択済み: JSで data-filename を設定 */
.entry-form__field[data-filename]:has(input[type="file"])::before {
  content: attr(data-filename);
  color: var(--color-black);
}

/* 入力画面: MW WP Formのファイル情報・削除ボタンを非表示（カスタムUIで代替） */
.entry-form__field .mwform-file-delete,
.entry-form__field .mw-wp-form_file {
  display: none;
}

/* 確認画面: ファイル名表示 */
.mw_wp_form_confirm .entry-form__field .mw-wp-form_file {
  display: block;
  padding: 10px 0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-recruit-navy);
}

/* アップロードアイコン */
.entry-form__field:has(input[type="file"])::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  width: 15px;
  height: 14px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.295 4.441a.421.421 0 0 0-.422.42v7.706c0 .325-.324.59-.72.59H1.563c-.396 0-.72-.265-.72-.59V4.862a.421.421 0 1 0-.843 0v7.706C0 13.36.7 14 1.563 14h11.59c.86 0 1.563-.645 1.563-1.432V4.862a.421.421 0 0 0-.421-.421Z' fill='%234B5055'/%3E%3Cpath d='M4.559 3.821 6.943 1.437v7.356a.421.421 0 1 0 .843 0V1.437l2.384 2.384a.42.42 0 0 0 .599 0 .421.421 0 0 0 0-.594L7.664.122A.42.42 0 0 0 7.364 0a.42.42 0 0 0-.3.122L3.965 3.223a.421.421 0 0 0 .594.598Z' fill='%234B5055'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* ネイティブinputを透明にして上に重ねる */
.entry-form__field input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* プレースホルダー */
.entry-form__field input::placeholder,
.entry-form__field textarea::placeholder {
  color: #aab4bd;
}

/* --- ラジオボタン --- */
.mw_wp_form .entry-form__field .mwform-radio-field.horizontal-item {
  margin-left: 0;
}

.entry-form__field .mwform-radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-recruit-navy);
  cursor: pointer;
}

.entry-form__field .mwform-radio-field input[type="radio"] {
  position: relative;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-right: 0;
  border: 1px solid #757575;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.entry-form__field .mwform-radio-field input[type="radio"]:checked {
  border-color: var(--color-blue);
}

.entry-form__field .mwform-radio-field input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: var(--color-blue);
  border-radius: 50%;
}

/* --- チェックボックス --- */
.entry-form__field .mwform-checkbox-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 5px 0;
}

.entry-form__field .mwform-checkbox-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-recruit-navy);
  cursor: pointer;
}

.entry-form__field .mwform-checkbox-field input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #757575;
  border-radius: 3px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.entry-form__field .mwform-checkbox-field input[type="checkbox"]:checked {
  background-color: var(--color-white);
  border-color: var(--color-blue);
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M12.2393%205.87598L6.58203%2011.5322L3.75391%208.7041L5.16797%207.29004L6.58203%208.7041L10.8252%204.46094L12.2393%205.87598Z%22%20fill%3D%22%231C7ABE%22/%3E%3C/svg%3E")
    no-repeat center;
}

/* --- プライバシーポリシー同意エリア --- */
.entry-form__group--agreement {
  padding-top: 0;
}

.entry-form__privacy-link {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- MW WP Form エラーメッセージ --- */
.mw_wp_form .entry-form__field .error,
.mw_wp_form .entry-form__field + .error {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-red);
}

.mw_wp_form .entry-form__group:has(#entry-file) .error {
  margin-top: -5px;
}

.mw_wp_form .entry-form__field:has(.horizontal-item) .error,
.mw_wp_form .entry-form__field:has(.horizontal-item) + .error {
  margin-top: -5px;
}

/* --- 送信ボタンエリア --- */
.entry-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 60px;
  padding: 60px 20px;
}

/* --- ボタンラッパー（JSで生成） --- */
.entry-form__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 350px);
  padding: 20px;
  border-radius: 50px;
  cursor: pointer;
}

.entry-form__btn-wrap--confirm,
.entry-form__btn-wrap--submit {
  background-color: var(--color-red);
}

.entry-form__btn-wrap--back {
  background-color: var(--color-recruit-navy);
}

/* ラッパー内の input[type="submit"] リセット */
.entry-form__btn-wrap input[type="submit"] {
  appearance: none;
  width: auto;
  padding: 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-white);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.entry-form__btn-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-white);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

.entry-form__btn-wrap--confirm .entry-form__btn-arrow,
.entry-form__btn-wrap--submit .entry-form__btn-arrow {
  --icon-arrow-color: var(--color-red);
}

.entry-form__btn-wrap--back .entry-form__btn-arrow {
  --icon-arrow-color: var(--color-recruit-navy);
}

@media (hover: hover) {
  .entry-form__btn-wrap:hover input[type="submit"] {
    transform: translate(30px, 0);
  }

  .entry-form__btn-wrap:hover .entry-form__btn-arrow {
    scale: 0.75;
  }
}

/* --- 確認画面 --- */
/* MW WP Formは確認画面でinputをspanに置換する */
.mw_wp_form_confirm .entry-form__field span {
  display: block;
  padding: 10px 0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-recruit-navy);
}

/* 確認画面ではラジオ・チェックボックスが非表示 */
.mw_wp_form_confirm .entry-form__field input[type="radio"],
.mw_wp_form_confirm .entry-form__field input[type="checkbox"] {
  display: none;
}

/* --- 完了画面 --- */
.entry-form__complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 800px) {
  .entry-form__complete {
    gap: 40px;
    padding: 60px;
  }
}

.entry-form__complete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

@media (min-width: 800px) {
  .entry-form__complete-icon {
    width: 100px;
    height: 100px;
  }
}

.entry-form__complete-icon-svg {
  width: 100%;
  height: 100%;
  color: var(--color-recruit-teal-accent);
}

.entry-form__complete-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-recruit-teal-accent);
}

.entry-form__complete-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color-recruit-navy);
}

.entry-form__complete-btn-wrap {
  width: 350px;
  max-width: 100%;
  padding-top: 10px;
}

.entry-form__complete-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 20px;
  border-radius: 50px;
  background-color: var(--color-white);
  text-decoration: none;
}

.entry-form__complete-btn span {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-recruit-navy);
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .entry-form__complete-btn:hover span {
    transform: translate(30px, 0);
  }
}

.entry-form__complete-btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .entry-form__complete-btn:hover .entry-form__complete-btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * コーポレート下層 — サイトロゴブロック（左上固定）
 * ======================================== */
.site-logo-block {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 0 0 30px 0;
  background-color: var(--color-white);
}
@media (min-width: 1650px) {
  .site-logo-block {
    padding: 40px 50px;
  }
}

.site-logo-block img {
  width: 160px;
  height: auto;
}

@media (min-width: 1650px) {
  .site-logo-block img {
    width: 200px;
  }
}

/* ========================================
 * コーポレート下層 — 下層MV（共通）
 * ======================================== */
.subpage-mv {
  padding-bottom: 60px;
  background-color: var(--color-white);
}
@media (min-width: 1650px) {
  .subpage-mv {
    padding-bottom: 120px;
  }
}

.subpage-mv__wrapper {
  padding: 15px;
}

@media (min-width: 1650px) {
  .subpage-mv__wrapper {
    padding: 30px;
  }
}

.subpage-mv__img-area {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.subpage-mv__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1650px) {
  .subpage-mv__img-area {
    border-radius: 50px;
  }
}

.subpage-mv__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  padding: 70px 20px 60px;
}

@media (min-width: 1650px) {
  .subpage-mv__content {
    gap: 15px;
    min-height: 0;
    max-width: 1500px;
    padding: calc(105px + 15px) 60px 90px;
  }
}

.subpage-mv__label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subpage-mv__label-icon {
  width: 15px;
  height: 15px;
  overflow: hidden;
}

@media (min-width: 1650px) {
  .subpage-mv__label-icon {
    width: 25px;
    height: 25px;
  }
}

.subpage-mv__label-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 1650px) {
  .subpage-mv__label-en {
    font-size: 2.4rem;
  }
}

.subpage-mv__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
}

@media (min-width: 1650px) {
  .subpage-mv__title {
    font-size: 6.4rem;
  }
}

@media (min-width: 1650px) {
  .subpage-mv__title br {
    display: none;
  }
}

/* パンくず */
.subpage-mv__breadcrumb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 20px);
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1650px) {
  .subpage-mv__breadcrumb {
    width: calc(100% - 60px);
  }
}

.subpage-mv__breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 20px;
  border-radius: 30px 0 0 0;
  background-color: var(--color-white);
}

@media (min-width: 1650px) {
  .subpage-mv__breadcrumb-inner {
    padding: 15px 30px;
    border-radius: 50px 0 0 0;
  }
}

.subpage-mv__breadcrumb-link {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  white-space: nowrap;
  transition: opacity 0.3s;
}

@media (min-width: 1650px) {
  .subpage-mv__breadcrumb-link {
    font-size: 1.6rem;
  }
}

@media (hover: hover) {
  .subpage-mv__breadcrumb-link:hover {
    opacity: 0.6;
  }
}

.subpage-mv__breadcrumb-sep {
  flex: 0 0 auto;
  width: 5px;
  height: 9px;
  color: var(--color-black);
}

@media (min-width: 1650px) {
  .subpage-mv__breadcrumb-sep {
    width: 8px;
    height: 14px;
  }
}

.subpage-mv__breadcrumb-current {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0.4;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.subpage-mv__breadcrumb-current::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1650px) {
  .subpage-mv__breadcrumb-current {
    font-size: 1.6rem;
  }
}

/* ========================================
 * コーポレート下層 — セクション見出し（h2）
 * ======================================== */
.subpage-h2 {
  background-color: var(--color-white);
}

.subpage-h2__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

@media (min-width: 800px) {
  .subpage-h2__inner {
    gap: 15px;
    padding: 0 60px 60px;
  }
}

.subpage-h2__label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subpage-h2__icon {
  width: 15px;
  height: 15px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .subpage-h2__icon {
    width: 25px;
    height: 25px;
  }
}

.subpage-h2__en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .subpage-h2__en {
    font-size: 2rem;
  }
}

.subpage-h2__title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .subpage-h2__title {
    font-size: 4.8rem;
  }
}

/* ========================================
 * ISEYASUの想い — タイムライン
 * ======================================== */
.about-story {
  padding-bottom: 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .about-story {
    padding-bottom: 200px;
  }
}

.about-story__inner {
  max-width: 1500px;
  margin: 0 auto;
}

/* 各アイテム: SP = 2カラムGrid (line | content), PC = 3カラムGrid (col | line | col) */
.about-story__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
  padding: 0 20px;
}
@media (min-width: 800px) {
  .about-story__item {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    padding: 0 60px;
  }
}

/* テキストエリア */
.about-story__text {
  grid-column: 2;
  grid-row: 2;
  max-width: 600px;
  padding: 20px 0 40px;
}
@media (min-width: 800px) {
  .about-story__text {
    grid-column: 1;
    grid-row: 1;
    padding: 0 30px 80px 0;
  }
}

/* 画像エリア（Grid配置 + スタイル統合） */
.about-story__media {
  grid-column: 2;
  grid-row: 1;
  max-width: 600px;
  padding-bottom: 20px;
}
@media (min-width: 800px) {
  .about-story__media {
    grid-column: 3;
    grid-row: 1;
    padding: 0 0 80px 30px;
  }
}

/* PC偶数アイテム: テキストと画像の列・padding反転 */
@media (min-width: 800px) {
  .about-story__item:nth-child(even) .about-story__text {
    grid-column: 3;
    padding-right: 0;
    padding-left: 30px;
  }

  .about-story__item:nth-child(even) .about-story__media {
    grid-column: 1;
    padding-left: 0;
    padding-right: 30px;
  }
}

/* 見出し */
.about-story__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
}
@media (min-width: 800px) {
  .about-story__heading {
    padding-bottom: 40px;
  }
}

.about-story__heading-sub {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .about-story__heading-sub {
    font-size: 2rem;
  }
}

.about-story__heading-main {
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .about-story__heading-main {
    font-size: 3.6rem;
  }
}

/* 本文 */
.about-story__body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-bottom: 40px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 800px) {
  .about-story__body {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* ボタンリンク */
.about-story__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
}

.about-story__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-story__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .about-story__btn:hover .about-story__btn-label {
    transform: translateX(30px);
  }

  .about-story__btn:hover .about-story__btn-arrow {
    scale: 0.75;
  }
}

.about-story__img {
  width: 100%;
  height: auto;
  aspect-ratio: 614 / 487;
  object-fit: cover;
}

/* 縦ライン装飾 */
.about-story__line {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  display: flex;
  gap: 1px;
  justify-content: center;
  width: 5px;
}
@media (min-width: 800px) {
  .about-story__line {
    grid-column: 2;
    gap: 5px;
    width: 11px;
    margin: 0 24px;
  }
}

.about-story__line::before,
.about-story__line::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--color-gray-line);
}

@media (min-width: 800px) {
  .about-story__line::before,
  .about-story__line::after {
    width: 3px;
  }
}

/* 装飾ドット */
.about-story__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 3px solid var(--color-blue);
}
@media (min-width: 800px) {
  .about-story__dot {
    width: 35px;
    height: 35px;
  }
}

.about-story__dot--top {
  top: -7px;
}

@media (min-width: 800px) {
  .about-story__dot--top {
    top: -10px;
  }
}

.about-story__dot--bottom {
  bottom: -7px;
}

@media (min-width: 800px) {
  .about-story__dot--bottom {
    bottom: -10px;
  }
}

/* スクロールアニメーション: タイムライン各アイテム */
.about-story__item.js-scroll-trigger .about-story__text,
.about-story__item.js-scroll-trigger .about-story__media {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-story__item.js-scroll-trigger .about-story__media {
  transition-delay: 0.15s;
}

.about-story__item.js-scroll-trigger.is-visible .about-story__text,
.about-story__item.js-scroll-trigger.is-visible .about-story__media {
  opacity: 1;
  transform: none;
}

/* ========================================
 * ISEYASUの想い — 沿革バナー
 * ======================================== */
.about-history {
  background-color: var(--color-white);
}

.about-history__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px 60px;
}

@media (min-width: 800px) {
  .about-history__inner {
    padding: 0 60px 200px;
  }
}

.about-history__card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

@media (min-width: 800px) {
  .about-history__card {
    border-radius: 60px;
  }
}

.about-history__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-history__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 133, 192, 0.45),
    rgba(7, 133, 192, 0.77) 50%,
    rgba(7, 133, 192, 0.9)
  );
}

@media (min-width: 800px) {
  .about-history__overlay {
    background: linear-gradient(
      to bottom,
      rgba(7, 133, 192, 0.2),
      rgba(7, 133, 192, 0.9) 85%,
      var(--color-blue)
    );
  }
}

.about-history__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 50px 30px;
}

@media (min-width: 800px) {
  .about-history__content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 60px;
  }
}

.about-history__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .about-history__left {
    flex: 1;
    max-width: 800px;
    padding-right: 30px;
  }
}

/* 見出し */
.about-history__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
}
@media (min-width: 800px) {
  .about-history__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.about-history__heading-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-history__heading-icon {
  width: 15px;
  height: 15px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .about-history__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.about-history__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .about-history__heading-en {
    font-size: 2rem;
  }
}

.about-history__heading-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .about-history__heading-title {
    font-size: 4.8rem;
  }
}

.about-history__desc {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 2;
  max-width: 400px;
}

@media (min-width: 800px) {
  .about-history__desc {
    font-size: 1.6rem;
  }
}

/* ボタン */
.about-history__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
  transition: gap 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .about-history__btn {
    width: 350px;
    flex-shrink: 0;
  }
}

.about-history__btn-label {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .about-history__btn-label {
    font-size: 2rem;
  }
}

.about-history__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  --icon-arrow-color: var(--color-blue);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .about-history__btn:hover .about-history__btn-label {
    transform: translateX(30px);
  }

  .about-history__btn:hover .about-history__btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * コーポレート下層 — 下部ナビゲーション
 * ======================================== */
.subpage-bottom-nav {
  border-top: 1px solid var(--color-gray-line);
  background-color: var(--color-white);
}

.subpage-bottom-nav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media (min-width: 800px) {
  .subpage-bottom-nav__inner {
    padding: 80px 60px;
  }
}

.subpage-bottom-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
}

.subpage-bottom-nav__link-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.subpage-bottom-nav__link-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .subpage-bottom-nav__link:hover .subpage-bottom-nav__link-label {
    transform: translateX(30px);
  }

  .subpage-bottom-nav__link:hover .subpage-bottom-nav__link-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * 経営理念と行動指針 — 導入セクション
 * ======================================== */
.identity-intro {
  background-color: var(--color-white);
}

.identity-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

@media (min-width: 1200px) {
  .identity-intro__inner {
    flex-direction: row;
    gap: 60px;
    padding: 0 60px 80px;
  }
}

@media (min-width: 1200px) {
  .identity-intro__text {
    width: 50%;
  }
}

.identity-intro__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .identity-intro__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.identity-intro__body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .identity-intro__body {
    font-weight: 700;
    font-size: 2rem;
  }
}

/* 装飾: ダイヤモンド型写真 (PCのみ表示) */
.identity-intro__deco {
  display: none;
}
@media (min-width: 1200px) {
  .identity-intro__deco {
    display: block;
    position: relative;
    width: 600px;
    height: 686px;
    flex-shrink: 0;
  }
}

.identity-intro__diamond {
  position: absolute;
}

/* メイン写真: 486px角, clip-pathでダイヤモンド形状 */
.identity-intro__diamond--main {
  top: 0;
  left: 58px;
  width: 486px;
  height: 486px;
}

.identity-intro__diamond--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* アクセント小（右上）: 71px角 */
.identity-intro__diamond--accent {
  top: 81px;
  left: 473px;
  width: 71px;
  height: 71px;
}

/* サブ1（左下）: 215px角 */
.identity-intro__diamond--sub-01 {
  top: 445px;
  left: 96px;
  width: 215px;
  height: 215px;
}

/* サブ2（右下）: 176px角 */
.identity-intro__diamond--sub-02 {
  top: 417px;
  left: 330px;
  width: 176px;
  height: 176px;
}

/* サブ3（左中央）: 136px角 */
.identity-intro__diamond--sub-03 {
  top: 339px;
  left: 12px;
  width: 136px;
  height: 136px;
}

/* スクロールアニメーション */
.identity-intro.js-scroll-trigger .identity-intro__text {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.identity-intro.js-scroll-trigger.is-visible .identity-intro__text {
  opacity: 1;
  transform: none;
}

/* deco内の各ダイヤモンドをスケールフェードインで順番に表示 */
.identity-intro.js-scroll-trigger .identity-intro__diamond {
  opacity: 0;
  scale: 0.7;
  transition:
    opacity 0.8s ease-out,
    scale 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* メイン写真はフェードインのみ（scaleなし） */
.identity-intro.js-scroll-trigger .identity-intro__diamond--main {
  scale: 1;
  transition: opacity 0.8s ease-out;
  transition-delay: 0.2s;
}

.identity-intro.js-scroll-trigger .identity-intro__diamond--accent {
  transition-delay: 0.4s;
}

.identity-intro.js-scroll-trigger .identity-intro__diamond--sub-01 {
  transition-delay: 1s;
}

.identity-intro.js-scroll-trigger .identity-intro__diamond--sub-02 {
  transition-delay: 0.8s;
}

.identity-intro.js-scroll-trigger .identity-intro__diamond--sub-03 {
  transition-delay: 0.6s;
}

.identity-intro.js-scroll-trigger.is-visible .identity-intro__diamond {
  opacity: 1;
  scale: 1;
}

/* ========================================
 * 経営理念と行動指針 — 理念カード
 * ======================================== */
.identity-card {
  width: calc(100% - 20px);
  margin-left: auto;
  padding: 0 0 100px 0;
  background-color: var(--color-white);
}
@media (min-width: 1200px) {
  .identity-card {
    width: calc(100% - 60px);
    padding: 0 0 200px 0;
  }
}
@media (min-width: 1500px) {
  .identity-card {
    width: calc(100% - ((100% - 1500px) / 2));
  }
}

.identity-card__wrapper {
  background-color: var(--color-white);
  border-radius: 40px 0 0 40px;
  padding: 60px 0 60px 20px;
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
}

@media (min-width: 1200px) {
  .identity-card__wrapper {
    border-radius: 80px 0 0 80px;
    padding: 100px 0 100px 60px;
  }
}

.identity-card__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}

@media (min-width: 1200px) {
  .identity-card__inner {
    padding: 0 60px 0 0;
  }
}

@media (min-width: 1500px) {
  .identity-card__inner {
    margin-left: 210px;
  }
}

/* セクション共通 */
.identity-card__section {
  display: flex;
  flex-direction: column;
}

/* 見出し: 英字イタリック + 日本語 + 下線 */
.identity-card__heading {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-gray-line);
}
@media (min-width: 800px) {
  .identity-card__heading {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 5px 20px;
    padding-bottom: 30px;
  }
}

.identity-card__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3rem;
  color: var(--color-blue);
  line-height: 1.25;
  text-transform: uppercase;
}

@media (min-width: 800px) {
  .identity-card__heading-en {
    font-size: 4.8rem;
  }
}

.identity-card__heading-ja {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .identity-card__heading-ja {
    font-size: 2rem;
  }
}

/* 経営理念の文言 */
.identity-card__statement {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
}
@media (min-width: 1200px) {
  .identity-card__statement {
    font-size: 2.4rem;
  }
}

.identity-card__statement p {
  padding-bottom: 15px;
}

/* 行動指針のリード文 */
.identity-card__lead {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  padding-bottom: 30px;
}
@media (min-width: 800px) {
  .identity-card__lead {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* 行動指針リスト */
.identity-card__list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.identity-card__list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .identity-card__list-item {
    font-size: 2.4rem;
  }
}

.identity-card__list-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--color-blue);
}

/* CI説明文 */
.identity-card__ci-desc {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  padding-bottom: 30px;
}
@media (min-width: 800px) {
  .identity-card__ci-desc {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* CIロゴ */
.identity-card__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
}
@media (min-width: 800px) {
  .identity-card__logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.identity-card__logo {
  width: 250px;
  height: auto;
}

@media (min-width: 800px) {
  .identity-card__logo {
    width: 350px;
  }
}

/* スクロールアニメーション: カード内セクション */
.identity-card__section.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.identity-card__section.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

/* ========================================
 * 沿革アーカイブ — 白カードラッパー
 * ======================================== */

/* 外枠: identity-card と同じ右寄せ構造 */
.history-content {
  width: calc(100% - 20px);
  margin-left: auto;
  padding: 0 0 100px 0;
  background-color: var(--color-white);
}
@media (min-width: 1200px) {
  .history-content {
    width: calc(100% - 60px);
    padding: 0 0 200px 0;
  }
}
@media (min-width: 1500px) {
  .history-content {
    width: calc(100% - ((100% - 1500px) / 2));
  }
}

/* カード: identity-card__wrapper と同じ */
.history-content__card {
  background-color: var(--color-white);
  border-radius: 40px 0 0 40px;
  padding: 60px 0 60px 20px;
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
}
@media (min-width: 1200px) {
  .history-content__card {
    border-radius: 80px 0 0 80px;
    padding: 100px 0 100px 60px;
  }
}

/* 内部コンテナ: identity-card__inner と同じサイズ */
.history-content__inner {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}
@media (min-width: 1200px) {
  .history-content__inner {
    padding: 0 60px 0 0;
  }
}
@media (min-width: 1500px) {
  .history-content__inner {
    margin-left: 210px;
  }
}

/* 見出し */
.history-content__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .history-content__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.history-content__heading-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.history-content__heading-icon {
  width: 15px;
  height: 15px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .history-content__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.history-content__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .history-content__heading-en {
    font-size: 2rem;
  }
}

.history-content__heading-title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .history-content__heading-title {
    font-size: 4.8rem;
  }
}

/* 未登録時メッセージ */
.history-content__empty {
  padding: 40px 0;
  font-size: 1.6rem;
}

/* ========================================
 * 沿革アーカイブ — タイムライン
 * ======================================== */

.history-timeline__item {
  display: flex;
  gap: 15px;
}

@media (min-width: 800px) {
  .history-timeline__item {
    gap: 20px;
  }
}

/* マーカー（ドット + 縦線） */
.history-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35px;
  flex-shrink: 0;
}

.history-timeline__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--color-blue);
  background-color: var(--color-white);
  flex-shrink: 0;
}

@media (min-width: 800px) {
  .history-timeline__dot {
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
}

.history-timeline__line {
  display: flex;
  gap: 1px;
  justify-content: center;
  flex: 1;
}

@media (min-width: 800px) {
  .history-timeline__line {
    gap: 2px;
  }
}

.history-timeline__line::before,
.history-timeline__line::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--color-gray-line);
}

@media (min-width: 800px) {
  .history-timeline__line::before,
  .history-timeline__line::after {
    width: 3px;
  }
}

/* 最後のアイテムの線を非表示 */
.history-timeline__item:last-child .history-timeline__line {
  display: none;
}

/* コンテンツ本体 */
.history-timeline__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 30px;
  min-width: 0;
}
@media (min-width: 800px) {
  .history-timeline__body {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    width: calc(100% - 55px);
  }
}

.history-timeline__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 60px;
}

@media (min-width: 800px) {
  .history-timeline__info {
    min-height: 100px;
    min-width: 0;
  }
}

.history-timeline__date {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .history-timeline__date {
    font-size: 1.4rem;
  }
}

.history-timeline__text {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .history-timeline__text {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* the_content()のpタグのマージンをリセット */
.history-timeline__text p {
  margin: 0;
}

.history-timeline__image {
  width: 180px;
  height: 120px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

/* スクロールアニメーション */
.history-content.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.history-content.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

/* ========================================
 * ISEYASUの技術 — 導入セクション
 * ======================================== */
.business-intro {
  background-color: var(--color-white);
}

.business-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

@media (min-width: 1200px) {
  .business-intro__inner {
    flex-direction: row;
    gap: 60px;
    padding: 0 60px 80px;
  }
}

@media (min-width: 1200px) {
  .business-intro__text {
    width: 50%;
  }
}

.business-intro__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .business-intro__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.business-intro__body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .business-intro__body {
    font-weight: 700;
    font-size: 2rem;
  }
}

/* 装飾: ダイヤモンド型写真（PCのみ表示） */
.business-intro__deco {
  display: none;
}
@media (min-width: 1200px) {
  .business-intro__deco {
    display: block;
    position: relative;
    width: 600px;
    height: 686px;
    flex-shrink: 0;
  }
}

.business-intro__diamond {
  position: absolute;
}

.business-intro__diamond--main {
  top: 0;
  left: 58px;
  width: 486px;
  height: 486px;
}

.business-intro__diamond--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-intro__diamond--accent {
  top: 81px;
  left: 473px;
  width: 71px;
  height: 71px;
}

.business-intro__diamond--sub-01 {
  top: 445px;
  left: 96px;
  width: 215px;
  height: 215px;
}

.business-intro__diamond--sub-02 {
  top: 417px;
  left: 330px;
  width: 176px;
  height: 176px;
}

.business-intro__diamond--sub-03 {
  top: 339px;
  left: 12px;
  width: 136px;
  height: 136px;
}

/* スクロールアニメーション */
.business-intro.js-scroll-trigger .business-intro__text {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.business-intro.js-scroll-trigger.is-visible .business-intro__text {
  opacity: 1;
  transform: none;
}

.business-intro.js-scroll-trigger .business-intro__diamond {
  opacity: 0;
  scale: 0.7;
  transition:
    opacity 0.8s ease-out,
    scale 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* メイン写真はフェードインのみ（scaleなし） */
.business-intro.js-scroll-trigger .business-intro__diamond--main {
  scale: 1;
  transition: opacity 0.8s ease-out;
  transition-delay: 0.2s;
}

.business-intro.js-scroll-trigger .business-intro__diamond--accent {
  transition-delay: 0.4s;
}

.business-intro.js-scroll-trigger .business-intro__diamond--sub-01 {
  transition-delay: 1s;
}

.business-intro.js-scroll-trigger .business-intro__diamond--sub-02 {
  transition-delay: 0.8s;
}

.business-intro.js-scroll-trigger .business-intro__diamond--sub-03 {
  transition-delay: 0.6s;
}

.business-intro.js-scroll-trigger.is-visible .business-intro__diamond {
  opacity: 1;
  scale: 1;
}

/* ========================================
 * ISEYASUの技術 — ステップカード
 * ======================================== */
.business-card {
  width: calc(100% - 20px);
  margin-left: auto;
  padding: 0 0 100px 0;
  background-color: var(--color-white);
}
@media (min-width: 1200px) {
  .business-card {
    width: calc(100% - 60px);
    padding: 0 0 200px 0;
  }
}
@media (min-width: 1500px) {
  .business-card {
    width: calc(100% - ((100% - 1500px) / 2));
  }
}

.business-card__wrapper {
  background-color: var(--color-white);
  border-radius: 40px 0 0 40px;
  padding: 60px 0 60px 20px;
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
}

@media (min-width: 1200px) {
  .business-card__wrapper {
    border-radius: 80px 0 0 80px;
    padding: 100px 0 100px 60px;
  }
}

.business-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}

@media (min-width: 1200px) {
  .business-card__inner {
    padding: 0 60px 0 0;
  }
}

@media (min-width: 1500px) {
  .business-card__inner {
    margin-left: 210px;
  }
}

/* 各ステップ */
.business-step__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 800px) {
  .business-step__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

.business-step__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 800px) {
  .business-step__info {
    flex: 1;
    gap: 20px;
  }
}

.business-step__number {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.business-step__number-label {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .business-step__number-label {
    font-size: 2rem;
  }
}

.business-step__number-value {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3rem;
  color: var(--color-blue);
  line-height: 1;
}

@media (min-width: 800px) {
  .business-step__number-value {
    font-size: 4.8rem;
  }
}

.business-step__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}

@media (min-width: 800px) {
  .business-step__title {
    font-size: 2.4rem;
  }
}

.business-step__text {
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .business-step__text {
    font-size: 1.6rem;
  }
}

/* ステップ内リンクボタン */
.business-step__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
}

.business-step__btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.business-step__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .business-step__btn:hover .business-step__btn-label {
    transform: translateX(30px);
  }

  .business-step__btn:hover .business-step__btn-arrow {
    scale: 0.75;
  }
}

/* ステップ画像 */
@media (min-width: 800px) {
  .business-step__media {
    flex-shrink: 0;
    width: 360px;
  }
}

.business-step__media--double {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 800px) {
  .business-step__media--double {
    gap: 20px;
  }
}

.business-step__img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

@media (min-width: 800px) {
  .business-step__img {
    border-radius: 20px;
  }
}

/* ステップ区切り線: 水平線 + 中央矢印 + 水平線 */
.business-step__divider {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}
@media (min-width: 800px) {
  .business-step__divider {
    padding: 40px 0;
  }
}

.business-step__divider-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-gray-line);
}

.business-step__divider-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform: rotate(90deg);
}

@media (min-width: 800px) {
  .business-step__divider-icon {
    width: 80px;
    height: 80px;
  }
}

/* スクロールアニメーション */
.business-step.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.business-step.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

/* ========================================
 * 暮らしを支えるISEYASU金網 — フルスクリーンマップ
 * ======================================== */

/* フルマップ用: mainをビューポート全体に広げる */
.service-fullmap {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}

/* フルマップ時はフッター・CTA・下部ナビを非表示 */
.service-fullmap ~ .footer-cta,
.service-fullmap ~ .site-footer {
  display: none;
}

/* フルマップ時: ヘッダーのナビ・CTAを常に非表示（マップのピンと被るため） */
body:has(.service-fullmap) .site-header__nav,
body:has(.service-fullmap) .site-header__cta {
  display: none;
}

.service-map {
  height: 100%;
  background-color: var(--color-white);
}

.service-map__inner {
  height: 100%;
  padding: 15px;
}
@media (min-width: 1650px) {
  .service-map__inner {
    padding: 40px 30px 30px;
  }
}

.service-map__viewport {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 30px 30px 30px 30px;
  background-color: #e8f0f4;
  cursor: grab;
  touch-action: none;
}
@media (min-width: 800px) {
  .service-map__viewport {
    border-radius: 40px 40px 40px 40px;
  }
}

.service-map__viewport:active {
  cursor: grabbing;
}

.service-map__canvas {
  position: relative;
  width: 2200px;
  height: 1270px;
  transform-origin: 0 0;
}

.service-map__img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* ピン */
.service-map__pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 40px;
  height: 58px;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-red);
  cursor: pointer;
  transform-origin: 50% 100%;
  -webkit-tap-highlight-color: transparent;
}

.service-map__pin-icon {
  width: 28px;
  height: 40px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
  transition:
    width 0.2s,
    height 0.2s,
    color 0.2s;
}

@media (min-width: 800px) {
  .service-map__pin-icon {
    width: 40px;
    height: 58px;
  }
}

@media (hover: hover) {
  .service-map__pin:hover {
    color: var(--color-black);
  }

  .service-map__pin:hover .service-map__pin-icon {
    width: 50px;
    height: 73px;
  }
}

/* スワイプインジケーター */
/* 見出しオーバーレイ（マップ中央、ページ遷移時のみ表示） */
.service-map__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-map__heading.is-visible {
  opacity: 1;
}

.service-map__heading.is-hidden {
  opacity: 0;
}

.service-map__heading-blur {
  position: absolute;
  width: 175px;
  height: 88px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  filter: blur(44px);
}
@media (min-width: 800px) {
  .service-map__heading-blur {
    width: 887px;
    height: 125px;
    filter: blur(62.5px);
  }
}

.service-map__heading-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 800px) {
  .service-map__heading-content {
    gap: 15px;
  }
}

.service-map__heading-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-map__heading-icon {
  width: 15px;
  height: 15px;
}
@media (min-width: 800px) {
  .service-map__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.service-map__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}
@media (min-width: 800px) {
  .service-map__heading-en {
    font-size: 2.4rem;
  }
}

.service-map__heading-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-black);
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (min-width: 800px) {
  .service-map__heading-title {
    font-size: 4.8rem;
  }
}
@media (min-width: 1200px) {
  .service-map__heading-title {
    font-size: 6.4rem;
  }
}

/* SP専用改行: PCでは非表示 */
@media (min-width: 800px) {
  .service-map__heading-br {
    display: none;
  }
}

/* 波打ちアニメーション: 見出しオーバーレイ用（js-scroll-trigger非依存） */
.service-map__heading .js-wave-chars > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.service-map__heading.is-visible .js-wave-chars > span {
  animation: heading-fade-up 0.7s cubic-bezier(0.33, 1, 0.68, 1)
    calc(var(--i) * 0.06s) forwards;
}

/* ラベル部分も波打ちと同時にフェードイン */
.service-map__heading-label {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-map__heading.is-visible .service-map__heading-label {
  opacity: 1;
}

/* パンくず（マップ右下） */
.service-map__breadcrumb {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  padding: 10px 20px;
  border-radius: 30px 0 0 0;
  background-color: var(--color-white);
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 800px) {
  .service-map__breadcrumb {
    max-width: none;
    padding: 15px 30px;
    border-radius: 50px 0 0 0;
  }
}

.service-map__breadcrumb-link {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-black);
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media (min-width: 800px) {
  .service-map__breadcrumb-link {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}

@media (hover: hover) {
  .service-map__breadcrumb-link:hover {
    opacity: 0.6;
  }
}

.service-map__breadcrumb-sep {
  flex-shrink: 0;
  width: 8px;
  height: 14px;
  color: var(--color-black);
}

.service-map__breadcrumb-current {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-black);
  line-height: 1.25;
  letter-spacing: 0.05em;
  opacity: 0.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 800px) {
  .service-map__breadcrumb-current {
    font-size: 1.6rem;
  }
}

/* スワイプインジケーター — パンくず分だけ上にオフセット */
.service-map__swipe {
  position: absolute;
  right: 0;
  bottom: 35px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 120px;
  padding: 20px;
  border-radius: 40px 0 0 0;
  background-color: var(--color-white);
  transition: opacity 0.4s;
}
@media (min-width: 800px) {
  .service-map__swipe {
    bottom: 50px;
  }
}

.service-map__swipe.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.service-map__swipe-icon {
  width: 80px;
  height: 78px;
}

.service-map__swipe-text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-blue);
  line-height: 1;
}

/* ========================================
 * 暮らしを支えるISEYASU金網 — モーダル
 * ======================================== */
/* モーダル外枠: スクロール可能なコンテナ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s,
    opacity 0.3s;
}

.service-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.service-modal__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 133, 192, 0.8);
}

/* カード: margin-auto で垂直中央、コンテンツが長ければ自然にスクロール */
.service-modal__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 800px;
  margin: auto 0;
  border-radius: 30px;
  background-color: var(--color-white);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-modal.is-open .service-modal__card {
  transform: none;
}

.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-black);
  cursor: pointer;
  transition: opacity 0.2s;
}

@media (hover: hover) {
  .service-modal__close:hover {
    opacity: 0.6;
  }
}

.service-modal__body {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 60px 20px 0;
}
@media (min-width: 800px) {
  .service-modal__body {
    padding: 60px 60px 0;
  }
}

.service-modal__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 800px) {
  .service-modal__content {
    width: min(calc(50% - 7.5px), 332.5px);
    min-width: 0;
  }
}

.service-modal__title {
  font-weight: 500;
  font-size: 3.6rem;
  color: var(--color-blue);
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.service-modal__desc {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.service-modal__products {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-modal__products-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-blue);
  letter-spacing: 0.05em;
}

.service-modal__products-bullet {
  width: 15px;
  height: 15px;
  color: var(--color-blue);
}

.service-modal__products-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.service-modal__products-list li {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.service-modal__media {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 800px) {
  .service-modal__media {
    width: min(calc(50% - 7.5px), 332.5px);
  }
}

.service-modal__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  aspect-ratio: 332.5 / 226;
  object-fit: cover;
}

/* モーダル内 資料請求導線 */
.service-modal__document {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px 60px;
}
@media (min-width: 800px) {
  .service-modal__document {
    padding: 0 60px 60px;
  }
}

.service-modal__document-desc {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .service-modal__document-desc {
    font-size: 1.6rem;
  }
}

.service-modal__document-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  max-width: 330px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-blue);
  color: var(--color-blue);
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 800px) {
  .service-modal__document-btn {
    max-width: 350px;
  }
}

.service-modal__document-btn-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-modal__document-btn-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-blue);
  --icon-arrow-color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .service-modal__document-btn:hover .service-modal__document-btn-label {
    transform: translate(30px, 0);
  }

  .service-modal__document-btn:hover .service-modal__document-btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * 暮らしを支えるISEYASU金網 — 資料請求CTA（旧: マップ下配置 → 削除済み）
 * ======================================== */
.service-document {
  background-color: var(--color-white);
}

.service-document__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px 60px;
}

@media (min-width: 800px) {
  .service-document__inner {
    padding: 0 30px 100px;
  }
}

@media (min-width: 1200px) {
  .service-document__inner {
    padding: 0 30px 200px;
  }
}

.service-document__card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

@media (min-width: 1200px) {
  .service-document__card {
    border-radius: 50px;
  }
}

.service-document__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-document__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 133, 192, 0.2) 0%,
    rgba(7, 133, 192, 0.9) 85%,
    var(--color-blue) 100%
  );
}

.service-document__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 50px 30px;
}

@media (min-width: 1200px) {
  .service-document__content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 60px;
  }
}

.service-document__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .service-document__left {
    flex: 1;
    max-width: 800px;
    padding-right: 30px;
  }
}

.service-document__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
}

@media (min-width: 1200px) {
  .service-document__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.service-document__heading-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-document__heading-icon {
  width: 15px;
  height: 15px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .service-document__heading-icon {
    width: 25px;
    height: 25px;
  }
}

.service-document__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 1200px) {
  .service-document__heading-en {
    font-size: 2rem;
  }
}

.service-document__heading-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-white);
  line-height: 1.25;
}

@media (min-width: 1200px) {
  .service-document__heading-title {
    font-size: 4.8rem;
  }
}

.service-document__desc {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 2;
  max-width: 400px;
}

@media (min-width: 1200px) {
  .service-document__desc {
    font-size: 1.6rem;
  }
}

.service-document__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
  transition: gap 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 1200px) {
  .service-document__btn {
    width: 350px;
    flex-shrink: 0;
  }
}

.service-document__btn-label {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 1200px) {
  .service-document__btn-label {
    font-size: 2rem;
  }
}

.service-document__btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  transform-origin: right center;
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .service-document__btn:hover .service-document__btn-label {
    transform: translateX(30px);
  }

  .service-document__btn:hover .service-document__btn-arrow {
    scale: 0.75;
  }
}

/* スクロールアニメーション */
.service-document.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-document.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

/* ========================================
 * 資料請求 — フォームセクション
 * ======================================== */
.document-section {
  padding: 0 0 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .document-section {
    padding: 0 0 200px;
  }
}

.document-section__outer {
  width: calc(100% - 20px);
  margin-left: auto;
  padding: 0 0 100px 0;
  background-color: var(--color-white);
}

@media (min-width: 1200px) {
  .document-section__outer {
    width: calc(100% - 60px);
    padding: 0 0 200px 0;
  }
}

@media (min-width: 1500px) {
  .document-section__outer {
    width: calc(100% - ((100% - 1500px) / 2));
  }
}

.document-section__card {
  background-color: var(--color-white);
  border-radius: 40px 0 0 40px;
  padding: 60px 0 60px 20px;
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
}

@media (min-width: 800px) {
  .document-section__card {
    border-radius: 80px 0 0 80px;
    padding: 100px 0 100px 60px;
  }
}

.document-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 0 0;
}

@media (min-width: 800px) {
  .document-section__inner {
    padding: 100px 60px 0 0;
  }
}

@media (min-width: 1500px) {
  .document-section__inner {
    margin: 0 0 0 calc((100% - 1100px) / 2);
  }
}

/* --- 見出しエリア --- */
.document-section__heading-area {
  padding-bottom: 30px;
}

.document-section__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.document-section__h2-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.document-section__h2-icon {
  width: 15px;
  height: 15px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .document-section__h2-icon {
    width: 25px;
    height: 25px;
  }
}

.document-section__h2-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .document-section__h2-en {
    font-size: 2rem;
  }
}

.document-section__h2-ja {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

@media (min-width: 800px) {
  .document-section__h2-ja {
    font-size: 4.8rem;
  }
}

.document-section.is-visible .document-section__h2-ja {
  opacity: 1;
  transform: translateY(0);
}

.document-section__lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 800px) {
  .document-section__lead {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

/* エラー画面・直接アクセス・完了画面では見出しエリアを非表示 */
.document-section__inner:has(.mw_wp_form_send_error)
  .document-section__heading-area,
.document-section__inner:has(.mw_wp_form_direct_access_error)
  .document-section__heading-area,
.document-section__inner:has(.document-form__complete)
  .document-section__heading-area {
  display: none;
}

/* 下部ナビ: 入力画面・確認画面では非表示、完了画面でのみ表示 */
.document-section ~ .subpage-bottom-nav {
  display: none;
}

.document-section:has(.document-form__complete) ~ .subpage-bottom-nav {
  display: block;
}

/* ========================================
 * 資料請求 — フォーム（MW WP Form出力）
 * ======================================== */
.document-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 800px) {
  .document-form {
    gap: 30px;
  }
}

/* --- フォーム各項目グループ --- */
.document-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px 15px;
}
@media (min-width: 800px) {
  .document-form__group {
    gap: 15px;
  }
}

/* --- ラベル部分 --- */
.document-form__label-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media (min-width: 800px) {
  .document-form__label-wrap {
    max-width: 280px;
  }
}

.document-form__label {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .document-form__label {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.document-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(2px - 0.075em) 5px calc(2px + 0.075em);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 2px;
}

@media (min-width: 800px) {
  .document-form__required {
    padding: calc(4px - 0.075em) 10px calc(4px + 0.075em);
    font-size: 1.6rem;
    border-radius: 5px;
  }
}

/* --- 入力フィールド部分 --- */
.document-form__field {
  min-width: 0;
  font-size: 0;
}

.mw_wp_form_confirm .document-form__field {
  font-size: 1.6rem;
}

.document-form__field:has(.horizontal-item) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

/* テキスト・メール・電話入力 */
.document-form__field input[type="text"],
.document-form__field input[type="email"],
.document-form__field input[type="tel"] {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: var(--color-light-bg);
  border: none;
  transition: box-shadow 0.2s ease;
}

.document-form__field input[type="text"]:focus,
.document-form__field input[type="email"]:focus,
.document-form__field input[type="tel"]:focus {
  box-shadow: inset 0 0 0 2px var(--color-blue);
  outline: none;
}

/* プレースホルダー */
.document-form__field input::placeholder {
  color: #aab4bd;
}

/* --- ラジオボタン --- */
.mw_wp_form .document-form__field .mwform-radio-field.horizontal-item {
  margin-left: 0;
}

.document-form__field .mwform-radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.document-form__field .mwform-radio-field input[type="radio"] {
  position: relative;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-right: 0;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.document-form__field .mwform-radio-field input[type="radio"]:checked {
  border-color: var(--color-blue);
}

.document-form__field .mwform-radio-field input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: var(--color-blue);
  border-radius: 50%;
}

/* --- チェックボックス --- */
.document-form__field .mwform-checkbox-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 5px 0;
}

.document-form__field .mwform-checkbox-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.document-form__field .mwform-checkbox-field input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-black);
  border-radius: 3px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.document-form__field .mwform-checkbox-field input[type="checkbox"]:checked {
  border-color: var(--color-blue);
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M12.2393%205.87598L6.58203%2011.5322L3.75391%208.7041L5.16797%207.29004L6.58203%208.7041L10.8252%204.46094L12.2393%205.87598Z%22%20fill%3D%22%230785C0%22/%3E%3C/svg%3E")
    no-repeat center;
}

/* --- プライバシーポリシー同意エリア --- */
.document-form__group--agreement {
  padding-top: 0;
}

/* --- MW WP Form エラーメッセージ --- */
.mw_wp_form .document-form__field .error,
.mw_wp_form .document-form__field + .error {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-red);
}

.mw_wp_form .document-form__field:has(.horizontal-item) .error,
.mw_wp_form .document-form__field:has(.horizontal-item) + .error {
  margin-top: -5px;
}

/* --- 送信ボタンエリア --- */
.document-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 60px;
  padding: 60px 20px;
}

/* --- ボタンラッパー（JSで生成） --- */
.document-form__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 350px);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
  cursor: pointer;
}

.document-form__btn-wrap input[type="submit"] {
  appearance: none;
  width: auto;
  padding: 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-black);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.document-form__btn-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

.document-form__btn-wrap--back input[type="submit"] {
  color: var(--color-black);
}

.document-form__btn-wrap--back .document-form__btn-arrow {
  color: var(--color-black);
  --icon-arrow-color: var(--color-white);
}

@media (hover: hover) {
  .document-form__btn-wrap:hover input[type="submit"] {
    transform: translate(30px, 0);
  }

  .document-form__btn-wrap:hover .document-form__btn-arrow {
    scale: 0.75;
  }
}

/* --- 確認画面 --- */
.mw_wp_form_confirm .document-form__field span {
  display: block;
  padding: 10px 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

.mw_wp_form_confirm .document-form__field input[type="radio"],
.mw_wp_form_confirm .document-form__field input[type="checkbox"] {
  display: none;
}

/* --- 完了画面 --- */
.document-form__complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 800px) {
  .document-form__complete {
    gap: 30px;
    padding: 60px;
  }
}

.document-form__complete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

@media (min-width: 800px) {
  .document-form__complete-icon {
    width: 100px;
    height: 100px;
  }
}

.document-form__complete-icon-svg {
  width: 100%;
  height: 100%;
  color: var(--color-blue);
}

.document-form__complete-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .document-form__complete-title {
    font-size: 2rem;
  }
}

.document-form__complete-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 800px) {
  .document-form__complete-text {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

/* --- プライバシーポリシーリンク --- */
.document-form__privacy-link {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- 完了画面ボタン --- */
.document-form__complete-btn-wrap {
  padding-top: 10px;
}

.document-form__complete-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .document-form__complete-btn {
    font-size: 1.8rem;
  }
}

.document-form__complete-btn-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

@media (hover: hover) {
  .document-form__complete-btn:hover span {
    display: inline-block;
    transform: translateX(30px);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .document-form__complete-btn:hover .document-form__complete-btn-arrow {
    scale: 0.75;
  }
}

/* ========================================
 * お問い合わせ — フォームセクション
 * ======================================== */
.contact-section {
  padding: 0 0 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .contact-section {
    padding: 0 0 200px;
  }
}

.contact-section__outer {
  width: calc(100% - 20px);
  margin-left: auto;
  padding: 0 0 100px 0;
  background-color: var(--color-white);
}

@media (min-width: 1200px) {
  .contact-section__outer {
    width: calc(100% - 60px);
    padding: 0 0 200px 0;
  }
}

@media (min-width: 1500px) {
  .contact-section__outer {
    width: calc(100% - ((100% - 1500px) / 2));
  }
}

.contact-section__card {
  background-color: var(--color-white);
  border-radius: 40px 0 0 40px;
  padding: 60px 0 60px 20px;
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
}

@media (min-width: 800px) {
  .contact-section__card {
    border-radius: 80px 0 0 80px;
    padding: 100px 0 100px 60px;
  }
}

.contact-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 0 0;
}

@media (min-width: 800px) {
  .contact-section__inner {
    padding: 100px 60px 0 0;
  }
}

@media (min-width: 1500px) {
  .contact-section__inner {
    margin: 0 0 0 calc((100% - 1100px) / 2);
  }
}

/* --- 見出しエリア --- */
.contact-section__heading-area {
  padding-bottom: 30px;
}

.contact-section__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.contact-section__h2-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section__h2-icon {
  width: 15px;
  height: 15px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .contact-section__h2-icon {
    width: 25px;
    height: 25px;
  }
}

.contact-section__h2-en {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blue);
  line-height: 1.25;
}

@media (min-width: 800px) {
  .contact-section__h2-en {
    font-size: 2rem;
  }
}

.contact-section__h2-ja {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

@media (min-width: 800px) {
  .contact-section__h2-ja {
    font-size: 4.8rem;
  }
}

.contact-section.is-visible .contact-section__h2-ja {
  opacity: 1;
  transform: translateY(0);
}

.contact-section__lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 800px) {
  .contact-section__lead {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

/* エラー画面・直接アクセス・完了画面では見出しエリアを非表示 */
.contact-section__inner:has(.mw_wp_form_send_error)
  .contact-section__heading-area,
.contact-section__inner:has(.mw_wp_form_direct_access_error)
  .contact-section__heading-area,
.contact-section__inner:has(.contact-form__complete)
  .contact-section__heading-area {
  display: none;
}

/* 下部ナビ: 入力画面・確認画面では非表示、完了画面でのみ表示 */
.contact-section ~ .subpage-bottom-nav {
  display: none;
}

.contact-section:has(.contact-form__complete) ~ .subpage-bottom-nav {
  display: block;
}

/* ========================================
 * お問い合わせ — フォーム（MW WP Form出力）
 * ======================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 800px) {
  .contact-form {
    gap: 30px;
  }
}

/* --- フォーム各項目グループ --- */
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px 15px;
}
@media (min-width: 800px) {
  .contact-form__group {
    gap: 15px;
  }
}

/* --- ラベル部分 --- */
.contact-form__label-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media (min-width: 800px) {
  .contact-form__label-wrap {
    max-width: 280px;
  }
}

.contact-form__label {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .contact-form__label {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(2px - 0.075em) 5px calc(2px + 0.075em);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 2px;
}

@media (min-width: 800px) {
  .contact-form__required {
    padding: calc(4px - 0.075em) 10px calc(4px + 0.075em);
    font-size: 1.6rem;
    border-radius: 5px;
  }
}

/* --- 入力フィールド部分 --- */
.contact-form__field {
  min-width: 0;
  font-size: 0;
}

.mw_wp_form_confirm .contact-form__field {
  font-size: 1.6rem;
}

/* テキスト・メール・電話入力 */
.contact-form__field input[type="text"],
.contact-form__field input[type="email"],
.contact-form__field input[type="tel"] {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: var(--color-light-bg);
  border: none;
  transition: box-shadow 0.2s ease;
}

.contact-form__field input[type="text"]:focus,
.contact-form__field input[type="email"]:focus,
.contact-form__field input[type="tel"]:focus {
  box-shadow: inset 0 0 0 2px var(--color-blue);
  outline: none;
}

/* テキストエリア */
.contact-form__field textarea {
  width: 100%;
  min-height: 150px;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: var(--color-light-bg);
  border: none;
  resize: vertical;
  transition: box-shadow 0.2s ease;
}

.contact-form__field textarea:focus {
  box-shadow: inset 0 0 0 2px var(--color-blue);
  outline: none;
}

/* プレースホルダー */
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #aab4bd;
}

/* --- チェックボックス --- */
.contact-form__field .mwform-checkbox-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 5px 0;
}

.contact-form__field .mwform-checkbox-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.contact-form__field .mwform-checkbox-field input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-black);
  border-radius: 3px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.contact-form__field .mwform-checkbox-field input[type="checkbox"]:checked {
  border-color: var(--color-blue);
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M12.2393%205.87598L6.58203%2011.5322L3.75391%208.7041L5.16797%207.29004L6.58203%208.7041L10.8252%204.46094L12.2393%205.87598Z%22%20fill%3D%22%230785C0%22/%3E%3C/svg%3E")
    no-repeat center;
}

/* --- プライバシーポリシー同意エリア --- */
.contact-form__group--agreement {
  padding-top: 0;
}

/* --- MW WP Form エラーメッセージ --- */
.mw_wp_form .contact-form__field .error,
.mw_wp_form .contact-form__field + .error {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-red);
}

/* --- 送信ボタンエリア --- */
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 60px;
  padding: 60px 20px;
}

/* --- ボタンラッパー（JSで生成） --- */
.contact-form__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 350px);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
  cursor: pointer;
}

.contact-form__btn-wrap input[type="submit"] {
  appearance: none;
  width: auto;
  padding: 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-black);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.contact-form__btn-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

.contact-form__btn-wrap--back input[type="submit"] {
  color: var(--color-black);
}

.contact-form__btn-wrap--back .contact-form__btn-arrow {
  color: var(--color-black);
  --icon-arrow-color: var(--color-white);
}

@media (hover: hover) {
  .contact-form__btn-wrap:hover input[type="submit"] {
    transform: translate(30px, 0);
  }

  .contact-form__btn-wrap:hover .contact-form__btn-arrow {
    scale: 0.75;
  }
}

/* --- 確認画面 --- */
.mw_wp_form_confirm .contact-form__field span {
  display: block;
  padding: 10px 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

.mw_wp_form_confirm .contact-form__field input[type="checkbox"] {
  display: none;
}

/* --- 完了画面 --- */
.contact-form__complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 800px) {
  .contact-form__complete {
    gap: 30px;
    padding: 60px;
  }
}

.contact-form__complete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

@media (min-width: 800px) {
  .contact-form__complete-icon {
    width: 100px;
    height: 100px;
  }
}

.contact-form__complete-icon-svg {
  width: 100%;
  height: 100%;
  color: var(--color-blue);
}

.contact-form__complete-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .contact-form__complete-title {
    font-size: 2rem;
  }
}

.contact-form__complete-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 800px) {
  .contact-form__complete-text {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

/* --- 完了画面ボタン --- */
.contact-form__complete-btn-wrap {
  padding-top: 10px;
}

.contact-form__complete-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .contact-form__complete-btn {
    font-size: 1.8rem;
  }
}

.contact-form__complete-btn-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

@media (hover: hover) {
  .contact-form__complete-btn:hover span {
    display: inline-block;
    transform: translateX(30px);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .contact-form__complete-btn:hover .contact-form__complete-btn-arrow {
    scale: 0.75;
  }
}

/* --- プライバシーポリシーリンク --- */
.contact-form__privacy-link {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========================================
 * 404 ページが見つかりません
 * ======================================== */

.not-found {
  padding: 0 20px 100px;
}

@media (min-width: 800px) {
  .not-found {
    padding: 0 60px 200px;
  }
}

.not-found__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.not-found__heading {
  padding-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .not-found__heading {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.not-found__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 800px) {
  .not-found__text {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

/*------------------------------
  プライバシーポリシー
------------------------------*/
.privacy {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.privacy__inner {
  padding: 0 20px 100px;
}

@media (min-width: 800px) {
  .privacy__inner {
    padding: 0 60px 200px;
  }
}

.privacy__lead {
  padding-bottom: 40px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 800px) {
  .privacy__lead {
    padding-bottom: 60px;
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.privacy__section {
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .privacy__section {
    padding-bottom: 60px;
  }
}

.privacy__section:last-child {
  padding-bottom: 0;
}

.privacy__heading {
  padding-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .privacy__heading {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.privacy__body {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 800px) {
  .privacy__body {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.privacy__body p + p {
  margin-top: 1em;
}

.privacy__body p a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color-blue);
}

.privacy__list {
  margin-top: 1em;
  padding-left: 1.5em;
  list-style: disc;
}

.privacy__list--ordered {
  list-style: decimal;
}

.privacy__list li + li {
  margin-top: 0.5em;
}

/*------------------------------
NEWS ARCHIVE — ニュースアーカイブ
------------------------------*/
.news-archive {
  padding: 0 20px 100px;
  background-color: var(--color-white);
}
@media (min-width: 800px) {
  .news-archive {
    padding: 0 60px 200px;
  }
}

.news-archive__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.news-archive__layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (min-width: 1200px) {
  .news-archive__layout {
    flex-direction: row;
    gap: 50px;
  }
}

/* メインコンテンツ */
.news-archive__main {
  flex: 1;
  min-width: 0;
}

.news-archive__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 60px;
  list-style: none;
}

@media (min-width: 800px) {
  .news-archive__list {
    gap: 40px;
    padding-bottom: 80px;
  }
}

/* 投稿アイテム */
.news-archive__item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-line);
}
@media (min-width: 800px) {
  .news-archive__item {
    padding-bottom: 30px;
  }
}

.news-archive__item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
  min-width: 0;
  padding-right: 30px;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .news-archive__item:hover .news-archive__item-content {
    transform: translate(20px, 0);
  }

  .news-archive__item:hover .news-archive__item-arrow {
    scale: 0.75;
  }
}

.news-archive__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news-archive__item-date {
  margin-right: 20px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .news-archive__item-date {
    font-size: 1.6rem;
  }
}

.news-archive__item-cat {
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 23px;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-white);
  background: var(--color-blue);
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .news-archive__item-cat:hover {
    opacity: 0.7;
  }
}

/* タイトルリンク: ::afterで全体をカバー */
.news-archive__item-link {
  display: block;
}

.news-archive__item-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-archive__item-title {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .news-archive__item-title {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.news-archive__item-arrow {
  width: 20px;
  height: 17px;
  flex-shrink: 0;
  color: var(--color-black);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: right center;
}

/* ページネーション */
.news-archive__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-archive__pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-black);
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.news-archive__pagination-arrow.is-disabled {
  opacity: 0.2;
  pointer-events: none;
}

@media (hover: hover) {
  .news-archive__pagination-arrow:hover {
    opacity: 0.5;
  }
}

.news-archive__pagination-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-black);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.news-archive__pagination-num.is-current {
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 50%;
}

@media (hover: hover) {
  .news-archive__pagination-num:not(.is-current):hover {
    opacity: 0.5;
  }
}

.news-archive__pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-black);
  text-align: center;
}

/* サイドバー */
@media (min-width: 1200px) {
  .news-archive__sidebar {
    width: min(100%, 330px);
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  .news-archive__sidebar-inner {
    position: sticky;
    top: 140px;
    max-height: calc(100vh - 160px);
    padding: 10px;
    margin: -10px;
    overflow-y: auto;
  }
}

@media (min-width: 1650px) {
  .news-archive__sidebar-inner {
    top: 220px;
    max-height: calc(100vh - 240px);
  }
}

.news-archive__sidebar-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 0 50px rgba(0, 44, 71, 0.03);
}

@media (min-width: 1200px) {
  .news-archive__sidebar-box {
    max-width: none;
  }
}

.news-archive__sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.news-archive__sidebar-item.is-active {
  background-color: var(--color-light-bg);
}

@media (hover: hover) {
  .news-archive__sidebar-item:not(.is-active):hover {
    background-color: #f9fcfe;
  }
}

.news-archive__sidebar-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--color-blue);
}

.news-archive__sidebar-label {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
}

/* 投稿なしメッセージ */
.news-archive__empty {
  padding: 60px 0;
  font-size: 1.6rem;
  text-align: center;
}

/* ========================================
   ニュース詳細（single.php）
   ======================================== */

.news-single {
  padding: 0 20px 100px;
}

@media (min-width: 800px) {
  .news-single {
    padding: 0 60px 200px;
  }
}

.news-single__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.news-single__layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (min-width: 1200px) {
  .news-single__layout {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }
}

.news-single__main {
  min-width: 0;
  width: min(100%, 1000px);
}

/* 記事本体 */
.news-single__article {
  max-width: 1100px;
  padding-bottom: 60px;
}
@media (min-width: 800px) {
  .news-single__article {
    padding-bottom: 80px;
  }
}

/* アイキャッチ画像 */
.news-single__thumbnail {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.news-single__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* メタ情報ヘッダー */
.news-single__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news-single__date {
  margin-right: 20px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-blue);
}

.news-single__cat {
  padding: 5px 10px;
  border-radius: 23px;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-white);
  background: var(--color-blue);
}

.news-single__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .news-single__title {
    font-size: 3.6rem;
  }
}

/* ========================================
   本文（the_content）スタイル
   ======================================== */

.news-single__content {
  margin-top: 40px;
}

@media (min-width: 800px) {
  .news-single__content {
    margin-top: 80px;
  }
}

/* 段落 */
.news-single__content p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 800px) {
  .news-single__content p {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.news-single__content p + p {
  margin-top: 0;
}

/* 段落間・要素間の余白 */
.news-single__content > * + * {
  margin-top: 15px;
}
@media (min-width: 800px) {
  .news-single__content > * + * {
    margin-top: 20px;
  }
}

/* 見出しの前は広めの余白 */
.news-single__content > * + h2,
.news-single__content > * + h3,
.news-single__content > * + h4 {
  margin-top: 40px;
}
@media (min-width: 800px) {
  .news-single__content > * + h2,
  .news-single__content > * + h3,
  .news-single__content > * + h4 {
    margin-top: 60px;
  }
}

/* 見出しの後は近接を意識して狭めの余白 */
.news-single__content h2 + *,
.news-single__content h3 + *,
.news-single__content h4 + * {
  margin-top: 15px;
}
@media (min-width: 800px) {
  .news-single__content h2 + *,
  .news-single__content h3 + *,
  .news-single__content h4 + * {
    margin-top: 20px;
  }
}

/* h2: 左ボーダー付き見出し */
.news-single__content h2 {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid var(--color-black);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
}
@media (min-width: 800px) {
  .news-single__content h2 {
    font-size: 2.4rem;
  }
}

/* h3: ダイヤアイコン付き見出し */
.news-single__content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 800px) {
  .news-single__content h3 {
    font-size: 2rem;
  }
}

.news-single__content h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-blue);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* h4 */
.news-single__content h4 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 800px) {
  .news-single__content h4 {
    font-size: 1.8rem;
  }
}

/* リスト（ul） */
.news-single__content ul {
  list-style: none;
  padding: 0;
}

.news-single__content ul li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 5px;
  padding: 5px 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (min-width: 800px) {
  .news-single__content ul li {
    padding: 15px 0;
  }
}

.news-single__content ul li ul {
  width: 100%;
  padding: 2.5px 0 0 1em;
}

@media (min-width: 800px) {
  .news-single__content ul li ul {
    padding: 7.5px 0 0 1em;
  }
}

.news-single__content ul li ul li {
  padding: 2.5px 0;
}

@media (min-width: 800px) {
  .news-single__content ul li ul li {
    padding: 7.5px 0;
  }
}

:is(.news-single__content ul li ul li):last-of-type {
  padding-bottom: 0;
}

.news-single__content ul li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--color-black);
  flex-shrink: 0;
  border-radius: 50%;
}

/* リスト（ol） */
.news-single__content ol {
  padding-left: 2em;
  list-style: decimal;
}

.news-single__content ol li {
  padding: 5px 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (min-width: 800px) {
  .news-single__content ol li {
    padding: 10px 0;
  }
}

/* 画像 */
.news-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* テーブル */
.news-single__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.75;
}
@media (min-width: 800px) {
  .news-single__content table {
    font-size: 1.6rem;
  }
}

.news-single__content th,
.news-single__content td {
  padding: 10px 15px;
  border: 1px solid var(--color-gray-line);
  text-align: left;
}

.news-single__content th {
  font-weight: 700;
  background: var(--color-light-bg);
}

/* blockquote */
.news-single__content blockquote {
  padding: 20px 25px;
  border-left: 4px solid var(--color-blue);
  background: var(--color-light-bg);
  border-radius: 5px;
  font-style: italic;
}
@media (min-width: 800px) {
  .news-single__content blockquote {
    padding: 30px 40px;
  }
}

.news-single__content blockquote p {
  margin: 0;
}

/* strong / b */
.news-single__content strong,
.news-single__content b {
  font-weight: 700;
}

/* リンク */
.news-single__content a {
  padding: 0;
  font-size: 1.6rem;
  color: var(--color-blue);
  text-decoration: underline;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* ========================================
   記事ナビゲーション（前後 + 一覧へ戻る）
   ======================================== */

.news-single__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.news-single__nav-prev,
.news-single__nav-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.news-single__nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-black);
  transition: color 0.3s;
}

.news-single__nav-arrow.is-disabled {
  color: var(--color-gray-line);
  pointer-events: none;
}

@media (hover: hover) {
  .news-single__nav-arrow:hover {
    color: var(--color-blue);
  }
}

.news-single__nav-back {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  max-width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
  transition: color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.news-single__nav-back-label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
}

.news-single__nav-back-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .news-single__nav-back:hover .news-single__nav-back-label {
    transform: translateX(30px);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .news-single__nav-back:hover .news-single__nav-back-arrow {
    transform: scale(0.75);
    transform-origin: right center;
  }
}

/* ========================================
 * 会社概要 — 会社情報テーブル
 * ======================================== */
.company-info-wrapper {
  overflow: hidden;
}

.company-info {
  background-color: var(--color-white);
}

/* h2見出し（最初のセクションのみ使用） */
.company-info__section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px 30px;
}
@media (min-width: 800px) {
  .company-info__section-heading {
    gap: 15px;
    padding: 0 20px 60px;
  }
}
@media (min-width: 1200px) {
  .company-info__section-heading {
    padding: 0 60px 60px;
  }
}

.company-info__inner {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

@media (min-width: 1200px) {
  .company-info__inner {
    display: flex;
    gap: 50px;
    padding: 0 60px 120px;
  }
}

.company-info__content {
  width: 100%;
}

@media (min-width: 1200px) {
  .company-info__content {
    max-width: 800px;
  }
}

/* 会社名（h3） */
.company-info__heading {
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-blue);
}
@media (min-width: 800px) {
  .company-info__heading {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

/* SP用写真（角丸） */
.company-info__photo {
  padding-bottom: 30px;
}
@media (min-width: 1200px) {
  .company-info__photo {
    display: none;
  }
}

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

/* テーブル（dl） */
.company-info__table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .company-info__table {
    gap: 40px;
    max-width: 800px;
  }
}

.company-info__row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-line);
}

@media (min-width: 800px) {
  .company-info__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 30px;
  }
}

.company-info__term {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 800px) {
  .company-info__term {
    width: 224px;
    flex-shrink: 0;
  }
}

.company-info__term-icon {
  width: 15px;
  height: 15px;
  color: var(--color-blue);
}

.company-info__term-text {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .company-info__term-text {
    font-size: 2rem;
  }
}

.company-info__desc {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .company-info__desc {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.company-info__branches {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 800px) {
  .company-info__branches {
    gap: 30px;
  }
}

.company-info__branch-name {
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .company-info__branch-name {
    padding-bottom: 10px;
    font-size: 2rem;
  }
}

.company-info__branch-detail {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .company-info__branch-detail {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

/* ダイヤモンド装飾（PCのみ表示）
 * コンテンツ幅(1500px)からはみ出し、セクションのoverflow:hiddenでクリップ
 * rotate(45deg) + border-radius + overflow:hidden で角丸ダイヤモンド形状を実現 */
.company-info__deco {
  display: none;
}
@media (min-width: 1200px) {
  .company-info__deco {
    display: block;
    position: relative;
    width: calc(100% - 800px - 30px);
  }
}

.company-info__diamond {
  position: absolute;
}

/* メイン写真: rotate(45deg) + border-radius で角丸ダイヤモンド */
.company-info__diamond--main {
  top: 0;
  left: 120px;
  width: 650px;
  height: 650px;
  overflow: hidden;
  border-radius: 40px;
  transform: rotate(45deg);
}

.company-info__diamond--main img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 142%;
  height: 142%;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* アクセント（青・中サイズ、左中央） */
.company-info__diamond--sub-03 {
  top: 504px;
  left: 13px;
  width: 164px;
  height: 164px;
}

/* サブ1（薄色・大サイズ、下部左寄り） */
.company-info__diamond--sub-01 {
  top: 605px;
  left: 0;
  width: 383px;
  height: 383px;
}

/* スクロールアニメーション */
.company-info.js-scroll-trigger .company-info__content {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.company-info.js-scroll-trigger.is-visible .company-info__content {
  opacity: 1;
  transform: none;
}

/* deco内の各ダイヤモンドをスケールフェードインで順番に表示 */
.company-info.js-scroll-trigger .company-info__diamond {
  opacity: 0;
  scale: 0.7;
  transition:
    opacity 0.8s ease-out,
    scale 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* メイン写真はフェードインのみ（scaleなし） */
.company-info.js-scroll-trigger .company-info__diamond--main {
  scale: 1;
  transition: opacity 0.8s ease-out;
  transition-delay: 0.2s;
}

.company-info.js-scroll-trigger .company-info__diamond--accent {
  transition-delay: 0.6s;
}

.company-info.js-scroll-trigger .company-info__diamond--sub-01 {
  transition-delay: 0.8s;
}

.company-info.js-scroll-trigger.is-visible .company-info__diamond {
  opacity: 1;
  scale: 1;
}

/* ========================================
 * 会社概要 — アクセスセクション
 * ======================================== */
.company-access {
  width: calc(100% - 20px);
  margin-left: auto;
  padding-bottom: 100px;
  background-color: var(--color-white);
}
@media (min-width: 1200px) {
  .company-access {
    width: calc(100% - 60px);
    padding-bottom: 200px;
  }
}
@media (min-width: 1500px) {
  .company-access {
    width: calc(100% - ((100% - 1500px) / 2));
  }
}

.company-access__card {
  background: var(--color-white);
  border-radius: 40px 0 0 40px;
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
  padding: 60px 0 60px 20px;
}

@media (min-width: 1200px) {
  .company-access__card {
    border-radius: 80px 0 0 80px;
    padding: 100px 0 100px 60px;
  }
}

.company-access__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}

@media (min-width: 1200px) {
  .company-access__inner {
    padding: 0 60px 0 0;
  }
}

@media (min-width: 1500px) {
  .company-access__inner {
    margin-left: 210px;
  }
}

.company-access__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .company-access__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.company-access__blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 800px) {
  .company-access__blocks {
    gap: 60px;
  }
}

/* 各ロケーションブロック */
.company-access__company {
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--color-blue);
}
@media (min-width: 800px) {
  .company-access__company {
    padding-bottom: 40px;
    font-size: 3.6rem;
  }
}

.company-access__address {
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .company-access__address {
    font-weight: 700;
    font-size: 1.6rem;
  }
}

.company-access__map {
  padding-bottom: 20px;
}

.company-access__map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 20px;
}

@media (min-width: 800px) {
  .company-access__map iframe {
    height: 424px;
  }
}

/* 拠点カードコンテナ */
.company-access__locations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  background-color: var(--color-light-bg);
  border-radius: 20px;
}
@media (min-width: 800px) {
  .company-access__locations {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 40px;
  }
}

/* 各拠点カード — 800px以上で均等分割 */
.company-access__location {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 800px) {
  .company-access__location {
    flex: 1 1 0%;
    min-width: 0;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid var(--color-gray-line);
  }
}

@media (min-width: 800px) {
  .company-access__location:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}

.company-access__location-name {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--color-blue);
}

@media (min-width: 800px) {
  .company-access__location-name {
    font-size: 2rem;
    min-height: 25px;
  }
}

.company-access__location-detail {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .company-access__location-detail {
    flex: 1;
    font-size: 1.6rem;
  }
}

/* Googleマップリンク */
.company-access__location-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-line);
  transition: opacity 0.3s ease;
}

.company-access__location-link-text {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .company-access__location-link-text {
    font-size: 2rem;
  }
}

.company-access__location-link-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transition: scale 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) {
  .company-access__location-link:hover .company-access__location-link-text {
    transform: translateX(10px);
  }

  .company-access__location-link:hover .company-access__location-link-arrow {
    scale: 0.75;
    transform-origin: right center;
  }
}

/* スクロールアニメーション */
.company-access__heading.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.company-access__heading.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

.company-access__block.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.company-access__block.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   SDGs宣言ページ
   ========================================================================== */

/* --- sdgs-intro: イントロセクション --- */

.sdgs-intro {
  padding: 0 0 100px;
  background-color: var(--color-white);
}

@media (min-width: 1200px) {
  .sdgs-intro {
    padding: 0 0 200px;
  }
}

.sdgs-intro__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1200px) {
  .sdgs-intro__inner {
    padding: 0 60px;
  }
}

.sdgs-intro__header {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .sdgs-intro__header {
    padding-bottom: 120px;
  }
}

.sdgs-intro__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .sdgs-intro__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.sdgs-intro__lead {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
}

@media (min-width: 800px) {
  .sdgs-intro__lead {
    font-size: 2rem;
  }
}

.sdgs-intro__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1200px) {
  .sdgs-intro__content {
    flex-direction: row;
    gap: 60px;
  }
}

@media (min-width: 1200px) {
  .sdgs-intro__text {
    width: calc(50% - 30px);
  }
}

.sdgs-intro__subtitle {
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--color-blue);
  line-height: 1.25;
  padding-bottom: 30px;
}

@media (min-width: 1200px) {
  .sdgs-intro__subtitle {
    font-size: 3.6rem;
    padding-bottom: 40px;
  }
}

.sdgs-intro__body {
  font-weight: 700;
  line-height: 2;
}

.sdgs-intro__body p + p {
  margin-top: 1.6em;
}

@media (min-width: 1200px) {
  .sdgs-intro__image {
    width: calc(50% - 30px);
  }
}

.sdgs-intro__image img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-gray-line);
  border-radius: 20px;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .sdgs-intro__image img {
    border-radius: 30px;
  }
}

/* --- sdgs-action: 具体的な取り組みセクション --- */

.sdgs-action {
  width: calc(100% - 20px);
  margin-left: auto;
  padding-bottom: 100px;
  background-color: var(--color-white);
}

@media (min-width: 1200px) {
  .sdgs-action {
    width: calc(100% - 60px);
    padding-bottom: 200px;
  }
}

@media (min-width: 1500px) {
  .sdgs-action {
    width: calc(100% - ((100% - 1500px) / 2));
  }
}

.sdgs-action__card {
  background-color: var(--color-white);
  border-radius: 40px 0 0 40px;
  padding: 60px 0 60px 20px;
  box-shadow: 0 0 100px rgba(0, 44, 71, 0.03);
}

@media (min-width: 1200px) {
  .sdgs-action__card {
    border-radius: 80px 0 0 80px;
    padding: 100px 0 100px 60px;
  }
}

.sdgs-action__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}

@media (min-width: 1200px) {
  .sdgs-action__inner {
    padding: 0 60px 0 0;
  }
}

@media (min-width: 1500px) {
  .sdgs-action__inner {
    margin-left: 210px;
  }
}

.sdgs-action__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .sdgs-action__heading {
    gap: 15px;
    padding-bottom: 60px;
  }
}

.sdgs-action__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 800px) {
  .sdgs-action__items {
    gap: 40px;
  }
}

/* --- アコーディオンアイテム --- */

.sdgs-action__item {
  background-color: var(--color-light-bg);
  border-radius: 20px;
  padding: 30px 20px;
}

@media (min-width: 800px) {
  .sdgs-action__item {
    border-radius: 40px;
    padding: 60px 40px;
  }
}

.sdgs-action__item-title {
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--color-blue);
  line-height: 1.25;
  padding-bottom: 30px;
}

@media (min-width: 800px) {
  .sdgs-action__item-title {
    font-size: 3.6rem;
    padding-bottom: 40px;
  }
}

.sdgs-action__item-body {
  font-weight: 700;
  line-height: 2;
}

.sdgs-action__item-body p + p {
  margin-top: 0.5em;
}

/* スライドトグル: 詳細部分 */

.sdgs-action__item-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 800px) {
  .sdgs-action__item-details {
    gap: 40px;
  }
}

.sdgs-action__item-details__inner {
  padding-top: 30px;
}

@media (min-width: 800px) {
  .sdgs-action__item-details__inner {
    padding-top: 40px;
  }
}

/* 写真グリッド */

.sdgs-action__item-photos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 30px;
}

@media (min-width: 800px) {
  .sdgs-action__item-photos {
    flex-direction: row;
    gap: 30px;
    padding-top: 40px;
  }
}

.sdgs-action__item-photos picture {
  overflow: hidden;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
}

@media (min-width: 800px) {
  .sdgs-action__item-photos picture {
    width: calc(33.33% - 20px);
    border-radius: 20px;
  }
}

/* 2枚の場合も同じレイアウト */
@media (min-width: 800px) {
  .sdgs-action__item-photos picture:only-child {
    width: calc(50% - 15px);
  }
}

@media (min-width: 800px) {
  .sdgs-action__item-photos picture:first-child:nth-last-child(2),
  .sdgs-action__item-photos picture:first-child:nth-last-child(2) ~ picture {
    width: calc(50% - 15px);
  }
}

/* 数値目標 */

.sdgs-action__item-goal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 800px) {
  .sdgs-action__item-goal {
    gap: 20px;
  }
}

.sdgs-action__item-goal-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sdgs-action__item-goal-label {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-blue);
  line-height: 1.25;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .sdgs-action__item-goal-label {
    font-size: 2rem;
  }
}

.sdgs-action__item-goal-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-blue);
}

.sdgs-action__item-goal-text {
  font-weight: 700;
  line-height: 2;
}

/* SDGsターゲット */

.sdgs-action__item-target {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 800px) {
  .sdgs-action__item-target {
    gap: 20px;
  }
}

.sdgs-action__item-target-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sdgs-action__item-target-label {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-blue);
  line-height: 1.25;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .sdgs-action__item-target-label {
    font-size: 2rem;
  }
}

.sdgs-action__item-target-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-blue);
}

.sdgs-action__item-target-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 800px) {
  .sdgs-action__item-target-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }
}

.sdgs-action__item-target-icon {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

@media (min-width: 800px) {
  .sdgs-action__item-target-icon {
    width: 150px;
    height: 150px;
  }
}

.sdgs-action__item-target-text {
  font-weight: 700;
  line-height: 2;
}

@media (min-width: 800px) {
  .sdgs-action__item-target-text {
    flex: 1;
  }
}

/* トグルボタン */

.sdgs-action__item-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  margin: 30px auto 0;
  padding: 0 0 10px;
  border: none;
  border-bottom: 1px solid var(--color-gray-line);
  background: none;
  cursor: pointer;
}

@media (min-width: 800px) {
  .sdgs-action__item-toggle {
    margin-top: 40px;
  }
}

.sdgs-action__item-toggle-label {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .sdgs-action__item-toggle-label {
    font-size: 2rem;
  }
}

.sdgs-action__item-toggle-arrow {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  --icon-arrow-color: var(--color-white);
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.sdgs-action__item.is-open .sdgs-action__item-toggle-arrow {
  transform: rotate(-90deg);
}

@media (hover: hover) {
  .sdgs-action__item-toggle:hover .sdgs-action__item-toggle-label {
    transform: translateX(10px);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }
}

/* --- SDGsページ スクロールアニメーション --- */

.sdgs-intro__header.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.sdgs-intro__header.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

.sdgs-intro__content.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.sdgs-intro__content.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

.sdgs-action__heading.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.sdgs-action__heading.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}

.sdgs-action__item.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.sdgs-action__item.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: none;
}
