@charset "utf-8";
/*
==========================================================================
採用ページ専用スタイル
青山Fusion Clinic - Recruit Pages
==========================================================================
*/

/* ----------------------------------------------------------------------
| カスタマイズ用変数（ここで数値を変更すると全体に反映されます）
| 注: %またはpxで調整できます
---------------------------------------------------------------------- */
:root {
  /* メインビジュアルの高さ */
  --hero-height: 750px;
  --hero-height-mobile: 500px;
  
  /* キャッチコピーの位置調整（%またはpxで指定）*/
  --hero-top-position: 75%;    /* 上からの位置: 0%=最上部, 50%=中央, 100%=最下部 */
  --hero-left-position: 50%;   /* 左からの位置: 0%=最左, 50%=中央, 100%=最右 */
  --hero-translate-x: -50%;    /* 横方向の中央揃え調整 */
  --hero-translate-y: -50%;    /* 縦方向の中央揃え調整 */
  
  /* キャッチコピーの余白微調整（追加で調整したい場合） */
  --hero-margin-top: 0px;      /* 追加で上に移動: -50px=上へ, 50px=下へ */
  --hero-margin-left: 0px;     /* 追加で横に移動: -50px=左へ, 50px=右へ */
  
  /* キャッチコピーのサイズ */
  --catch-main-size: 48px;     /* 大きいキャッチコピー */
  --catch-sub-size: 32px;      /* 小さいキャッチコピー */
  --catch-gap: 15px;           /* キャッチコピー間の間隔 */
  
  /* セクション間の余白 */
  --section-padding: 80px;
  --section-padding-mobile: 50px;
  
  /* 文字サイズ */
  --intro-text-size: 18px;
  --intro-heading-size: 28px;
  --section-title-size: 36px;
  
  /* 文字の行間 */
  --intro-line-height: 2;
  --normal-line-height: 1.8;
}

/* 
【位置調整の早見表】
━━━━━━━━━━━━━━━━━━━━━
上寄せ:    --hero-top-position: 20%;  --hero-translate-y: 0%;
中央:      --hero-top-position: 50%;  --hero-translate-y: -50%;
下寄せ:    --hero-top-position: 80%;  --hero-translate-y: -100%;

左寄せ:    --hero-left-position: 20%; --hero-translate-x: 0%;
中央:      --hero-left-position: 50%; --hero-translate-x: -50%;
右寄せ:    --hero-left-position: 80%; --hero-translate-x: -100%;

左上:      top: 20%, left: 20%, translate: 0%, 0%
右下:      top: 80%, left: 80%, translate: -100%, -100%
━━━━━━━━━━━━━━━━━━━━━
*/

/* ----------------------------------------------------------------------
| 共通設定
---------------------------------------------------------------------- */
.recruit-top-wrapper,
.recruit-detail-wrapper {
  font-family: 'Times New Roman', 游明朝, 'Yu Mincho', 游明朝体, YuMincho, 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', HiraMinProN-W3, HGS明朝E, 'ＭＳ Ｐ明朝', 'MS PMincho', serif !important;
  color: #333;
  line-height: 1.8;
}

/* 採用ページ専用のcontainerクラス（既存テーマとの競合を避ける） */
.recruit-top-wrapper .container,
.recruit-detail-wrapper .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* セクションタイトル（共通） */
.section-title {
  font-size: var(--section-title-size); /* サイズ調整 */
  text-align: center; /* 揃え: left(左), center(中央), right(右) */
  margin-bottom: 60px; /* 下の間隔 */
  color: #937960;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  /* 位置調整が必要な場合 */
  /* margin-top: 20px; */ /* 上の間隔を増やす */
  /* padding-top: 10px; */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; /* 下線の位置: 50%=中央, 0=左, 100%=右 */
  transform: translateX(-50%);
  width: 60px; /* 下線の幅 */
  height: 2px; /* 下線の太さ */
  background: #937960;
  /* 左寄せタイトルの場合は以下に変更 */
  /* left: 0; */
  /* transform: none; */
}

/* ----------------------------------------------------------------------
| 採用トップページ - メインビジュアル
| 
| 【位置の調整方法 - %またはpxで指定】
| 
| 1. 変数で一括調整（推奨）:
|    --hero-top-position: 50%;   上からの位置（0%～100%）
|    --hero-left-position: 50%;  左からの位置（0%～100%）
| 
| 2. 微調整:
|    --hero-margin-top: 50px;    追加で上下に移動
|    --hero-margin-left: 100px;  追加で左右に移動
| 
| 3. 位置の例:
|    左上:  top: 10%, left: 10%
|    中央:  top: 50%, left: 50% (デフォルト)
|    右下:  top: 80%, left: 80%
---------------------------------------------------------------------- */
.recruit-hero {
  height: var(--hero-height); /* 高さ調整 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.recruit-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 暗さ調整: 0.4を変更（0=透明, 1=真っ黒） */
}

/* キャッチコピー全体のコンテナ */
.recruit-hero-content {
  position: absolute;
  top: var(--hero-top-position);    /* 上からの位置（%またはpx） */
  left: var(--hero-left-position);   /* 左からの位置（%またはpx） */
  transform: translate(var(--hero-translate-x), var(--hero-translate-y)); /* 中央揃え調整 */
  
  /* 微調整用の余白 */
  margin-top: var(--hero-margin-top);
  margin-left: var(--hero-margin-left);
  
  text-align: center; /* テキスト揃え: left(左), center(中央), right(右) */
  color: #fff;
  z-index: 2;
  max-width: 900px; /* 最大幅 */
  width: 90%; /* レスポンシブ対応 */
  
  /* 個別に位置を調整する場合はここに追加 */
  /* top: 30%; */          /* 上から30%の位置 */
  /* left: 100px; */       /* 左から100px */
  /* transform: none; */   /* 中央揃えを解除 */
}

.recruit-hero-title {
  display: flex;
  flex-direction: column;
  gap: var(--catch-gap); /* キャッチコピー間の間隔 */
}

/* 大きいキャッチコピー */
.hero-title-main {
  font-size: var(--catch-main-size); /* サイズ調整: 変数で一括変更可能 */
  font-weight: 600;
  letter-spacing: 0.05em; /* 文字間隔 */
  line-height: 1.4;
  /* 個別に位置調整する場合 */
  /* margin-top: 20px; */
  /* padding: 10px 0; */
}

/* 小さいキャッチコピー */
.hero-title-sub {
  font-size: var(--catch-sub-size); /* サイズ調整: 変数で一括変更可能 */
  font-weight: 400;
  letter-spacing: 0.08em; /* 文字間隔 */
  /* 個別に位置調整する場合 */
  /* margin-top: 10px; */
  /* padding: 5px 0; */
}

/* ----------------------------------------------------------------------
| 採用トップページ - クリニック紹介
| 
| 【位置の調整方法】
| 1. セクション全体の余白: .recruit-intro の padding を変更
| 2. 文章の配置: .intro-text の text-align を変更 (left/center/right)
| 3. 院長メッセージの位置: .director-message の margin を調整
---------------------------------------------------------------------- */
.recruit-intro {
  padding: var(--section-padding) 0; /* 上下の余白調整 */
  background: #fff;
}

.recruit-intro-content {
  max-width: 900px; /* コンテンツの最大幅 */
  margin: 0 auto;
  /* 位置調整が必要な場合 */
  /* padding: 0 40px; */ /* 左右の余白 */
}

/* クリニック紹介文 */
.intro-text {
  font-size: var(--intro-text-size); /* 文字サイズ調整 */
  line-height: var(--intro-line-height); /* 行間調整 */
  margin-bottom: 60px; /* 下の間隔 */
  text-align: center; /* 揃え: left(左), center(中央), right(右) */
  /* 位置の微調整 */
  /* padding: 0 20px; */
  /* margin-top: 20px; */
}

.intro-text h2 {
  font-size: var(--intro-heading-size); /* 見出しサイズ調整 */
  color: #937960;
  margin-bottom: 30px; /* 下の間隔 */
  font-weight: 600;
  /* 位置調整が必要な場合 */
  /* text-align: left; */ /* 左寄せに変更 */
  /* padding-top: 10px; */
}

.intro-text p {
  margin-bottom: 20px; /* 段落間の間隔 */
  /* 位置調整が必要な場合 */
  /* text-align: justify; */ /* 両端揃え */
}

/* 院長メッセージエリア */
.director-message {
  display: flex;
  gap: 40px; /* 写真とテキストの間隔 */
  align-items: flex-start; /* 上揃え。center にすると中央揃え */
  background: #f7f4f3;
  padding: 40px; /* 内側の余白 */
  border-radius: 8px;
  /* 位置調整が必要な場合 */
  /* margin-top: 40px; */ /* 上の間隔を増やす */
  /* margin-left: 0; */   /* 左寄せ */
  /* margin-right: auto; */ /* 左寄せ */
}

/* 院長写真 */
.director-image {
  flex-shrink: 0;
  width: 200px; /* 画像の幅 */
  /* 位置調整が必要な場合 */
  /* margin-right: 20px; */ /* 右の間隔 */
}

.director-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 院長メッセージのテキスト部分 */
.director-content {
  flex: 1;
  /* 位置調整が必要な場合 */
  /* padding-left: 20px; */
  /* text-align: left; */ /* 左揃え */
}

.director-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px; /* 下の間隔 */
  /* 位置調整 */
  /* text-align: center; */ /* 中央揃え */
}

.director-name {
  font-size: 24px; /* 名前のサイズ */
  color: #937960;
  font-weight: 600;
  margin-bottom: 20px; /* 下の間隔 */
  /* 位置調整 */
  /* text-align: center; */ /* 中央揃え */
}

.director-text {
  font-size: 16px;
  line-height: 1.9; /* 行間 */
  color: #333;
  /* 位置調整 */
  /* text-align: justify; */ /* 両端揃え */
  /* margin-top: 15px; */
}

/* ----------------------------------------------------------------------
| 採用トップページ - クリニックのこだわり
| 
| 【位置の調整方法】
| 1. カード全体の配置: .features-grid の gap (間隔) を調整
| 2. カード内の文字位置: .feature-item の text-align を追加
| 3. 番号の位置: .feature-number の margin を調整
---------------------------------------------------------------------- */
.recruit-features {
  padding: var(--section-padding) 0; /* 上下の余白 */
  background: #fafafa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列表示 */
  gap: 40px; /* カード間の間隔 */
  max-width: 1000px;
  width: 100%; /* 幅を100%に */
  margin: 0 auto;
  box-sizing: border-box; /* ボックスサイズを含める */
  /* 位置調整が必要な場合 */
  /* padding: 0 20px; */ /* 左右の余白 */
}

.feature-item {
  background: #fff;
  padding: 40px; /* カード内の余白 */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* ボックスサイズを含める */
  max-width: 100%; /* 最大幅を制限 */
  overflow: hidden; /* はみ出しを防ぐ */
  /* 文字の揃えを変更する場合 */
  /* text-align: center; */ /* 中央揃え */
  /* text-align: left; */   /* 左揃え */
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* こだわりの番号 */
.feature-number {
  display: block;
  font-size: 48px; /* 番号のサイズ */
  color: #937960;
  font-weight: 300;
  margin-bottom: 15px; /* 下の間隔 */
  /* 位置調整が必要な場合 */
  /* text-align: center; */ /* 中央揃え */
  /* margin-top: -10px; */ /* 上に移動 */
}

/* こだわりの画像 */
.feature-image {
  width: 100%;
  max-width: 100%; /* 最大幅を制限 */
  margin-bottom: 20px; /* 下の間隔 */
  border-radius: 8px;
  overflow: hidden; /* はみ出しを防ぐ */
  box-sizing: border-box; /* ボックスサイズを含める */
  /* 位置調整が必要な場合 */
  /* margin-top: 10px; */ /* 上の間隔 */
}

.feature-image img {
  width: 100%;
  max-width: 100%; /* 最大幅を制限 */
  height: auto;
  display: block;
  object-fit: cover; /* 画像を適切に収める */
  box-sizing: border-box; /* ボックスサイズを含める */
}

/* こだわりのタイトル */
.feature-title {
  font-size: 24px; /* タイトルサイズ */
  color: #333;
  margin-bottom: 20px; /* 下の間隔 */
  font-weight: 600;
  line-height: 1.5; /* 行間 */
  /* 位置調整が必要な場合 */
  /* text-align: center; */ /* 中央揃え */
  /* margin-top: 10px; */ /* 上の間隔 */
}

/* こだわりの説明文 */
.feature-text {
  font-size: 15px;
  line-height: 1.9; /* 行間 */
  color: #666;
  /* 位置調整が必要な場合 */
  /* text-align: justify; */ /* 両端揃え */
  /* margin-top: 10px; */
}

/* ----------------------------------------------------------------------
| 採用トップページ - 募集職種
| 
| 【位置の調整方法】
| 1. カードの列数: .positions-grid の grid-template-columns を変更
|    - repeat(3, 1fr) = 3列
|    - repeat(2, 1fr) = 2列
| 2. カード間の間隔: gap を調整
| 3. 職種名の配置: .position-name の text-align を変更
---------------------------------------------------------------------- */
.recruit-positions {
  padding: var(--section-padding) 0; /* 上下の余白 */
  background: #fff;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 列数: 3列表示 */
  gap: 40px; /* カード間の間隔 */
  max-width: 1000px;
  margin: 0 auto;
  /* 位置調整が必要な場合 */
  /* padding: 0 20px; */ /* 左右の余白 */
}

.position-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* カード全体の位置調整 */
  /* margin-bottom: 20px; */
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 職種の画像 */
.position-image {
  width: 100%;
  height: 250px; /* 画像の高さ */
  overflow: hidden;
  /* 位置調整が必要な場合 */
  /* height: 300px; */ /* 高さを変更 */
}

.position-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の表示方法: cover(トリミング), contain(全体表示) */
  transition: transform 0.3s ease;
}

.position-card:hover .position-image img {
  transform: scale(1.05);
}

/* 職種名 */
.position-name {
  font-size: 22px; /* 職種名のサイズ */
  text-align: center; /* 揃え: left(左), center(中央), right(右) */
  padding: 25px 20px 15px; /* 上 左右 下 の余白 */
  color: #333;
  font-weight: 600;
  /* 位置調整が必要な場合 */
  /* margin-top: 10px; */
  /* line-height: 1.4; */ /* 行間 */
}

/* 募集要項リンクボタン */
.position-link-btn {
  display: block;
  text-align: center; /* 揃え: left(左), center(中央), right(右) */
  padding: 15px 20px 25px; /* 上 左右 下 の余白 */
  color: #937960;
  text-decoration: none;
  font-size: 16px; /* ボタンの文字サイズ */
  font-weight: 500;
  transition: color 0.3s ease;
  /* 位置調整が必要な場合 */
  /* margin-top: 10px; */
}

.position-link-btn:hover {
  color: #6d5847;
  text-decoration: underline;
}

/* ----------------------------------------------------------------------
| 採用トップページ - お問い合わせ
| 
| 【位置の調整方法】
| 1. テキストの揃え: .contact-text の text-align を変更
| 2. ボタンの配置: .contact-buttons の justify-content を変更
---------------------------------------------------------------------- */
.recruit-contact {
  padding: var(--section-padding) 0; /* 上下の余白 */
  background: #f7f4f3;
}

.contact-text {
  text-align: center; /* 揃え: left(左), center(中央), right(右) */
  font-size: 16px; /* 文字サイズ */
  margin-bottom: 40px; /* 下の間隔 */
  color: #666;
  /* 位置調整が必要な場合 */
  /* max-width: 600px; */ /* 最大幅を制限 */
  /* margin-left: auto; */ /* 中央寄せ */
  /* margin-right: auto; */ /* 中央寄せ */
  /* padding: 0 20px; */ /* 左右の余白 */
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background: #937960;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background: #6d5847;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 20px;
}

/* ----------------------------------------------------------------------
| 募集要項詳細ページ - ページヘッダー
---------------------------------------------------------------------- */
.page-header {
  background: #f7f4f3;
  padding: 60px 0 40px;
  text-align: center;
}

.page-title {
  font-size: 36px;
  color: #937960;
  font-weight: 600;
  margin-bottom: 20px;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #937960;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #6d5847;
  text-decoration: underline;
}

.breadcrumb .separator {
  margin: 0 10px;
}

.breadcrumb .current {
  color: #333;
}

/* ----------------------------------------------------------------------
| 募集要項詳細ページ - 職種ナビゲーション
---------------------------------------------------------------------- */
.position-nav {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.position-nav-list {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.position-nav-item {
  flex: 1;
  max-width: 250px;
}

.position-nav-link {
  display: block;
  padding: 20px 30px;
  text-align: center;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.position-nav-link:hover,
.position-nav-link.active {
  color: #937960;
  border-bottom-color: #937960;
  background: #fafafa;
}

/* ----------------------------------------------------------------------
| 募集要項詳細ページ - 職種詳細
---------------------------------------------------------------------- */
.recruit-details {
  padding: 80px 0;
  background: #fff;
}

.position-detail {
  margin-bottom: 100px;
  padding-bottom: 80px;
  border-bottom: 2px solid #e0e0e0;
}

.position-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 職種ヘッダー */
.position-header {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.position-header-image {
  flex-shrink: 0;
  width: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.position-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

.position-header-content {
  flex: 1;
}

.position-title {
  font-size: 32px;
  color: #937960;
  font-weight: 600;
  margin-bottom: 20px;
}

.position-description {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 30px;
}

/* アピールポイント */
.appeal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.appeal-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #f7f4f3;
  color: #937960;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid #e0d5cc;
}

/* 募集要項テーブル */
.position-requirements {
  margin-bottom: 40px;
}

.requirements-title {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 4px solid #937960;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.requirements-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.requirements-table tr:last-child {
  border-bottom: none;
}

.requirements-table th {
  width: 180px;
  padding: 25px 30px;
  background: #f7f4f3;
  color: #333;
  font-weight: 600;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.requirements-table td {
  padding: 25px 30px;
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

.requirements-table td ul {
  margin: 10px 0;
  padding-left: 20px;
}

.requirements-table td li {
  margin-bottom: 8px;
}

/* お問い合わせボタン */
.position-contact {
  text-align: center;
  margin-top: 50px;
}

.contact-btn-large {
  display: inline-block;
  padding: 20px 60px;
  background: #937960;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(147, 121, 96, 0.3);
}

.contact-btn-large:hover {
  background: #6d5847;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(147, 121, 96, 0.4);
}

/* ページトップへ戻る */
.back-to-recruit-top {
  padding: 40px 0;
  background: #fafafa;
  text-align: center;
}

.back-btn {
  display: inline-block;
  padding: 15px 40px;
  color: #937960;
  text-decoration: none;
  border: 2px solid #937960;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.back-btn:hover {
  background: #937960;
  color: #fff;
}

/* ----------------------------------------------------------------------
| レスポンシブ対応 - タブレット
---------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  /* こだわりセクション */
  .features-grid {
    grid-template-columns: 1fr; /* 1列表示 */
    gap: 35px;
    padding: 0 20px; /* 左右に余白 */
  }
  
  .feature-item {
    padding: 35px 30px; /* 余白調整 */
  }
  
  .feature-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .feature-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* 募集職種 */
  .positions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .position-header {
    flex-direction: column;
  }
  
  .position-header-image {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------
| レスポンシブ対応 - スマートフォン
---------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  /* ヒーローセクション */
  .recruit-hero {
    height: 400px;
  }
  
  .hero-title-main {
    font-size: 32px;
  }
  
  .hero-title-sub {
    font-size: 22px;
  }
  
  /* セクションタイトル */
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  /* クリニック紹介 */
  .recruit-intro {
    padding: 50px 0;
  }
  
  .director-message {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  .director-image {
    width: 150px;
    margin: 0 auto;
  }
  
  /* こだわりセクション（スマートフォン対応） */
  .recruit-features {
    padding: 50px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr; /* 1列表示 */
    gap: 30px; /* 間隔を狭く */
    padding: 0 15px; /* 左右に余白を追加 */
  }
  
  .feature-item {
    padding: 25px 20px; /* カード内の余白を小さく */
  }
  
  .feature-number {
    font-size: 36px; /* 番号を小さく */
    margin-bottom: 10px;
  }
  
  .feature-image {
    width: 100%; /* 幅を100%に */
    max-width: 100%; /* 最大幅を制限 */
    margin-bottom: 15px;
    overflow: hidden; /* はみ出しを防ぐ */
  }
  
  .feature-image img {
    width: 100%; /* 画像幅を100%に */
    height: auto; /* 高さは自動調整 */
    max-width: 100%; /* 最大幅を制限 */
    display: block;
    object-fit: cover; /* 画像をカバー */
  }
  
  .feature-title {
    font-size: 20px; /* タイトルを小さく */
    margin-bottom: 15px;
  }
  
  .feature-text {
    font-size: 14px; /* 本文を小さく */
    line-height: 1.8;
  }
  
  /* 職種カード */
  .positions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* お問い合わせボタン */
  .contact-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* 職種ナビゲーション */
  .position-nav-list {
    flex-direction: column;
  }
  
  .position-nav-item {
    max-width: 100%;
  }
  
  .position-nav-link {
    padding: 15px 20px;
  }
  
  /* 職種詳細 */
  .recruit-details {
    padding: 50px 0;
  }
  
  .position-detail {
    margin-bottom: 60px;
    padding-bottom: 50px;
  }
  
  .position-title {
    font-size: 26px;
  }
  
  .requirements-table th {
    width: 120px;
    padding: 15px;
    font-size: 14px;
  }
  
  .requirements-table td {
    padding: 15px;
    font-size: 14px;
  }
  
  .contact-btn-large {
    padding: 18px 40px;
    font-size: 16px;
  }
}

