@charset "UTF-8";
/* 1. ボックスモデルの定義：paddingやborderを幅に含める */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. デフォルトの余白をリセット */
* {
  margin: 0;
  padding: 0;
}

/* 3. 本文のセットアップ：スクロールを滑らかにし、ベースの行間を整える */
html {
  color-scheme: light dark; /* ダークモード対応 */
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* フォントを綺麗に見せる（mac/iOS用） */
  text-rendering: optimizeSpeed;
}

/* 4. 画像やメディア要素の扱い：親要素からはみ出さないようにする */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. フォーム要素のフォント継承：inputやbuttonが独自のフォントにならないように */
input, button, textarea, select {
  font: inherit;
}

/* 6. テキストエリアのサイズ調整を縦方向のみに制限 */
textarea {
  resize: vertical;
}

/* 7. リストの記号を消す（必要に応じて） */
ul, ol {
  list-style: none;
}

/* 8. アニメーションを好まないユーザーへの配慮（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  /* フォントスタック：欧文を先に書くのが鉄則 */
  --font-family-base: "Albert Sans", "Noto Sans JP", sans-serif;
  /* ウェイトの定義 */
  --weight-normal: 400;
  --weight-bold: 700;
  --color-primary: #2860BC; /* 共愛会ブランドグリーン */
  --color-bg: #F5F7FC; /* 背景 */
  --color-text: #2B2B2B;
  --color-text-sub: #666666;
  /* Fluid Typography: 16px */
  --fz-base: 1rem;
  --inner-width: 1200px;
  --section-padding: 6.944vw;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-family: var(--font-family-base);
  color: var(--color-text);
  font-size: var(--fz-base);
  font-weight: 500;
  /* [効率的なサイズ調整の核心]
      font-size-adjust: ex-height 0.5;
      フォントのx-heightを基準に、見た目の大きさを正規化します。
      これによりInter（欧文）の小ささが補正され、和文とのバランスが整います。
  */
  font-size-adjust: 0.51;
}

a {
  text-decoration: none;
}

.is-block {
  display: block !important;
}

.is-inline {
  display: inline !important;
}

.is-inline-block {
  display: inline-block !important;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-mobile-block {
    display: block !important;
  }
  .is-mobile-inline {
    display: inline !important;
  }
  .is-mobile-inline-block {
    display: inline-block !important;
  }
  .is-mobile-none {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .is-fablet-block {
    display: block !important;
  }
  .is-fablet-inline {
    display: inline !important;
  }
  .is-fablet-inline-block {
    display: inline-block !important;
  }
  .is-fablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-tablet-block {
    display: block !important;
  }
  .is-tablet-inline {
    display: inline !important;
  }
  .is-tablet-inline-block {
    display: inline-block !important;
  }
  .is-tablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 1000px) {
  .is-desktop-block {
    display: block !important;
  }
  .is-desktop-inline {
    display: inline !important;
  }
  .is-desktop-inline-block {
    display: inline-block !important;
  }
  .is-desktop-none {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-wide-block {
    display: block !important;
  }
  .is-wide-inline {
    display: inline !important;
  }
  .is-wide-inline-block {
    display: inline-block !important;
  }
  .is-wide-none {
    display: none !important;
  }
}
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* 読み込み完了後の状態 */
.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 300px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 77px;
  padding: 0 2.778vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background-color 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
  background-color: transparent;
}

/* スクロール時の状態（背景を白にする） */
.header.is-white {
  background-color: #fff;
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.is-text-black .logo a .logo-text,
.header.is-text-black .gnav a {
  color: var(--color-text);
}

/* --- Logo Area (Modified) --- */
.logo {
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.logo-mark {
  display: block;
  width: 315px;
  height: 51px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .logo-mark {
    height: 40px;
    width: auto;
  }
}
.logo-mark img {
  width: auto;
  height: 100%;
}

.header.is-white .logo-mark {
  width: 245px;
  height: 42px;
  padding: 1px 0;
  overflow: hidden;
}
.header.is-white .logo-mark img {
  height: 40px;
  width: auto;
  margin-top: -1px;
  image-rendering: -webkit-optimize-contrast;
}

/* Nav Area */
.header-right {
  display: flex;
  align-items: center;
}

.gnav {
  font-size: 16px;
}

.gnav ul {
  display: flex;
  align-items: center;
  gap: 48px; /* メニュー間の余白を調整 */
}

.gnav li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: 0.3s ease;
  color: #000;
}

.gnav li a:hover,
.header.is-white .gnav li a:hover,
.gnav li a.is-active,
.header.is-text-black .gnav a.is-active {
  color: var(--color-primary);
}

.header.is-white .gnav li a {
  color: var(--text-color);
  mix-blend-mode: normal;
}

.header .gnav li.is-contact {
  position: relative;
}
.header .gnav li.is-contact a {
  padding: 6px 20px;
  background-image: linear-gradient(90deg, #22d3ee, #2860bc);
  color: #fff;
  border-radius: 25px;
  overflow: hidden;
  background-image: linear-gradient(90deg, #22d3ee, #2860bc, #22d3ee);
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.5s ease;
}
.header .gnav li.is-contact span {
  color: #fff;
}

.header .gnav li.is-contact a:hover,
.header .gnav li.is-contact a.is-active {
  background-position: 100% 0%;
  color: #fff;
}

.header .gnav li.is-contact a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #22d3ee;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover Animation (Text Links Only) */
.gnav li a::after {
  position: absolute;
  left: 0; /* 起点を左端に設定 */
  bottom: -8px;
  width: 0;
  height: 3px;
  content: "";
  background-color: var(--color-primary);
  transition: width 0.3s ease; /* widthの変化のみでアニメーション */
  transform: none; /* 中央寄せの解除 */
}

.gnav li a:hover::after,
.gnav li a.is-active::after {
  width: 100%;
}

/* --- サブメニュー（ドロップダウン）の基本構造 --- */
/* 親となるliに相対配置を設定 */
.gnav ul li {
  position: relative;
}

/* サブメニュー本体（PC用） */
.gnav ul li ul {
  position: absolute;
  top: 100%; /* 親メニューの直下に配置 */
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  display: flex;
  flex-direction: column; /* 縦並び */
  gap: 0; /* サブメニュー内の隙間をリセット */
  background-color: #fff;
  width: 220px; /* サブメニューの幅 */
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 4px;
  margin-top: 14px;
}

/* 親liをホバーしたら表示 */
.gnav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  top: calc(100% - 5px); /* 少し浮き上がるような演出 */
}

/* サブメニュー内のリンク */
.gnav ul li ul li {
  width: 100%;
}

.gnav ul li ul li a {
  font-size: 14px;
  color: #333 !important; /* 背景が白なので常に暗い色 */
  padding: 17px 20px 17px 5px;
  display: block;
  font-weight: 500;
  mix-blend-mode: normal !important; /* ブレンドモードを解除 */
  white-space: nowrap;
}

/* サブメニューのホバー時 */
.gnav ul li ul li a:hover {
  background-color: #f8f8f8;
  color: var(--color-primary) !important;
}

/* サブメニュー内のaタグには下線アニメーションを出さない設定（必要に応じて） */
.gnav ul li ul li a::after {
  display: none;
}

/* --- スマホ(SP)用調整 --- */
@media screen and (max-width: 767px) {
  .gnav ul li ul {
    position: static; /* 縦に並べる */
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 10px 20px; /* 左にインデントをつける */
    display: block; /* SPでは最初から展開（またはJSで開閉制御） */
    margin-top: 0;
    margin-bottom: 20px;
  }
  .gnav ul li ul li {
    border-bottom: none; /* 親の線を継承しない */
  }
  .gnav ul li ul li a {
    font-size: 15px;
    padding: 10px 0;
  }
}
/* Hamburger Menu (SP) */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 10px;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  margin: 6px 0;
  transition: 0.3s;
}

@media screen and (max-width: 1230px) {
  .gnav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .header {
    height: 70px;
  }
  .header.is-white {
    height: 70px;
  }
  .logo-text {
    font-size: 16px;
  }
  .header.is-white .logo-text {
    font-size: 15px;
  }
  .mv-copy {
    left: 5%;
    bottom: 10%;
    width: 90%;
  }
  /* ハンバーガーボタンのアニメーション */
  .menu-btn span {
    background-color: #000; /* 背景が白の時の色 */
    transition: transform 0.3s, opacity 0.3s;
  }
  /* メニューが開いている時のボタン（JSでクラスを付与） */
  .menu-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* SP用ナビゲーションのスタイル */
  .gnav {
    display: block; /* 非表示を解除 */
    position: fixed;
    top: 0;
    right: -100%; /* 最初は画面外に隠す */
    width: 100%;
    height: 100vh;
    overflow-y: auto; /* 縦方向にスクロールを許可 */
    -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかにする */
    background-color: #fff;
    transition: right 0.5s ease; /* スライドイン */
    z-index: 90;
    padding-top: 100px; /* ヘッダーと被らないように */
    padding-bottom: 60px;
  }
  /* メニューが開いた時 */
  .gnav.is-active {
    right: 0;
  }
  .gnav ul {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 40px;
  }
  .gnav li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .gnav li a {
    font-size: 18px;
    padding: 15px 0;
    color: #000 !important; /* SPメニュー内では常に黒 */
    mix-blend-mode: normal !important;
    width: 100%;
  }
  .gnav li.header-sns {
    width: 100%;
    display: flex; /* Flexboxを有効化 */
    justify-content: center; /* 横方向の中央寄せ */
    align-items: center; /* 縦方向の中央寄せ */
    margin-top: 20px; /* お問い合わせボタンとの間隔 */
    padding-bottom: 40px; /* メニュー最下部の余白 */
    border-bottom: none !important; /* 下線を消す */
  }
  /* Instagramのリンク(a)の設定 */
  .gnav li.header-sns a {
    display: block;
    width: 160px; /* 押しやすいように少しだけサイズアップ（お好みで） */
    height: auto;
    margin: 0 auto; /* 念のための自動中央寄せ */
    padding: 0; /* aタグのデフォルトパディングをリセット */
  }
  .gnav li.header-sns a img {
    width: 100%;
    height: auto;
    display: block;
  }
  .header .gnav li.is-contact {
    border-bottom: none;
  }
  /* お問い合わせボタンをSP用に調整 */
  .header .gnav li.is-contact a {
    display: block;
    width: auto;
    margin-top: 20px;
    border-radius: 50px;
    text-align: center;
    padding: 12px 40px;
  }
}
/* ---------------------------------------
  main content
---------------------------------------- */
main {
  padding: 77px 0 7.361vw;
}
@media screen and (max-width: 767px) {
  main {
    padding: 80px 0 50px;
  }
}

.inner {
  width: 100%;
  padding: 6.944vw;
}

@media screen and (min-width: 768px) {
  .is-pc-block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .is-mobile-inline {
    display: inline;
  }
}
/* ---------------------------------------
  パンクズ
---------------------------------------- */
.pankuzu-list {
  padding: 0 2.778vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pankuzu-list {
    font-size: 13px;
  }
}
.pankuzu-list li {
  line-height: 1;
}
.pankuzu-list li a {
  color: var(--color-primary);
}
.pankuzu-list li .ico-arrow {
  top: -1px;
}

/* ---------------------------------------
  ページメインビジュアルエリア
---------------------------------------- */
.section-mv.page-normal {
  padding: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .section-mv.page-normal {
    padding: 40px 0 0;
  }
}
.section-mv.page-normal .page-title {
  text-align: center;
  margin-bottom: 10.069vw;
}
.section-mv.page-normal .page-title span {
  display: block;
}
.section-mv.page-normal .page-title .en {
  font-size: 56px;
  color: var(--color-primary);
}
.section-mv.page-normal .page-title .jp {
  font-size: 20px;
}

.mv-page-mss {
  display: flex;
}

.mv-page-copy {
  width: 35.417vw;
  position: relative;
}
.mv-page-copy .catch-text {
  position: absolute;
  left: 50%;
  top: -3em;
  transform: translateX(-50%);
  width: 8.056vw;
}
@media screen and (max-width: 767px) {
  .mv-page-copy .catch-text {
    width: 10.056vw;
  }
}
.mv-page-copy .catch-text img {
  width: 116px;
  height: auto;
}

.mv-page-navi {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-page-navi {
    display: block;
  }
}
.mv-page-navi::before {
  display: block;
  content: "";
  width: 55.556vw;
  height: 100%;
  background-image: url(../images/common/bg_grid.png);
  background-repeat: repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -5.556vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv-page-navi::before {
    width: 100%;
    top: 0;
  }
}

.mv-page-navi-list {
  width: 35.417vw;
  position: relative;
  padding-top: 2.778vw;
  padding-left: 6.944vw;
  font-size: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .mv-page-navi-list {
    font-size: 0.925rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-page-navi-list {
    display: none;
    width: 100%;
    padding: 20px;
    font-size: 14px;
  }
}
.mv-page-navi-list dt {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--color-primary);
}
.mv-page-navi-list dd {
  margin: 10px 0;
  padding-left: 0.25vw;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .mv-page-navi-list dd {
    float: left;
  }
}
.mv-page-navi-list dd a {
  color: var(--color-primary);
}
.mv-page-navi-list dd .ico-arrow {
  top: -3px;
}

.mv-page-img {
  width: 64.583vw;
}
@media screen and (max-width: 767px) {
  .mv-page-img {
    width: 100%;
    margin-bottom: 40px;
  }
}

/* ---------------------------------------
  見出し
---------------------------------------- */
.headline2 {
  font-size: 18px;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .headline2 {
    margin-bottom: 1.75em;
  }
}
.headline2 .en {
  display: block;
  line-height: 1.25;
  color: var(--color-primary);
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .headline2 .en {
    font-size: 28px;
  }
}

/* ---------------------------------------
  ボタン
---------------------------------------- */
.btn {
  padding: 21px 60px 21px;
  background-color: var(--color-primary);
  border-radius: 7rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  position: relative;
  transition: 0.3s;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 0.875rem;
    display: block;
    width: 80%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 20px;
  top: 22px;
  right: 25px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn::before {
    top: 19px;
  }
}

.btn::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 25px;
  overflow: hidden;
  background: url(../images/common/arrow_white_blue.png);
  background-repeat: no-repeat;
  background-position: -15px center;
  background-size: 30px 15px;
  top: 22px;
  right: 30px;
  z-index: 2;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn::after {
    top: 19px;
  }
}

.btn:hover {
  background-color: #143B7B;
}

.btn:hover::before {
  background: #143B7B;
}

.btn:hover::after {
  background-position: 0 center;
}

/* ---------------------------------------
  共通矢印　＞
---------------------------------------- */
.ico-arrow {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}

.ico-arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
}

.footer .ico-arrow:before {
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

/* 左向き */
.ico-arrow.__left::before {
  transform: rotate(-135deg);
}

/* 右向き */
.ico-arrow.__right::before {
  transform: rotate(45deg);
}

/* 上向き */
.ico-arrow.__top::before {
  transform: rotate(-45deg);
}

/* 下向き */
.ico-arrow.__bottom::before {
  transform: rotate(135deg);
}

.ico-arrow-cycle {
  display: inline-block;
  margin: 0 10px;
  background: #FFF;
  width: 33px;
  height: 33px;
  border-radius: 20px;
  position: relative;
  top: 10px;
  left: 0;
  transition: 0.3s;
}

.ico-arrow-cycle::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* 右向き */
.ico-arrow-cycle.__right::before {
  left: 11px;
  top: 13px;
  transform: rotate(45deg);
}

/* ---------------------------------------
  フェードアップアニメーション
---------------------------------------- */
/* 初期状態：透明で20px下に配置 */
.js-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* アニメーション発火時の状態 */
.js-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* 2つ目の要素（pタグ）に少しディレイをかける */
.headding h1.is-active {
  transition-delay: 0.2s;
}

.headding p.is-active {
  transition-delay: 0.5s; /* h1より後に表示 */
}

/* --- スクロールアニメーションの初期状態 --- */
section {
  opacity: 0; /* 最初は透明 */
  transform: translateY(40px); /* 40px下に配置 */
  transition: opacity 1.2s ease, transform 1.2s ease; /* 1.2秒かけて変化 */
  will-change: opacity, transform; /* ブラウザの描画を最適化 */
}

/* --- 画面に入った時の状態 (.is-visibleがJSで付与される) --- */
section.is-visible {
  opacity: 1; /* 不透明にする */
  transform: translateY(0); /* 元の位置に戻る */
}

.pc-only-br {
  display: inline;
}
@media screen and (max-width: 767px) {
  .pc-only-br {
    display: none;
  }
}

/* ----------------------------------------------
  採用アクションエリア
------------------------------------------------- */
.recuit-entry-section {
  padding: 6.944vw 6.944vw 17.361vw;
  background-color: var(--color-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.recuit-entry-section p {
  display: block;
  font-weight: 600;
  font-size: 1.111vw;
  padding-left: 5px;
}
.recuit-entry-section h2 {
  font-size: 8.056vw;
  color: var(--color-primary);
  line-height: 1.25;
}
.recuit-entry-section ul li {
  display: block;
  max-width: 532px;
  margin: 10px 0;
}
.recuit-entry-section ul li a {
  display: block;
}
.recuit-entry-section ul li img {
  width: 100%;
  height: auto;
}

/* ----------------------------------------------
  Footerエリア
------------------------------------------------- */
.footer {
  background-color: var(--color-primary);
  position: relative;
  padding: 200px 6.944vw 6.944vw;
  margin-top: 160px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 200px 25px 6.944vw;
  }
}

.action-content {
  width: calc(100% - 13.889vw);
  color: var(--color-primary);
  background-color: #7BE6FF;
  border-radius: 20px;
  padding: 4.861vw;
  position: absolute;
  top: -11.111vw;
}
@media screen and (max-width: 767px) {
  .action-content {
    width: 90%;
    left: 5%;
    z-index: 10;
  }
}
.action-content .headding {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .action-content .headding {
    display: block;
    margin-bottom: 20px;
  }
}
.action-content h2 {
  font-size: 3.889vw;
}
@media screen and (max-width: 767px) {
  .action-content h2 {
    font-size: 32px;
  }
}
.action-content p {
  padding: 0 20px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .action-content p {
    font-size: 14px;
    text-align: left;
    padding: 0;
  }
}
.action-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .action-content ul {
    display: block;
  }
}
.action-content ul li {
  width: 50%;
  padding: 0 0.694vw;
  font-size: 2.222vw;
  color: var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .action-content ul li {
    width: 100%;
    font-size: 18px;
  }
}
.action-content ul li a.btn {
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  .action-content ul li a.btn {
    max-width: 100%;
    width: 100%;
    margin: 20px auto 0;
    padding: 21px 30px 21px;
  }
}

/* --- Main Footer Section --- */
.footer-main {
  border-bottom: 1px solid #3980D2;
  padding: 60px 0 40px;
  margin-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.5fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .footer-brand {
    grid-column: span 2;
    border-bottom: 1px solid #E0E2D9;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
/* --- Brand Column --- */
.footer-brand-logo {
  max-width: 345px;
}
.footer-brand-logo img {
  width: 100%;
  height: auto;
}

.footer-brand-txt {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 15px;
  display: block;
}

.footer-brand dl {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}

.footer-sns {
  margin-top: 20px;
  line-height: 1;
}

.footer-sns a {
  display: inline-block;
  width: 145px;
  height: 36px;
  vertical-align: bottom;
  transition: opacity 0.3s;
}

.footer-sns a:hover {
  opacity: 0.8;
}

.footer-sns img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Navigation Columns --- */
.footer-nav-title {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.footer-nav {
  font-size: 1rem;
  text-align: left;
}
.footer-nav dt {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer-nav dt {
    font-size: 14px;
  }
}
.footer-nav dd {
  margin: 0px 0 12px 20px;
}
@media screen and (max-width: 767px) {
  .footer-nav dd {
    font-size: 13px;
    margin: 0px 0 12px;
  }
}

.footer a {
  display: flex;
  align-items: center;
  color: #fff;
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #fff;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 4px 15px rgba(0, 153, 68, 0.3);
  z-index: 100;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.1);
  opacity: 1;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

.top-mv-section {
  width: 100%;
  /* 動画の16:9比率を保つ魔法の1行。ワイドモニターでも自動で高さが伸びます */
  height: 600px;
  /* あまりに縦長になりすぎるのを防ぐための最大高さ */
  position: relative;
  overflow: hidden;
  background: #fff; /* 黒い隙間が出ないよう白背景に */
  opacity: 1 !important;
}

.top-mv-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 画面の横幅いっぱいに広げる */
  width: 100vw !important;
  height: 100% !important;
  /* 比率を維持したまま、エリアを隙間なく埋める */
  object-fit: cover;
  /* 車や家族（下半分）を優先的に映し出す設定 */
  object-position: center 60%;
}

.top-mv-video__content {
  position: fixed; /* 画面に固定 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 600px;
  z-index: -1; /* 背面に回す */
  pointer-events: none; /* 下の要素のクリックを邪魔しない */
  will-change: transform; /* Safari等の描画安定化 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-mv-video__content {
    height: 520px;
  }
}

.top-mv-video__content video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: bottom !important; /* 下基準で拡大 */
}

.top-mv-section h1 {
  width: 80px;
  height: auto;
  position: absolute;
  right: 25%;
  top: 100px;
}
@media screen and (max-width: 767px) {
  .top-mv-section h1 {
    right: 50%;
    margin-right: -40px;
    top: 60px;
  }
}

.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  background-color: #fff; /* 背後の動画を隠すために必須 */
  position: relative;
  z-index: 10; /* 動画より高い数値に */
}

.top-mv-section {
  transform: translateY(0) !important;
}

section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------
  PHILOSOPHY セクション
---------------------------------------- */
.top-philosophy-section {
  padding: 60px 0 100px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-philosophy-section {
    padding: 30px 0 50px;
  }
}
.top-philosophy-section .headline2 {
  text-align: center;
}

.top-philosophy-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4%;
}
@media screen and (max-width: 767px) {
  .top-philosophy-section__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 25px;
  }
}

/* Layout logic */
.top-philosophy-section__item {
  background-image: url(../images/top/sketch-01.png);
  background-size: 1014px 816px;
  background-repeat: no-repeat;
  background-position: right 4% top -2%;
}
@media screen and (max-width: 767px) {
  .top-philosophy-section__item {
    background-size: 380px auto;
    background-position: center bottom;
  }
}

.top-philosophy-section__item--type-01 {
  padding-bottom: 80px;
  margin-bottom: 120px;
}

.top-philosophy-section__item--type-02 {
  padding-bottom: 0;
  background-position: -507px -2%;
}
@media screen and (max-width: 767px) {
  .top-philosophy-section__item--type-02 {
    background-position: center bottom 60px;
  }
}

.top-philosophy-section__item--type-03 {
  background-image: url(../images/top/sketch-03.png);
  padding-bottom: 80px;
}

/* Content Area */
.top-philosophy-section__content {
  width: 100%;
  position: relative;
  padding: 2% 4% 0;
}
@media screen and (max-width: 767px) {
  .top-philosophy-section__content {
    padding: 4% 0;
  }
}

.top-philosophy-section__item.is-reverse .top-philosophy-section__content {
  padding: 2% 4% 0 50%;
}
@media screen and (max-width: 767px) {
  .top-philosophy-section__item.is-reverse .top-philosophy-section__content {
    padding: 0;
  }
}

.top-philosophy-section__title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 50px;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top-philosophy-section__title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

/* The Blue Dot Accessory */
.top-philosophy-section__dot {
  position: absolute;
  top: -35px;
  left: -30px;
  width: 92px;
  height: 92px;
  background-image: url(../images/top/title_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.top-philosophy-section__text {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 60px;
}

.tp-img01 {
  width: 402px;
  height: 402px;
  margin-top: 115px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tp-img01 {
    margin-top: 60px;
    width: 180px;
    height: 180px;
  }
}

.tp-img02 {
  width: 210px;
  height: 210px;
  position: absolute;
  right: 0;
  bottom: -180px;
  width: 180px;
  height: 180px;
}

.tp-img03 {
  width: 328px;
  height: 328px;
  position: relative;
  left: 240px;
}
@media screen and (max-width: 767px) {
  .tp-img03 {
    width: 180px;
    height: 180px;
    left: 0;
  }
}

.tp-img04 {
  width: 210px;
  height: 210px;
  position: relative;
  top: -100px;
  left: -50px;
  right: auto;
}
@media screen and (max-width: 767px) {
  .tp-img04 {
    width: 180px;
    height: 180px;
    top: -40px;
    left: 140px;
  }
}

.tp-img05 {
  width: 328px;
  height: 328px;
}
@media screen and (max-width: 767px) {
  .tp-img05 {
    width: 140px;
    height: 140px;
  }
}

/* ---------------------------------------
  SERVICE セクション
---------------------------------------- */
.top-service-section {
  width: 100%;
  min-height: 80vh; /* 画面の高さに合わせる */
  background-image: url("../images/top/service-bg.jpg"); /* 工場の写真 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
  color: #fff;
}
.top-service-section .headline2 .en {
  color: #fff;
}

/* 背景を暗くして文字を浮かせる */
.top-service-section__overlay {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-color: rgba(0, 0, 0, 0.4); /* 暗さの調整 */
  display: flex;
  align-items: center;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top-service-section__overlay {
    padding: 0;
  }
}

.top-service-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-service-section__inner {
    padding: 40px 40px;
  }
}

/* Header */
.top-service-section__header {
  margin-bottom: 40px;
}

.top-service-section__title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

.top-service-section__subtitle {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Body Text */
.top-service-section__body {
  margin-bottom: 80px;
}

.top-service-section__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
}

.top-service-section__message {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

/* Button */
.top-service-section .btn {
  padding: 23px 60px 21px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 7rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  position: relative;
  transition: 0.3s;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-service-section .btn {
    font-size: 0.875rem;
    display: block;
  }
}
.top-service-section .btn::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 20px;
  top: 22px;
  right: 25px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top-service-section .btn::before {
    top: 20px;
  }
}
.top-service-section .btn::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 25px;
  overflow: hidden;
  background: url(../images/common/arrow_white_blue.png);
  background-repeat: no-repeat;
  background-position: -15px center;
  background-size: 30px 15px;
  top: 22px;
  right: 30px;
  z-index: 2;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top-service-section .btn::after {
    top: 20px;
  }
}
.top-service-section .btn:hover {
  background-color: #143B7B;
}
.top-service-section .btn:hover::before {
  background: #143B7B;
}
.top-service-section .btn:hover::after {
  background-position: 0 center;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .top-service-section__title {
    font-size: 40px;
  }
  .top-service-section__lead,
  .top-service-section__message {
    font-size: 14px;
  }
  .top-service-section__lead br,
  .top-service-section__message br {
    display: none;
  }
  .top-service-section__lead,
  .top-service-section__message { /* スマホでは改行を解除 */ }
}
/* ---------------------------------------
  COMPANY セクション
---------------------------------------- */
.top-company-section {
  position: relative;
  padding: 260px 0 0;
  background-color: #fff;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-company-section {
    padding: 0;
  }
}

/* 背後の巨大な透かし文字 */
.top-company-section__bg-text {
  position: absolute;
  top: 20px;
  left: -40px;
  font-size: 200px;
  color: #ddd;
  line-height: 1;
  z-index: 3;
  font-weight: 100;
  pointer-events: none;
}

.top-company-section__inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

.top-company-section__container {
  display: flex;
}

/* 写真エリア */
.top-company-section__image {
  flex: 0 0 40%;
  position: relative;
  z-index: 3;
}

.top-company-section__image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* コンテンツエリア */
.top-company-section__content {
  flex: 0 0 60%; /* 写真と重なるように広めに設定 */
  margin-left: -10%; /* 写真に重ねる */
  margin-top: -10%;
  background-color: #fff;
  padding: 12.5% 0 80px 12.5%;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 500px;
  /* 方眼紙風のグリッド背景 */
  background-image: linear-gradient(rgba(135, 206, 250, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(135, 206, 250, 0.2) 1px, transparent 1px);
  background-size: 10px 10px;
}

.top-company-section__content-inner {
  padding: 80px 0;
}

.top-company-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.top-company-section__title {
  font-size: 42px;
  color: #2b60b8; /* デザインの青色 */
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

.top-company-section__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.top-company-section__body {
  text-align: center;
  margin-bottom: 40px;
}

.top-company-section__text {
  font-size: 16px;
  line-height: 2.2;
  color: #333;
  font-weight: 500;
  margin-bottom: 80px;
}

.top-company-section__action {
  text-align: center;
}

/* レスポンシブ */
@media screen and (max-width: 960px) {
  .top-company-section__container {
    flex-direction: column;
  }
  .top-company-section__image,
  .top-company-section__content {
    flex: 0 0 100%;
    width: 100%;
    margin-left: 0;
  }
  .top-company-section__content {
    padding: 60px 20px;
    margin-top: -30px; /* スマホでも少し重ねるとデザイン性が維持されます */
  }
  .top-company-section__bg-text {
    font-size: 120px;
    top: -19px;
    left: -20px;
  }
}
/* ---------------------------------------
  リクルート セクション
---------------------------------------- */
.top-recruit-section {
  position: relative;
  padding: 160px 0 200px;
  background: linear-gradient(135deg, #0052cc 0%, #00a3ff 100%); /* デザインの青 */
  background-image: url("../images/top/recruit-bg-texture.jpg"); /* 青い空/雲のテクスチャ */
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  height: 2085px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-recruit-section {
    height: auto;
    padding: 50px 0 100px;
    height: auto;
  }
}

.top-recruit-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-recruit-section__inner {
    max-width: 100%;
  }
}

/* メインコピー (CRAFT WITH...) */
.top-recruit-section__main-copy {
  font-size: 120px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  text-align: left;
}

.top-recruit-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top-recruit-section__header {
    display: block;
  }
}

.top-recruit-section__title-group {
  position: absolute;
  right: 50px;
  top: 400px;
}
@media screen and (max-width: 767px) {
  .top-recruit-section__title-group {
    position: relative;
    right: 0;
    top: 0;
  }
}

.top-recruit-section__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.top-recruit-section__subtitle {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* 中央の文章 */
.top-recruit-section__body {
  text-align: center;
  margin-bottom: 60px;
}

.top-recruit-section__text {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-recruit-section__text {
    font-size: 16px;
  }
}

.top-recruit-section__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

/* 浮遊写真チップのスタイリング */
.recruit-chip {
  position: absolute;
  z-index: 1;
  transition: transform 0.5s ease-out;
}

.recruit-chip img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

/* 左上：メインコピー付近 */
.chip-1 {
  width: 140px;
  top: 0;
  right: -2%;
}

/* 右上：RECRUITタイトル付近 */
.chip-2 {
  width: 110px;
  top: 370px;
  left: 50%;
}

/* 左中央：テキストの左横 */
.chip-3 {
  width: 160px;
  top: 560px;
  left: 70%;
}

/* 右中央：テキストの右横 */
.chip-4 {
  width: 300px;
  top: 60%;
  left: 0.5%;
}

/* 中央：リード文の少し上 */
.chip-5 {
  width: 300px;
  top: 920px;
  left: 80%;
}

/* 左下：ボタンの左下 */
.chip-6 {
  width: 215px;
  top: 960px;
  left: -100px;
}

/* 右下：ボタンの右下 */
.chip-7 {
  width: 150px;
  top: 1200px;
  left: 28%;
}

/* 最下部左：JOIN OUR TEAMの背後付近 */
.chip-8 {
  width: 215px;
  top: 1320px;
  left: 70%;
}

/* 最下部右：JOIN OUR TEAMの背後付近 */
.chip-9 {
  width: 250px;
  top: 1580px;
  left: 20%;
}

/* レスポンシブ：スマホでは要素を絞る */
@media screen and (max-width: 1024px) {
  .chip-1, .chip-3, .chip-4, .chip-7 {
    display: none;
  }
  .recruit-chip {
    opacity: 0.6;
  }
}
/* 足元のJOIN OUR TEAM */
.top-recruit-section__footer-text {
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 200;
  line-height: 1;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .top-recruit-section__main-copy {
    font-size: 40px;
  }
  .top-recruit-section__title {
    font-size: 32px;
  }
  .recruit-chip {
    display: none;
  } /* スマホでは視認性のため非表示か、厳選して配置 */
  .top-recruit-section__footer-text {
    font-size: 60px;
    bottom: 10px;
  }
}
/* ---------------------------------------
  News セクション
---------------------------------------- */
.top-news-section {
  padding: 6.944vw;
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-news-section {
    width: 100%;
    display: block;
  }
}
.top-news-section h2 {
  width: 25.556vw;
}
.top-news-section h2 .en {
  color: var(--color-primary);
  font-size: 56px;
  display: block;
  line-height: 1.25;
}
.top-news-section .news-contents {
  width: calc(100% - 25.556vw);
}
@media screen and (max-width: 767px) {
  .top-news-section .news-contents {
    width: 100%;
  }
}

.top-news-section {
  /* 親要素に少し余裕を持たせる（ボタンがはみ出さないよう） */
}
@media screen and (max-width: 1024px) {
  .top-news-section {
    display: block !important;
    padding-bottom: 60px !important;
  }
}
.top-news-section .btn {
  /* --- PC用のデフォルト --- */
  position: absolute;
  left: 6.944vw;
  bottom: 9vw;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ★ タブレット・スマホ（1024px以下）ここから一括制御 */
}
@media screen and (max-width: 1024px) {
  .top-news-section .btn {
    /* 浮かせるのをやめて、普通のブロックとして扱う */
    position: relative !important;
    inset: auto !important; /* top, right, bottom, leftをすべてリセット */
    /* 位置をリストの下に強制 */
    margin: 40px auto 0 !important; /* 投稿リストから40px離して中央寄せ */
    /* デザインを固定（丸みが歪まないように） */
    width: 280px !important;
    height: 54px !important;
    border-radius: 50px !important;
    /* フォントサイズと文字の折り返しを防ぐ */
    font-size: 16px !important;
    white-space: nowrap !important;
    /* 背景色や文字色が消えている場合はここで再定義 */
    background-color: var(--color-primary);
    color: #fff;
  }
}
.top-news-section .btn {
  /* スマホ（767px以下）での微調整 */
}
@media screen and (max-width: 767px) {
  .top-news-section .btn {
    width: 100% !important;
    max-width: 300px !important;
    margin-top: 30px !important;
  }
}

.top-parallax {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .top-parallax {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .recruit-chip {
    display: none !important;
  }
}
/* ---------------------------------------
  section-service-mess
---------------------------------------- */
.section-service-mess {
  padding: 0 6.944vw;
  margin-bottom: 6.944vw;
}
@media screen and (max-width: 767px) {
  .section-service-mess {
    padding: 6.944vw 6.944vw 0;
  }
}

.service-mess {
  max-width: 57.639vw;
  position: relative;
  top: -2em;
}
@media screen and (max-width: 767px) {
  .service-mess {
    width: 100%;
    max-width: 100%;
    top: 0;
  }
}

.highlight-text {
  font-size: 2.5vw;
  font-weight: bold;
  line-height: 1.5;
  color: #BCB8B8; /* 初期のグレー */
  position: relative;
  font-feature-settings: "palt" 1;
  /* 背景グラデーションの設定 */
  background-image: linear-gradient(90deg, #22d3ee, #2860bc);
  background-repeat: no-repeat;
  background-size: 0% 100%; /* ここがスクロールで伸びる */
  /* 1行ずつ繋げて塗るための魔法 */
  display: inline;
  padding: 0.1em;
  /* 文字色を白に変えるための設定 */
  transition: color 0.05s linear;
}
@media screen and (max-width: 767px) {
  .highlight-text {
    font-size: 18px;
  }
}

/* 背景が重なった部分だけ文字を白にする */
/* シンプルに color: #fff と background-clip: text を組み合わせます */
.highlight-text.active {
  -webkit-background-clip: padding-box; /* 背景全体を塗る */
  color: #fff;
  background-clip: padding-box;
}

/* 文字色だけを後から制御するためのテクニック */
.text-fill {
  background-image: linear-gradient(90deg, #fff 50%, #BCB8B8 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

/* ---------------------------------------
  section-products
---------------------------------------- */
.section-products {
  width: 100%;
  background-image: linear-gradient(90deg, #22d3ee, #2860bc);
}
.section-products .headline2 {
  color: #fff;
}
.section-products .en {
  color: #fff;
}

.product-wrap {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .product-wrap {
    display: block !important; /* 強制的に縦並び */
    height: auto !important;
  }
}

.product-point {
  width: 770px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .product-point {
    width: 100%;
    padding: 0;
  }
}
.product-point p {
  color: #fff;
  margin-bottom: 20px;
}
.product-point p .notice {
  font-size: 14px;
}

.product-point-img {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .product-point-img {
    width: 335px;
    margin: 0 auto 30px;
  }
}
.product-point-img span {
  position: absolute;
  display: block;
}
.product-point-img span img {
  width: 100%;
  height: auto;
}

.product-point-img .point01 {
  width: 215px;
  height: 92px;
  left: 114px;
  top: 59px;
}

.product-point-img .point02 {
  width: 151px;
  height: 130px;
  left: 276px;
  top: -27px;
}

.product-point-img .point03 {
  width: 172px;
  height: 120px;
  left: 390px;
  top: 244px;
}

.product-point-img .point04 {
  width: 138px;
  height: 194px;
  left: 428px;
  top: -58px;
}

@media screen and (max-width: 767px) {
  .product-point-img .point01 {
    width: 107px;
    height: 46px;
    left: 40px;
    top: 32px;
  }
  .product-point-img .point02 {
    width: 75px;
    height: 65px;
    left: 126px;
    top: -10px;
  }
  .product-point-img .point03 {
    width: 86px;
    height: 60px;
    left: 190px;
    top: 115px;
  }
  .product-point-img .point04 {
    width: 69px;
    height: 97px;
    left: 210px;
    top: -26px;
  }
}
.product-point-details {
  width: calc(100% - 770px);
  padding-left: 50px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .product-point-details {
    border-left: none;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    width: 100% !important; /* 幅をいっぱいにして下に落とす */
    padding: 25px 20px 50px;
  }
}

.product-point-details-slider li h3 {
  padding: 18px 0 0 75px;
  margin-bottom: 20px;
  position: relative;
}
.product-point-details-slider li .num {
  display: block;
  background-color: #fff;
  width: 62px;
  height: 62px;
  color: #2860bc;
  border-radius: 31px;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  padding: 20px 0 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.product-point-details-slider li .product-thumb {
  margin-bottom: 40px;
}
.product-point-details-slider li h4 {
  display: inline-block;
  background-color: #000;
  padding: 0 2px;
}
.product-point-details-slider li p {
  display: block;
  margin-top: 20px;
}

/* 親コンテナのレイアウト */
.product-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px; /* デザインに合わせて調整 */
  margin: 0 auto;
  padding: 0 0; /* 左右矢印用の余白 */
}

/* 数字ナビゲーション */
.slider-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: absolute;
  right: -30px;
  top: 50%;
}

.indicator-item {
  color: rgba(255, 255, 255, 0.4); /* 通常時は半透明 */
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.indicator-item.active {
  color: #fff; /* アクティブ時は白 */
}

/* 数字の間の縦線 */
.indicator-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin: 10px auto 0;
}

/* スライダー本体 */
.product-slider-viewport {
  overflow: hidden;
  flex: 1;
}

.product-point-details-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider-item {
  flex: 0 0 100%;
}

/* 矢印ナビゲーション */
.arrow-btn, .prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* くの字の矢印をCSSで描画 */
.prev-btn::before, .next-btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 5px solid #fff;
  border-left: 5px solid #fff;
}

.prev-btn {
  left: 0;
}

.prev-btn::before {
  transform: rotate(-45deg);
}

.next-btn {
  right: 0;
}

.next-btn::before {
  transform: rotate(135deg);
}

/* ---------------------------------------
  section-features
---------------------------------------- */
.group-area.is-features {
  display: flex;
  align-items: flex-start;
  border-bottom: #dddddd solid 1px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .group-area.is-features {
    display: block;
  }
}
.group-area.is-features h3 {
  width: 175px;
  margin: 0;
}
.group-area.is-features .group-list {
  padding-left: 0;
}
.group-area.is-features .group {
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .group-area.is-features .group {
    width: 100%;
    display: block;
    gap: 0;
  }
}

.slider-list li {
  width: 400px;
}
.slider-list li .btn {
  font-size: 13px;
  padding: 10px 40px 10px 20px;
}

.slider-list li .btn::before {
  content: "";
  width: 20px;
  height: 20px;
  top: 8px;
  right: 12px;
}
@media screen and (max-width: 767px) {
  .slider-list li .btn::before {
    top: 50%;
    margin-top: -10px;
  }
}

.slider-list li .btn::after {
  content: "";
  width: 12px;
  height: 8px;
  top: 14px;
  right: 18px;
}
@media screen and (max-width: 767px) {
  .slider-list li .btn::after {
    top: 50%;
    margin-top: -4px;
  }
}

/* ---------------------------------------
  section-flow 
---------------------------------------- */
.section-flow {
  background-image: url(../images/common/bg_grid.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: 50% auto;
}

.slider-wrapper {
  margin: 0 auto;
  position: relative;
}

/* Carousel Body */
.slider-container {
  overflow-x: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For IE */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin-right: calc(var(--section-padding) * -1);
  scroll-snap-type: x mandatory;
}

.slider-container::-webkit-scrollbar {
  display: none; /* For Chrome, Safari */
}

/* カスタムポインタ (VIEW MORE) */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  pointer-events: none; /* マウスイベントを邪魔しない */
  z-index: 9999;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: left, top;
}

/* 画像ホバー時にポインタを表示 */
.custom-cursor.active {
  opacity: 1;
  transform: scale(1);
}

.slider-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  padding-right: var(--section-padding);
}

.slider-list li {
  flex: 0 0 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.thumb {
  width: 100%;
  overflow: hidden;
  background: #eee;
  cursor: none;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: none;
}

.slider-list li:hover .thumb img {
  transform: scale(1.1);
}

.slider-list h3 {
  padding: 20px 0 10px;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .slider-list h3 {
    font-size: 16px;
  }
}

.slider-list h3 span {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.125rem;
}

.slider-list p {
  padding: 0 20px 20px;
  margin-top: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .slider-list p {
    padding: 0 0 20px;
  }
}

/* Footer Layout (Scrollbar + Controls) */
.slider-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

/* Pseudo Scrollbar Container */
.scrollbar-container {
  flex-grow: 1; /* Take remaining space */
  height: 2px;
  background: #ddd;
  position: relative;
  border-radius: 2px;
}

.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0; /* Calculated via JS */
  background: var(--color-primary);
  border-radius: 2px;
  transition: left 0.1s ease-out;
}

/* Slide Buttons */
.slider-controls {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: #fff;
}

.control-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

.control-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .custom-cursor {
    display: none;
  }
  .thumb {
    cursor: pointer;
  }
}
@media (max-width: 768px) {
  .slider-list li {
    flex: 0 0 260px;
  }
  .slider-footer {
    gap: 15px;
  }
}
/* ---------------------------------------
  section-people
---------------------------------------- */
.section-people {
  background-image: url(../images/common/bg_grid.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: 50% auto;
}

.people-bnr {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 440px;
  border-radius: 20px;
  display: block;
  background-image: linear-gradient(90deg, #22d3ee, #2860bc, #22d3ee);
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.5s ease;
  text-decoration: none;
  overflow: hidden; /* アニメーションのはみ出し防止 */
}
@media screen and (max-width: 767px) {
  .people-bnr {
    height: 320px;
  }
}

.people-bnr:hover {
  background-position: 100% 0%;
}

/* 共通の画像設定 */
.people-bnr::before,
.people-bnr::after {
  display: block;
  content: "";
  width: 226px; /* 452pxの半分 */
  height: 140%; /* 傾斜による端の切れ防止のため高めに設定 */
  background-repeat: repeat-y;
  /* 元サイズ(452x2590)の半分 = 226x1295 */
  background-size: 226px 1295px;
  position: absolute;
  top: -20%; /* 傾斜の調整用 */
  z-index: 1;
  pointer-events: none;
  /* 傾きを反対(8度)に設定 */
  transform: rotate(8deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .people-bnr::before,
  .people-bnr::after {
    opacity: 0.3;
  }
}

/* 左側の人物：img01 (上へ移動) */
.people-bnr::before {
  background-image: url(../images/service/bnr_recruit_img01.png);
  /* 右端から66px + 右画像226px + 隙間10px = 302px */
  right: 302px;
  /* 初期位置を少しずらす（オフセット） */
  background-position: 0 -150px;
}

/* 右側の人物：img02 (下へ移動) */
.people-bnr::after {
  background-image: url(../images/service/bnr_recruit_img02.png);
  /* 右端から66px内側に配置 */
  right: 66px;
  /* 初期位置（オフセットなし） */
  background-position: 0 0;
}

/* ホバー関係なく、最初から常にアニメーションを実行 */
.people-bnr::before {
  animation: moveUpSlant 15s linear infinite;
}

.people-bnr::after {
  animation: moveDownSlant 15s linear infinite;
}

/* アニメーション定義（1295px周期でループ） */
@keyframes moveUpSlant {
  from {
    background-position: 0 -150px;
  }
  to {
    background-position: 0 -1445px;
  } /* -150 - 1295 = -1445 */
}
@keyframes moveDownSlant {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 1295px;
  }
}
/* テキスト・ボタン周り */
.people-bnr-headding {
  position: relative;
  z-index: 2;
  padding: 40px 40px 40px 5.556vw;
}
@media screen and (max-width: 767px) {
  .people-bnr-headding {
    padding: 40px 20px;
    width: 100%;
  }
}

.people-bnr-headding h3 {
  margin: 0 0 10px 0;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.people-bnr-headding p {
  font-size: 1.75rem;
  margin: 0 0 1.75em 0;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .people-bnr-headding p {
    font-size: 16px;
  }
}

.btn-white {
  display: inline-block;
  min-width: 300px;
  padding: 18px 60px 18px 60px;
  border-radius: 7rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: #fff solid 1px;
  color: #fff;
  position: relative;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn-white {
    display: block;
    min-width: auto;
  }
}

.people-bnr:hover .btn-white,
.data-bnr:hover .btn-white {
  border: var(--color-primary) solid 1px;
  background-color: var(--color-primary);
}

.btn-white::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.5s;
}

.people-bnr:hover .btn-white::before,
.data-bnr:hover .btn-white::before {
  background: var(--color-primary);
}

.btn-white::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 25px;
  background: url(../images/common/arrow_white_blue.png);
  background-repeat: no-repeat;
  background-position: -15px center;
  background-size: 30px 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  z-index: 2;
  transition: 0.5s;
  overflow: hidden;
}

.people-bnr:hover .btn-white::after,
.data-bnr:hover .btn-white::after {
  background-position: 0 center;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
  .people-bnr::before, .people-bnr::after,
  .data-bnr::before, .people-bnr::after {
    width: 150px;
    background-size: 150px auto;
  }
  .people-bnr::after {
    right: 20px;
  }
  .people-bnr::before {
    right: 180px;
  } /* 20 + 150 + 10 */
  .data-bnr::after {
    right: 20px;
  }
  .data-bnr::before {
    right: 180px;
  } /* 20 + 150 + 10 */
}
/* ---------------------------------------
  ごあいさつ
---------------------------------------- */
.greeting {
  padding-top: 6.944vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .greeting {
    display: block;
    gap: 0;
    padding: 0 6.944vw;
  }
}

.message-box {
  width: 50%;
  padding-left: 6.944vw;
}
@media screen and (max-width: 767px) {
  .message-box {
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.message-box .message-copy {
  font-size: 3.611vw;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .message-box .message-copy {
    font-size: 24px;
  }
}

.message-box .message-copy-sub {
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #666;
}
@media screen and (max-width: 767px) {
  .message-box .message-copy-sub {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
  }
}

.message-box p {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .message-box p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.ceo-info {
  margin-top: 4rem;
  list-style: 1;
}
@media screen and (max-width: 767px) {
  .ceo-info {
    margin-top: 15px;
  }
}
.ceo-info p {
  font-size: 13px;
}
.ceo-info .name {
  font-size: 24px;
}
.ceo-info .name span {
  font-size: 14px;
  margin-right: 10px;
}

.ceo-info.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .ceo-info.is-pc {
    display: none;
  }
}

.ceo-info.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .ceo-info.is-sp {
    display: block;
    text-align: right;
  }
}

/* ---------------------------------------
  社是
---------------------------------------- */
.philosophy {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .philosophy {
    display: block;
    margin-top: 40px;
  }
}

.philosophy-img {
  width: 42.014vw;
}
@media screen and (max-width: 767px) {
  .philosophy-img {
    width: 100%;
  }
}
.philosophy-img img {
  width: 100%;
}

.philosophy-box {
  width: calc(100% - 42.014vw);
  padding: 3.944vw 6.944vw;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .philosophy-box {
    width: 100%;
  }
}
.philosophy-box dt {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.philosophy-box dd {
  font-size: 1rem;
  border-bottom: #DDDDDD solid 1px;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.philosophy-box dd .philosophy_text {
  width: 232px;
  height: auto;
}

.philosophy-box dd li {
  list-style: decimal;
  margin: 10px 0 10px 20px;
}

.philosophy-box dd li::marker {
  color: var(--color-primary);
}

/* ---------------------------------------
  会社情報 / 沿革
---------------------------------------- */
.overview {
  background-color: var(--color-bg);
}

.outline-lsit {
  width: 100%;
  padding-left: 21.181vw;
}
@media screen and (max-width: 767px) {
  .outline-lsit {
    padding: 0;
  }
}
.outline-lsit dt {
  width: 21.528vw;
  padding: 44px 0;
  color: var(--color-primary);
  float: left;
}
.outline-lsit dd {
  padding: 44px 0 44px 21.528vw;
  border-bottom: #ddd solid 1px;
}

/* ---------------------------------------
  グループ会社
---------------------------------------- */
.group-area h3 {
  font-size: 28px;
  color: var(--color-primary);
  margin: 2em 0;
}

.group-list {
  padding-left: 21.528vw;
}
@media screen and (max-width: 767px) {
  .group-list {
    padding-left: 0;
  }
}

.group {
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: #A0A0A0 solid 1px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .group {
    display: block;
  }
}

.g-compnay-img {
  width: 24.653vw;
}
@media screen and (max-width: 767px) {
  .g-compnay-img {
    width: 100%;
    margin: 20px auto;
  }
}

.g-compnay-info {
  width: calc(100% - 24.653vw);
}
@media screen and (max-width: 767px) {
  .g-compnay-info {
    width: 100%;
  }
}
.g-compnay-info h4 {
  font-size: 24px;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .g-compnay-info h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.g-compnay-info .url {
  font-size: 1rem;
}
.g-compnay-info .url a {
  color: #989898;
  text-decoration: underline;
}
.g-compnay-info ul {
  margin-top: 2em;
  width: 100%;
}
.g-compnay-info ul li {
  float: left;
  width: 45%;
  list-style: disc outside;
  margin: 3px 0 3px 20px;
}
@media screen and (max-width: 767px) {
  .g-compnay-info ul li {
    float: none;
  }
}
.g-compnay-info .discription {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .g-compnay-info .discription {
    margin-top: 0;
    font-size: 14px;
  }
}

/* ---------------------------------------
  生産工場
---------------------------------------- */
.factory-list {
  display: flex;
  gap: 5.556vw;
}
@media screen and (max-width: 767px) {
  .factory-list {
    display: block;
    gap: 0;
  }
}

.factory-info {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .factory-info {
    width: 100%;
    margin-bottom: 30px;
  }
}
.factory-info h3 {
  font-size: 1.125rem;
  margin: 15px 0 10px;
}
.factory-info p {
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .factory-info p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.ico-map {
  padding-left: 20px;
  margin-left: 10px;
  position: relative;
  color: var(--color-primary);
  text-decoration: underline;
}
.ico-map:hover {
  text-decoration: none;
}
.ico-map::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/common/ico_map.svg);
  background-repeat: no-repeat;
  background-position: 14px 14px;
  background-position: center;
  position: absolute;
  left: 4px;
  top: 4px;
}

/* ----------------------------------------------
  MV
------------------------------------------------- */
#recruit-dir main {
  padding: 0;
}
@media screen and (max-width: 767px) {
  #recruit-dir main {
    padding: 0;
  }
}

#recruit-dir .header .gnav ul li:not(.is-contact) a {
  color: #fff;
}

#recruit-dir .header.is-white .gnav ul li:not(.is-contact) a {
  color: #000;
}

#recruit-dir .header .gnav ul li:not(.is-contact) a::after {
  background-color: #fff;
}

#recruit-dir .header.is-white .gnav ul li:not(.is-contact) a::after {
  background-color: var(--color-primary);
}

#recruit-dir .header .logo-mark img {
  filter: brightness(0) invert(1);
}

#recruit-dir .header.is-white .logo-mark img,
#recruit-dir .header.is-nav-open .logo-mark img {
  filter: none;
}

#recruit-dir .header .menu-btn span {
  background-color: #fff;
}

#recruit-dir .header .menu-btn.is-active span {
  background-color: #000;
}

#recruit-dir .header.is-white .menu-btn span {
  background-color: #000;
}

#recruit-dir .pankuzu-list {
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 2;
}
#recruit-dir .pankuzu-list li {
  color: #fff;
}
#recruit-dir .pankuzu-list li a {
  color: #efefef;
}
@media screen and (max-width: 767px) {
  #recruit-dir .pankuzu-list {
    top: 70px;
  }
}

#recruit-dir .pankuzu-list li .ico-arrow::before {
  border-top: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

.section-rec-mv {
  width: 100%;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-rec-mv {
    overflow: hidden;
    width: 100%;
    height: 480px;
  }
  .section-rec-mv img {
    height: 480px;
    width: auto;
    max-width: auto !important;
    object-fit: cover;
  }
}
.section-rec-mv .headding {
  position: absolute;
  left: 6.944vw;
  top: 12.625vw;
}
@media screen and (max-width: 767px) {
  .section-rec-mv .headding {
    width: 90%;
    left: 5%;
    top: 100px;
  }
}
.section-rec-mv .headding h1 {
  font-size: 8.681vw;
  line-height: 1;
  font-weight: 800;
  font-feature-settings: "palt";
  margin-bottom: 10px;
}
.section-rec-mv .headding p {
  font-size: 1.389vw;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .section-rec-mv .headding p {
    font-size: 15px;
  }
}

.section-rec-mv .headding h1.animate-line {
  margin-bottom: 40px;
  mix-blend-mode: overlay;
  text-transform: capitalize;
}

/* 行の設定 */
.line {
  position: relative;
  display: inline-block; /* ここをblockからinline-blockに変更 */
  overflow: hidden;
  vertical-align: bottom;
}

/* 帯（擬似要素）の設定 */
.line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333; /* ★帯の色：お好みで変更してください */
  transform: scaleX(0); /* 最初は幅0 */
  transform-origin: left;
  z-index: 2;
}

/* 文字の設定 */
.line span {
  display: inline-block;
  opacity: 0; /* 最初は隠す */
}

/* ---------------------------------------
  .section-rec-message
---------------------------------------- */
.section-rec-message {
  padding: 8.944vw 6.944vw 6.944vw;
  background-image: linear-gradient(90deg, #22d3ee, #2860bc);
  color: #fff;
  display: flex;
  align-items: normal;
  height: 72.292vw;
  min-height: 1041px;
  gap: 40px;
  position: relative;
}
.section-rec-message .headline2 {
  color: #fff;
}
.section-rec-message .headline2 .en {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-rec-message {
    display: block;
    height: 100%;
    min-height: auto;
    padding: 8.944vw 6.944vw;
  }
}

.section-rec-message::before {
  display: block;
  content: "";
  width: 46.111vw;
  height: 59.722vw;
  max-width: 664px;
  max-height: 860px;
  background-image: url(../images/recruit/message_bg_img.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .section-rec-message::before {
    width: 80%;
    height: 80%;
    background-size: 100% auto;
  }
}

.section-rec-message-copy {
  width: 62.5%;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}
.section-rec-message-copy .discription {
  font-size: 3.611vw;
  font-weight: 800;
  margin-bottom: 1em;
}
.section-rec-message-copy .sub-discription {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .section-rec-message-copy {
    width: 100%;
  }
  .section-rec-message-copy .discription {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1em;
  }
  .section-rec-message-copy .sub-discription {
    font-size: 16px;
  }
}

.section-rec-message-read {
  padding: 9.097vw 2vw 2vw 2vw;
  width: 37.5%;
  position: relative;
  z-index: 2;
}
.section-rec-message-read p:not(:last-child) {
  margin-bottom: 1.25em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .section-rec-message-read {
    width: 100%;
    margin-top: 40px;
    padding: 0;
  }
  .section-rec-message-read p:not(:last-child) {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* ---------------------------------------
  .section-rec-work
---------------------------------------- */
.section-rec-work {
  width: 100%;
  background-image: url(../images/recruit/works_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.section-rec-work .headline2 {
  color: #fff;
}
.section-rec-work .headline2 .en {
  color: #fff;
}

.section-rec-work-inner {
  display: flex;
  padding: 10.944vw 6.944vw 6.944vw;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .section-rec-work-inner {
    width: 100%;
    display: block;
  }
}

.section-rec-work-copy {
  width: 36%;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}
.section-rec-work-copy .discription {
  font-size: 2.5vw;
  font-weight: 800;
  margin-bottom: 1em;
  font-feature-settings: "palt";
}
.section-rec-work-copy .sub-discription {
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .section-rec-work-copy {
    width: 100%;
  }
  .section-rec-work-copy .discription {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1em;
    font-feature-settings: "palt";
  }
  .section-rec-work-copy .sub-discription {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.section-rec-work-img {
  position: relative;
  width: 64%;
}
@media screen and (max-width: 767px) {
  .section-rec-work-img {
    width: 100%;
    padding-bottom: 40px;
  }
}

.section-rec-work-img .ani-img1 {
  width: 12.847vw;
  height: 12.847vw;
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  bottom: -40px;
}
@media screen and (max-width: 767px) {
  .section-rec-work-img .ani-img1 {
    position: relative;
    width: 90px;
    height: 90px;
  }
}

.section-rec-work-img .ani-img2 {
  width: 30.556vw;
  height: 30.556vw;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  top: -40px;
  float: right;
}
@media screen and (max-width: 767px) {
  .section-rec-work-img .ani-img2 {
    top: 0px;
  }
}

.section-rec-work-img .ani-img1 img,
.section-rec-work-img .ani-img2 img {
  width: 100%;
  height: auto;
}

.section-rec-job-inner {
  padding: 0 6.944vw 80px;
}
.section-rec-job-inner h4 {
  border-top: solid 1px var(--color-primary);
  padding: 3rem 0;
}

.works-job-list {
  display: flex;
  gap: 40px;
  font-size: 2.222vw;
}
@media screen and (max-width: 767px) {
  .works-job-list {
    display: block;
    font-size: 32px;
    gap: 0px;
  }
  .works-job-list li {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .works-job-list h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.works-job-list h5 span {
  font-size: 4.514vw;
  color: #22d3ee;
  position: relative;
  top: -1px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .works-job-list h5 span {
    font-size: 32px;
  }
}
.works-job-list p {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 15px;
}

.btn-wrap-center {
  text-align: center;
}

.section-rec-job-inner .btn-wrap-center {
  margin-top: 4rem;
}

.btn-wrap-center .btn-white:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-wrap-center .btn-white::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.5s;
}

.btn-wrap-center .btn-white:hover::before {
  background-color: var(--color-primary);
}

.btn-wrap-center .btn-white:hover::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 25px;
  background: url(../images/common/arrow_white_blue.png);
  background-repeat: no-repeat;
  background-position: -15px center;
  background-size: 30px 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  z-index: 2;
  transition: 0.5s;
  overflow: hidden;
}

.btn-wrap-center .btn-white:hover::after {
  background-position: 0 center;
}

/* ---------------------------------------
  データバナー
---------------------------------------- */
.data-bnr {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 440px;
  border-radius: 20px;
  display: block;
  background-image: linear-gradient(90deg, #22d3ee, #2860bc, #22d3ee);
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.5s ease;
  text-decoration: none;
  overflow: hidden; /* アニメーションのはみ出し防止 */
}

.data-bnr:hover {
  background-position: 100% 0%;
}

.data-bnr::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/recruit/date_bnr_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 0;
  position: absolute;
  left: 0;
}

/* テキスト・ボタン周り */
.data-bnr-headding {
  position: relative;
  z-index: 2;
  padding: 40px 40px 40px 5.556vw;
}
@media screen and (max-width: 767px) {
  .data-bnr-headding {
    padding: 40px;
    width: 100%;
  }
}

.data-bnr-headding h3 {
  margin: 0 0 10px 0;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.data-bnr-headding p {
  font-size: 1.75rem;
  margin: 0 0 0.5em 0;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .data-bnr-headding p {
    font-size: 1.5rem;
  }
}

.data-bnr-headding p.sub-read {
  font-size: 1rem;
  margin: 0 0 2em 0;
}

/* ---------------------------------------
  .factory-container　工場案内
---------------------------------------- */
.factory-container {
  scroll-behavior: smooth;
  background-color: #F4F7FC;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .factory-container {
    padding: 60px 0 0;
  }
}

.map-wrapper {
  width: 100%;
  max-width: 1240px;
  height: 620px;
  margin: 0 auto;
  position: relative;
  margin: 0 auto;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .map-wrapper {
    max-width: 100%;
    padding: 0 20px;
    height: auto;
  }
}
.map-wrapper h2 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 40px;
}
.map-wrapper .en-title {
  font-size: 105px;
  display: block;
  line-height: 1;
  font-weight: 900;
  color: #efefef;
}
@media screen and (max-width: 767px) {
  .map-wrapper .en-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .map-wrapper {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .map-wrapper .nakatsu-factory {
    order: 2;
  }
  .map-wrapper .usa-factory {
    order: 3;
    display: block;
  }
}
.usa-factory {
  display: block;
  width: 557px;
  height: 349px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .usa-factory {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important; /* 80%だと小さすぎる可能性があるので一旦100%に */
    height: auto !important;
    margin: 0 auto !important;
    order: 2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
@media screen and (max-width: 767px) {
  .usa-factory {
    position: relative;
    width: 350px;
    height: 280px;
    margin: 0 auto;
  }
}

.nakatsu-factory {
  display: block;
  width: 818px;
  height: 498px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .nakatsu-factory {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    height: auto !important;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .nakatsu-factory {
    position: relative;
    width: 100%;
    height: 240px;
  }
}

/* ピン（ボタン）の共通スタイル */
.map-pin {
  position: absolute;
  display: block;
  padding: 20px 20px 20px 35px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  /* 浮遊アニメーション */
  animation: floating 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .map-pin {
    padding: 15px 20px 15px 30px;
  }
}

/* アイコン（Vマーク）の擬似要素 */
.map-pin::before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../images/recruit/ico-arrow.svg);
  background-size: contain;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .map-pin::before {
    width: 15px;
    height: 15px;
  }
}

/* ホバー演出 */
.map-pin:hover {
  background-color: #1a4475;
  transform: scale(1.1) translateY(-5px);
  z-index: 10;
}

/* --- 宇佐工場 エリア --- */
/* --- 宇佐工場 エリア --- */
.usa-factory {
  position: relative;
}
.usa-factory .pin-press {
  position: absolute;
  top: 80px;
  left: 130px;
  /* ★ 1024px以下（タブレット）で動かない場合は、ここをpxで調整 */
}
@media screen and (max-width: 1024px) {
  .usa-factory .pin-press {
    top: 120px !important;
    left: 220px !important;
  }
}
.usa-factory .pin-press {
  /* ★ 767px以下（スマホ）での調整 */
}
@media screen and (max-width: 767px) {
  .usa-factory .pin-press {
    top: 40px !important;
    left: 60px !important;
  }
}

/* --- 中津工場 エリア --- */
.pin-urethane {
  left: 350px;
  top: 25px;
} /* ウレタン */
.pin-trim {
  left: 240px;
  top: 70px;
} /* トリム */
.pin-bankin {
  left: 540px;
  top: 110px;
} /* 板金 */
.pin-keiri {
  left: 120px;
  top: 150px;
} /* 経理 */
.pin-kobai {
  left: 70px;
  top: 220px;
} /* 購買 */
.pin-somu {
  left: 140px;
  top: 250px;
} /* 総務 */
.pin-seisan-shien {
  left: 270px;
  top: 180px;
} /* 生産支援 */
.pin-kumitate {
  left: 420px;
  top: 140px;
} /* 組立 */
.pin-komu {
  left: 250px;
  top: 260px;
} /* 工務 */
.pin-hinshitsu {
  left: 350px;
  top: 230px;
} /* 品質 */
.pin-kensa {
  left: 380px;
  top: 280px;
} /* 検査 */
@media screen and (max-width: 767px) {
  .pin-urethane {
    left: 190px;
    top: 0px;
  } /* ウレタン */
  .pin-trim {
    left: 80px;
    top: 10px;
  } /* トリム */
  .pin-bankin {
    left: 240px;
    top: 40px;
  } /* 板金 */
  .pin-keiri {
    left: 20px;
    top: 45px;
  } /* 経理 */
  .pin-kobai {
    left: 0px;
    top: 90px;
  } /* 購買 */
  .pin-somu {
    left: 30px;
    top: 130px;
  } /* 総務 */
  .pin-seisan-shien {
    left: 100px;
    top: 70px;
  } /* 生産支援 */
  .pin-kumitate {
    left: 220px;
    top: 90px;
  } /* 組立 */
  .pin-komu {
    left: 120px;
    top: 120px;
  } /* 工務 */
  .pin-hinshitsu {
    left: 210px;
    top: 130px;
  } /* 品質 */
  .pin-kensa {
    left: 150px;
    top: 170px;
  } /* 検査 */
}
/* 下部説明セクション */
.description-area {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .description-area {
    padding: 0 25px;
  }
}

/* 各項目の外枠 */
.desc-item {
  border-bottom: 1px solid #e0e0e0; /* 区切り線 */
  padding: 60px 30px;
  transition: background-color 0.5s ease;
  /* アンカーリンクで飛んだ際、ヘッダーに隠れないための余白 */
  scroll-margin-top: 80px;
}

/* 最後の項目の線は消す */
.desc-item:last-child {
  border-bottom: none;
}

/* コンテンツの内側（デザインに合わせて横並びにする場合はFlexを使用） */
.desc-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .desc-inner {
    padding: 0 20px;
  }
}

/* タイトル（左側：青い文字の部分） */
.desc-title {
  flex: 0 0 200px; /* タイトルの幅を固定 */
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #2b6cb0; /* デザインのキーカラー */
  line-height: 1.4;
}

/* テキスト（右側：説明文） */
.desc-text {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify; /* 日本語を綺麗に見せる */
}

/* --- インタラクション --- */
/* アンカーリンクでターゲットになった時のハイライト演出 */
.desc-item:target {
  background-color: rgba(43, 108, 176, 0.05); /* ほんのり青く */
  animation: flashHighlight 2s ease-out;
}

@keyframes flashHighlight {
  0% {
    background-color: rgba(43, 108, 176, 0.2);
  }
  100% {
    background-color: rgba(43, 108, 176, 0.05);
  }
}
/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
  .desc-inner {
    flex-direction: column; /* スマホでは縦並びに */
    gap: 15px;
  }
  .desc-title {
    flex: none;
    width: 100%;
  }
  .desc-item {
    padding: 40px 0;
  }
}
/* ---------------------------------------
  .section-rec-interview
---------------------------------------- */
.section-rec-interview {
  width: 100%;
  background-color: var(--color-bg);
  position: relative;
}

.slider-list p.interviewee {
  padding: 0 0 20px;
  color: #24DAF2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .slider-list p.interviewee {
    font-size: 14px;
  }
}

.more-interview {
  position: absolute;
  top: 6.944vw;
  right: 6.944vw;
}
@media screen and (max-width: 767px) {
  .more-interview {
    display: block;
    margin: 50px auto;
    position: relative;
    top: 0;
    right: 0;
    padding: 21px 30px 21px;
    width: 100%;
    max-width: 300px;
  }
}

/* ナビゲーション全体の背景（グラデーション） */
.interview-nav {
  background: linear-gradient(90deg, #22c1d3 0%, #2b6cb0 100%);
  padding: 40px;
  margin: 0 auto;
  max-width: var(--inner-width);
  position: relative;
  top: -160px;
}
@media screen and (max-width: 767px) {
  .interview-nav {
    top: 0;
    padding: 30px 40px;
  }
}

/* リストのレイアウト */
.nav-list {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 20px 40px; /* 縦横の間隔（デザインに合わせて調整） */
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px; /* ★縦のアイテム間隔 */
  }
}

/* ボタン各要素 */
.nav-item {
  flex: 0 1 calc(16.66% - 40px); /* 6列の計算 */
  min-width: 160px; /* スマホ・タブレット時の最小幅 */
}
@media screen and (max-width: 767px) {
  .nav-item {
    /* ★幅の計算をリセット */
    flex: none;
    width: auto;
    min-width: 0;
  }
}

.nav-button {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .nav-button {
    /* ★1行に収めるための設定 */
    white-space: nowrap;
    font-size: 15px; /* 文字が長すぎる場合は少し小さく */
  }
}

/* 白丸のVアイコン */
.nav-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Vマーク（疑似要素で描画） */
.nav-icon::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #2b6cb0;
  border-bottom: 2px solid #2b6cb0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ホバー演出 */
.nav-button:hover {
  opacity: 0.8;
  transform: translateY(-3px); /* 軽く浮かせる */
}

/* レスポンシブ：タブレット以下では列数を減らす */
@media (max-width: 1024px) {
  .nav-item {
    flex: 0 1 calc(33.33% - 40px);
  } /* 3列 */
}
@media (max-width: 640px) {
  .nav-item {
    flex: 0 1 calc(50% - 20px);
  } /* 2列 */
  .interview-nav {
    padding: 40px 40px;
  }
}
.recruit-interview-section {
  padding: 120px 0;
  background-color: var(--color-bg);
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-interview-section {
    padding: 20px;
  }
}

.interview-container {
  padding: 0 6.944vw;
}

@media screen and (max-width: 767px) {
  .interview-container {
    margin-top: 40px;
  }
}
.interview-header {
  max-width: var(--inner-width);
  margin: 0 auto 50px;
}
.interview-header h2 {
  font-size: 36px;
}
.interview-header h2 .en {
  font-size: 18px;
  display: block;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .interview-header {
    margin: 0 auto 20px;
  }
  .interview-header h2 {
    font-size: 18px;
  }
  .interview-header h2 .en {
    font-size: 14px;
  }
}

.interview-body {
  display: flex;
  gap: 60px; /* 左右の間隔 */
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .interview-body {
    padding: 0;
    display: block;
    gap: 0;
  }
}

.interview-body:last-child {
  margin-bottom: 0;
}

/* --- 左側：プロフィール --- */
.interview-profile {
  flex: 0 0 320px; /* 幅を固定 */
}
@media screen and (max-width: 767px) {
  .interview-profile {
    flex: 0 0 100%;
  }
}

.profile-image {
  background-color: #e0e0e0; /* ダミー画像用 */
  aspect-ratio: 3/4; /* 写真の比率を維持 */
  margin-bottom: 10px;
}

.profile-info .department {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--color-text);
}

.profile-info .name {
  font-size: 28px;
  color: #2b6cb0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.profile-info .year {
  font-size: 14px;
  font-weight: normal;
}

/* --- 右側：インタビュー本文 --- */
.interview-contents {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .interview-contents {
    margin-top: 40px;
  }
}

.interview-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .interview-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: none;
  }
}

.interview-item:last-child {
  border-bottom: none;
}

/* 質問 (Q) */
.interview-contents dt {
  position: relative;
  padding-left: 30px;
  font-weight: bold;
  color: #2b6cb0;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Q */
.interview-contents dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 24px;
  line-height: 1;
}

/* 回答 (A) */
.interview-contents dd {
  margin: 0;
  line-height: 1.8;
  font-size: 15px;
  color: #333;
  text-align: justify;
}

/* ---------------------------------------
  section-rec-workstyle
---------------------------------------- */
.section-rec-workstyle {
  text-align: center;
}

.workstyle-bnr-list {
  display: flex;
  gap: 1px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .workstyle-bnr-list {
    margin-top: 30px;
    display: block;
    gap: 0px;
  }
}
.workstyle-bnr-list li {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .workstyle-bnr-list li {
    margin-top: 20px;
  }
}
.workstyle-bnr-list li a {
  display: block;
  position: relative;
}
.workstyle-bnr-list li a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(1, 32, 82, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.workstyle-bnr-list .headding {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  color: #fff;
}
.workstyle-bnr-list .headding h3 {
  font-size: 1.806vw;
}
@media screen and (max-width: 767px) {
  .workstyle-bnr-list .headding h3 {
    font-size: 20px;
  }
}
.workstyle-bnr-list .headding p {
  text-decoration: underline;
  transition: 0.3s;
}

.workstyle-bnr-list a:hover p {
  text-decoration: underline;
}

.workstyle-bnr-list a:hover::before {
  background: rgba(1, 32, 82, 0);
}

.workstyle-bnr-list a:hover .ico-arrow-cycle {
  left: 10px;
}

/* ----------------------------------------------
  section-data-wrap
------------------------------------------------- */
.section-data {
  padding: 80px 5%;
  background: linear-gradient(135deg, #22d3ee 0%, #2860bc 100%);
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-data {
    padding: 40px 5%;
  }
}

.section-data .data-date {
  text-align: right;
  max-width: 1200px;
  margin: 0 auto 10px;
  font-size: 12px;
}

.section-data h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 50px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-data h2 {
    font-size: 24px;
  }
}

.data-list-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6カラムベースで分割 */
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .data-list-wrap {
    display: block;
    gap: 0;
  }
}

.data-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 15px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: span 2; /* 基本は3列(6÷2) */
  min-height: 280px;
}
@media screen and (max-width: 767px) {
  .data-box {
    width: 100%;
    margin-bottom: 15px;
  }
}
.data-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.data-box p {
  font-size: 18px;
  font-weight: bold;
}
.data-box p .num {
  font-size: 60px;
  color: #2860bc;
  line-height: 1;
}
.data-box .data-icon {
  display: inline-block;
}
.data-box .data-icon img {
  height: 60px;
  margin-bottom: 15px;
}

/* 特殊グリッドレイアウト */
.data-box.__col2 {
  grid-column: span 4;
} /* 2列 */
.data-box.__full {
  grid-column: span 6;
  min-height: auto;
  padding: 40px;
} /* 1列(グラフ) */
/* 育休取得率などの横並び */
.__flex-row .child-data-wrap {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.__flex-row .child-data-wrap .child-data {
  flex: 1;
}

/* 円グラフ部分 */
/* グラフコンテナ */
.graph-container {
  width: 100%;
  padding: 40px 20px;
}

.graph-inner {
  display: flex;
  align-items: center; /* 垂直中央揃え */
  justify-content: space-between; /* 均等配置 */
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

/* 左：タイトル */
.graph-title {
  flex: 1;
  font-size: 32px; /* デザインに合わせて大きめに */
  font-weight: bold;
  color: #000;
  margin: 0;
  text-align: left;
}

/* 中央：グラフ */
.graph-visual {
  flex: 1;
  max-width: 320px;
  display: flex;
  justify-content: center;
}
.graph-visual img {
  width: 100%;
  height: auto;
}

/* 右：凡例 */
.graph-legend {
  flex: 1.2; /* 少し広めに確保 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.legend-item {
  display: flex;
  align-items: center;
  padding-left: 25px;
  margin: 4px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  position: relative;
  text-align: left;
}

/* 凡例ドット */
.legend-item::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* 各色のクラス設定 */
.color-blue1::before {
  background-color: #2b6cb0;
}

.color-blue2::before {
  background-color: #3b82f6;
}

.color-blue3::before {
  background-color: #4da3e9;
} /* 中間色 */
.color-blue4::before {
  background-color: #60c5f1;
} /* 中間色 */
.color-blue5::before {
  background-color: #93e2f9;
} /* 明るい青 */
.color-gray::before {
  background-color: #b0b0b0;
}

.legend-item .label {
  line-height: 1.4;
  white-space: normal; /* 2行を許可 */
}

/* 数字部分のタイポグラフィ */
.legend-item .percent {
  font-size: 18px;
  color: #3b82f6;
  padding-left: 5px;
  text-align: left;
  position: relative;
  top: -8px;
}
.legend-item .percent .num {
  font-size: 42px;
  font-family: "Arial", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}

.color-blue1.legend-item .percent {
  color: #2b6cb0;
}

.color-blue2.legend-item .percent {
  color: #3b82f6;
}

.color-blue3.legend-item .percent {
  color: #4da3e9;
} /* 中間色 */
.color-blue4.legend-item .percent {
  color: #60c5f1;
} /* 中間色 */
.color-blue5.legend-item .percent {
  color: #93e2f9;
} /* 明るい青 */
.color-gray.legend-item .percent {
  color: #b0b0b0;
}

.legend-item.lines2 .percent {
  top: 0px;
}

/* --- レスポンシブ (スマホ版) --- */
@media (max-width: 1024px) {
  .graph-inner {
    flex-direction: column; /* 縦に並べる */
    text-align: center;
    gap: 40px;
  }
  .graph-title {
    text-align: center;
  }
  .graph-legend {
    width: 100%;
    max-width: 400px; /* 凡例が広がりすぎないように */
  }
}
/* ----------------------------------------------
  FAQ
------------------------------------------------- */
.section-recruit-faq {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .section-recruit-faq {
    padding: 0;
  }
}

/* FAQ全体のコンテナ */
.faq-list {
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

/* 質問エリア (dt) */
.faq-list dt {
  position: relative;
  background-color: #2b6cb0;
  color: #fff;
  padding: 25px 80px 25px 60px; /* 右側にアイコン用の広い余白 */
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Qの文字 */
.faq-list dt::before {
  content: "Q";
  position: absolute;
  left: 25px;
  font-size: 24px;
}

/* --- プラス・マイナス アイコンの構造 --- */
.plus {
  position: absolute;
  right: 30px;
  width: 20px; /* アイコンの反応サイズ */
  height: 20px;
}

/* 横棒と縦棒の共通設定 */
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 横棒 (常に表示) */
.plus::before {
  width: 100%;
  height: 2px;
}

/* 縦棒 (マイナス時に回転して重なる) */
.plus::after {
  width: 2px;
  height: 100%;
}

/* --- 開閉時のアニメーション --- */
/* 開いた時：縦棒を90度回転させて横棒と一体化させる */
.faq-item.is-open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0; /* 完全に重ねるならopacity 0が綺麗です */
}

.faq-item.is-open dt {
  color: #45CBF4;
}

/* 回答エリア (dd) */
.faq-list dd {
  position: relative;
  background-color: #f4f7f9;
  margin: 0;
  padding: 30px 60px 30px 60px;
  line-height: 1.8;
  display: none; /* JSでslideToggleさせるなら初期はnone */
}

/* Aの文字 */
.faq-list dd::before {
  content: "A";
  position: absolute;
  left: 25px;
  top: 33px;
  font-size: 24px;
  font-weight: bold;
  color: #2b6cb0;
  line-height: 1;
}

/* ----------------------------------------------
  section-career
------------------------------------------------- */
.section-career {
  padding: 6.944vw;
  text-align: center;
  background-image: linear-gradient(90deg, #22d3ee, #2860bc, #22d3ee);
  position: relative;
}
.section-career h2 {
  color: #fff;
}
.section-career h2 .en {
  color: #fff;
}
.section-career .discription {
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-career .discription {
    margin-bottom: 30px;
  }
}

.section-career::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/recruit/career_bg_left.png);
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: left top;
}

.section-career::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/recruit/career_bg_right.png);
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: right top;
}

.career-box {
  text-align: left;
  background-color: #fff;
  border-radius: 13px;
  margin: 15px 0;
  padding: 50px;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .career-box {
    padding: 20px;
    display: block;
    gap: 0;
  }
}
.career-box .headding {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .career-box .headding {
    width: 100%;
  }
}
.career-box .headding h3 {
  font-size: 36px;
  margin-bottom: 20px;
  padding-left: 25px;
  line-height: 1.25;
  position: relative;
}
.career-box .headding h3::before {
  display: block;
  content: "";
  width: 8px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 4px 4px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}
.career-box .headding h3::after {
  display: block;
  content: "";
  width: 8px;
  height: 24px;
  border-radius: 0 0 4px 4px;
  background: #44CBF4;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .career-box .headding h3 {
    font-size: 24px;
    padding-left: 15px;
  }
  .career-box .headding h3::before {
    width: 4px;
    height: 15px;
  }
  .career-box .headding h3::after {
    width: 4px;
    height: 15px;
  }
}
.career-box .headding p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .career-box .headding p {
    font-size: 16px;
  }
}
.career-box .headding dl {
  width: 100%;
}
.career-box .headding dl::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}
.career-box .headding dl dt {
  width: 45px;
  text-align: center;
  font-size: 14px;
  color: var(--color-primary);
  padding: 3px 5px 2px;
  border-radius: 10px;
  background-color: var(--color-bg);
  float: left;
  position: relative;
  top: 2px;
}
.career-box .headding dl dd {
  padding: 3px 0 2px 55px;
  margin-bottom: 5px;
}

.career-box .career-details {
  width: calc(100% - 440px);
  background-color: var(--color-bg);
  padding: 25px;
  border-radius: 13px;
}
@media screen and (max-width: 1024px) {
  .career-box .career-details {
    width: 100%;
    margin-top: 20px;
  }
}
.career-box .career-details h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
}
.career-box .career-details dt {
  margin-top: 15px;
}
.career-box .career-details dt span {
  background: linear-gradient(transparent 60%, #FFF500 60%);
  font-weight: bold;
  padding: 0 4px;
}
.career-box .career-details dd {
  margin-top: 10px;
}
.career-box .career-details dd ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .career-box .career-details dd ul {
    display: block;
  }
}
.career-box .career-details dd ul li {
  position: relative;
  padding: 2px 15px 2px 10px;
}
@media screen and (max-width: 767px) {
  .career-box .career-details dd ul li {
    padding: 2px 0 2px 10px;
  }
}
.career-box .career-details dd ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 12px;
}

/* ----------------------------------------------
  section-welfare
------------------------------------------------- */
.section-welfare .discription {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-welfare .discription {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.section-welfare .end-read {
  font-size: 20px;
  font-weight: 600;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .section-welfare .end-read {
    border-top: #ddd solid 1px;
    font-size: 18px;
    padding-top: 20px;
    margin-top: 20px;
  }
}

.welfare-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .welfare-wrap {
    display: block;
  }
}

.welfare-box {
  width: 40.278vw;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .welfare-box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.welfare-box dt {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .welfare-box dt {
    font-size: 20px;
    padding-top: 7px;
    margin-bottom: 10px;
  }
}
.welfare-box dt .ico {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .welfare-box dt .ico {
    width: 30px;
    height: 30px;
    top: 8px;
    margin-right: 10px;
  }
}
.welfare-box dt .ico img {
  width: 100%;
}
.welfare-box dd {
  display: flex;
}
@media screen and (max-width: 767px) {
  .welfare-box dd {
    display: block;
  }
  .welfare-box dd ul {
    width: 100%;
  }
}
.welfare-box dd li {
  list-style: disc outside;
  margin: 3px 0 3px 30px;
}

/* ----------------------------------------------
  section-welfare
------------------------------------------------- */
.section-recuit-info {
  padding: 10.944vw 6.944vw;
}

.recuit-info-details-heading {
  position: relative;
  background-color: #2b6cb0;
  color: #fff;
  padding: 25px 40px 25px 40px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.recuit-info-details.is-open .recuit-info-details-heading {
  border-radius: 8px 8px 0 0;
  color: #45CBF4;
}

.recuit-info-details-body {
  position: relative;
  background-color: #f4f7f9;
  margin: 0;
  padding: 30px 40px;
  line-height: 1.8;
  display: none;
}
@media screen and (max-width: 767px) {
  .recuit-info-details-body {
    padding: 30px 20px;
  }
}

.recuit-info-details.is-open .plus::before {
  background-color: #45CBF4;
}

.recuit-info-details.is-open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.recruit-details-outline {
  width: 100%;
  padding-top: 20px;
  line-height: 1.75;
}
.recruit-details-outline dt {
  width: 20.833vw;
  padding: 44px 0;
  float: left;
  color: var(--color-primary);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .recruit-details-outline dt {
    width: 100%;
    padding: 22px 0;
  }
}
.recruit-details-outline dd {
  padding: 44px 44px 44px 20.833vw;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .recruit-details-outline dd {
    padding: 22px 0;
  }
}

/* ---------------------------------------
  NEWS
---------------------------------------- */
.post-section {
  padding: 0 6.944vw;
  display: flex;
  background: var(--color-bg-footer);
}
.post-section.is-details {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .post-section {
    display: block;
  }
}

.side-menu {
  width: 300px;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .side-menu {
    width: 100%;
  }
  .side-menu ul {
    display: flex;
    border-bottom: #ddd solid 1px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.side-menu h2 {
  margin-bottom: 1em;
  color: var(--color-primary);
  font-size: 1.125rem;
}
.side-menu li {
  font-weight: 600;
}
.side-menu li a {
  display: block;
  padding: 7px 0;
  color: var(--color-text);
  transition: 0.3s;
}

.side-menu li a:hover {
  color: var(--color-primary);
}

.news-contents {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .news-list {
    margin-bottom: 55px;
  }
}
.news-list li {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .news-list li {
    margin-bottom: 25px;
  }
}
.news-list li a {
  padding: 2.5%;
  display: block;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0px 5px 0px 0px var(--color-bg);
}
@media screen and (max-width: 767px) {
  .news-list li a {
    border-radius: 10px;
    padding: 5%;
  }
}

.news-list li a:hover {
  background-color: var(--color-bg);
}

.date {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
}

.cat {
  display: inline-block;
  padding: 3px 20px 1px;
  margin: 0 20px;
  background-color: var(--color-bg);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.3s;
}

.news-list li a:hover .cat {
  background-color: #fff;
  color: #378D9D;
}

.news-list p {
  display: block;
  color: var(--color-text);
  margin-top: 12px;
}

.news-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: #ddd solid 1px;
}
.news-header h2 {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .news-header h2 {
    font-size: 18px;
  }
}

.news-body {
  padding-bottom: 20px;
}
.news-body p {
  margin-bottom: 2em;
}
.news-body img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------ 
一覧に戻るボタン
--------------------------------------- */
.post-navigation {
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .post-navigation {
    padding: 40px 0;
  }
}

.post-navigation__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .post-navigation__inner {
    display: block;
    position: relative;
  }
}

.post-navigation__link a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.post-navigation__link a .link-text {
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-navigation__link a .link-text {
    display: none;
  }
}

.post-navigation__link a .link-text:before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.post-navigation__link a:hover .link-text:before {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .post-navigation__link--back {
    position: absolute;
    left: 50%;
    top: 0px;
    margin-left: -65px;
  }
  .post-navigation__link--back a .link-text {
    display: block;
  }
  .post-navigation__link--next {
    position: absolute;
    right: 0;
    top: 0px;
  }
  .post-navigation__link--prev {
    position: absolute;
    left: 0;
    top: 0px;
  }
}
/* 矢印アイコンのベースデザイン */
.arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px; /* デザインに合わせて調整 */
  height: 33px;
  background-color: var(--color-primary);
  border-radius: 22px;
  flex-shrink: 0;
}

.arrow-icon img {
  width: 12px; /* 矢印のサイズ調整 */
  height: auto;
}

/* 「前へ」「一覧へ」は右向き画像を180度回転させて左向きにする */
.arrow-icon.is-prev img {
  transform: rotate(180deg);
}

/* 各パーツ間の余白調整 */
.post-navigation__link--prev .arrow-icon,
.post-navigation__link--back .arrow-icon {
  margin-right: 10px;
}

.post-navigation__link--next .arrow-icon {
  margin-left: 10px;
}

/* レスポンシブ：SP表示 */
@media (max-width: 767px) {
  .post-navigation__inner {
    gap: 15px;
  }
  .post-navigation__link a {
    font-size: 14px;
  }
  .arrow-icon {
    width: 36px;
    height: 36px;
  }
  .arrow-icon img {
    width: 12px;
  }
}
/* ---------------------------------
ページネーション
 ----------------------------------- */
.pagination {
  position: relative;
  width: 100%;
  text-align: center;
}

.pagination ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0 122px;
}

.pagination ul li .page-numbers {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.pagination .current {
  display: inline-block;
  position: relative;
  background: #F4F4F2;
}

.pagination ul li .prev,
.pagination ul li .next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto;
  height: auto;
}

.pagination .prev {
  left: 0;
  padding-left: 20px;
}

.pagination .next {
  right: 0;
  padding-right: 20px;
}

.pagination .prev::after,
.pagination .next::before {
  content: " ";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  background-image: url(../images/common/ico_chevron.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.pagination .prev::after {
  left: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  -webkit-filter: FlipH;
  filter: FlipH;
  -ms-filter: "FlipH";
}

.pagination .next::before {
  right: 0;
}

/* ---------------------------------------
  プラバシーポリシー
---------------------------------------- */
.section-privacy {
  padding-bottom: 17.361vw;
}

.section-privacy h2 {
  border-bottom: #E2E2E2 solid 1px;
  position: relative;
  padding: 15px 0;
  margin-bottom: 15px;
  margin-top: 2em;
}
.section-privacy h2::before {
  display: block;
  content: "";
  width: 15px;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: -1px;
}

.section-privacy p {
  margin-bottom: 15px;
}
.section-privacy ul {
  margin-bottom: 15px;
}
.section-privacy ul li {
  list-style: decimal outside;
  margin: 10px 0 10px 20px;
}
.section-privacy dl {
  display: flex;
}

/* ---------------------------------------
  お問い合わせ
---------------------------------------- */
.contact-section {
  padding: 0 6.944vw 6.944vw;
}
@media screen and (max-width: 767px) {
  .contact-section {
    padding: 0 5% 10.811vw;
  }
}

.form-box {
  max-width: 930px;
  padding: 5%;
  margin: 0 auto 5%;
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .form-item {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.form-item > dt {
  position: relative;
  min-width: 230px;
  width: 230px;
  margin-right: 30px;
  padding: 13px 0;
  padding-right: 3em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .form-item > dt {
    min-width: 100%;
    width: 100%;
  }
}

.form-item .required {
  position: absolute;
  top: 9px;
  right: 0;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  background-color: #E50313;
  color: #fff;
}

.form-item > dd {
  width: 100%;
}

.form-item > dd .example {
  padding: 3px 0;
  font-size: 13px;
  color: #666;
}

.contact-privacy-box {
  margin: 5% 0 2.5%;
  padding: 20px 0;
  border: #ddd solid 1px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.contact-privacy-inner {
  max-height: 180px;
  padding: 40px 6.63% 0;
  overflow-y: scroll;
}

.contact-privacy-box .title {
  margin-bottom: 55px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-privacy-box .title .sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.contact-privacy-box p {
  margin-bottom: 15px;
}

.contact-privacy-box .info-item {
  margin-bottom: 35px;
}

.contact-privacy-box .info-item > dt {
  font-weight: 700;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  outline: none;
  width: 100%;
  padding: 10px 10px;
  border: none;
  border-radius: 8px;
  background: #f4f4f2;
  font-size: 1rem;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background: #FFFFFF;
  border: var(--color-primary) solid 2px;
}

input[type=text],
input[type=email],
input[type=tel] {
  height: 50px;
}

textarea {
  resize: none;
  min-height: 270px;
}

.input_note {
  color: #666;
  margin-top: 5px;
  font-size: 0.875rem;
}

/* ラジオボタン */
/* ラジオボタンの各項目をラップするラベル */
.radio-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1rem;
  user-select: none;
  transition: color 0.2s ease;
}

/* 本物のラジオボタンはアクセシビリティのため消さず、見た目だけ透明にして重ねる */
.radio-box input[type=radio] {
  display: inline-block !important; /* 非表示設定を解除 */
  opacity: 1 !important; /* 透明設定を解除 */
  appearance: auto !important; /* ブラウザ標準の見た目に戻す */
  margin-right: 5px; /* テキストとの間に少し隙間を作る */
  vertical-align: middle;
}

/* 外側の円（チェックボックスの枠）
.radio-box .checkmark {
	height: 22px;
	width: 22px;
	background-color: #eee;
	border: 2px solid #ddd;
	border-radius: 50%;
	margin-right: 12px;
	display: inline-block;
	position: relative;
	transition: all 0.2s ease;
} */
/* ホバー時の挙動 
.radio-box label:hover input ~ .checkmark {
	background-color: #e2e8f0;
	border-color: #cbd5e1;
}*/
/* チェックされた時の外枠の色 
.radio-box input:checked ~ .checkmark {
	background-color: #fff;
	border-color: #4f46e5;
}*/
/* チェックされた時の内側の丸（::after） *
	content: "";
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-primary);/
.radio-box .checkmark::after {
}

/* チェック状態の時に内側の丸を表示 
.radio-box input:checked ~ .checkmark::after {
	display: block;
}*/
/* フォーカス時のアウトライン（キーボード操作対応） 
.radio-box input:focus-visible ~ .checkmark {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}*/
/* プレースホルダー */
/* Chrome, Safari 5+, Opera 15+, iOS, Android */
::-webkit-input-placeholder {
  color: #aaa;
}

/* Firefox 18- */
:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #aaa;
}

/* IE Edge */
::-ms-input-placeholder {
  color: #aaa;
}

.submit-wrap {
  text-align: center;
}

.button-back {
  display: inline-block;
}

/* 送信ボタン */
.submit-wrap input[type=submit],
.submit-wrap input[type=button],
.submit-wrap .button-back {
  display: inline-block;
  padding: 25px 30px;
  margin: 0 5px;
  background: #555555;
  border-radius: 45px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .submit-wrap input[type=submit],
  .submit-wrap input[type=button],
  .submit-wrap .button-back {
    font-size: 14px;
    padding: 10px 15px;
  }
}

input[type=submit]:hover,
.submit-wrap .button-back:hover,
input[type=button]:hover {
  background: #000;
  color: #fff;
}

.acceptance_check_text {
  text-align: center;
  margin-bottom: 40px;
}
.acceptance_check_text .color_red {
  color: #E50313;
}

.acceptance_check_box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-weight: 500;
}

.acceptance_check_box a {
  text-decoration: underline;
  color: var(--color-text);
}

.acceptance_check_box a:hover {
  text-decoration: none;
  color: var(--color-text);
}

.acceptance_check_box .wpcf7-list-item-label {
  display: none;
}

.acceptance_check_box input[type=checkbox] {
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0.1em 10px 0 0;
  border: solid 2px #E50313;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .acceptance_check_box input[type=checkbox] {
    margin: 0.2em 10px 0 0;
  }
}
.acceptance_check_box input[type=checkbox]:focus {
  outline: none;
}

.acceptance_check_box input[type=checkbox]:checked {
  background-color: #E50313;
}

.acceptance_check_box input[type=checkbox]:checked::before {
  content: " ";
  position: absolute;
  top: -0.1em;
  left: 0.2em;
  transform: rotate(45deg);
  width: 0.6em;
  height: 1em;
  border-right: solid 4px #fff;
  border-bottom: solid 4px #fff;
}

button, input[type=submit], input[type=button] {
  height: auto;
  appearance: button;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: inherit;
  cursor: pointer;
  transition-duration: 0.3s;
  white-space: normal;
}

button::-webkit-search-decoration, input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus, input[type=submit]:focus, input[type=button]:focus {
  outline-offset: -2px;
  outline: none;
}

span.wpcf7-spinner {
  display: none;
}

.form_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin: 80px 0 -10px -18px;
}

@media screen and (max-width: 767px) {
  .form_btn_wrap {
    margin: 40px 0 -10px -10px;
  }
}
.form_btn_wrap .wpcf7-submit {
  flex: 1;
  max-width: 284px;
  min-height: 68px;
  margin: 0 0 10px 18px;
  padding: 10px 20px;
  background-color: var(--color-primary);
  border-radius: 7rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.29;
  text-align: center;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .form_btn_wrap .wpcf7-submit {
    max-width: 250px;
    min-height: 60px;
    margin: 0 0 10px 10px;
  }
}
.form_btn_wrap .wpcf7-submit::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 20px;
  top: 22px;
  right: 25px;
}

.form_btn_wrap .wpcf7-submit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../images/common/arrow_blue.svg);
  top: 29px;
  right: 31px;
  z-index: 2;
}

.form_btn_wrap .wpcf7-submit:hover {
  background-color: #143B7B;
}

.form_btn_wrap .wpcf7-submit:hover::after {
  background-image: url(../images/common/arrow_blue.svg);
}

.form_btn_wrap .wpcf7-submit:disabled {
  background-color: #d3d3d3;
  color: #939393;
}

.form_btn_wrap .wpcf7-previous {
  flex: 1;
  max-width: 300px;
  width: 100%;
  min-height: 74px;
  margin: 0 0 10px 18px;
  padding: 10px 20px;
  background-color: #505050;
  border-radius: 7rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.29;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .form_btn_wrap .wpcf7-previous {
    max-width: 130px;
    min-height: 60px;
    margin: 0 0 10px 10px;
  }
}
.form_btn_wrap .wpcf7-previous:hover {
  background-color: #000;
}

.thanks-text {
  text-align: center;
  border-bottom: #E2E2E2 solid 1px;
  padding-bottom: 6.944vw;
  margin-bottom: 6.944vw;
  padding-left: 1rem;
}
.thanks-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .thanks-text h2 {
    font-size: 20px;
  }
}

/* CF7の自動生成フィールドによる謎の隙間を消す */
.wpcf7 form .hidden-fields-container,
.wpcf7-display-none {
  display: none !important;
  visibility: hidden;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}

.wpcf7-not-valid-tip {
  color: #E50313;
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  text-align: center;
  color: #E50313;
}

.section-thanks {
  padding: 100px 0;
  text-align: center;
}
.section-thanks .thanks-header {
  margin-bottom: 40px;
}
.section-thanks .thanks-header .thanks-headline {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}
.section-thanks .thanks-body {
  margin-bottom: 60px;
}
.section-thanks .thanks-body p {
  font-size: 16px;
  line-height: 2;
  color: #666;
}
.section-thanks .thanks-action .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b60b8;
  color: #fff;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.section-thanks .thanks-action .btn-primary::after {
  content: "→";
  margin-left: 10px;
}
.section-thanks .thanks-action .btn-primary:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */