@charset "UTF-8";

/* モバイル時のホバー効果を無効化 */
@media (hover: none) and (pointer: coarse) {
  .hover-pointer:hover,
  .header__nav-item:hover,
  .dropdown-menu:hover,
  .btn:hover {
    /* 必要に応じて他のホバー対象も追加 */
    background: inherit !important;
    color: inherit !important;
    box-shadow: none !important;
    text-decoration: none !important;
    filter: none !important;
    opacity: 1 !important;
    /* カーソルは通常のまま */
  }
}
/* ホバー時にカーソルをポインターにする（リンク機能なし） */
.hover-pointer {
  cursor: pointer;
}
/* PC用ドロップダウン 幕が下りてくるアニメーション */
/* .header__nav-item.has-dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  pointer-events: none;
}
.header__nav-item.has-dropdown:hover .dropdown-menu,
.header__nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
} */
/* PCナビ画像付きリンク（画像の下に左揃えテキスト） */
.header__nav-link-imgtext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  gap: 4px;
}
.header__nav-link-imgtext .header__nav-img {
  display: block;
  margin-bottom: 0;
}
.header__nav-link-imgtext .header__nav-text {
  font-size: 15px;
  margin-top: 4px;
  text-align: left;
}

.index-bg-contents__img {
  width: 80%;
  margin-left: auto;
  display: block;
  margin-bottom: -5%;
  margin-right: -10%;
}

/* Interview career arrow（三角形） */
.interview__career-arrow {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white-color);
  content: "";
}
/* KV動画用暗フィルター */
.kv__video-overlay {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 91, 91, 0.45);
  z-index: 1;
  pointer-events: none; */

  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 100) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  z-index: 1;
  pointer-events: none; */
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(rgba(0, 0, 0) 25%, transparent 25%),
    radial-gradient(rgba(0, 0, 0) 25%, transparent 25%);
  background-size: 0.278vw 0.278vw;
  inset: 0vw;
  background-position: 0vw 0vw, 0.139vw 0.139vw;
  z-index: 1;
}

.video-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .video-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .video-sp {
    display: none;
  }
}

:root {
  /* 色管理用の変数 */
  --black-color: #000;
  --white-color: #fff;
  --gray-color: #737373;
  --gray-color02: #d9d9d9;
  --gray-color03: #b2b2b2;
  --gray-color04: #ededed;
  --primary-color: #23adad;
  --primary-color02: linear-gradient(180deg, #03113e 0%, #596ba6 100%);
  --accent-color: #ffb110;
  --font-color: #44546a;
  --light-blue-color: #f0f8ff;
  --sky-blue-color: #03abff;
  --sky-blue-color02: #83d6ff;
  --sky-blue-color03: #0a8ce3;
  --pink-color: #f48dd4;
  --orange-color: #ff9d00;
  --light-orange-color: #ffc973;
  --orange-transparent: rgba(255, 157, 0, 0.7);
  --green-color: #0ae3ba;
  --green-transparent: rgba(10, 227, 186, 0.7);
  --navy-color: #476692;
  --flow-bubble-color: #eef8f8;
}

:root {
  /* フォントの変数 */
  --font-family-noto-sans-jp: "Noto Sans JP", sans-serif;
  --font-family-noto-serif-jp: "Noto Serif JP", serif;
  --font-family-oswald: "Oswald", sans-serif;
  --font-family-851gkktt: "851Gkktt", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", sans-serif;
  --font-size-base: 16px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 960px;
  --content-width: 1080px;
  --content-width-lg: 1140px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ===========================================
   ベーススタイル
   =========================================== */
body {
  color: var(--font-color);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

.font-bold {
  font-weight: bold;
}

/* ===========================================
   
   =========================================== */

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
/* ===========================================
   ヘッダー（モバイルファースト）
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  background-color: var(--white-color);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--font-color);
}

.header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.top-page .header {
  background-color: transparent;
  color: var(--white-color);
}

.top-page .header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: var(--font-color);
}

.header__inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__logo {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.header__logo a {
  color: var(--font-color);
  text-decoration: none;
}

.header__logo_img {
  max-height: 45px;
  width: auto;
}

/* SNS Icons */
.header__sns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__sns-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.header__sns-link:hover {
  opacity: 0.7;
}

.header__sns-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ハンバーガーメニューボタン */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: calc(var(--z-index-header) + 1);
}

.header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--font-color);
  transition: all 0.3s ease;
  transform-origin: center;
}

.top-page .header__hamburger-line {
  background-color: var(--white-color);
}

.top-page .header__hamburger-line.scrolled {
  background-color: var(--font-color);
}

.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* モバイルナビゲーション */
.header__nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: var(--white-color);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.header__nav.active {
  transform: translateX(0);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

.header__nav-item {
  border-bottom: 1px solid var(--gray-color04);
}

.header__nav-item > a {
  display: block;
  padding: 16px 20px;
  /* color: var(--font-color); */
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  transition: all 0.3s ease;
}

.header__nav-item > a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

body.top-page .mobile-nav.active .header__nav-list a {
  color: var(--font-color); /* ここを希望の色に変更 */
}

/* モバイル用ドロップダウン */

.dropdown-menu {
  background-color: var(--gray-color04);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-dropdown.active .dropdown-menu {
  max-height: 800px;
}

.has-dropdown .dropdown-toggle::after {
  content: "▼";
  font-size: 8px;
  margin-left: 8px;
  transition: transform 0.2s ease;
  float: right;
  background-color: var(--primary-color);
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.has-dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 12px 40px;
  color: var(--font-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

/* エントリーボタン（モバイル） */

.btn-entry {
  margin: 20px auto;
  text-align: center;
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
  padding: 12px 24px !important;

  font-weight: var(--font-weight-semibold) !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
  display: block;
  width: 70%;
  max-width: 350px;
}

.btn-entry:hover {
  background: var(--white-color) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important ;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 140, 227, 0.3);
}

@media screen and (max-width: 1079px) {
  .pc-nav {
    display: none;
  }
}

/* タブレット（768px〜1079px） */
@media (min-width: 768px) and (max-width: 1079px) {
  .header__inner {
    height: 70px;
  }

  .header__left {
    gap: 24px;
  }

  .header__logo {
    font-size: 20px;
  }

  .header__logo_img {
    max-height: 70px;
  }

  .header__sns-icon {
    width: 40px;
    height: 40px;
  }

  /* タブレットではハンバーガーメニューを表示 */
  .header__hamburger {
    display: flex !important;
  }

  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: var(--z-index-menu);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .header__nav.active {
    transform: translateX(0);
    z-index: var(--z-index-menu);
  }

  .header__nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 20px 0;
  }

  .header__nav-item > a {
    display: block;
    padding: 16px 10px;
    color: var(--font-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .header__nav-item > a:hover {
    background-color: transparent;
    color: var(--primary-color);
  }

  /* タブレット用ドロップダウン - モバイルと同じ挙動 */
  .dropdown-menu {
    background-color: var(--gray-color04);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 200px;
  }

  .has-dropdown .dropdown-toggle::after {
    content: "▼";
    font-size: 8px;
    margin-left: 8px;
    transition: transform 0.2s ease;
    float: right;
    background-color: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .has-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 40px;
    color: var(--font-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
  }

  .dropdown-menu a:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
  }

  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: none;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: none;
  }

  .dropdown-menu a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .dropdown-menu a:hover {
    background-color: var(--light-blue-color);
  }

  .btn-entry {
    margin: 20px auto;
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .mobile-nav {
    display: none;
  }

  .header__inner {
    padding: 0 20px;
    height: 80px;
  }

  .header__logo {
    font-size: 24px;
  }

  .header__logo_img {
    max-height: 80px;
  }

  .header__nav-item > a {
    padding: 16px 10px;
  }

  /* デスクトップではハンバーガーメニューを非表示 */
  .header__hamburger {
    display: none !important;
  }

  .header__nav {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    transform: none !important;
    overflow: visible !important;
    box-shadow: none !important;
    z-index: var(--z-index-header);
  }

  .header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 0;
  }

  .header__nav-item {
    border-bottom: none;
  }

  .header__nav-item > a {
    font-size: 14px;
  }

  /* デスクトップ用ドロップダウン */

  .has-dropdown {
    position: relative;
  }

  .display-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }

  .display-flex li {
    width: calc((100% - 100px) / 4);
  }

  .header__nav-img {
    width: 100%;
    height: auto;
  }

  /* .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: var(--z-index-menu);
    max-height: none;
    overflow: visible;
    list-style: none;
    margin: 0;
  } */

  .dropdown-menu {
    position: fixed; /* 画面に固定表示 */
    top: 70px; /* 親要素のすぐ下に配置 */
    left: 0; /* 左端に寄せる */
    width: 100vw; /* ビューポート幅いっぱいに */
    min-width: auto; /* 最小幅指定解除 */
    background-color: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0; /* 角丸をなくす（必要に応じて） */
    padding: 10px 20px; /* パディングはお好みで */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: var(--z-index-menu);
    max-height: none;
    overflow: auto; /* 必要に応じてスクロール可能に */
    list-style: none;
    margin: 0;
    box-sizing: border-box; /* パディング込みの幅計算 */
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--font-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
  }

  .dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  /* デスクトップでも三角アイコンを表示 */
  .has-dropdown .dropdown-toggle::after {
    content: "▼";
    font-size: 8px;
    margin-left: 8px;
    transition: transform 0.2s ease;
    background-color: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .btn-entry {
    padding: 12px 24px !important;
    font-size: 16px !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .header__inner {
    padding: 0 20px;
  }

  .header__nav-item > a {
    padding: 16px 20px;
    font-size: 18px;
  }

  .has-dropdown .dropdown-toggle::after {
    margin-top: 6px;
  }

  .btn-entry {
    margin: 0;
    padding: 10px 30px !important;
    font-size: 18px !important;
  }
}

/* ===========================================
   Aboutセクション（モバイルファースト）
   =========================================== */
.about {
  padding: 50px 0;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

/* .about::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../webp/top-hero-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: translateZ(0);
} */

/* .about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
} */

.about__inner {
  position: relative;
  z-index: 10;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about__content {
  width: 100%;
}

.about__title {
  text-align: left;
  margin-bottom: 20px;
}

.about__title-text {
  font-size: clamp(24px, 5vw, 80px);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 5px 20px;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about__text {
  text-align: left;
  margin-bottom: 30px;
}

.about__text p {
  font-size: 12px;
  line-height: 1.8;
  /* color: var(--white-color); */
  color: var(--font-color);
  margin-bottom: 20px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__button {
  text-align: center;
}

.btn-mission {
  display: inline-block;
  padding: 12px 24px;
  padding-right: 45px;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50vh;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  position: relative;
  font-size: 14px;
}

.btn-mission::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: rgba(10, 140, 227, 0.2);
  border-radius: 50%;
}

.btn-mission::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.btn-mission:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
}

.btn-mission:hover::before {
  background-color: rgba(255, 255, 255, 0.3);
}

.btn-mission:hover::after {
  background-color: #fff;
}

.about__image {
  width: 100%;
}

.about__image-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .about__inner {
    max-width: 100%;
    padding: 0 40px;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .about__content {
    flex: 1;
  }

  .about__text {
    margin-bottom: 40px;
  }

  .about__text p {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .about__button {
    text-align: left;
  }

  .btn-mission {
    padding: 14px 28px;
    padding-right: 55px;
    font-size: 15px;
  }

  .btn-mission::before {
    right: 14px;
    width: 20px;
    height: 20px;
  }

  .btn-mission::after {
    right: 17px;
  }

  .about__image {
    flex: 1;
    max-width: 50%;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .about {
    padding: 50px 0;
    min-height: 100vh;
  }

  .about__inner {
    max-width: var(--content-width);
    padding: 0 20px;
    gap: 60px;
  }

  .about__title-text {
    font-size: 64px;
  }

  .about__text p {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .btn-mission {
    padding: 16px 32px;
    padding-right: 60px;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .btn-mission::before {
    right: 16px;
    width: 22px;
    height: 22px;
  }

  .btn-mission::after {
    right: 21px;
  }

  .about__image {
    max-width: 500px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .about__inner {
    max-width: var(--content-width-lg);
  }
}

/* ===========================================
   Cross Talkセクション（モバイルファースト）
   =========================================== */
.cross-talk {
  padding: 0 0 50px;
  background: var(--white-color);
}

/* .cross-talk-message {
  width: var(--content-width-lg);
} */

.cross-talk-message__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.cross-talk__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.cross-talk__header {
  text-align: left;
  margin-bottom: 40px;
}

.cross-talk__title {
  font-family: var(--font-family-oswald);
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  letter-spacing: 2px;
}

.cross-talk__subtitle {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.cross-talk-card__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.cross-talk-card__subtitle {
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  margin-top: 5px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.cross-talk-card__desc {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.cross-talk-card__link {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  padding: 10px 40px;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.cross-talk-card__link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 140, 227, 0.3);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .cross-talk__header {
    margin-bottom: 50px;
  }

  .cross-talk__title {
    font-size: 48px;
  }

  .cross-talk__subtitle {
    font-size: 16px;
  }

  .cross-talk-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-bottom: 20px;
  }

  .cross-talk-card__img-wrapper {
    width: calc((100% - 50px) / 2);
  }

  .cross-talk-card__content {
    width: calc((100% - 50px) / 2);
  }

  .cross-talk-card__title {
    font-size: 28px;
  }

  .cross-talk-card__subtitle {
    font-size: 22px;
  }

  .cross-talk-card__desc {
    font-size: 16px;
  }

  .cross-talk-card__link {
    margin-bottom: 20px;
  }

  /* .cross-talk__content {
    gap: 30px;
  }

  .cross-talk__overlay {
    padding: 30px;
  }

  .cross-talk__label-top {
    padding: 10px 20px;
    font-size: 16px;
  }

  .cross-talk__text-bottom {
    font-size: 18px;
  } */
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .cross-talk__inner {
    max-width: var(--content-width-lg);
    padding: 0 20px;
  }

  .cross-talk__header {
    margin-bottom: 60px;
  }

  .cross-talk__title {
    font-size: 72px;
  }

  .cross-talk__subtitle {
    font-size: 18px;
  }

  .cross-talk-card__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .cross-talk-card {
    width: calc((100% - 40px) / 2);
  }

  .cross-talk-card__title {
    font-size: 24px;
  }

  .cross-talk-card__subtitle {
    font-size: 16px;
  }

  .cross-talk-card__desc {
    font-size: 12px;
  }

  .cross-talk-card__img-wrapper {
    width: calc((100% - 20px) / 2);
  }

  .cross-talk-card__content {
    width: calc((100% - 20px) / 2);
  }

  /* .cross-talk__item {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }

  .cross-talk__image-wrapper {
    width: 1080px;
    height: 350px;
    aspect-ratio: unset;
    margin: 0 auto;
  }

  .cross-talk__overlay {
    padding: 40px;
  }

  .cross-talk__label-top {
    padding: 12px 24px;
    font-size: 18px;
  }

  .cross-talk__text-bottom {
    font-size: 20px;
  } */
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .cross-talk__inner {
    max-width: 1360px;
  }

  .cross-talk__image-wrapper {
    width: 1080px;
    height: 350px;
  }

  .cross-talk-card__title {
    font-size: 30px;
  }

  .cross-talk-card__subtitle {
    font-size: 22px;
  }

  .cross-talk-card__desc {
    font-size: 14px;
  }
}

/* 1200px以上での比率保持 */
@media (min-width: 1200px) {
  .cross-talk__image-wrapper {
    width: min(1080px, 90vw);
    height: calc(min(1080px, 90vw) * 350 / 1080);
  }
}

/* ===========================================
   Interviewセクション（モバイルファースト）
   =========================================== */
.interview {
  padding: 0 0 50px;
  background-color: var(--white-color);
}

.interview__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.interview__header {
  text-align: left;
  margin-bottom: 40px;
}

.interview__title {
  font-family: var(--font-family-oswald);
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.interview__subtitle {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.interview__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.interview__item {
  width: 100%;
  position: relative;
}

.interview__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 0;
}

.interview__image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.interview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.interview__image-wrapper:hover .interview__image {
  transform: scale(1.05);
}

.interview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: var(--font-family-noto-sans);
}

.interview__number {
  font-family: var(--font-family-oswald);
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

.interview__title-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  letter-spacing: 1px;
}

.interview__info {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 15px;
  padding: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.interview__position {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: left;
}

.interview__name {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.interview__join-date {
  font-size: 16px;
  font-weight: var(--font-weight-normal);
  color: var(--white-color);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.interview__divider {
  width: 100%;
  height: 1px;
  background-color: var(--white-color);
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .interview__inner {
    padding: 0 40px;
  }

  .interview__header {
    margin-bottom: 50px;
  }

  .interview__title {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .interview__subtitle {
    font-size: 16px;
  }

  .interview__content {
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
  }

  .interview__item {
    flex: 1;
  }

  .interview__item--center {
    transform: translateY(-30px);
  }

  .interview__image-wrapper {
    margin-bottom: 0;
    aspect-ratio: 9 / 16;
  }

  .interview__number {
    font-size: 56px;
    margin-bottom: 15px;
  }

  .interview__title-vertical {
    font-size: 18px;
  }

  .interview__position {
    font-size: 10px;
  }

  .interview__name {
    font-size: 16px;
  }

  .interview__join-date {
    font-size: 14px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .interview__inner {
    max-width: var(--content-width);
    padding: 0 20px;
  }

  .interview__header {
    margin-bottom: 60px;
  }

  .interview__title {
    font-size: 72px;
  }

  .interview__subtitle {
    font-size: 18px;
  }

  .interview__content {
    gap: 40px;
    padding: 0 100px;
  }

  .interview__item--center {
    transform: translateY(-50px);
    width: calc((100% - 140px) / 3);
  }

  .interview__image-wrapper {
    margin-bottom: 0;
  }

  .interview__info {
    margin-bottom: 30px;
  }

  .interview__number {
    font-size: 64px;
    margin-bottom: 20px;
  }

  .interview__title-vertical {
    font-size: 20px;
  }

  .interview__position {
    font-size: 14px;
  }

  .interview__name {
    font-size: 20px;
  }

  .interview__join-date {
    font-size: 14px;
  }
}

/* Interviewセクション インラインstyle置換用クラス */
.interview__number-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}
.interview__number-img {
  height: 50px;
  width: auto;
  display: block;
}
.interview__career-from {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}
.interview__career-to {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}
@media (min-width: 768px) {
  .interview__number-img {
    height: 40px;
  }
  .interview__career-from {
    font-size: 8px;
  }
  .interview__career-to {
    font-size: 14px;
  }
}
@media (min-width: 1080px) {
  .interview__number-img {
    height: 70px;
  }
  .interview__career-from {
    font-size: 20px;
  }
  .interview__career-to {
    font-size: 24px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .interview__inner {
    max-width: 1360px;
  }
} /* ===========================================
   フッター（モバイルファースト）
   =========================================== */
.footer {
  background-color: var(--white-color);
  color: var(--font-color);
  padding: 40px 0 0;
  border-top: 1px solid var(--gray-color04);
}

.footer__inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* フッター右側（ロゴ・リンク） */
.footer__inner-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  text-align: center;
}

.footer__logo_img {
  max-height: 50px;
  width: auto;
}

.footer__link-corporate,
.footer__link-contact,
.footer__link-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.footer__link {
  color: var(--font-color);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__link-img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%);
}

/* 通常のリンクアイコン（外部リンクアイコンなど）*/
.footer__link-corporate .footer__link-img,
.footer__link-contact .footer__link-img,
.footer__link-privacy .footer__link-img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%);
}

/* フッターSNSアイコン */
.footer__link-sns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.footer__link-instagram,
.footer__link-tiktok {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.footer__link-instagram:hover,
.footer__link-tiktok:hover {
  opacity: 0.8;
}

.footer__link-sns .footer__link-img {
  width: 32px;
  height: 32px;
  filter: none !important;
}

@media (min-width: 768px) and (max-width: 1079px) {
  .footer__inner-right {
    text-align: left;
    align-items: flex-start;
  }
  .footer__link-corporate,
  .footer__link-contact,
  .footer__link-privacy {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 1079px) {
  .footer__inner-left {
    text-align: left;
    align-items: flex-start;
  }
  .footer__nav {
    justify-content: flex-start;
  }
}

/* モバイル時のフッターSNSアイコン中央寄せ */
@media (max-width: 768px) {
  .footer__link-sns {
    justify-content: center;
  }
}

/* フッター左側（ナビゲーション） */
.footer__inner-left {
  width: 100%;
}

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

.footer__nav-item {
  border-bottom: 1px solid var(--gray-color04);
  padding-bottom: 10px;
}

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

.footer__nav-title {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 10px;
  color: var(--primary-color);
  display: block;
  position: relative;
  cursor: pointer;
  padding: 10px 0;
}

.footer__nav-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav-title a:hover {
  color: var(--navy-color);
}

/* アコーディオン用のアイコン */
.has-footer-dropdown .footer__nav-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: normal;
  color: var(--primary-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-footer-dropdown.footer-dropdown-open .footer__nav-title::after {
  transform: translateY(-50%) rotate(45deg);
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding-left: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding-bottom: 0;
}

.has-footer-dropdown.footer-dropdown-open .footer__nav-list {
  opacity: 1;
  padding-bottom: 15px;
}

.footer__nav-list a {
  color: var(--gray-color);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: var(--primary-color);
}

/* コピーライト */
.footer__copyright {
  text-align: center;
  padding: 10px 20px;
  background-color: var(--white-color);
  border-top: 1px solid var(--gray-color03);
  margin-top: 20px;
}

.footer__copyright p {
  margin: 0;
  font-size: 11px;
  color: var(--gray-color03);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }

  /* 768px以上ではfooter__inner-leftとfooter__inner-rightの順序を戻す */
  .footer__inner {
    padding: 0 40px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .footer__inner-right {
    min-width: 250px;
    gap: 18px;
    text-align: center;
  }

  .footer__link {
    font-size: 12px;
  }

  .footer__link-img {
    width: 15px;
    height: 15px;
  }

  /* 768px以上ではアコーディオンを無効化し、通常のナビゲーションに戻す */
  .footer__nav {
    flex-direction: row;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 5px;
  }

  .footer__nav-item {
    min-width: 90px;
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer__nav-title {
    cursor: default;
    padding: 0;
    margin-bottom: 12px;
  }

  /* アコーディオンアイコンを非表示 */
  .has-footer-dropdown .footer__nav-title::after {
    display: none;
  }

  /* 768px以上では常にリストを表示 */
  .footer__nav-list {
    display: flex !important;
    max-height: none !important;
    opacity: 1 !important;
    padding-left: 0;
    padding-bottom: 0;
    gap: 7px;
  }

  .footer__nav-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer__nav-list a {
    font-size: 13px;
  }

  .footer__copyright {
    text-align: right;
    padding: 20px 40px 10px;
  }

  .footer__copyright p {
    font-size: 12px;
    text-align: center;
  }

  .footer__link-sns {
    margin-top: 0;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer__inner {
    /* max-width: 1200px; */
    padding: 0 20px;
    flex-direction: column;
  }

  .footer__inner-right {
    min-width: 200px;
    gap: 10px;
    text-align: center;
  }

  .footer__link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
  }

  .footer__link-corporate,
  .footer__link-contact,
  .footer__link-privacy {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .footer__link-sns {
    padding-left: 10px;
    justify-content: center;
    margin-top: 10px;
  }

  .footer__nav {
    gap: 50px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .footer__nav-item {
    min-width: 125px;
    text-align: center;
  }

  .footer__nav-list a {
    white-space: nowrap;
  }

  .footer__nav-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer__nav-title a {
    font-size: 20px;
  }

  .footer__nav-list {
    gap: 5px;
  }

  .footer__nav-list a {
    font-size: 14px;
  }

  .footer__copyright {
    padding: 20px 50px 10px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .footer__inner {
    max-width: 1360px;
  }

  .footer__nav-item {
    min-width: 130px;
  }

  .footer__nav-list a {
    font-size: 16px;
  }
}

/* KVタイトルのフェードアウトアニメーション */
/* @keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
} */

/* ===========================================
   KVセクション（モバイルファースト）
   =========================================== */
.kv {
  height: 100vh;
  position: relative;
  overflow: hidden;
  /* padding: 0 15px; */
}

.kv__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.kv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.kv__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white-color);
  z-index: 2;
  padding: 20px;
}

.kv__title {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  width: 100%;
  /* font-family: var(--font-family-851gkktt); */
  font-family: hellofont-id-longfeizhengkai, sans-serif;
  font-style: normal;
  font-weight: 400;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInOut 6s ease-in-out forwards;
}

.kv__sub-title {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.kv__title-top {
  /* text-align: left;
  align-self: flex-start; */
  /* margin-left: -8%; */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 60px; */
}

.kv__title-bottom {
  text-align: right;
  align-self: flex-end;
  margin-right: -10%;
}

.kv__title-small {
  font-size: 0.6em;
  font-weight: var(--font-weight-medium);
}

.kv__title-large {
  font-size: 1.2em;
  font-weight: var(--font-weight-bold);
}

.kv__text {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .kv__image {
    border-radius: 40px;
  }

  .kv__title {
    font-size: 60px;
  }

  .kv__sub-title {
    font-size: 30px;
    text-align: center;
  }

  .kv__title-top {
    margin-top: 60px;
    /* margin-left: -5%; */
  }

  .kv__text {
    font-size: 18px;
    margin-right: -5%;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  /* .kv {
    padding: 0 60px;
  } */

  .kv__image {
    border-radius: 60px;
  }

  /* .kv__content {
    padding: 60px;
  } */

  .kv__title {
    font-size: 90px;
  }

  .kv__title-bottom {
    margin-right: -5%;
  }

  .kv__text {
    font-size: 24px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .kv__title {
    font-size: 110px;
  }
  /* .kv {
    padding: 0 100px;
  } */

  /* .kv__image {
    border-radius: 100px;
  } */
}

/* ===========================================
   PAGE TOPリンク（モバイルファースト）
   =========================================== */
.page-top {
  text-align: center;
  padding: 0 0 40px;
  background-color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .page-top {
    padding-bottom: 0;
  }
}

.page-top__link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: relative;
}

.page-top__link.show {
  opacity: 1;
  visibility: visible;
}

.page-top__link:hover {
  color: var(--navy-color);
  transform: translateY(-2px);
}

.page-top__link::before {
  content: "↑";
  margin-right: 5px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.page-top__link:hover::before {
  transform: translateY(-2px);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .page-top__link {
    font-size: 14px;
  }

  .page-top__link::before {
    font-size: 15px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .page-top__link {
    font-size: 14px;
  }

  .page-top__link::before {
    font-size: 16px;
  }
}

/* ===========================================
   ブログカルーセルセクション（Swiper対応）
   =========================================== */
#blog {
  padding: 60px 0;
  background-color: var(--white-color);
}

.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog__heading {
  text-align: center;
  margin-bottom: 60px;
}

.blog__heading h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.blog__heading p {
  font-size: 1.1rem;
  color: #666;
}

.blog__category {
  margin-bottom: 50px;
}

.blog__category-title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  margin: 0 0 30px 0;
  line-height: 1.4;
  text-align: left;
}

/* Swiperコンテナ */
.blog-swiper-sales,
.blog-swiper-challenge {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* Swiperラッパー */
.blog-swiper-sales .swiper-wrapper,
.blog-swiper-challenge .swiper-wrapper {
  align-items: stretch;
}

/* Swiperスライド */
.blog-swiper-sales .swiper-slide,
.blog-swiper-challenge .swiper-slide {
  height: auto;
  display: flex;
}

/* ブログカード */
.blog-card {
  background-color: transparent;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
  cursor: pointer;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card__image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--gray-color04);
}

.blog-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 15px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card__title {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--font-color);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  /* min-height: 60px;
  height: 60px; */
}

.blog-card__author {
  font-size: 12px;
  color: var(--gray-color);
  margin: 0;
  font-weight: var(--font-weight-medium);
  margin-top: auto;
}

/* Swiperナビゲーションとページネーション */
.blog-swiper-sales,
.blog-swiper-challenge {
  position: relative;
}

/* ナビゲーションコンテナ */
.blog-swiper-sales .swiper-pagination,
.blog-swiper-challenge .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* ナビゲーションボタン */
.swiper-button-next,
.swiper-button-prev {
  position: static;
  top: 0;
  width: 32px;
  height: 32px;
  margin-top: 0;
  background-color: var(--white-color);
  border: 2px solid var(--gray-color04);
  border-radius: 50%;
  color: var(--font-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

/* ページネーションドット */
.swiper-pagination-bullets {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--gray-color04);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
  background-color: var(--primary-color);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  #blog {
    padding: 80px 0;
  }

  .blog__inner {
    padding: 0 40px;
  }

  .blog__category {
    margin-bottom: 60px;
  }

  .blog__category-title {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .blog-card__content {
    padding: 18px 0;
  }

  .blog-card__title {
    font-size: 15px;
    margin-bottom: 12px;
    /* min-height: 66px;
    height: 66px; */
  }

  .blog-card__author {
    font-size: 13px;
  }

  .swiper-pagination {
    margin-top: 40px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  #blog {
    padding: 100px 0;
  }

  .blog__category {
    margin-bottom: 80px;
  }

  .blog__category-title {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .blog-card__content {
    padding: 20px 0;
  }

  .blog-card__title {
    font-size: 16px;
    margin-bottom: 15px;
    /* min-height: 72px;
    height: 72px; */
  }

  .blog-card__author {
    font-size: 14px;
  }

  .swiper-pagination {
    margin-top: 50px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .blog__inner {
    max-width: 1360px;
  }
}

/* ===========================================
   インデックスセクション（モバイルファースト）
   =========================================== */
#index {
  padding: 0 0 50px;
  background-color: var(--white-color);
  overflow: hidden;
}

.index__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible;
}

.index__header {
  text-align: left;
  margin-bottom: 20px;
}

.index__title {
  font-family: var(--font-family-oswald);
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  letter-spacing: 2px;
}

.index__subtitle {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.index__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: visible;
}

.index__row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: visible;
}

.index__card {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.index__card-inner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 20px;
}

.index__card-content {
  flex: 1;
  z-index: 3;
  text-align: left;
  position: relative;
}

.index__card-number {
  font-family: var(--font-family-oswald);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.index__card-category {
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: var(--white-color);
  margin-bottom: 10px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.index__card-title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.index__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.index__card-link::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--white-color);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.index__card-link:hover {
  opacity: 0.8;
}

.index__card-link:hover::after {
  opacity: 1;
  transform: translateX(2px);
}

.index__card-people {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 200px;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  overflow: visible; /* はみ出しを許可 */
}

.index__card-person {
  position: absolute;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom center;
  filter: none;
  will-change: transform; /* パフォーマンス最適化 */
}

.index__card-person:hover {
  filter: none;
}

.index__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: none !important;
  filter: none !important;
}

/* カード全体のホバー時の効果 */
.index__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* 人物画像のグロー効果 */
.index__card:hover .index__card-person .index__card-img {
  box-shadow: none !important;
  filter: none !important;
}

/* ホバー時のアニメーション */
/* .index__card:hover .index__card-person {
  transform: scale(1.08) translateY(-12px) rotate(2deg);
  animation: float-person 2s ease-in-out infinite;
} */
.index__card:hover .index__card-person {
  animation: jump-person 0.6s cubic-bezier(0.4, 1.6, 0.6, 1) 1;
}

/* フローティングアニメーション */
/* @keyframes float-person {
  0%,
  100% {
    transform: scale(1.08) translateY(-12px) rotate(2deg);
  }
  50% {
    transform: scale(1.1) translateY(-18px) rotate(3deg);
  }
} */
@keyframes jump-person {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 個別カードの人物配置パターン */
/* カード01の人物配置 */
.index__card .index__card-person--01 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

/* カード02の人物配置 */
.index__card .index__card-person--02 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

/* カード03の人物配置 */
.index__card .index__card-person--03 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

/* カード04の人物配置 */
.index__card .index__card-person--04 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

/* カード05の人物配置 */
.index__card .index__card-person--05 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

/* カード06の人物配置 */
.index__card .index__card-person--06 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

/* カード07の人物配置 */
.index__card .index__card-person--07 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

/* カード08の人物配置 */
.index__card .index__card-person--08 {
  right: 20px;
  bottom: 0;
  z-index: 1;
}

.index__card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.index__card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* カード別の背景色とフィルター */
.index__card--01 {
  background-color: var(--accent-color); /* #FFB110 */
}

.index__card--02 {
  background-color: var(--sky-blue-color); /* #03ABFF */
}

.index__card--03 {
  background-color: var(--green-color); /* #0AE3BA */
}

.index__card--04 {
  background-color: var(--pink-color); /* #F48DD4 */
}

.index__card--05 {
  background-color: var(--navy-color); /* #476692 */
}

.index__card--06 {
  background-color: var(--sky-blue-color); /* #03ABFF */
}

.index__card--07 {
  background-color: var(--orange-color); /* #FF9D00 */
}

.index__card--07 .index__card-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--orange-transparent); /* #FF9D00 70% */
  z-index: 1;
}

.index__card--08 {
  background-color: var(--green-color); /* #0AE3BA */
}

.index__card--08 .index__card-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green-transparent); /* #0AE3BA 70% */
  z-index: 1;
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .index__inner {
    padding: 0 40px;
  }

  .index__title {
    font-size: 48px;
  }

  .index__subtitle {
    font-size: 16px;
  }

  .index__content {
    gap: 25px;
  }

  .index__row {
    flex-direction: row;
    gap: 25px;
  }

  .index__row:first-child .index__card {
    flex: 1;
  }

  .index__row:nth-child(2) .index__card {
    flex: 1;
  }

  .index__row:nth-child(3) .index__card {
    flex: 1;
  }

  .index__card {
    height: auto;
  }

  .index__card-inner {
    height: auto;
    padding: 20px;
  }

  .index__card-number {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .index__card-category {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .index__card-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .title-small {
    font-size: 22px;
  }

  .index__card-link {
    font-size: 14px;
    gap: 8px;
  }

  .index__card-link::after {
    width: 7px;
    height: 7px;
  }

  .index__card-people {
    right: -30px;
    bottom: 0;
    width: 220px;
    height: 200px;
  }

  /* カード01の人物配置 */
  .index__card .index__card-person--01 {
    right: 30px;
    bottom: 0;
  }

  /* カード02の人物配置 */
  .index__card .index__card-person--02 {
    right: 30px;
    bottom: 0;
  }

  /* カード03の人物配置 */
  .index__card .index__card-person--03 {
    right: 30px;
    bottom: 0;
  }

  /* カード04の人物配置 */
  .index__card .index__card-person--04 {
    right: 30px;
    bottom: 0;
  }

  /* カード05の人物配置 */
  .index__card .index__card-person--05 {
    right: 30px;
    bottom: 0;
  }

  /* カード06の人物配置 */
  .index__card .index__card-person--06 {
    right: 30px;
    bottom: 0;
    width: 250px;
  }

  /* カード07の人物配置 */
  .index__card .index__card-person--07 {
    right: 30px;
    bottom: 0;
  }

  /* カード08の人物配置 */
  .index__card .index__card-person--08 {
    right: 30px;
    bottom: 0;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .index__inner {
    padding: 0 20px;
  }

  .index__title {
    font-size: 72px;
  }

  .index__subtitle {
    font-size: 18px;
  }

  .index__content {
    gap: 30px;
  }

  .index__row {
    gap: 30px;
  }

  .index__card {
    height: auto;
  }

  .index__card-inner {
    height: auto;
    padding: 20px;
  }

  .index__card-number {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .index__card-category {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .index__card-title {
    font-size: 56px;
    margin-bottom: 30px;
  }

  .title-small {
    font-size: 36px;
  }

  .index__card-link {
    font-size: 16px;
    gap: 8px;
  }

  .index__card-link::after {
    width: 8px;
    height: 8px;
  }

  .index__card-people {
    right: -20px;
    bottom: 0;
    /* width: 250px; */
    /* height: 220px; */
  }

  /* カード01の人物配置 */
  .index__card .index__card-person--01 {
    right: 40px;
    bottom: 0;
    width: 250px;
  }

  /* カード02の人物配置 */
  .index__card .index__card-person--02 {
    right: 40px;
    bottom: 0;
    width: 250px;
  }

  /* カード03の人物配置 */
  .index__card .index__card-person--03 {
    right: 40px;
    bottom: 0;
    width: 260px;
  }

  /* カード04の人物配置 */
  .index__card .index__card-person--04 {
    right: 40px;
    bottom: 0;
    width: 220px;
  }

  /* カード05の人物配置 */
  .index__card .index__card-person--05 {
    right: 40px;
    bottom: 0;
    width: 250px;
  }

  /* カード06の人物配置 */
  .index__card .index__card-person--06 {
    right: 40px;
    bottom: 0;
    width: 300px;
  }

  /* カード07の人物配置 */
  .index__card .index__card-person--07 {
    right: 40px;
    bottom: 0;
    width: 240px;
  }

  /* カード08の人物配置 */
  .index__card .index__card-person--08 {
    right: 40px;
    bottom: 0;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .index__inner {
    max-width: 1360px;
  }
}

/* ===========================================
   RECRUITMENT DECKセクション（モバイルファースト）
   =========================================== */
#recruitment-deck {
  padding: 60px 0;
}

.recruitment-deck__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.recruitment-deck__header {
  text-align: left;
  margin-bottom: 40px;
}

.recruitment-deck__title {
  font-family: var(--font-family-oswald);
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.recruitment-deck__subtitle {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.recruitment-deck__content {
  display: flex;
  justify-content: center;
}

.recruitment-deck__item {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruitment-deck__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.recruitment-deck__image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  background-color: var(--white-color);
  overflow: hidden;
}

.recruitment-deck__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recruitment-deck__item:hover .recruitment-deck__image {
  transform: scale(1.05);
}

.recruitment-deck__pdf-viewer {
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}

.recruitment-deck__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================================
   FAQ Section
=========================================== */
#faq {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.faq__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.faq__header {
  text-align: left;
  margin-bottom: 40px;
}

.faq__title {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.faq__subtitle {
  font-size: 14px;
  color: var(--text-color);
  font-weight: var(--font-weight-medium);
}

.faq__content {
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 16px;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  background: var(--white-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq__question:hover {
  background-color: rgba(10, 140, 227, 0.05);
}

.faq__question-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.faq__question-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-right: 16px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
}

.faq__question-text {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
  line-height: 1.6;
}

.faq__toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid #e1e5e9;
}

.faq__answer-content {
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.faq__answer-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-right: 16px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
}

.faq__answer-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
}

.faq__item.active .faq__question {
  background-color: rgba(10, 140, 227, 0.05);
}

.faq__item.active .faq__toggle {
  transform: rotate(180deg);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  #recruitment-deck {
    padding: 80px 0;
  }

  .recruitment-deck__inner {
    padding: 0 40px;
  }

  .recruitment-deck__header {
    margin-bottom: 50px;
  }

  .recruitment-deck__title {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .recruitment-deck__subtitle {
    font-size: 16px;
  }

  .recruitment-deck__item {
    width: 90%;
    margin: 0 auto;
  }

  .recruitment-deck__pdf-viewer {
    height: 700px;
  }

  #faq {
    padding: 80px 0;
  }

  .faq__inner {
    padding: 0 40px;
  }

  .faq__header {
    margin-bottom: 50px;
  }

  .faq__title {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .faq__subtitle {
    font-size: 16px;
  }

  .faq__question-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-right: 20px;
    text-align: center;
    line-height: 1;
  }

  .faq__question-text {
    font-size: 18px;
  }

  .faq__answer-content {
    padding: 24px;
  }

  .faq__answer-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-right: 20px;
    text-align: center;
    line-height: 1;
  }

  .faq__answer-text {
    font-size: 16px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  #recruitment-deck {
    padding: 100px 0;
  }

  .recruitment-deck__inner {
    padding: 0 20px;
  }

  .recruitment-deck__header {
    margin-bottom: 60px;
  }

  .recruitment-deck__title {
    font-size: 72px;
    margin-bottom: 15px;
  }

  .recruitment-deck__subtitle {
    font-size: 18px;
  }

  .recruitment-deck__pdf-viewer {
    height: 800px;
  }

  #faq {
    padding: 100px 0;
  }

  .faq__inner {
    padding: 0 20px;
  }

  .faq__header {
    margin-bottom: 60px;
  }

  .faq__title {
    font-size: 72px;
    margin-bottom: 15px;
  }

  .faq__subtitle {
    font-size: 18px;
  }

  .faq__question-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 24px;
    text-align: center;
    line-height: 1;
  }

  .faq__question-text {
    font-size: 20px;
  }

  .faq__toggle {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .faq__answer-content {
    padding: 28px;
  }

  .faq__answer-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 24px;
    text-align: center;
    line-height: 1;
  }

  .faq__answer-text {
    font-size: 18px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .recruitment-deck__inner {
    max-width: var(--content-width-lg);
  }
}

/* ===========================================
   Numbers Section（モバイルファースト）
   =========================================== */
#numbers {
  padding: 80px 0;
  background-color: var(--white-color);
}

.numbers__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.numbers__title {
  font-family: var(--font-family-oswald);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  text-align: left;
  margin-bottom: 10px;
}

.numbers__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  margin-bottom: 40px;
}

.numbers__row {
  margin-bottom: 20px;
}

.numbers__row:last-child {
  margin-bottom: 0;
}

/* 1列目: 正方形画像3枚 */
.numbers__row--square {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.numbers__row--square .numbers__item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* 横スクロールバーのスタイリング */
.numbers__row--square::-webkit-scrollbar {
  height: 4px;
}

.numbers__row--square::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.numbers__row--square::-webkit-scrollbar-thumb {
  background: var(--text);
  border-radius: 2px;
}

/* 2列目: 長方形画像2枚 */
.numbers__row--rectangle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* 3列目: 横長画像1枚 */
.numbers__row--wide {
  display: grid;
  grid-template-columns: 1fr;
}

.numbers__item {
  width: 100%;
  overflow: hidden;
}

.numbers__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* タブレット対応 */
@media screen and (min-width: 768px) {
  #numbers {
    padding: 100px 0;
  }

  .numbers__title {
    font-size: 80px;
  }

  .numbers__subtitle {
    font-size: 18px;
  }

  .numbers__row {
    margin-bottom: 30px;
  }

  /* 1列目: 正方形画像3枚 */
  .numbers__row--square {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .numbers__row--square .numbers__item {
    flex: none;
    scroll-snap-align: none;
  }

  /* 2列目: 長方形画像2枚 */
  .numbers__row--rectangle {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* PC対応 */
@media screen and (min-width: 1080px) {
  #numbers {
    padding: 120px 0;
  }

  .numbers__title {
    font-size: 100px;
  }

  .numbers__subtitle {
    font-size: 20px;
  }

  .numbers__row {
    margin-bottom: 40px;
  }

  .numbers__row--square {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .numbers__row--square .numbers__item {
    flex: none;
    scroll-snap-align: none;
  }

  .numbers__row--rectangle {
    gap: 30px;
  }
}

.numbers__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #001d5c;
  line-height: 1.6;
}

.numbers-small-font {
  font-size: 10px;
  color: #001d5c;
}

/* タブレット対応 */
@media screen and (min-width: 768px) {
  #numbers {
    padding: 50px 0;
  }

  .numbers__title {
    font-size: 100px;
  }

  .numbers__subtitle {
    font-size: 20px;
  }

  .numbers__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* ===========================================
 Page Links Section（モバイルファースト）
 =========================================== */
#page-links {
  padding: 60px 0;
  background-color: var(--white-color);
}

.page-links__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.page-links__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.page-links__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.page-links__item:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.page-links__image {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--gray-color04);
}

.page-links__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-links__item:hover .page-links__img {
  transform: scale(1.05);
}

.page-links__link {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}

.page-links__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
}

.page-links__item:hover .page-links__arrow {
  transform: translateX(5px);
}

.page-links__text {
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--font-color);
  margin: 0;
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .page-links__content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page-links__item {
    width: calc((100% - 20px) / 3);
  }

  .page-links__image {
    aspect-ratio: 1 / 1;
  }

  .page-links__arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .page-links__text {
    font-size: 16px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  #page-links {
    padding: 80px 0;
  }

  .page-links__arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .page-links__text {
    font-size: 18px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .page-links__inner {
    max-width: 1360px;
  }
}

/* ===========================================
   Other Members Section（モバイルファースト）
   =========================================== */
#other-members {
  padding: 60px 0;
  background-color: var(--white-color);
}

.other-members__inner {
  max-width: var(--content-width-lg);
  margin: 0 auto;
}

.other-members__title {
  font-size: 32px;
  font-family: var(--font-family-oswald);
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  text-align: left;
  margin-bottom: 40px;
}

.other-members__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.other-members__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.other-members__item:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.other-members__image {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--gray-color04);
}

.other-members__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.other-members__item:hover .other-members__img {
  transform: scale(1.05);
}

.other-members__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.other-members__name {
  font-family: Akshar, sans-serif;
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
  margin: 0;
}

.other-members__position {
  font-size: 16px;
  color: var(--gray-600);
  margin: 0;
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .other-members__content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .other-members__item {
    width: calc((100% - 20px) / 3);
  }

  .other-members__image {
    aspect-ratio: 1 / 1;
  }

  .other-members__name {
    font-size: 18px;
  }

  .other-members__position {
    font-size: 14px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  #other-members {
    padding: 80px 0;
  }

  .other-members__title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .other-members__name {
    font-size: 20px;
  }

  .other-members__position {
    font-size: 16px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .other-members__inner {
    max-width: 1360px;
  }
}

/* ===========================================
   Benefits Section（モバイルファースト）
   =========================================== */
#benefits {
  padding: 80px 0;
  background-color: var(--white-color);
}

.benefits__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.benefits__title {
  font-family: var(--font-family-oswald);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  text-align: left;
  margin-bottom: 10px;
}

.benefits__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  margin-bottom: 60px;
}

.benefits__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefits__item {
  padding: 30px 0;
  border-bottom: 1px solid var(--text, #44546a);
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.benefits__item:first-child {
  border-top: 1px solid var(--text, #44546a);
}

.benefits__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
  width: 160px;
  flex-shrink: 0;
}

.benefits__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

/* タブレット対応 */
@media screen and (min-width: 768px) {
  #benefits {
    padding: 100px 0;
  }

  .benefits__title {
    font-size: 80px;
  }

  .benefits__subtitle {
    font-size: 18px;
    margin-bottom: 80px;
  }

  .benefits__item {
    padding: 40px 0;
    gap: 60px;
  }

  .benefits__item-title {
    font-size: 16px;
    margin-bottom: 0;
    width: 200px;
  }

  .benefits__item-text {
    font-size: 14px;
  }
}

/* PC対応 */
@media screen and (min-width: 1080px) {
  #benefits {
    padding: 50px 0;
  }

  .benefits__title {
    font-size: 100px;
  }

  .benefits__subtitle {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .benefits__item {
    padding: 50px 0;
    gap: 80px;
  }

  .benefits__item-title {
    font-size: 20px;
    margin-bottom: 0;
    width: 330px;
  }

  .benefits__item-text {
    font-size: 18px;
  }
}

/* ===========================================
 CTAセクション（モバイルファースト）
 =========================================== */
#cta {
  background-color: var(--white-color);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.cta__inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta__card {
  height: auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

.cta__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta__card-inner {
  position: relative;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta__card-content {
  flex: 1;
}

.cta__card-title {
  font-family: var(--font-family-oswald);
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__card-subtitle {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--white-color);
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  align-self: flex-end;
  margin-left: auto;
  margin-top: 40px;
}

.cta__card-link,
a.cta__card .cta__card-link,
span.cta__card-link {
  cursor: pointer;
}

.cta__card-link::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--white-color);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta__card-link:hover {
  opacity: 0.8;
}

.cta__card-link:hover::after {
  opacity: 1;
  transform: translateX(2px);
}

/* カード別の背景色 */
.cta__card--job {
  /* background-color: var(--sky-blue-color03); #0A8CE3 */
  background: var(--primary-color);
}

.cta__card--entry {
  background-color: var(--accent-color);
  /* background: #3EC9C9; */
  /* background: #71849E; */
  /* background: var(--font-color); */
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .cta__inner {
    padding: 0;
  }

  .cta__content {
    flex-direction: row;
    gap: 0;
  }

  .cta__card {
    flex: 1;
  }

  .cta__card-title {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .cta__card-subtitle {
    font-size: 15px;
  }

  .cta__card-link {
    font-size: 12px;
    gap: 8px;
  }

  .cta__card-link::after {
    width: 7px;
    height: 7px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .cta__inner {
    padding: 0;
  }

  .cta__content {
    gap: 0;
  }

  .cta__card-title {
    font-size: 64px;
    margin-bottom: 12px;
  }

  .cta__card-subtitle {
    font-size: 20px;
  }

  .cta__card-link {
    font-size: 16px;
  }

  .cta__card-link::after {
    width: 8px;
    height: 8px;
  }
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  #cta {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .cta__inner {
    max-width: none;
    padding: 0;
    width: 100%;
  }
}

/* ===========================================
   PHILOSOPHYページ
   =========================================== */

/* Philosophy MV Section */
.philosophy-mv {
  padding: 120px 0 0;
  background-color: var(--white-color);
  background-image: url("../webp/message-mv-bg.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .philosophy-mv {
    background-position: right 30% center !important;
    background-size: cover !important;
  }
}

.philosophy-mv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.philosophy-mv__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.philosophy-mv__title {
  font-family: var(--font-family-oswald);
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 16px;
}

.philosophy-mv__subtitle {
  font-size: 18px;
  color: var(--font-color);
  font-weight: var(--font-weight-medium);
  text-align: left;
}

.philosophy-mv__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end; /* 右揃え */
  margin-left: auto;
}

.philosophy-mv__nav-top {
  display: flex;
  gap: 20px;
  align-items: center;
}

.philosophy-mv__nav-bottom {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.philosophy-mv__nav-row {
  display: flex;
  gap: 20px;
}

.philosophy-mv__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 5px 15px 5px 50px;
  background-color: var(--white-color);
  border: 2px solid var(--font-color);
  border-radius: 50vh;
  text-decoration: none;
  color: var(--font-color);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  width: 160px;
  height: 40px;
}

.philosophy-mv__nav-btn::before {
  content: "↓";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.philosophy-mv__nav-btn:hover {
  background-color: var(--font-color);
  color: var(--white-color);
}

/* デスクトップ専用（1080px以上）でのみ横並び */
@media (min-width: 1080px) {
  .philosophy-mv__nav-top {
    flex-direction: row; /* デスクトップでは横並び */
    gap: 20px;
  }
}

/* タブレット画面（768px-1079px）では縦並び */
@media (min-width: 768px) and (max-width: 1079px) {
  .philosophy-mv__nav {
    align-items: center; /* タブレットでは中央配置 */
  }

  .philosophy-mv__nav-top {
    flex-direction: column; /* タブレットでは縦並び */
    gap: 20px;
  }

  .philosophy-mv__nav-bottom {
    justify-content: center; /* タブレットではVALUEも中央配置 */
  }
}

/* Philosophy Section */
.philosophy-section {
  padding: 50px 0;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .philosophy-section {
    padding: 80px 0;
  }
}

.philosophy-section#mission {
  background-image: url("../webp/背景画像.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.philosophy-section#mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.philosophy-section#mission .philosophy-section__inner {
  position: relative;
  z-index: 2;
}

.philosophy-section#vision {
  background-image: url("../webp/背景画像.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transform: rotate(180deg);
  padding-top: 50px;
}

.philosophy-section#vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.philosophy-section#vision .philosophy-section__inner {
  position: relative;
  z-index: 2;
  transform: rotate(180deg);
}

.philosophy-section:nth-child(even) {
  background-color: var(--background-light);
}

.philosophy-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.philosophy-section__header {
  text-align: center;
}

.philosophy-section__title {
  font-family: var(--font-family-oswald);
  font-size: 72px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  line-height: 1;
  letter-spacing: 1.1px;
}

.philosophy-section__subtitle {
  font-size: 14px;
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  background-color: var(--primary-color);
  padding: 2px 20px;
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-top: 5px;
  line-height: 1;
}

/* Philosophy Section Subtitle */
.philosophy-section__philosophy {
  padding: 2px 40px;
  width: 300px;
}

/* Vision Section Subtitle */
.philosophy-section__vision {
  padding: 2px 40px;
  width: 270px;
}

/* Value Section Subtitle */
.philosophy-section__value {
  padding: 2px 10px;
  width: 150px;
}

.philosophy-section__mission-content {
  text-align: center;
  margin: 0 auto 60px;
  padding: 80px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.philosophy-section__mission-title {
  font-size: 36px;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  font-family: var(--font-family-noto-serif-jp);
}

.philosophy-section__mission-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 80px;
  border-top: 2px solid var(--font-color);
  border-bottom: 2px solid var(--font-color);
  border-left: 2px solid var(--font-color);
}

.philosophy-section__mission-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 80px;
  border-top: 2px solid var(--font-color);
  border-right: 2px solid var(--font-color);
  border-bottom: 2px solid var(--font-color);
}

.philosophy-section__mission-description {
  margin-bottom: 30px;
}

.philosophy-section__mission-description p {
  text-align: center;
  font-size: 16px;
  line-height: 200%;
  color: var(--font-color);
}

.philosophy-section__mission-quote p {
  text-align: center;
  font-size: 24px;
  line-height: 150%;
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

/* Vision Content Styles */
.philosophy-section__vision-content {
  text-align: center;
  margin: 0 auto;
  padding: 60px 40px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  min-height: 300px;
  width: 100%;
}

.philosophy-section__vision-title {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  font-family: var(--font-family-noto-serif-jp);
}

.philosophy-section__vision-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 160px;
  border-top: 2px solid var(--font-color);
  border-bottom: 2px solid var(--font-color);
  border-left: 2px solid var(--font-color);
}

.philosophy-section__vision-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 160px;
  border-top: 2px solid var(--font-color);
  border-right: 2px solid var(--font-color);
  border-bottom: 2px solid var(--font-color);
}

.philosophy-section__vision-description {
  margin-top: 40px;
}

.philosophy-section__vision-description p {
  text-align: center;
  font-size: 16px;
  line-height: 200%;
  color: var(--font-color);
}

@media screen and (min-width: 1200px) {
  .philosophy-section__vision-description p {
    font-size: 18px;
  }
}

.philosophy-section__vision-quote p {
  text-align: left;
  font-size: 24px;
  line-height: 150%;
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

.philosophy-section__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.philosophy-section__text {
  flex: 1;
}

.philosophy-section__text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.philosophy-section__text p:last-child {
  margin-bottom: 0;
}

.philosophy-section__image {
  flex: 1;
  max-width: 400px;
}

.philosophy-section__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Philosophy Values */
.philosophy-section__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.philosophy-value {
  padding: 32px;
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-value__title {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 16px;
}

.philosophy-value__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--font-color);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .philosophy-mv {
    padding: 100px 0 0;
  }

  .philosophy-mv__content {
    flex-direction: column;
    gap: 40px;
    text-align: left;
    align-items: flex-start;
  }

  .philosophy-mv__text {
    text-align: left;
    width: 100%;
  }

  .philosophy-mv__scroll {
    align-self: flex-end;
  }

  .philosophy-mv__title {
    font-size: 64px;
  }

  .philosophy-mv__nav-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .philosophy-mv__nav {
    align-items: center; /* モバイルでは中央配置 */
  }

  .philosophy-mv__nav-top {
    flex-direction: column; /* モバイルでは縦並び */
    gap: 20px;
  }

  .philosophy-mv__nav-bottom {
    justify-content: center;
  }

  /* .philosophy-mv__nav-btn {
    font-size: 12px;
    padding: 10px 20px;
  } */

  .philosophy-section {
    padding: 0 0 50px;
  }

  .philosophy-section__content {
    flex-direction: column;
    gap: 40px;
  }

  .philosophy-section__title {
    font-size: 56px;
  }

  .philosophy-section__mission-content {
    min-height: 400px;
    margin: 0 auto 60px;
    max-width: 100%;
  }

  .philosophy-section__vision-content {
    min-height: 400px;
    margin: 0 auto;
    max-width: 100%;
    padding: 40px 20px 50px;
  }

  /* モバイルでは説明文を左揃えに */
  .philosophy-section__mission-description p,
  .philosophy-section__vision-description p,
  .philosophy-section__mission-quote p {
    text-align: left;
  }

  .philosophy-section__vision-title {
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .philosophy-section__vision-title::before,
  .philosophy-section__vision-title::after {
    width: 16px;
    height: 80px;
  }

  .philosophy-section__values {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .philosophy-value {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  /* タブレット用サブタイトル幅設定 */
  .philosophy-section__philosophy {
    width: 390px;
    padding: 4px 35px;
    font-size: 18px;
  }

  .philosophy-section__vision {
    width: 350px;
    padding: 4px 65px;
    font-size: 18px;
  }

  .philosophy-section__value {
    width: 210px;
    padding: 4px 25px;
    font-size: 18px;
  }

  .philosophy-section__vision-title {
    font-size: 36px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .philosophy-section__vision-title::before,
  .philosophy-section__vision-title::after {
    width: 18px;
    height: 100px;
  }

  /* .philosophy-section__vision-content {
    padding: 80px 40px;
  } */
}

@media (min-width: 1080px) {
  .philosophy-mv__title {
    font-size: 108px;
  }

  .philosophy-mv__subtitle {
    font-size: 28px;
  }

  /* .philosophy-mv__nav-btn {
    width: 180px;
    height: 40px;
  } */

  .philosophy-section__title {
    font-size: 80px;
  }

  /* PC画面でのサブタイトル幅設定 */
  .philosophy-section__philosophy {
    width: 420px;
    padding: 4px 40px;
    font-size: 20px;
  }

  .philosophy-section__vision {
    width: 400px;
    padding: 4px 80px;
    font-size: 20px;
  }

  .philosophy-section__value {
    width: 240px;
    padding: 4px 30px;
    font-size: 20px;
  }

  .philosophy-section__mission-title {
    padding-left: 50px;
    padding-right: 50px;
  }

  .philosophy-section__vision-title {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 42px;
  }

  .philosophy-section__vision-title::before,
  .philosophy-section__vision-title::after {
    width: 24px;
    height: 140px;
  }

  .philosophy-section__mission-content {
    margin: 0 auto;
    max-width: 1200px;
  }

  .philosophy-section__vision-content {
    margin: 0 auto;
    max-width: 1200px;
    padding: 50px 0 0;
  }
}

/* ====== Value Cards ====== */
.philosophy-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.value-card__wrapper {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 1, 0.6, 1), z-index 0.3s;
  z-index: 1;
}

/* .value-card__wrapper:hover {
  transform: scale(1.2);
  z-index: 10;
} */

/* @media screen and (min-width: 1080px) {
  .value-card__wrapper:hover {
  transform: scale(1.4);
}
} */

.value-card {
  position: relative;
  width: 330px;
  height: 230px;
  border-radius: 20px;
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
  transition: opacity 0.3s;
}



/* .value-card__wrapper {
  position: relative;
} */

.value-card__detail {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
  height: 100%;
  width: 100%;
  background: #fff; /* 必要に応じて背景色を調整 */
  z-index: 2;
  color: var(--font-color);
  font-weight: bold;
  font-size: 1.1rem; /* ホバー時に大きく */
  /* padding: 2em 1.5em; */
  line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.value-card__detail p {
  font-size: 12px;
  text-align: left;
  margin-bottom: 1em;
}

/* .value-card__wrapper:hover .value-card__detail {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
} */

.value-card__wrapper .value-card__default {
  transition: opacity 0.3s;
}

/* .value-card__wrapper:hover .value-card__default {
  opacity: 0;
} */
.value-card__detail p {
  font-size: 10px;
  text-align: left;
}

.value-card__number {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--white-color);
  font-family: Oswald;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

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

.value-card__title-en {
  color: var(--white-color);
  font-family: "Noto Sans JP";
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.value-card__title-ja {
  color: var(--white-color);
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

/* ====== Responsive Design for Value Cards ====== */
@media (max-width: 1080px) {
  .philosophy-section__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    gap: 20px;
  }

  .value-card {
    width: 320px;
    height: 230px;
  }

  .philosophy-section__special-card {
    margin: 20px auto 0;
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .philosophy-section__cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    max-width: 100%;
    margin: 20px auto 0;
    padding-bottom: 20px;
    padding-top: 40px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }

  .philosophy-section__cards::after {
    content: "";
    flex: 0 0 1px;
    height: 1px;
  }

  .philosophy-section__cards::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .value-card {
    flex: 0 0 280px;
    width: 300px;
    height: 210px;
    padding: 15px;
    scroll-snap-align: start;
  }

  .value-card__number {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }

  .value-card__title-en {
    font-size: 24px;
  }

  .value-card__title-ja {
    font-size: 16px;
  }

  /* スペシャルカードも横スクロールに含める */
  .philosophy-section__special-card {
    flex: 0 0 300px;
    width: 300px;
    height: 280px;
    margin: 0;
    padding: 20px;
    scroll-snap-align: start;
    border-radius: 20px;
    /* border: 1px solid var(--text, #44546a); */
    background: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .philosophy-section__special-card .value-card__number {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }
}

/* ====== Special Card (10th card) ====== */
.philosophy-section__special-card {
  position: relative;
  width: 100%;
  height: 356px;
  border-radius: 20px;
  /* border: 1px solid var(--text, #44546a); */
  background: var(--primary-color);
  margin: 24px auto 0;
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 1040px;
}

@media screen and (max-width: 1080px) {
  .philosophy-section__special-card {
    max-width: 680px;
  }
}

.philosophy-section__special-card .value-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white-color);
  font-family: Oswald;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

.special-card__title {
  color: var(--white-color);
  font-family: "Noto Sans JP";
  font-size: 56px;
  font-weight: 700;
  line-height: normal;
  margin: 20px 0 20px 0;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .special-card__title {
    font-size: 48px;
  }
}

.special-card__description {
  color: var(--white-color);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 10px 0;
  text-align: left;
}

@media screen and (max-width: 1080px) {
  .special-card__description {
    font-size: 16px;
  }
}

.special-card__bottom-text {
  color: var(--white-color);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* ====== Responsive Design for Special Card ====== */
@media (max-width: 768px) {
  .philosophy-section__special-card {
    width: calc(100% - 40px);
    max-width: 500px;
    height: auto;
    margin: 16px auto 0;
    padding: 30px 20px;
  }

  .philosophy-section__special-card .value-card__number {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }

  .special-card__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .special-card__description,
  .special-card__bottom-text {
    font-size: 12px;
  }
}

/* ====== Modal Styles ====== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}


/* .modal {
  position: fixed;
  top: 20px;             
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: none;         
  z-index: 9999;
  border-radius: 20px;

} */

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.close {
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: var(--primary-color);
}

.modal-body {
  padding: 20px 40px;
}

.modal-body p {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.modal-body strong {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
}

.font-bold {
  font-weight: 600;
}




/* ====== Card Hover Effect ====== */
.value-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: var(--white-color);
  border: 1px solid var(--primary-color);
    transition: all 0.3s ease;

}

.value-card:hover .value-card__number {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.value-card:hover .value-card__title-en {
  color: var(--primary-color);
}

.value-card:hover .value-card__title-ja {
  color: var(--primary-color);
}



/* ====== Responsive Modal ====== */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 20% auto;
    max-height: 80vh;
  }

  .modal-header {
    padding: 20px 24px 16px;
  }

  .close {
    font-size: 28px;
  }

  .modal-body {
    padding: 16px 24px 24px;
  }

  .modal-body p {
    font-size: 16px;
  }
}

/* MV Scroll Icon Styles */
.philosophy-mv__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.philosophy-mv__scroll:hover {
  transform: translateY(5px);
}

.philosophy-mv__scroll-icon {
  width: 120px;
  height: 120px;
}

/* Responsive adjustments for scroll icon */
@media (min-width: 769px) {
  .philosophy-mv__inner {
    position: relative;
  }

  .philosophy-mv__scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
  }

  .philosophy-mv__content {
    justify-content: space-between;
  }
}

@media (max-width: 1080px) and (min-width: 769px) {
  .philosophy-mv__scroll-icon {
    width: 100px;
    height: 100px;
  }

  /* .philosophy-mv__scroll {
    bottom: 30px;
    right: 30px;
  } */
}

@media (max-width: 768px) {
  .philosophy-mv__content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .philosophy-mv__scroll-icon {
    width: 80px;
    height: 80px;
  }
}

/* ===========================================
/* ===========================================
   MESSAGE ページ専用スタイル
   =========================================== */
/* body.message .philosophy-mv {
  position: relative;
  height: 120vh;
  background-image: url("../webp/message.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* body.message .philosophy-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
} */

/* body.message .philosophy-mv__inner {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 40px;
  box-sizing: border-box;
}

body.message .philosophy-mv__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 0;
}

body.message .philosophy-mv__title,
body.message .philosophy-mv__subtitle {
  color: white;
} */

body.message .philosophy-mv__ceo-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  position: static;
  margin-top: auto;
  text-align: right;
}

/* body.message .philosophy-mv__scroll {
  align-self: flex-end;
  margin-bottom: 100px;
} */

/* body.message .philosophy-mv__ceo-text {
  text-align: right;
} */

/* body.message .philosophy-mv__ceo-name-en {
  font-family: var(--font-family-oswald);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: 8px;
  text-align: right;
}

body.message .philosophy-mv__ceo-name-jp {
  font-size: 16px;
  color: white;
  font-weight: var(--font-weight-medium);
  text-align: right;
} */

/* body.message .philosophy-mv__scroll-icon circle {
  stroke: white !important;
  fill: none !important;
}

body.message .philosophy-mv__scroll-icon rect {
  fill: white !important;
}

body.message .philosophy-mv__scroll-icon path {
  fill: white !important;
} */

/* レスポンシブ対応 */
/* @media (max-width: 768px) {
  body.message .philosophy-mv__inner {
    padding: 120px 20px;
    justify-content: center;
  }

  body.message .philosophy-mv__content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
  }

  body.message .philosophy-mv__ceo-info {
    position: static;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
  }

  body.message .philosophy-mv__ceo-text {
    text-align: center;
  }

  body.message .philosophy-mv__ceo-name-en {
    font-size: 20px;
    text-align: center;
  }

  body.message .philosophy-mv__ceo-name-jp {
    font-size: 14px;
    text-align: center;
  }

  body.message .philosophy-mv__scroll-icon {
    width: 80px;
    height: 80px;
  }
} */

/* Message Content Section */
body.message .message-content {
  padding: 50px 0;
  background-color: #fff;
}

body.message .message-content__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body.message .message-content__title {
  color: var(--primary-color);
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  text-align: left;
  margin-bottom: 40px;
}

body.message .message-content__text {
  color: var(--text, #44546a);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  margin-bottom: 30px;
}

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

body.message .message-content__text p {
  margin-bottom: 15px;
}

body.message .message-content__text p:last-child {
  margin-bottom: 0;
}

/* PC画面時のスタイル */
@media (min-width: 768px) {
  body.message .message-content {
    padding: 50px 0;
  }

  body.message.career-path-message__title {
    font-size: 32px;
  }

  body.message .message-content__inner {
    padding: 0 40px;
  }

  body.message .message-content__title {
    font-size: 48px;
    margin-bottom: 60px;
  }

  body.message .message-content__text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  body.message .message-content__text p {
    margin-bottom: 20px;
  }
}

/* Message page専用 - クロストークヘッダーの幅調整 */
body.message .cross-talk__header {
  max-width: 1200px;
  margin: 0 auto 50px;
  /* padding: 0 20px; */
}

/* Member Section */
body.message .member {
  padding: 0 0 50px;
  background-color: #fff;
}

body.message .member__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body.message .member__header {
  text-align: left;
  margin-bottom: 40px;
}

body.message .member__title {
  color: var(--text, #44546a);
  font-family: Oswald;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

body.message .member__subtitle {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

body.message .member__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

body.message .member__item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

body.message .member__item:hover {
  transform: translateY(-5px);
}

body.message .member__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

body.message .member__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

body.message .member__item:hover .member__image {
  transform: scale(1.05);
}

body.message .member__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--primary-color);
  font-family: Oswald;
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
}

body.message .member__info {
  text-align: left;
}

body.message .member__interview-title {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 8px;
}

body.message .member__initial {
  color: var(--primary-color);
  font-family: Oswald;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 4px;
}

body.message .member__join-date {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* タブレット以上での横並び */
@media (min-width: 768px) {
  body.message .member {
    padding: 0 0 50px;
  }

  body.message .member__inner {
    padding: 0 20px;
  }

  body.message .member__header {
    margin-bottom: 60px;
  }

  body.message .member__title {
    font-size: 48px;
  }

  body.message .member__subtitle {
    font-size: 16px;
  }

  body.message .member__content {
    flex-direction: row;
    gap: 40px;
  }

  body.message .member__item {
    flex: 1;
  }

  body.message .member__image-wrapper {
    aspect-ratio: 3/4;
  }

  body.message .member__number {
    font-size: 48px;
  }

  body.message .member__interview-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  body.message .member__initial {
    font-size: 20px;
    margin-bottom: 6px;
  }

  body.message .member__join-date {
    font-size: 14px;
  }
}

.font-white {
  color: var(--white-color);
}

/* Philosophy MV Scroll Wrapper - message.html以外のページ用 */
.philosophy-mv__scroll-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 40px 20px 0;
}

.philosophy-mv__scroll-wrapper .philosophy-mv__scroll {
  cursor: pointer;
}

@media (min-width: 768px) {
  .philosophy-mv__scroll-wrapper {
    padding: 60px 40px 0;
  }
}

@media screen and (min-width: 1080px) {
  body.message .member__title {
    font-size: 72px;
  }

  body.message .member__subtitle {
    font-size: 18px;
  }
}

/* ===========================================
   INTERVIEW ページ専用スタイル
   =========================================== */
/* Message Content Section */
body.interview-page .message-content {
  padding: 60px 0;
  background-color: #fff;
}

body.interview-page .message-content__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body.interview-page .message-content__title {
  color: var(--primary-color);
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  text-align: left;
  margin-bottom: 40px;
}

body.interview-page .message-content__text {
  color: var(--text, #44546a);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  margin-bottom: 30px;
}

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

body.interview-page .message-content__text p {
  margin-bottom: 15px;
}

body.interview-page .message-content__text p:last-child {
  margin-bottom: 0;
}

body.interview-page .member__item {
  position: relative; /* ボタンを右下に重ねるため */
}

.scroll-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: none;
  outline: none;
}

.scroll-btn__arrow {
  width: 14px;
  height: 14px;
  display: block;
  border: solid 2px white;
  border-width: 0 0 4px 4px;
  background: transparent;
  transform: rotate(-45deg);
  margin-bottom: 4px;
}

/* PC画面時のスタイル */
@media (min-width: 768px) {
  body.interview-page .message-content {
    padding: 100px 0;
  }

  body.interview-page .message-content__inner {
    padding: 0 40px;
  }

  body.interview-page .message-content__title {
    font-size: 48px;
    margin-bottom: 60px;
  }

  body.interview-page .message-content__text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  body.interview-page .message-content__text p {
    margin-bottom: 20px;
  }
}

/* interview page専用 - クロストークヘッダーの幅調整 */
body.interview-page .cross-talk__header {
  max-width: 1200px;
  margin: 0 auto 50px;
  /* padding: 0 20px; */
}

/* Member Section */
body.interview-page .member {
  padding: 60px 0 0;
  background-color: #fff;
}

body.interview-page .member__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body.interview-page .member__header {
  text-align: left;
  margin-bottom: 40px;
}

body.interview-page .member__title {
  color: var(--text, #44546a);
  font-family: Oswald;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

body.interview-page .member__subtitle {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

body.interview-page .member__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

body.interview-page .member__item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

body.interview-page .member__item:hover {
  transform: translateY(-5px);
}

body.interview-page .member__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

body.interview-page .member__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.interview-page .member__item:hover .member__image {
  transform: scale(1.05);
}

body.interview-page .member__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--primary-color);
  font-family: Oswald;
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
}

body.interview-page .member__info {
  text-align: left;
}

body.interview-page .member__interview-title {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 8px;
}

body.interview-page .member__initial {
  color: var(--primary-color);
  font-family: Oswald;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 4px;
}

body.interview-page .member__join-date {
  color: var(--text, #44546a);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* タブレット以上での横並び */
@media (min-width: 768px) {
  body.interview-page .member {
    padding: 50px 0 0;
  }

  body.interview-page .member__inner {
    padding: 0 40px;
  }

  body.interview-page .member__header {
    margin-bottom: 60px;
  }

  body.interview-page .member__title {
    font-size: 48px;
  }

  body.interview-page .member__subtitle {
    font-size: 16px;
  }

  body.interview-page .member__content {
    flex-direction: row;
    gap: 40px;
  }

  body.interview-page .member__item {
    flex: 1;
  }

  body.interview-page .member__image-wrapper {
    aspect-ratio: 3/4;
  }

  body.interview-page .member__number {
    font-size: 48px;
  }

  body.interview-page .member__interview-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  body.interview-page .member__initial {
    font-size: 20px;
    margin-bottom: 6px;
  }

  body.interview-page .member__join-date {
    font-size: 14px;
  }
}

.font-white {
  color: var(--white-color);
}

/* Philosophy MV Scroll Wrapper - message.html以外のページ用 */
.philosophy-mv__scroll-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 0;
}

.philosophy-mv__scroll-wrapper .philosophy-mv__scroll {
  cursor: pointer;
}

@media (min-width: 768px) {
  .philosophy-mv__scroll-wrapper {
    padding: 60px 40px 0;
  }
}

@media screen and (min-width: 1080px) {
  body.message .member__title {
    font-size: 72px;
  }

  body.message .member__subtitle {
    font-size: 18px;
  }
}

.interview-section {
  padding: 50px 0 0;
}

@media screen and (min-width: 1080px) {
  .interview-section {
    padding: 100px 0;
  }
}

.interview-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .interview-hero {
    aspect-ratio: 3 / 1;
  }
}

.interview-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interview-hero__number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
}

@media screen and (min-width: 768px) {
  .interview-hero__number {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .interview-hero__number {
    font-size: 72px;
  }
}

.interview-hero__profile {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: var(--primary-color);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
.interview-qas {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .interview-qas {
    padding: 0 50px;
    max-width: var(--content-width-lg);
    margin-top: 50px;
  }
}

@media screen and (min-width: 1080px) {
  .interview-qas {
    padding: 0 100px;
  }
}

@media screen and (min-width: 1200px) {
  .interview-qas {
    padding: 100px 0;
  }
}

.interview-qa {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 40px;
}

@media screen and (min-width: 1080px) {
  .interview-qa {
    gap: 50px;
  }
}
.interview-qa__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interview-qa__question {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .interview-qa__question {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .interview-qa__question {
    font-size: 20px;
  }
}

.interview-qa__answer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (min-width: 1080px) {
  .interview-qa__answer-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .interview-qa__answer-title {
    font-size: 24px;
  }
}

.interview-qa__answer {
  margin-bottom: 0;
  font-size: 16px;
}

@media screen and (min-width: 1080px) {
  .interview-qa__answer {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .interview-qa__answer {
    font-size: 18px;
  }
}

.interview-qa__img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interview-qa__img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.interview-qa--reverse {
  flex-direction: row;
}

.interview-qa__img-wrap {
  position: relative;
  display: inline-block;
}

.interview-qa__img-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px; /* 画像と同じ角丸なら */
  transform: rotate(-5deg);
  z-index: 0;
}

.wrap01::before {
  content: "";
  background: var(--green-color); /* 装飾色 */
  top: 15px; /* 画像より少し下にずらす */
  left: 10px; /* 画像より少し右にずらす */
}
.wrap02::before {
  content: "";
  background: var(--sky-blue-color02); /* 装飾色 */
  top: 15px;
  right: 10px;
}
.wrap03::before {
  top: 15px; /* 画像より少し下にずらす */
  left: 10px; /* 画像より少し右にずらす */
  content: "";
  background: var(--light-orange-color); /* 装飾色 */
}

.interview-qa__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 12px;
}

/* SP（スマホ）用 */
@media (max-width: 768px) {
  /* .interview-hero {
    height: 200px;
  }
  .interview-hero__number {
    font-size: 24px;
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  } */
  /* .interview-hero__profile {
    left: 8px;
    bottom: 8px;
    padding: 8px 12px;
    font-size: 14px;
  } */
  .interview-qas {
    margin-top: 20px;
    gap: 40px;
  }
  .interview-qa,
  .interview-qa--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .interview-qa__img-wrap {
    order: 3;
  }
  .interview-qa__text {
    order: 1;
  }
}

/* ========================================
   Contact Section - Casual Meeting
======================================== */
.contact-section {
  padding: 0 0 80px;
}

.contact-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.casual-meeting {
  max-width: 800px;
  margin: 0 auto;
}

.casual-meeting__content {
  text-align: center;
}

.casual-meeting__text {
  color: var(--font-color);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 60px;
}

.casual-meeting__quotes {
  margin-bottom: 40px;
}

.casual-meeting__quote {
  color: var(--font-color);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 16px;
  position: relative;
}

.casual-meeting__quote::before {
  content: "「";
}

.casual-meeting__quote::after {
  content: "」";
}

.casual-meeting__welcome {
  color: var(--font-color);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }

  .casual-meeting__text,
  .casual-meeting__quote,
  .casual-meeting__welcome {
    font-size: 16px;
  }

  .casual-meeting__quote {
    font-weight: 700;
  }

  .casual-meeting__text {
    margin-bottom: 40px;
  }

  .casual-meeting__quotes {
    margin-bottom: 30px;
  }
}

/* ========================================
   Contact Form Section
======================================== */
.contact-form-section {
  padding: 0 0 50px;
}

.contact-form-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form__title {
  color: var(--font-color);
  font-family: "Noto Sans JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.contact-form {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 60px 0;
}

.form-group {
  margin-bottom: 48px;
  position: relative;
}

.form-group:not(:last-of-type):after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1080px;
  height: 2px;
  background-color: #d9d9d9;
  flex-shrink: 0;
}

/* プライバシー部分と送信部分には区切り線を表示しない */
.form-group:last-child:after,
.form-privacy + .form-submit .form-group:after {
  display: none;
}

.form-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* PC画面での横並びレイアウト */
@media (min-width: 768px) {
  .form-group:not(.form-group--datetime) {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
  }

  .form-group:not(.form-group--datetime) .form-label-wrapper {
    min-width: 200px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .form-group:not(.form-group--datetime) .form-input,
  .form-group:not(.form-group--datetime) .form-select,
  .form-group:not(.form-group--datetime) .form-textarea {
    flex: 1;
  }

  /* 面談希望日時の特別レイアウト */
  .form-group--datetime {
    margin-bottom: 48px;
  }

  .form-group--datetime .form-label-wrapper {
    margin-bottom: 16px;
  }

  .datetime-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .datetime-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .datetime-label {
    min-width: 120px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .datetime-item .form-input {
    flex: 1;
  }
}

.form-label {
  color: var(--font-color);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 600;
}

.form-required {
  color: var(--primary-color);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: var(--font-color);
  background-color: var(--white-color);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-input:required:invalid,
.form-select:required:invalid {
  border-color: #e0e0e0;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.datetime-group {
  display: flex;
  gap: 20px;
}

.datetime-item {
  flex: 1;
}

.datetime-label {
  display: block;
  color: var(--font-color);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* モバイルでは縦並び維持 */
@media (max-width: 767px) {
  .datetime-group {
    flex-direction: column;
    gap: 16px;
  }
}

.form-privacy {
  margin-bottom: 32px;
  text-align: center;
}

.privacy-text {
  color: var(--font-color);
  font-family: "Noto Sans JP";
  font-size: 14px;
  line-height: 1.6;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.privacy-link:hover {
  text-decoration: none;
}

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

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 600;
  padding: 16px 100px;
  border: none;
  border-radius: 50vh;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.submit-btn:hover {
  background-color: #0876c7;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .contact-form {
    padding: 40px 0;
  }

  .form-label,
  .datetime-label {
    font-size: 14px;
  }

  .form-required {
    font-size: 10px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 14px 32px;
  }
}

.our-cross-talk__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
}

.our-cross-talk__header {
  text-align: left;
  margin-bottom: 40px;
}

.our-cross-talk__title {
  font-family: var(--font-family-oswald);
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  letter-spacing: 2px;
}

.our-cross-talk__subtitle {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.our-cross-talk-card__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.our-cross-talk-card__subtitle {
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  margin-top: 5px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.our-cross-talk-card__desc {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.our-cross-talk-card__link {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  padding: 10px 40px;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.our-cross-talk-card__link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 140, 227, 0.3);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .our-cross-talk__header {
    margin-bottom: 50px;
  }

  .our-cross-talk__title {
    font-size: 48px;
  }

  .our-cross-talk__subtitle {
    font-size: 16px;
  }

  .our-cross-talk-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-bottom: 20px;
  }

  .our-cross-talk-card__img-wrapper {
    width: calc((100% - 50px) / 2);
  }

  .our-cross-talk-card__content {
    width: calc((100% - 50px) / 2);
  }

  .our-cross-talk-card__title {
    font-size: 28px;
  }

  .our-cross-talk-card__subtitle {
    font-size: 22px;
  }

  .our-cross-talk-card__desc {
    font-size: 16px;
  }

  .our-cross-talk-card__link {
    margin-bottom: 20px;
  }

  /* .our-cross-talk__content {
    gap: 30px;
  }

  .our-cross-talk__overlay {
    padding: 30px;
  }

  .our-cross-talk__label-top {
    padding: 10px 20px;
    font-size: 16px;
  }

  .our-cross-talk__text-bottom {
    font-size: 18px;
  } */
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .our-cross-talk__inner {
    max-width: 1200px;
    padding: 50px 20px 0;
  }

  .our-cross-talk__header {
    margin-bottom: 20px;
  }

  .our-cross-talk__title {
    font-size: 72px;
  }

  .our-cross-talk__subtitle {
    font-size: 18px;
  }

  .our-cross-talk-card {
    padding: 50px 0 0;
  }

  /* .our-cross-talk-card__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  } */

  .our-cross-talk-card {
    gap: 20px;
  }

  .our-cross-talk-card__title {
    font-size: 36px;
  }

  .our-cross-talk-card__subtitle {
    font-size: 28px;
    margin-top: 20px;
  }

  .our-cross-talk-card__desc {
    font-size: 18px;
    margin-top: 15px;
    padding-right: 20px;
  }

  .our-cross-talk-card__img-wrapper {
    width: calc((100% - 20px) / 2);
  }

  .our-cross-talk-card__content {
    width: calc((100% - 20px) / 2);
  }

  .our-cross-talk-card__link {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
    padding: 10px 80px;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }

  /* .our-cross-talk__item {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }

  .our-cross-talk__image-wrapper {
    width: 1080px;
    height: 350px;
    aspect-ratio: unset;
    margin: 0 auto;
  }

  .our-cross-talk__overlay {
    padding: 40px;
  }

  .our-cross-talk__label-top {
    padding: 12px 24px;
    font-size: 18px;
  }

  .our-cross-talk__text-bottom {
    font-size: 20px;
  } */
}

/* 大画面（1400px〜） */
@media (min-width: 1400px) {
  .our-cross-talk__inner {
    max-width: 1360px;
  }

  .our-cross-talk__image-wrapper {
    width: 1080px;
    height: 350px;
  }

  .our-cross-talk-card__title {
    font-size: 42px;
  }

  .our-cross-talk-card__subtitle {
    font-size: 32px;
  }

  .our-cross-talk-card__desc {
    font-size: 20px;
  }
}

/* 1200px以上での比率保持 */
@media (min-width: 1200px) {
  .our-cross-talk__image-wrapper {
    width: min(1080px, 90vw);
    height: calc(min(1080px, 90vw) * 350 / 1080);
  }
}

/* ===========================================
   クロストークページ（モバイルファースト）
   =========================================== */

/* クロストークヒーロー画像セクション */
.cross-talk-hero {
  width: 100%;
  margin-top: 60px; /* ヘッダー分のオフセット */
}

.cross-talk-hero__image {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.cross-talk-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* クロストークコンテンツセクション */
.cross-talk-content {
  padding: 40px 20px;
}

.cross-talk-content__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.cross-talk-content__title {
  color: var(--font-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.2px;
  text-align: left;
  margin-bottom: 20px;
}

.cross-talk-content__divider {
  width: 100%;
  max-width: 330px;
  height: 2px;
  background: var(--font-color);
  margin-bottom: 30px;
}

.ceo-gm01__divider {
  max-width: 320px;
}

.ceo-gm02__divider {
  max-width: 390px;
}

.ceo-cso__divider {
  max-width: 410px;
}

.cross-talk-content__description {
  text-align: left;
}

.cross-talk-content__description p {
  color: var(--font-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.7px;
}

.cross-talk-qa__step-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.cross-talk-qa__step-description {
  font-size: 20px;
  font-weight: bold;
}

.cross-talk-qa__step-list {
  font-weight: var(--font-weight-medium);
  margin-top: 10px;
}
/* タブレット以上のスタイル */
@media (min-width: 768px) {
  .cross-talk-hero {
    margin-top: 70px;
  }

  .cross-talk-hero__image {
    aspect-ratio: 3 / 1;
  }

  .cross-talk-content {
    padding: 60px 40px;
  }

  .cross-talk-content__title {
    font-size: 18px;
    letter-spacing: 1.6px;
    margin-bottom: 25px;
  }

  .cross-talk-content__divider {
    max-width: 430px;
    margin-bottom: 35px;
  }

  .ceo-gm01__divider {
    max-width: 430px;
  }

  .ceo-gm02__divider {
    max-width: 525px;
  }

  .ceo-cso__divider {
    max-width: 550px;
  }

  .cross-talk-content__description p {
    font-size: 16px;
    letter-spacing: 0.75px;
  }

  .cross-talk-qa__step {
    padding-left: 40px;
  }

  .cross-talk-qa__step-title {
    font-size: 24px;
  }

  .cross-talk-qa__step-description {
    font-size: 32px;
  }

  .cross-talk-qa__step-list {
    font-size: 20px;
  }
}

/* デスクトップ以上のスタイル */
@media (min-width: 1080px) {
  .cross-talk-hero {
    margin-top: 80px;
  }

  .cross-talk-hero__image {
    aspect-ratio: 4 / 1;
  }

  .cross-talk-content {
    padding: 80px 50px;
  }

  .cross-talk-content__title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }

  .cross-talk-content__divider {
    max-width: 560px;
    margin-bottom: 40px;
  }

  .ceo-gm01__divider {
    max-width: 540px;
  }

  .ceo-gm02__divider {
    max-width: 660px;
  }

  .ceo-cso__divider {
    max-width: 685px;
  }

  .cross-talk-qa__step-title {
    font-size: 28px;
  }

  .cross-talk-qa__step-description {
    font-size: 40px;
  }

  .cross-talk-qa__step-list {
    font-size: 20px;
  }
}

/* クロストークメンバーセクション（モバイルファースト） */
.cross-talk-members {
  padding: 0 20px;
  background-color: #f8f9fa;
}

.cross-talk-members__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.cross-talk-members__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  justify-items: center;
}

/* メンバーカード */
.member-card {
  width: 100%;
  max-width: 180px;
  text-align: left;
}

.member-card__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 15px;
}

.member-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.member-card__name {
  color: var(--font-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}

.member-card__position {
  color: var(--font-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* タブレット以上のスタイル */
@media (min-width: 768px) {
  .cross-talk-members {
    padding: 0 40px;
  }

  .cross-talk-members__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
  }

  .member-card {
    max-width: 200px;
  }

  .member-card__image {
    margin-bottom: 20px;
  }

  .member-card__name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .member-card__position {
    font-size: 15px;
  }
}

/* デスクトップ以上のスタイル */
@media (min-width: 1080px) {
  .cross-talk-members {
    padding: 0 50px;
  }

  .cross-talk-members__grid {
    gap: 50px 40px;
  }

  .member-card {
    max-width: 220px;
  }

  .member-card__name {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .member-card__position {
    font-size: 16px;
  }
}

/* ===========================================
   Cross Talk Question Section
   =========================================== */
.cross-talk-question {
  padding: 40px 20px 0;
  background-color: var(--white-color);
  text-align: center;
}

.cross-talk-question__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.cross-talk-question__number {
  font-family: var(--font-family-oswald);
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1;
}

.cross-talk-question__title {
  font-family: var(--font-family-noto-sans);
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: var(--white-color);
  background-color: var(--primary-color);
  margin: 0;
  line-height: 1.4;
  padding: 5px 20px;
  display: inline-block;
  text-align: left;
}

.cross-talk-question__message {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  margin-top: 30px;
  line-height: 1.6;
  text-align: center;
}

/* タブレット以上のスタイル */
@media (min-width: 768px) {
  .cross-talk-question {
    padding: 50px 40px 0;
  }

  .cross-talk-question__number {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .cross-talk-question__title {
    font-size: 22px;
  }
}

/* デスクトップ以上のスタイル */
@media (min-width: 1080px) {
  .cross-talk-question {
    padding: 50px 40px 0;
  }

  .cross-talk-question__number {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .cross-talk-question__title {
    font-size: 40px;
  }

  .cross-talk-question__message {
    font-size: 24px;
    font-weight: 600;
    line-height: 180%; /* 43.2px */
    margin-top: 40px;
  }
}

/* ===========================================
   Cross Talk Q&A Section
   =========================================== */
.cross-talk-qa {
  padding: 0 20px;
  background-color: var(--white-color);
}

.cross-talk-qa__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.cross-talk-qa__question {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: left;
}

.cross-talk-qa__answers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-answer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa-answer__profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qa-answer__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.qa-answer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qa-answer__img02 {
  max-width: 880px;
  object-fit: cover;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.qa-answer__name {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
}

.qa-answer__text {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.6;
  /* margin-left: 75px; */
}

.qa-answer__text-final {
  margin-top: 40px;
  text-align: left;
}

/* タブレット以上のスタイル */
@media (min-width: 768px) {
  .cross-talk-qa {
    padding: 0 40px 50px;
  }

  .cross-talk-qa__question {
    font-size: 20px;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .cross-talk-qa__answers {
    gap: 20px;
  }

  .qa-answer {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  /* 安達さんは左寄せ */
  .qa-answer.adachi {
    flex-direction: row;
    padding-right: 100px;
  }

  /* 海老根さんは右寄せ */
  .qa-answer.ebine {
    flex-direction: row-reverse;
    padding-left: 100px;
  }

  .qa-answer__profile {
    flex-direction: column;
    gap: 10px;
    min-width: 100px;
    padding-top: 30px;
  }

  .qa-answer__photo {
    width: 80px;
    height: 80px;
  }

  .qa-answer__name {
    font-size: 16px;
    text-align: center;
  }

  .qa-answer__text {
    font-size: 16px;
    margin-left: 0;
    flex: 1;
    align-items: center;
    /* margin-top: 25px; */
  }

  .qa-answer__text-final {
    margin-top: 40px;
    text-align: left;
  }
}

/* デスクトップ以上のスタイル */
@media (min-width: 1080px) {
  .cross-talk-qa {
    padding: 0 40px 40px;
  }

  .cross-talk-qa__question {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .cross-talk-qa__answers {
    gap: 20px;
  }

  /* .qa-answer.adachi {
  padding-right: 120px;
}

.qa-answer.ebine {
  padding-left: 120px;
} */

  .qa-answer__profile {
    min-width: 120px;
  }

  .qa-answer__text {
    font-size: 20px;
  }
}

/* ===========================================
   Our Team Section
   =========================================== */
.our-team-section {
  padding: 60px 20px;
}

.our-team-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.our-team-section__title {
  font-family: var(--font-family-noto-sans);
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
}

.our-team-section__description {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* モバイル時は1列のグリッド */
.our-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.team-member {
  text-align: left;
  transition: all 0.3s ease;
}

/* .team-member:hover の効果を完全に無効化 */
.team-member:hover {
  transform: none !important;
  box-shadow: none !important;
  background: none !important;
  filter: none !important;
}

.team-member__image {
  width: 100%;
  margin: 0 0 15px 0;
  overflow: hidden;
  background-color: var(--gray-100);
  position: relative;
  aspect-ratio: 1 / 1;
}

.team-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-family: Akshar, sans-serif;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
  line-height: 1.4;
  /* margin-top: 5px; */
}

.team-member__name-ja {
  font-size: 14px;
  /* margin-bottom: 5px; */
  /* margin-top: 5px; */
  font-weight: var(--font-weight-medium);
}

.team-member__position {
  font-family: var(--font-family-noto-sans);
  font-size: 10px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .our-team-section {
    padding: 80px 40px;
  }

  .our-team-section__title {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .our-team-section__description {
    font-size: 18px;
    margin-bottom: 60px;
  }

  /* タブレット時は3列のグリッド */
  .our-team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .team-member__image {
    width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
  }

  .team-member__img {
    width: 100%;
    height: 100%;
  }

  .team-member__name {
    font-size: 18px;
  }

  .team-member__name-ja {
  font-size: 15px;
}

  .team-member__position {
    font-size: 11px;
  }
}

/* デスクトップ以上（1080px〜） */
@media (min-width: 1080px) {
  .our-team-section {
    padding: 50px 40px;
  }

  .our-team-section__title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .our-team-section__description {
    font-size: 20px;
    margin-bottom: 80px;
  }

  .our-team-grid {
    gap: 40px;
  }

  .team-member__image {
    width: 100%;
    margin-bottom: 5px;
    aspect-ratio: 1 / 1;
  }

  .team-member__img {
    width: 100%;
    height: 100%;
  }

  .team-member__name {
    font-size: 20px;
    font-weight: var(--font-weight-medium);
  }

  .team-member__name-ja {
  font-size: 22px;
  font-weight: var(--font-weight-medium);
}

  .team-member__position {
    font-size: 14px;
  }
}

/* ===========================================
   社員詳細ページ（Team Member Detail）
   =========================================== */
.team-member-mv {
  padding: 120px 0 0;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  background-color: var(--gray-100);
}

@media (min-width: 768px) {
  .breadcrumb {
    background-color: transparent;
  }
}

.breadcrumb__inner {
  max-width: var(--content-width-lg);
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  font-size: 14px;
  color: var(--gray-600);
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: var(--gray-400);
}

.breadcrumb__link {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: var(--primary-color);
}

.breadcrumb__current {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

/* Team Member Detail */
.team-member-detail {
  padding: 60px 0;
}

.team-member-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-member-detail__profile {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
  padding: 0;
}

@media (min-width: 1080px) {
  .team-member-detail__profile {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }
}

.team-member-detail__image {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--gray-100);
  flex-shrink: 0;
}

@media (min-width: 1080px) {
  .team-member-detail__image {
    /* width: 40%; */
    width: calc((100% - 40px) / 2);
    margin: 0;
    aspect-ratio: 1 / 1;
  }
}

.team-member-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-detail__info {
  text-align: left;
  flex: 1;
}

@media (min-width: 1080px) {
  .team-member-detail__info {
    text-align: left;
    width: calc((100% - 120px) / 2);
    flex: none;
  }
}

.team-member-detail__name-ja {
  font-size: 32px;
  font-weight: var(--font-weight-medium);
}


.team-member-detail__name {
  font-family: Akshar, sans-serif;
  font-size: 28px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
}

.team-member-detail__position {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 20px;
}

.team-member-detail__join-date {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 30px;
}

.team-member-detail__tagline {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  /* font-weight: 600; */
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.5;
}

.team-member-detail__hobby,
.team-member-detail__career-title,
.team-member-detail__description-title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}

.team-member-detail__career,
.team-member-detail__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 30px;
}

.team-member-detail__stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.team-member-detail__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: var(--gray-50);
  border-radius: 8px;
}

.team-member-detail__stat-label {
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
}

.team-member-detail__stat-value {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

.team-member-detail__section {
  margin-bottom: 60px;
}

.team-member-detail__section-title {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.back-to-list-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 24px;
  font-size: 12px;
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-to-list-btn:hover {
  background: var(--font-color);
  color: var(--white-color);
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 140, 227, 0.3);
}

/* Career Timeline */
.career-timeline {
  position: relative;
  padding-left: 30px;
}

.career-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-color);
}

.career-timeline__item {
  position: relative;
  margin-bottom: 40px;
}

.career-timeline__item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--white-color);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.career-timeline__year {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 8px;
}

.career-timeline__title {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
  margin-bottom: 12px;
}

.career-timeline__description {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Work Content */
.work-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.work-content__item {
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.work-content__title {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
  margin-bottom: 15px;
}

.work-content__description {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Member Message */
.member-message {
  padding: 40px;
  background-color: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.member-message__text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.member-message__text:last-child {
  margin-bottom: 0;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.skill-item {
  padding: 25px;
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.skill-item__title {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
  margin-bottom: 15px;
}

.skill-item__level {
  display: flex;
  align-items: center;
  gap: 15px;
}

.skill-item__bar {
  flex: 1;
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.skill-item__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--navy-color));
  border-radius: 4px;
  transition: width 0.8s ease-in-out;
}

.skill-item__percentage {
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  min-width: 40px;
  text-align: right;
}

/* Related Members */
.related-members {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.related-members__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-members__title {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  text-align: center;
  margin-bottom: 50px;
}

.related-members__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.related-member {
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-member__link {
  text-decoration: none;
  color: inherit;
}

.related-member__image {
  width: 120px;
  margin: 0 auto 20px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--gray-100);
}

.related-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-member__name {
  font-family: Akshar, sans-serif;
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
  margin-bottom: 8px;
}

.related-member__position {
  font-size: 14px;
  color: var(--gray-600);
}

.related-members__link {
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Team Member Blog Section */
.team-member-blog {
  padding: 60px 0;
  background-color: var(--white-color);
}

.team-member-blog__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-member-blog__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .team-member-blog__title {
    font-size: 28px;
  }
}

@media screen and (min-width: 1080px) {
  .team-member-blog__title {
    font-size: 32px;
  }
}

.team-member-blog__articles {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .team-member-blog__articles {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}

.team-member-blog__article {
  max-width: 350px;
  width: 100%;
  background-color: var(--white-color);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-member-blog__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member-blog__article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--gray-color04);
}

.team-member-blog__article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member-blog__article:hover .team-member-blog__article-img {
  transform: scale(1.05);
}

.team-member-blog__article-content {
  padding-top: 20px;
}

.team-member-blog__article-title {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-member-blog__article-author {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
  font-weight: var(--font-weight-medium);
}

.team-member-blog__divider {
  width: 2px;
  height: 100%;
  min-height: 200px;
  background-color: var(--gray-color02);
  margin: 0 20px;
  display: none;
}

@media (min-width: 768px) {
  .team-member-blog__divider {
    display: block;
  }
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .team-member-detail__profile {
    align-items: center;
    text-align: left;
  }

  .team-member-detail__image {
    margin: 0;
  }

  .team-member-detail__info {
    text-align: left;
  }

  .team-member-detail__stats {
    margin: 0;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-members__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* デスクトップ以上（1080px〜） */
@media (min-width: 1080px) {
  .team-member-detail {
    padding: 80px 0 0;
  }

  .career-timeline {
    padding-left: 40px;
  }

  .career-timeline::before {
    left: 20px;
  }

  .career-timeline__item::before {
    left: -46px;
  }
}

/* ===========================================
 Career Path Hero Section（モバイルファースト）
 =========================================== */
.career-path-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  height: 300px;
  overflow: hidden;
}

.career-path-hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .career-path-hero__image {
    aspect-ratio: 1.2 / 1;
  }
}

.career-path-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.career-path-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.career-path-hero__text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  text-align: right;
}

.career-path-hero__name-en {
  font-family: var(--font-family-oswald);
  /* font-size: 32px; */
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

.career-path-hero__info {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: flex-end;
}

.career-path-hero__position {
  font-family: "Noto Sans JP", sans-serif;
  /* font-size: 14px; */
  font-size: 10px;
  font-weight: 600;
  margin: 0;
}

.career-path-hero__name-jp {
  font-family: "Noto Sans JP", sans-serif;
  /* font-size: 18px; */
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* タブレット対応 */
@media screen and (min-width: 768px) {
  .career-path-hero {
    height: 450px;
  }

  .career-path-hero__name-en {
    font-size: 48px;
  }

  .career-path-hero__info {
    gap: 15px;
  }

  .career-path-hero__position {
    font-size: 16px;
  }

  .career-path-hero__name-jp {
    font-size: 20px;
  }
}

/* PC対応 */
@media screen and (min-width: 1080px) {
  .career-path-hero {
    height: 500px;
  }

  .career-path-hero__name-en {
    /* font-size: 56px; */
    font-size: 24px;
  }

  .career-path-hero__info {
    gap: 20px;
  }

  .career-path-hero__position {
    /* font-size: 18px; */
    font-size: 12px;
  }

  .career-path-hero__name-jp {
    /* font-size: 24px; */
    font-size: 18px;
  }
}

/* ===========================================
 Career Path Message Section（モバイルファースト）
 =========================================== */
.career-path-message {
  padding: 50px 0 0;
  background-color: var(--white-color);
}

.career-path-message__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.career-path-message__content {
  margin: 0 auto;
  text-align: left;
}

.career-path-message__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  color: var(--primary-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: bold;
}

.career-path-message__text {
  /* margin-bottom: 40px; */
  text-align: left;
}

.career-path-message__paragraph {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text, #44546a);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  text-align: left;
}

.career-path-message__paragraph:last-child {
  margin-bottom: 0;
}

.career-path-message__cta {
  /* text-align: left; */
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.career-path-message__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 280px;
  height: 44px;
  border-radius: 33px;
  background: var(--primary-color);
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.career-path-message__button-text {
  flex-shrink: 0;
}

.career-path-message__button-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.career-path-message__icon-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}

.career-path-message__icon-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
}

.career-path-message__button:hover {
  background: #0976c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 140, 227, 0.3);
}

@media screen and (min-width: 1080px) {
  .career-path-message__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }
}

/* ========================================
   Training System Section
======================================== */
.training-system {
  padding: 50px 0 0;
  background-color: #f8f9fa;
}

.training-system__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.training-system__content {
  text-align: left;
}

.training-system__header {
  margin-bottom: 40px;
}

.training-system__title-en {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.training-system__title-jp {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.training-system__main {
  margin-top: 40px;
}

.training-system__subtitle {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.6;
}

.training-system__description {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

@media screen and (min-width: 1080px) {
  .training-system__description {
    font-size: 24px;
  }
}

.training-system__phases {
  margin-top: 40px;
}

.training-system__phase {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .training-system__phase {
    gap: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .training-system__phase {
    gap: 80px;
  }
}

.training-system__phase-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.training-system__phase-image {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.training-system__phase-right {
  flex: 1;
}

.training-system__phase-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-color);
  padding: 5px 10px;
  margin: 0 0 16px 0;
  line-height: 1.4;
  display: inline-block;
}

@media screen and (min-width: 1080px) {
  .training-system__phase-title {
    font-size: 24px;
  }
}

.training-system__phase-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .training-system__phase-description {
    font-size: 14px;
  }
}

@media screen and (min-width: 1080px) {
  .training-system__phase-description {
    font-size: 16px;
  }
}

.training-system__separator {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
}

/* ========================================
   Career Path Steps Section
======================================== */
.career-path-steps {
  padding: 60px 0;
  background-color: #fff;
}

.career-path-steps__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.career-path-steps__content {
  text-align: left;
}

.career-path-steps__header {
  margin-bottom: 40px;
}

.career-path-steps__title-en {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.career-path-steps__title-jp {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.career-path-steps__main {
  margin-top: 40px;
}

.career-path-steps__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.career-path-steps__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .career-path-steps__description {
    font-size: 13px;
  }
}

@media screen and (min-width: 1080px) {
  .career-path-steps__description {
    font-size: 14px;
  }
}

.career-path-steps__image {
  width: 100%;
  max-width: 880px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.career-path-steps__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* タブレット対応 */
@media screen and (min-width: 768px) {
  .career-path-message {
    padding: 50px 0;
  }

  .career-path-message__title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .career-path-message__text {
    /* margin-bottom: 50px; */
    text-align: left;
  }

  .career-path-message__paragraph {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .career-path-message__button {
    width: 320px;
    height: 48px;
    font-size: 16px;
  }

  .training-system {
    padding: 50px 0;
  }

  .training-system__title-en {
    font-size: 56px;
  }

  .training-system__title-jp {
    font-size: 20px;
  }

  .training-system__subtitle {
    font-size: 18px;
  }

  .training-system__description {
    font-size: 36px;
  }

  .training-system__phase-image {
    height: 100px;
  }

  .training-system__phase-title {
    font-size: 28px;
  }

  .training-system__phase-description {
    font-size: 14px;
  }

  .career-path-steps {
    padding: 50px 0;
  }

  .career-path-steps__title-en {
    font-size: 56px;
  }

  .career-path-steps__title-jp {
    font-size: 20px;
  }

  .career-path-steps__title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .career-path-steps__description {
    font-size: 16px;
  }
}

/* PC対応 */
@media screen and (min-width: 1080px) {
  .career-path-message {
    padding: 50px 0;
  }

  .career-path-message__title {
    /* font-size: 48px; */
    font-size: 28px;
    /* margin-bottom: 60px; */
    margin-bottom: 20px;
  }

  .career-path-message__text {
    /* margin-bottom: 60px; */
    text-align: left;
  }

  .career-path-message__paragraph {
    /* font-size: 20px; */
    font-size: 18px;
    /* margin-bottom: 30px; */
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .career-path-hero__image {
    max-width: 450px;
    aspect-ratio: 1 / 1.2;
    margin-top: 0;
  }

  .career-path-hero__img {
    width: 100%;
    object-fit: cover;
    object-position: right;
  }

  .career-path-message__button {
    width: 350px;
    height: 52px;
    font-size: 18px;
  }

  .training-system {
    padding: 50px 0;
  }

  .training-system__title-en {
    font-size: 64px;
  }

  .training-system__title-jp {
    font-size: 22px;
  }

  .training-system__subtitle {
    font-size: 20px;
  }

  .training-system__description {
    font-size: 40px;
  }

  .training-system__phase-image {
    height: 120px;
  }

  .training-system__phase-title {
    font-size: 32px;
  }

  .training-system__phase-description {
    font-size: 18px;
  }

  .career-path-steps {
    padding: 50px 0;
  }

  .career-path-steps__title-en {
    font-size: 64px;
  }

  .career-path-steps__title-jp {
    font-size: 22px;
  }

  .career-path-steps__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .career-path-steps__description {
    font-size: 18px;
  }
}

/* ==========================================
   Job Description Page
========================================== */
/* 社員紹介画像のみにホバーアクションを適用 */
.team-member__img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-member__img:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* .team-member-link:hover など、リンク全体にかかるホバー装飾は無効化 */
.team-member-link:hover,
.team-member-link:focus {
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
}
/* Job Description Hero Section */
.job-description-hero {
  padding: 50px 0;
  background-color: var(--white-color);
}

.job-description-hero__inner {
  max-width: var(--content-width-lg);
  margin: 0 auto;
  padding: 0 20px;
}

.job-description-hero__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.job-description-hero__text {
  flex: 1;
}

.job-description-hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-family: var(--font-family-noto-serif-jp);
}

.job-description-hero__description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--font-color);
  font-family: var(--font-family-noto-sans-jp);
}

.job-description-hero__image {
  flex: 1;
  max-width: 450px;
}

.job-description-hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .job-description-hero__img {
    aspect-ratio: 1 / 1.1;
  }
}

/* Tablet styles */
@media (max-width: 1080px) {
  .job-description-hero {
    padding: 80px 0;
  }

  .job-description-hero__inner {
    padding: 0 40px;
  }

  .job-description-hero__content {
    gap: 40px;
  }

  .job-description-hero__title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .job-description-hero__description {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .job-description-hero {
    padding: 60px 0;
  }

  .job-description-hero__inner {
    padding: 0 20px;
  }

  .job-description-hero__content {
    flex-direction: column;
    gap: 30px;
  }

  .job-description-hero__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .job-description-hero__description {
    font-size: 16px;
  }

  .job-description-hero__image {
    order: -1;
    max-width: 100%;
  }
}

.job-description-section__inner {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .job-description-section__inner {
    padding: 0 40px;
  }
}

.responsive-iframe {
  height: 800px;
}

@media screen and (min-width: 768px) {
  .responsive-iframe {
    height: 900px;
  }
}

@media screen and (min-width: 1080px) {
  .responsive-iframe {
    height: 1000px;
  }
}

/* ==========================================
  History Page
===========================================*/
.main {
  overflow: hidden;
}

.history__inner {
  padding: 50px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.history__content-message {
  position: relative;
  margin-bottom: 50px;
}

.history__content-message::before {
  content: "Offices Drive Our Journey.Offices Drive Our Journey.";
  font-size: 40px;
  font-family: var(--font-family-oswald);
  font-weight: 600;
  color: rgba(68, 84, 106, 0.1);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -15%;
  left: -50%;
}

@media screen and (min-width: 1080px) {
  .history__content-message::before {
    /* position: fixed; */
    font-size: 120px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    z-index: -1;
    width: 100vw;
    margin: 0;
  }
}

.history__title {
  text-align: left;
  display: inline-block;
}

.history__main-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--white-color);
  padding: 10px;
  background: var(--primary-color);
  margin: 0;
}

.history__sub-title {
  font-size: 16px;
  margin: 10px 0 0;
  font-weight: bold;
}

.history__color-primary {
  color: var(--primary-color);
}

.history__text-wrapper {
  text-align: center;
  margin-top: 20px;
}

.history__text {
  text-align: left;
  display: inline-block;
}

.history__heading-copy {
  font-size: 14px;
  font-weight: 600;
}

.font-big {
  font-size: 16px;
}

.history__copy {
  margin-top: 14px;
}

.history__copy-small {
  font-size: 10px;
}

.history__content-wrapper {
  position: relative;
  margin-top: 50px;
}

.history__content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
}

.history__contents {
  /* display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 150px; */
  margin-bottom: 50px;
  margin-left: 50px;
  position: relative;
}

.history__contents:nth-child(1)::before {
  content: "2022";
  position: absolute;
  top: -5%;
  left: -10%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  background: var(--white-color);
}

.history__contents:nth-child(3)::before {
  content: "2023";
  position: absolute;
  top: -5%;
  left: -10%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  background: var(--white-color);
}

.history__contents:nth-child(5)::before {
  content: "2024";
  position: absolute;
  top: -5%;
  left: -10%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  background: var(--white-color);
}

.history__contents:nth-child(7)::before {
  content: "2025";
  position: absolute;
  top: -5%;
  left: -10%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  background: var(--white-color);
}

.history__contents:nth-child(2n)::before {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--white-color);
  position: absolute;
  top: 50%;
  left: -22%;
  transform: translateY(-50%);
}

.history__contents:nth-child(2n)::after {
  content: "";
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -20%;
  transform: translateY(-50%);
}

.history__timeline-headhing-chapter {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.history__timeline-headhing-main-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.history__timeline-headhing-sub-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.history__timeline-copy {
  font-size: 14px;
}

.history__timeline-copy:not(:last-child) {
  margin-bottom: 20px;
}

.history__timeline-content {
  padding: 16px 24px;
  background: var(--primary-color);
  border-radius: 15px;
  color: var(--white-color);
  margin-top: 20px;
}

.history__timeline_content-date {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.history__timeline-content-place {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.history__timeline-place-icon {
  width: 15px;
  height: 15px;
}

.history__timeline-place-text {
  font-size: 14px;
}

.history__timeline-content-img-wrapper {
  max-width: 440px;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  margin-top: 20px;
}

.history__timeline-content-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.history__hero-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
    url(../webp/top-hero-bg.webp);
  width: 100%;
  aspect-ratio: 2 / 1.3;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 50px;
  position: relative;
}

.history__hero-text-wrapper {
  position: absolute;
  bottom: 5%;
  left: 0;
  color: var(--white-color);
  text-align: center;
  padding: 0 10px;
}

.history__hero-teitle {
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}

.history__hero-text {
  text-align: left;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .history__inner {
    padding: 50px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .history__content-message::before {
    display: none;
  }

  .history__title-wrapper {
    text-align: center;
  }

  .history__title {
    text-align: left;
    display: inline-block;
  }

  .history__main-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1;
    color: var(--white-color);
    padding: 10px;
    background: var(--primary-color);
    margin: 0;
  }

  .history__sub-title {
    font-size: 32px;
    margin: 20px 0 0;
    font-weight: bold;
    position: relative;
  }

  .history__sub-title::before {
    content: "Offices Drive Our Journey.Offices Drive Our Journey.";
    /* position: fixed; */
    font-size: 110px;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    position: absolute;
    width: 100vw;
    white-space: nowrap;
    font-family: var(--font-family-oswald);
    font-weight: 600;
    color: rgba(68, 84, 106, 0.1);
  }

  .history__color-primary {
    color: var(--primary-color);
  }

  .history__text-wrapper {
    text-align: center;
    margin-top: 40px;
  }

  .history__text {
    text-align: left;
    display: inline-block;
  }

  .history__heading-copy {
    font-size: 24px;
    font-weight: 600;
  }

  .font-big {
    font-size: 32px;
  }

  .history__copy {
    margin-top: 18px;
  }

  .history__copy-small {
    font-size: 12px;
  }

  .history__content-wrapper {
    position: relative;
    margin-top: 50px;
  }

  .history__content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
  }

  .history__contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 150px;
    margin-bottom: 100px;
    position: relative;
    margin-left: 0;
  }

  .history__contents:nth-child(1)::before {
    content: "2022";
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    background: var(--white-color);
  }

  .history__contents:nth-child(3)::before {
    content: "2023";
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    background: var(--white-color);
  }

  .history__contents:nth-child(5)::before {
    content: "2024";
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    background: var(--white-color);
  }

  .history__contents:nth-child(7)::before {
    content: "2025";
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    background: var(--white-color);
  }

  .history__contents:nth-child(2n)::before {
    content: "";
    width: 40px;
    height: 40px;
    background: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .history__contents:nth-child(2n)::after {
    content: "";
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* 奇数番目（1,3,5...）は row-reverse */
  .history__content:nth-child(odd) {
    flex-direction: row-reverse;
  }

  /* 偶数番目（2,4,6...）は row */
  .history__content:nth-child(even) {
    flex-direction: row;
  }

  .history__timeline-heading-wrapper {
    width: calc((100% - 150px) / 2);
  }

  .history__timeline-headhing-chapter {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 40px;
  }

  .history__timeline-headhing-main-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .history__timeline-headhing-sub-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .history__timeline-copy {
    font-size: 18px;
  }

  .history__timeline-copy:not(:last-child) {
    margin-bottom: 20px;
  }

  .history__timeline-content {
    padding: 40px;
    background: var(--primary-color);
    border-radius: 15px;
    color: var(--white-color);
    width: calc((100% - 150px) / 2);
  }

  .history__timeline_content-date {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .history__timeline-content-place {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .history__timeline-place-icon {
    width: 20px;
    height: 20px;
  }

  .history__timeline-content-img-wrapper {
    max-width: 440px;
    width: 100%;
    aspect-ratio: 1.3 / 1;
    margin-top: 20px;
  }

  .office-img {
    aspect-ratio: 1 / 1.1;
  }

  .history__timeline-content-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }

  .history__hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
      url(../webp/top-hero-bg.webp);
    width: 100%;
    aspect-ratio: 2 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
  }

  .history__hero-text-wrapper {
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: var(--white-color);
    text-align: center;
  }

  .history__hero-teitle {
    font-size: 40px;
    text-align: left;
    white-space: nowrap;
    font-weight: bold;
  }

  .history__hero-text {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
  }
}

.slider-wrapper {
  overflow: hidden;
  width: 100vw;
  padding: 100px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.slider-track {
  display: flex;
  width: calc(200%); /* 画像を2セット並べるため */
  animation: scroll 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  margin: 0 30px;
}

/* 画像を交互に上下にずらす */
.slide:nth-child(odd) {
  transform: translateY(30px);
}
.slide:nth-child(even) {
  transform: translateY(-30px);
}

.slide img {
  width: 200px; /* 任意サイズ */
  height: auto;
  display: block;
  border-radius: 8px;
}

@media screen and (min-width: 1080px) {
  .slide img {
    width: 400px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   Flow Page
========================================== */

/* Recruitment Philosophy Section */
.recruitment-philosophy {
  padding: 50px 0;
  background-color: var(--white-color);
  text-align: center;
}

.recruitment-philosophy__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.recruitment-philosophy__title {
  color: var(--white-color);
  font-family: var(--font-family-851gkktt);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  background-color: var(--primary-color);
  padding: 5px 10px;
  display: inline-block;
  margin: 0 0 60px 0;
}

.recruitment-philosophy__content {
  margin: 0 auto;
}

.recruitment-philosophy__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--font-color);
  font-family: var(--font-family-noto-sans-jp);
  margin-bottom: 40px;
  text-align: center;
}

.recruitment-philosophy__text:last-child {
  margin-bottom: 0;
}

/* Tablet styles */
@media (max-width: 1080px) {
  .recruitment-philosophy {
    padding: 80px 0;
  }

  .recruitment-philosophy__inner {
    padding: 0 40px;
  }

  .recruitment-philosophy__title {
    font-size: 48px;
    margin-bottom: 50px;
  }

  .recruitment-philosophy__content {
    max-width: 700px;
  }

  .recruitment-philosophy__text {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .recruitment-philosophy {
    padding: 60px 0;
  }

  .recruitment-philosophy__inner {
    padding: 0 20px;
  }

  .recruitment-philosophy__title {
    font-size: 32px;
    padding: 4px 8px;
    margin-bottom: 40px;
  }

  .recruitment-philosophy__content {
    max-width: 100%;
  }

  .recruitment-philosophy__text {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: left;
  }
}

/* Flow Diagram */
.flow-section {
  padding: 120px 0;
  background-color: var(--white-color);
}

.flow-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.flow-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  position: relative;
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-step__circle {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.flow-step__number {
  font-family: var(--font-family-oswald);
  font-size: 40px;
  font-weight: 600;
  color: var(--white-color);
}

.flow-step__bubble {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 70px;
  background-color: var(--flow-bubble-color);
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--font-color);
  font-family: var(--font-family-noto-sans-jp);
  z-index: 5;
}

/* 吹き出しの下向き三角形 */
.flow-step__bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--flow-bubble-color);
  z-index: 10;
}

/* 円と円をつなぐ線 */
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -200px;
  width: 200px;
  height: 2px;
  background-color: var(--primary-color);
  z-index: 1;
}

/* ===================================
   Flow Steps Detail Section
=================================== */
.flow-steps-detail {
  padding: 80px 0;
  background-color: var(--white-color);
}

.flow-steps-detail__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.flow-steps-detail__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* 面接（2番目）と内定（4番目）を逆順に */
.flow-steps-detail__item:nth-child(2),
.flow-steps-detail__item:nth-child(4) {
  flex-direction: row-reverse;
}

.flow-steps-detail__image {
  width: 600px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.flow-steps-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-steps-detail__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.flow-steps-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.flow-steps-detail__number-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.flow-steps-detail__text-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow-steps-detail__hash {
  position: absolute;
  top: 0;
  left: -15px;
  font-family: var(--font-family-oswald);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

.flow-steps-detail__number {
  font-family: var(--font-family-oswald);
  font-size: 64px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
}

.flow-steps-detail__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--font-color);
  font-family: var(--font-family-noto-sans-jp);
  margin: 0;
}

.flow-steps-detail__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
  font-family: var(--font-family-oswald);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flow-steps-detail__description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--font-color);
  font-family: var(--font-family-noto-sans-jp);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Tablet styles for flow steps detail */
@media (max-width: 1080px) and (min-width: 769px) {
  .flow-steps-detail {
    padding: 60px 0;
  }

  .flow-steps-detail__inner {
    gap: 40px;
  }

  .flow-steps-detail__item {
    gap: 30px;
  }

  .flow-steps-detail__image {
    width: 60%;
    height: auto;
  }

  .flow-steps-detail__header {
    gap: 15px;
  }

  .flow-steps-detail__hash {
    font-size: 20px;
    left: -15px;
  }

  .flow-steps-detail__number {
    font-size: 48px;
  }

  .flow-steps-detail__title {
    font-size: 20px;
  }

  .flow-steps-detail__subtitle {
    font-size: 12px;
  }

  .flow-steps-detail__description {
    font-size: 12px;
  }
}

/* Mobile styles for flow steps detail */
@media (max-width: 768px) {
  .flow-steps-detail {
    padding: 40px 0;
  }

  .flow-steps-detail__inner {
    gap: 30px;
  }

  .flow-steps-detail__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* モバイルでは順序を統一 */
  .flow-steps-detail__item:nth-child(2),
  .flow-steps-detail__item:nth-child(4) {
    flex-direction: column;
  }

  .flow-steps-detail__image {
    width: 100%;
    height: 180px;
  }

  .flow-steps-detail__content {
    width: 100%;
  }

  .flow-steps-detail__header {
    gap: 10px;
    margin-bottom: 15px;
  }

  .flow-steps-detail__hash {
    font-size: 18px;
    left: -10px;
  }

  .flow-steps-detail__number {
    font-size: 40px;
  }

  .flow-steps-detail__title {
    font-size: 18px;
  }

  .flow-steps-detail__subtitle {
    font-size: 10px;
  }

  .flow-steps-detail__description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 10px;
  }
}

/* Tablet styles - Smaller flow diagram */
@media (max-width: 1080px) and (min-width: 769px) {
  .flow-diagram {
    gap: 120px;
  }

  .flow-step__circle {
    width: 60px;
    height: 60px;
  }

  .flow-step__number {
    font-size: 28px;
  }

  .flow-step__bubble {
    width: 160px;
    height: 50px;
    font-size: 14px;
    border-radius: 25px;
    margin-top: 15px;
  }

  /* タブレット用の三角形サイズ調整 */
  .flow-step__bubble::after {
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--flow-bubble-color);
  }

  .flow-step:not(:last-child)::after {
    right: -120px;
    width: 120px;
  }
}

/* Mobile styles - Hide flow diagram */
@media (max-width: 768px) {
  .flow-diagram {
    display: none;
  }

  .flow-section {
    padding: 0;
  }
}

/* ===========================================
    Blog
============================================*/
strong {
  font-weight: 600;
}

/* ===== モバイル（デフォルト / モバイルファースト） ===== */

/* コンテナを縦積みに */
.blog__container {
  display: block;
  gap: 0;
  padding: 20px 10px; /* PCの60pxに対して少し小さめ */
}

/* タイトル */
.blog__pickup-title {
  padding: 0 20px;
  margin-top: 20px;
}

.blog__pickup-title-en {
  font-size: 36px; /* PC 72px の半分程度 */
  font-family: var(--font-family-oswald);
  font-weight: 600;
  line-height: 1.2;
}

.blog__pickup-title-ja {
  font-size: 16px; /* PC 20px の調整 */
  font-weight: 500;
  margin-top: 0.3rem;
}

/* メイン記事 */
.blog__main {
  display: block;
  gap: 1.5rem;
}

.blog-card--featured {
  grid-column: auto;
}

.blog-card__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* .blog-card__body {
  padding: 0.8rem 0;
} */

.blog-card__category {
  font-size: 0.75rem; /* PC 0.8rem の調整 */
  color: #0073aa;
  margin-bottom: 0.3rem;
}

.blog-card__title {
  font-size: 1rem; /* PC 20px に相当 */
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__meta {
  font-size: 0.75rem; /* PC 14px の調整 */
  color: #666;
}

/* サイドバー */
.blog__sidebar {
  padding-left: 0;
  margin-top: 2rem;
}

/* 検索フォーム */
.sidebar-search__title,
.sidebar-tags__title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.sidebar-search__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-search__input,
.sidebar-search__button {
  width: 100%;
  padding: 0.6rem 0.5rem; /* PC 10px に相当 */
  font-size: 0.85rem;
  box-sizing: border-box;
  border: 1px solid var(--gray-color03);
}

.sidebar-search__button {
    background: var(--primary-color);
    padding: 10px;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.sidebar-tags__list {
  display: flex;
  /* flex-direction: column; */
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sidebar-tags__link {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background 0.2s;
}

.sidebar-tags__link:hover {
  background: #eee;
}

/* ===========================================
   BLOG PAGE（ブログ詳細ページ）
==============================================*/
/* ===== モバイルファースト / 縦並び ===== */
.blog-mv__content {
  padding: 10px;
}

.blog-mv__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-mv__title,
.blog-mv__subtitle {
  font-size: 20px;
  font-weight: bold;
}

.blog-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card__thumb {
  margin-bottom: 20px;
}

/* メイン記事 */
.blog__main {
  display: block;
  gap: 1.5rem;
}

/* 記事本文の段落 */
.blog-detail__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* 記事の見出し */
.blog-detail__section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  margin-top: 40px;
}

/* この記事を読む人 */
.blog-detail__target-readers {
  padding: 16px;
  width: 100%;
  border: 1px solid var(--gray-color04);
  margin-bottom: 30px;
  margin-top: 50px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .blog-detail__target-readers {
    width: 60%;
  }
}

.blog-detail__target-title {
  position: absolute;
  top: -10%;
  background: var(--white-color);
  padding: 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.blog-detail__target-list li {
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}

.blog-detail__target-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* .blog-detail__author-name::before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--gray-color04);
    position: absolute;
    bottom: -10px;
} */
/* セクションタイトル */
.blog-detail__author-name,
.blog-detail__section-title {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-detail__author-name::before,
.blog-detail__section-title::before {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--gray-color04);
  position: absolute;
  bottom: -6px;
}

/* 目次 */
.blog-detail__index-list {
  margin-top: 30px;
}

.blog-detail__index-list li {
  margin-top: 8px;
  font-weight: 600;
}

.blog-detail__index-num {
  padding: 0 16px;
}


.blog-detail__section-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* カテゴリリンク */
.blog-detail__category-link {
  display: block;
  margin-top: 30px;
  padding-left: 16px;
}

.blog-detail__category-link::before {
  content: "→";
  transform: rotate(90deg);
  color: var(--primary-color);
  margin-right: 5px;
}

.blog-detail__category-link span {
  background: var(--gray-color04);
  padding: 0 4px;
  border-radius: 4px;
  margin-right: 4px;
}

/* サイドバー（検索フォーム・タグ） */
.blog__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.sidebar-search__title,
.sidebar-tags__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sidebar-search__input,
.sidebar-search__button {
  width: 100%;
  font-size: 14px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.sidebar-tags__link {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 14px;
  background: #f7f7f7;
  border-radius: 4px;
  margin-bottom: 0.3rem;
}


@media screen and (min-width: 1080px) {
  .blog {
    padding: 0 0 60px;
  }

  .blog__content {
    max-width: 1200px;
    margin: 0 auto;
  }

  .blog__pickup-title {
    margin-bottom: 50px;
  }

  .blog__pickup-title-en {
    font-size: 72px;
    font-family: var(--font-family-oswald);
  }

  .blog__pickup-title-ja {
    font-size: 20px;
  }

  .blog__container {
    display: grid;
    grid-template-columns: 3fr 1fr; /* メイン:サイド = 3:1 */
    gap: 2rem;
  }

  .blog__main {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 記事カードを2列 */
    gap: 2rem;
  }

  /* 特大カードは2列ぶん使う */
  .blog-card--featured {
    grid-column: span 2;
  }

  /* デザインを少し強調する */
  .blog-card--featured .blog-card__title {
    font-size: 1.5rem;
  }
  .blog-card--featured .blog-card__thumb img {
    height: 500px; /* 高さを固定してビジュアルを大きく */
    object-fit: cover;
  }

  .blog-card {
    overflow: hidden;
    transition: box-shadow 0.3s;
  }

  .blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .blog-card__thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }

  .blog-card__body {
    padding: 0 1rem;
  }

  .blog-card__category {
    font-size: 0.8rem;
    color: #0073aa;
    margin-bottom: 0.5rem;
  }

  .blog-card__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .blog-card__meta {
    font-size: 14px;
    color: #666;
  }

  /* サイドバー */
  .blog__sidebar {
    /* border-left: 1px solid #ddd; */
    padding-left: 1rem;
  }

  .sidebar-search,
  .sidebar-tags {
    margin-bottom: 2rem;
  }

  .sidebar-search__title,
  .sidebar-tags__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  .sidebar-search__form {
    display: flex;
    gap: 0.5rem;
  }

  .sidebar-search__input {
    flex: 1;
    padding: 10px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }

  .sidebar-search__button {
    background: var(--primary-color);
    padding: 10px;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
  }

  .sidebar-tags__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .sidebar-tags__item {
    margin-bottom: 0.5rem;
  }

  .sidebar-tags__link {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    background: #f9f9f9;
    transition: background 0.2s;
  }

  .sidebar-tags__link:hover {
    background: #eee;
  }

  .sidebar-posts {
    margin-top: 2rem;
  }

  .sidebar-posts__title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
  }

  .sidebar-posts__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sidebar-posts__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .sidebar-posts__thumb {
    flex: 0 0 60px;
    margin-right: 0.8rem;
  }

  .sidebar-posts__thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
  }

  .sidebar-posts__body {
    flex: 1;
  }

  .sidebar-posts__title-text {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
  }

  .sidebar-posts__date {
    font-size: 0.7rem;
    color: #666;
  }
}


@media screen and (min-width: 1080px) {
  .blog-mv {
    width: 100%;
    padding: 40px 20px 20px;
    margin-top: 80px;
  }

  .blog-mv__content {
    margin-top: 20px;
  }

  .blog-mv__title,
  .blog-mv__subtitle {
    font-size: 36px;
    line-height: 1.8;
    font-weight: bold;
  }

  .blog-detail__post {
    grid-column: span 2;
    line-height: 1.8;
  }

  .blog-detail__section {
    padding: 0 0 10px;
  }

  .blog-detail__text {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .blog-detail__author-name {
    font-size: 28px;
    font-weight: 600;
    position: relative;
    margin-bottom: 20px;
  }

  .blog-detail__author-name::before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--gray-color04);
    position: absolute;
    bottom: -10px;
  }

  .blog-detail__career-history li {
    margin-bottom: 10px;
  }

  .blog-detail__target-readers {
    padding: 20px;
    width: 70%;
    border: 1px solid var(--gray-color04);
    position: relative;
    margin-bottom: 50px;
  }

  .blog-detail__target-title {
    position: absolute;
    top: -15%;
    background: var(--white-color);
    padding: 0 5px;
    font-size: 20px;
    font-weight: 600;
  }

  .blog-detail__target-list li {
    margin-top: 10px;
    position: relative;
    padding-left: 20px;
  }

  .blog-detail__target-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  /* .blog-detail__triangle {
    position: relative;
    margin-left: 30px;
  }

  .blog-detail__triangle::after {
    content: "▲";
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transform: rotate(180deg);
  } */

  .blog-detail__index-list {
    margin-top: 40px;
  }

  .blog-detail__index-list li {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
  }

  .blog-detail__index-num {
    padding: 0 20px;
  }

  .blog-detail__section-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .blog-detail__section-subtitle:not(:first-of-type) {
    margin-top: 40px;
  }

  .blog-detail__section-secoud-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
  }

  .blog-detail__category-link {
    display: block;
    margin-top: 40px;
    padding-left: 20px;
  }

  .blog-detail__category-link::before {
    content: "→";
    transform: rotate(90deg);
    color: var(--primary-color);
    margin-right: 5px;
  }

  .blog-detail__category-link span {
    background: var(--gray-color04);
    padding: 0 5px;
    border-radius: 4px;
    margin-right: 5px;
  }
}

/* ===========================================
   UNDER CONSTRUCTION PAGE（準備中ページ）
   =========================================== */
.under-construction {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--bg-color);
}

.under-construction__inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.under-construction__content {
  padding: 40px 20px;
}

.under-construction__title {
  font-family: var(--font-family-noto-serif);
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.under-construction__subtitle {
  font-family: var(--font-family-oswald);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color-secondary);
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.under-construction__message {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 40px;
}

.under-construction__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.under-construction__btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
}

.under-construction__btn:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(68, 84, 106, 0.3);
}

.under-construction__btn--secondary {
  background: transparent;
  color: var(--primary-color);
}

.under-construction__btn--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .under-construction {
    padding: 80px 20px;
  }

  .under-construction__content {
    padding: 60px 40px;
  }

  .under-construction__title {
    font-size: 64px;
  }

  .under-construction__subtitle {
    font-size: 24px;
  }

  .under-construction__message {
    font-size: 18px;
  }

  .under-construction__actions {
    flex-wrap: nowrap;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .under-construction {
    min-height: calc(100vh - 200px);
  }

  .under-construction__content {
    padding: 80px 60px;
  }

  .under-construction__title {
    font-size: 72px;
  }
}

/* ===========================================
   ERROR PAGE (404ページ)
   =========================================== */
.error-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--bg-color);
}

.error-page__inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.error-page__content {
  padding: 40px 20px;
}

.error-page__title {
  font-family: var(--font-family-oswald);
  font-size: 120px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.error-page__subtitle {
  font-family: var(--font-family-oswald);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color-secondary);
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.error-page__message {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 40px;
}

.error-page__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-page__btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
}

.error-page__btn:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(68, 84, 106, 0.3);
}

.error-page__btn--secondary {
  background: transparent;
  color: var(--primary-color);
}

.error-page__btn--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* ===========================================
   PRIVACY POLICY PAGE (プライバシーポリシー)
   =========================================== */
.privacy-policy {
  padding: 60px 0;
  background: var(--bg-color);
}

.privacy-policy__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-policy__content {
  background: var(--white-color);
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.privacy-policy__section {
  margin-bottom: 40px;
}

.privacy-policy__section:last-child {
  margin-bottom: 0;
}

.privacy-policy__heading {
  font-family: var(--font-family-noto-serif);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

.privacy-policy__text {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-policy__text:last-child {
  margin-bottom: 0;
}

.privacy-policy__list {
  margin: 20px 0 20px 20px;
}

.privacy-policy__list li {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
}

.privacy-policy__list li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: -15px;
}

.privacy-policy__contact {
  background: var(--bg-color);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.privacy-policy__contact p {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 8px;
}

.privacy-policy__contact p:last-child {
  margin-bottom: 0;
}

.privacy-policy__date {
  font-family: var(--font-family-noto-sans);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color-secondary);
  text-align: right;
  margin-bottom: 10px;
}

.privacy-policy__company {
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
  text-align: right;
  line-height: 1.6;
}

/* ===========================================
   THANKS PAGE (サンクスページ)
   =========================================== */
.thanks-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--bg-color);
}

.thanks-page__inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.thanks-page__content {
  padding: 40px 20px;
}

.thanks-page__title {
  font-family: var(--font-family-noto-serif);
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.thanks-page__subtitle {
  font-family: var(--font-family-oswald);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--text-color-secondary);
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.thanks-page__message {
  font-family: var(--font-family-noto-sans);
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 30px;
}

.thanks-page__notice {
  background: rgba(68, 84, 106, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.thanks-page__notice-text {
  font-family: var(--font-family-noto-sans);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  color: var(--text-color-secondary);
  line-height: 1.6;
}

.thanks-page__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.thanks-page__btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
}

.thanks-page__btn:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(68, 84, 106, 0.3);
}

.thanks-page__btn--secondary {
  background: transparent;
  color: var(--primary-color);
}

.thanks-page__btn--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* タブレット以上（768px〜） */
@media (min-width: 768px) {
  .error-page {
    padding: 80px 20px;
  }

  .error-page__content {
    padding: 60px 40px;
  }

  .error-page__title {
    font-size: 150px;
  }

  .error-page__subtitle {
    font-size: 24px;
  }

  .error-page__message {
    font-size: 18px;
  }

  .error-page__actions,
  .thanks-page__actions {
    flex-wrap: nowrap;
  }

  .privacy-policy__content {
    padding: 60px 40px;
  }

  .privacy-policy__heading {
    font-size: 28px;
  }

  .thanks-page {
    padding: 80px 20px;
  }

  .thanks-page__content {
    padding: 60px 40px;
  }

  .thanks-page__title {
    font-size: 64px;
  }

  .thanks-page__subtitle {
    font-size: 24px;
  }

  .thanks-page__message {
    font-size: 20px;
  }
}

/* デスクトップ（1080px〜） */
@media (min-width: 1080px) {
  .error-page {
    min-height: calc(100vh - 200px);
  }

  .error-page__content {
    padding: 80px 60px;
  }

  .error-page__title {
    font-size: 180px;
  }

  .privacy-policy__content {
    padding: 80px 60px;
  }

  .privacy-policy__heading {
    font-size: 32px;
  }

  .thanks-page {
    min-height: calc(100vh - 200px);
  }

  .thanks-page__content {
    padding: 80px 60px;
  }

  .thanks-page__title {
    font-size: 72px;
  }
}
