@charset "UTF-8";
/* ==========================================
   採用サイト 共通スタイル
   ========================================== */
/* フォント設定 */
body {
  font-family: "BIZ UDPGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #FFFFFB;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

/* ==========================================
   採用サイト 共通ヘッダー
   ========================================== */
/* ヘッダー全体 */
.recruit-header {
  width: 100%;
}

/* トップナビゲーション */
.top-nav {
  width: calc(100% - 100px);
  position: fixed;
  top: 10px;
  left: 50px;
  z-index: 99;
  background: #F5F3ED;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.top-nav--hidden {
  transform: translateY(calc(-100% - 10px));
}
.top-nav .container {
  max-width: 100%;
  margin: 0;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .top-nav {
    width: calc(100% - 60px);
    left: 30px;
    border-radius: 0 0 15px 15px;
  }
  .top-nav .container {
    padding: 12px 30px;
  }
}
@media (max-width: 768px) {
  .top-nav {
    width: 100%;
    left: 0;
    border-radius: 0 0 12px 12px;
  }
  .top-nav .container {
    flex-wrap: wrap;
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .top-nav {
    width: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
  }
  .top-nav .container {
    padding: 10px 15px;
  }
}

/* メインナビゲーション */
.main-nav {
  flex: 1;
  margin-top: 5px;
}
.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}
.main-nav > ul > li {
  margin: 0;
  position: relative;
}
.main-nav > ul > li > a:hover {
  color: #FF7043;
}
@media (max-width: 1024px) {
  .main-nav > ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-nav > ul {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}
.main-nav a {
  text-decoration: none;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s;
  white-space: nowrap;
  display: block;
}
@media (max-width: 1024px) {
  .main-nav a {
    font-size: 12px;
  }
}
.main-nav .has-dropdown {
  position: relative;
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
  list-style: none;
}
.main-nav .dropdown li {
  margin: 0;
}
.main-nav .dropdown a {
  padding: 10px 20px;
  color: #333333;
  font-size: 13px;
  transition: background 0.3s, color 0.3s;
}
.main-nav .dropdown a:hover {
  background: #f5f5f5;
  color: #FF7043;
}
@media (max-width: 768px) {
  .main-nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
  }
}

/* ロゴ（左） */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.logo a {
  display: block;
  line-height: 0;
}
.logo img {
  height: auto;
  width: auto;
  max-height: 40px;
  display: block;
}
@media (max-width: 480px) {
  .logo img {
    max-height: 32px;
  }
}

/* ヘッダーSNS */
.header-social {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-social a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.header-social a:hover {
  opacity: 0.7;
}
.header-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.header-social__icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.menu-open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.menu-open .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 80px 30px 40px;
  overflow-y: auto;
  transition: right 0.3s ease;
}

.menu-open .mobile-menu {
  right: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu__nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__nav > ul > li {
  border-bottom: 1px solid #e0e0e0;
}
.mobile-menu__nav > ul > li > a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu__nav > ul > li > a:hover {
  color: #E97F4B;
}

.mobile-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 12px 16px;
}
.mobile-menu__sub li {
  margin-bottom: 0;
}
.mobile-menu__sub a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu__sub a:hover {
  color: #E97F4B;
}

.mobile-menu__social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.mobile-menu__social a {
  display: block;
  transition: opacity 0.3s;
}
.mobile-menu__social a:hover {
  opacity: 0.7;
}
.mobile-menu__social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* SP時にナビとSNSを非表示 */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .header-social {
    display: none;
  }
}
/* ページヘッダー */
.page-header {
  background: #E89B6F;
  position: relative;
  padding: 120px 20px 150px 20px;
  overflow: hidden;
  margin-top: 0;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/recruit_mask_group.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

/* パンくず（recruit用） */
.recruit-header .breadcrumb {
  max-width: 1200px;
  margin: 0 auto 30px;
  font-size: 13px;
  color: #ffffff;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}
.recruit-header .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.recruit-header .breadcrumb a:hover {
  opacity: 0.7;
}
.recruit-header .breadcrumb .separator {
  margin: 0 10px;
}
.recruit-header .breadcrumb .current {
  font-weight: 600;
}

/* 第二階層のヘッダーコンテンツ */
.page-header-second {
  padding: 120px 40px 80px 40px;
}
@media (max-width: 768px) {
  .page-header-second {
    padding-top: 140px;
  }
}
@media (max-width: 480px) {
  .page-header-second {
    padding: 120px 20px 60px;
  }
}

.header-content-second {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header-text-second {
  color: #ffffff;
}

.lead-section {
  margin-bottom: 30px;
}

.lead-icon {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .lead-icon {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .lead-icon {
    font-size: 16px;
  }
}

.lead-text {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .lead-text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .lead-text {
    font-size: 14px;
  }
}

.page-title-second {
  font-size: 52px;
  font-weight: 400;
  margin: 30px 0 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-title-second {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .page-title-second {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .page-title-second {
    font-size: 28px;
  }
}

.page-description {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 480px) {
  .page-description {
    font-size: 14px;
  }
}

/* 第三階層のヘッダーコンテンツ */
.page-header-third {
  padding: 120px 40px 60px 40px;
}
@media (max-width: 768px) {
  .page-header-third {
    padding-top: 140px;
  }
}
@media (max-width: 480px) {
  .page-header-third {
    padding: 120px 20px 50px;
  }
}

.header-content-third {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-title-third {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-title-third {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .page-title-third {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .page-title-third {
    font-size: 24px;
  }
}

/* ページ全体 */
.recruit-page {
  padding: 60px 0 100px;
  min-height: 60vh;
}
.recruit-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .recruit-page {
    padding: 40px 0 60px;
  }
}
@media (max-width: 480px) {
  .recruit-page {
    padding: 30px 0 40px;
  }
}

/* ページタイトル */
.page-title {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #FF7043;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 24px;
  }
}

/* ページコンテンツ */
.page-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}
.page-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FF7043;
}
.page-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin: 30px 0 15px;
}
.page-content p {
  margin: 0 0 20px;
  color: #666666;
}
.page-content ul,
.page-content ol {
  margin: 0 0 20px;
  padding-left: 25px;
}
.page-content li {
  margin-bottom: 10px;
  color: #666666;
}
.page-content a {
  color: #FF7043;
  text-decoration: none;
  transition: opacity 0.3s;
}
.page-content a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .page-content {
    padding: 30px 20px;
  }
  .page-content h2 {
    font-size: 24px;
  }
  .page-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .page-content {
    padding: 25px 15px;
  }
  .page-content h2 {
    font-size: 20px;
  }
  .page-content h3 {
    font-size: 18px;
  }
}

/* ==========================================
   2カラムレイアウト（汎用）
   ========================================== */
.page-layout {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 120px;
  min-height: 60vh;
}
@media (max-width: 768px) {
  .page-layout {
    flex-direction: column;
    padding: 40px 20px 80px;
  }
}

.main-content {
  width: 900px;
  margin-right: 50px;
}
@media (max-width: 1024px) {
  .main-content {
    width: auto;
    flex: 1;
    min-width: 0;
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  .main-content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.side-content {
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .side-content {
    width: 240px;
  }
}
@media (max-width: 768px) {
  .side-content {
    display: none;
  }
}

/* ==========================================
   サイドバー目次（汎用）
   ========================================== */
.side-toc {
  position: sticky;
  top: 100px;
}
.side-toc__title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
}
.side-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-toc__item {
  margin-bottom: 8px;
}
.side-toc__item a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}
.side-toc__item a:hover {
  color: #e67e3c;
}
.side-toc__item a:hover .side-toc__item-arrow {
  filter: invert(62%) sepia(50%) saturate(500%) hue-rotate(338deg) brightness(95%) contrast(90%);
}
.side-toc__item-arrow {
  width: 12px;
  height: auto;
  transform: rotate(90deg);
  flex-shrink: 0;
  transition: filter 0.3s;
}
@media (max-width: 768px) {
  .side-toc {
    position: static;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .side-toc__title {
    width: 100%;
    margin-bottom: 8px;
  }
  .side-toc__list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .side-toc__item {
    margin-bottom: 0;
  }
}

/* ==========================================
   テーブル（汎用）
   ========================================== */
.info-table {
  margin-bottom: 40px;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eeddd3;
}
.info-table tr {
  border: 1px solid #eeddd3;
}
.info-table th {
  font-size: 14px;
  font-weight: 600;
  color: #E97F4B;
  text-align: left;
  padding: 16px 20px;
  vertical-align: top;
  white-space: nowrap;
  width: 120px;
  background-color: #fff5e8;
  border: 1px solid #eeddd3;
}
@media (max-width: 480px) {
  .info-table th {
    font-size: 13px;
    padding: 12px 0;
    width: 100px;
  }
}
.info-table td {
  font-size: 14px;
  color: #333333;
  padding: 16px 20px;
  line-height: 1.8;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #eeddd3;
}
@media (max-width: 480px) {
  .info-table td {
    font-size: 13px;
    padding: 12px 0 12px 12px;
  }
}
@media (max-width: 768px) {
  .info-table {
    table-layout: fixed;
  }
  .info-table th, .info-table td {
    padding: 14px 16px;
  }
  .info-table th {
    width: 45%;
    white-space: normal;
    word-break: break-word;
  }
}

/* ==========================================
   セクション見出し（汎用）
   ========================================== */
.section-heading {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #e67e3c, rgba(230, 126, 60, 0));
  border-radius: 8px;
  padding: 16px 24px;
  margin: 0 0 40px;
  overflow: hidden;
}
.section-heading__icon-left {
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}
.section-heading__icon-left img {
  width: 21px;
  height: 14px;
}
.section-heading__text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-heading__text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-heading__text {
    font-size: 16px;
  }
}
.section-heading__icon-right {
  flex-shrink: 0;
  margin-left: 12px;
}
.section-heading__icon-right img {
  width: 14px;
  height: 14px;
}
.section-heading__accent {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.section-heading__accent img {
  width: 8px;
  height: 15px;
}
@media (max-width: 480px) {
  .section-heading__accent {
    right: 12px;
  }
}
@media (max-width: 768px) {
  .section-heading {
    padding: 14px 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .section-heading {
    padding: 12px 16px;
    margin-bottom: 24px;
  }
}

/* ==========================================
   サブセクション見出し（汎用）
   ========================================== */
.sub-heading {
  margin: 0 0 30px;
}
.sub-heading__text {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
}
@media (max-width: 480px) {
  .sub-heading__text {
    font-size: 16px;
  }
}
.sub-heading__line {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 10px;
}
.sub-heading__line img {
  width: 21px;
  height: 14px;
  flex-shrink: 0;
}
.sub-heading__line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eeddd3;
  margin-left: 5px;
}

/* ==========================================
   コンテンツグリッド（汎用）
   ========================================== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================
   番号付きカード（汎用）
   ========================================== */
.numbered-card {
  display: flex;
  gap: 24px;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  border: 2px solid #e89b6f;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.numbered-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.numbered-card:hover .numbered-card__title {
  color: #E89B6F;
}
.numbered-card:hover .arrow {
  transform: translateX(4px);
  filter: invert(62%) sepia(50%) saturate(500%) hue-rotate(338deg) brightness(95%) contrast(90%);
}
.numbered-card__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
}
.numbered-card__number {
  font-size: 14px;
  font-weight: 600;
  color: #FF7043;
  line-height: 1;
  margin-bottom: 12px;
}
.numbered-card__line {
  display: block;
  width: 1px;
  flex: 1;
  background: #e0e0e0;
}
.numbered-card__body {
  flex: 1;
  min-width: 0;
}
.numbered-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.numbered-card__title .arrow {
  width: 28px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s, filter 0.3s;
}
@media (max-width: 768px) {
  .numbered-card__title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .numbered-card__title {
    font-size: 18px;
    gap: 10px;
  }
  .numbered-card__title .arrow {
    width: 24px;
  }
}
.numbered-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}
@media (max-width: 480px) {
  .numbered-card__text {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .numbered-card {
    padding: 35px 25px;
  }
}
@media (max-width: 480px) {
  .numbered-card {
    padding: 30px 20px;
    gap: 16px;
  }
}

/* ==========================================
   採用サイト フッター
   ========================================== */
.recruit-footer {
  background: #F5F3ED;
  padding: 60px 0 40px;
}
@media (max-width: 768px) {
  .recruit-footer {
    padding: 40px 0 30px;
  }
}
@media (max-width: 480px) {
  .recruit-footer {
    padding: 30px 0 20px;
  }
}

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

/* フッターナビゲーション */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
}

.footer-nav-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
}
.footer-nav-title a {
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #333333;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}
.footer-nav-title a:hover {
  color: #FF7043;
  border-color: #FF7043;
}
@media (max-width: 480px) {
  .footer-nav-title {
    font-size: 15px;
  }
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-list li {
  margin-bottom: 8px;
}
.footer-nav-list a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-nav-list a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 11px;
  flex-shrink: 0;
  background: url("../../images/black-arrow.svg") no-repeat center/contain;
}
.footer-nav-list a:hover {
  color: #FF7043;
}
@media (max-width: 480px) {
  .footer-nav-list a {
    font-size: 12px;
  }
}

/* お問い合わせ・CTAボタン */
.footer-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-contact-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.footer-contact {
  text-align: left;
}

.footer-contact-label {
  font-size: 14px;
  color: #666666;
  margin: 0 0 5px;
}

.footer-contact-info {
  font-size: 14px;
  color: #333333;
  margin: 0;
}

.footer-cta {
  display: flex;
  gap: 20px;
}
.footer-cta .btn {
  padding: 15px 120px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}
.footer-cta .btn-primary {
  background: #60998E;
  color: #ffffff;
  border: 2px solid #60998E;
}
.footer-cta .btn-primary:hover {
  background: #4f8377;
  border-color: #4f8377;
}
.footer-cta .btn-secondary {
  background: #E89B6F;
  color: #ffffff;
  border: 2px solid #E89B6F;
}
.footer-cta .btn-secondary:hover {
  background: #D88A5E;
  border-color: #D88A5E;
}
@media (max-width: 768px) {
  .footer-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cta .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-cta .btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* フッターボトム */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #DDD;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.footer-logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 480px) {
  .footer-logo img {
    height: 35px;
  }
}

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #FF7043;
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-bottom-right {
    width: 100%;
    justify-content: space-between;
  }
}

.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  display: block;
  transition: opacity 0.3s;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .footer-social img {
    width: 20px;
    height: 20px;
  }
}

.footer-copyright {
  font-size: 13px;
  color: #333;
  margin: 0;
}

/* ==========================================
   ナビリスト（汎用）
   ========================================== */
.nav-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-list__item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  background: #ffffff;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-list__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #E97F4B;
}
.nav-list__item a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.nav-list__item--active a {
  background: #e67e3c;
  color: #ffffff;
}
.nav-list__item--active a::before {
  display: none;
}
.nav-list__number {
  font-size: 14px;
  font-weight: 700;
  color: #E97F4B;
  flex-shrink: 0;
}
.nav-list__item--active .nav-list__number {
  color: #ffffff;
}
.nav-list__text {
  flex: 1;
}
.nav-list__arrow {
  width: 20px;
  height: auto;
  flex-shrink: 0;
}
.nav-list__item--active .nav-list__arrow {
  filter: brightness(0) invert(1);
}

/* ==========================================
   追従バナー
   ========================================== */
.fixed-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}
.fixed-banner__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 24px 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  transform-origin: bottom right;
  animation: bannerPopIn 0.3s ease;
}
.fixed-banner__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E89B6F;
  border: 3px solid #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  z-index: 1;
}
.fixed-banner__close span {
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
}
.fixed-banner__close:hover {
  transform: scale(1.1);
}
.fixed-banner__label {
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  margin: 0 0 14px;
}
.fixed-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fixed-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.fixed-banner__btn:hover {
  opacity: 0.85;
}
.fixed-banner__btn--green {
  background: #60998E;
}
.fixed-banner__btn--orange {
  background: #E89B6F;
}
.fixed-banner__icon {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E89B6F;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  position: absolute;
  bottom: 0;
  right: 0;
}
.fixed-banner__icon img {
  width: 20px;
  height: auto;
  filter: brightness(0) invert(1);
}
.fixed-banner__icon:hover {
  transform: scale(1.1);
}
.fixed-banner.is-collapsed .fixed-banner__card {
  animation: bannerPopOut 0.3s ease forwards;
  pointer-events: none;
}
.fixed-banner.is-collapsed .fixed-banner__icon {
  display: flex;
  animation: iconPopIn 0.3s ease 0.2s both;
}
.fixed-banner.no-animation .fixed-banner__card {
  animation: none;
  opacity: 0;
  transform: scale(0.3);
  pointer-events: none;
}
.fixed-banner.no-animation .fixed-banner__icon {
  animation: none;
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .fixed-banner {
    bottom: 16px;
    right: 16px;
  }
}
@media (max-width: 480px) {
  .fixed-banner {
    bottom: 12px;
    right: 12px;
  }
  .fixed-banner__card {
    padding: 20px 20px 16px;
  }
  .fixed-banner__btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@keyframes bannerPopIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bannerPopOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes iconPopIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ==========================================
   採用フッターCTAセクション
   ========================================== */
.recruit-footer-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .recruit-footer-cta {
    padding: 100px 40px;
  }
}
.recruit-footer-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.recruit-footer-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-footer-cta__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .recruit-footer-cta__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.recruit-footer-cta__content {
  flex: 1;
}
.recruit-footer-cta__label {
  font-size: 13px;
  color: #333333;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}
.recruit-footer-cta__heading {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .recruit-footer-cta__heading {
    font-size: 48px;
  }
}
.recruit-footer-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recruit-footer-cta__list li {
  font-size: 14px;
  color: #333333;
  margin-bottom: 8px;
}
.recruit-footer-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.recruit-footer-cta__button {
  display: inline-block;
  background: #e67e3c;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.recruit-footer-cta__button:hover {
  opacity: 0.85;
}
.recruit-footer-cta__link {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.recruit-footer-cta__link:hover {
  color: #e67e3c;
}

/* スクロールアニメーション */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade-in--delay-1 {
  transition-delay: 0.15s;
}
.scroll-fade-in--delay-2 {
  transition-delay: 0.3s;
}
.scroll-fade-in--delay-3 {
  transition-delay: 0.45s;
}
.scroll-fade-in--delay-4 {
  transition-delay: 0.6s;
}
.scroll-fade-in--delay-5 {
  transition-delay: 0.75s;
}
