/**
 * 求人案内ページのスタイル
 * 
 * 倉本鐵工株式会社の求人情報ページ用CSS
 * 
 * @package Kuramoto
 * @version 1.0.0
 * @author 倉本鐵工株式会社
 */

/* ユースエール認定企業セクション */
.youth-yell-section {
  background: #fff;
  padding: 60px 0;
  margin: 40px 0;
}

.youth-yell-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.youth-yell-text {
  flex: 1;
}

.youth-yell-title {
  font-size: clamp(1rem, 0.888rem + 0.56vw, 1.563rem);
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.4;
  text-align: center;
}

.youth-yell-title .highlight {
  color: #1E1E88;
  text-decoration: underline;
  text-decoration-color: #1E1E88;
  text-underline-offset: 3px;
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}

.youth-yell-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.youth-yell-logo {
  flex-shrink: 0;
}

.youth-yell-logo img {
  width: 200px;
  height: auto;
  display: block;
}

/* メリット表示エリア */
.youth-yell-benefits {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 670px;
  margin: 15px auto;
  padding: 0 20px;
}

.benefit-item {
  flex: 1;
  max-width: 300px;
}

.benefit-circle {
  background: linear-gradient(135deg, #5CC9E2, #70CC94);
  border-radius: 50%;
  padding: 3px;
  text-align: center;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.benefit-circle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.benefit-circle p {
  position: relative;
  z-index: 2;
  font-size: clamp(0.688rem, 0.613rem + 0.38vw, 1.063rem);
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.sp-only {
  display: none;
}

@media (max-width: 1024px) {
  .sp-only {
    display: block;
  }
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
  .youth-yell-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .youth-yell-logo img {
    width: 150px;
  }

  .benefit-circle {
    width: 150px;
    height: 150px;
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .youth-yell-section {
    padding: 40px 0;
  }

  .youth-yell-content {
    padding: 0 15px;
  }
}

/* 安心して働ける環境づくりセクション */
.safety-environment-section {
  background: #fff;
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
}

.safety-environment-section::before {
  content: '';
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 215%;
  background: rgba(30, 150, 252, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.safety-environment-section::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background: rgba(30, 150, 252, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.safety-environment-header {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
  position: relative;
  z-index: 100;
}

.safety-environment-title {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  text-align: center;
  width: 50%;
  margin: 0 auto 30px auto;
}

.safety-environment-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  filter: blur(15px);
  z-index: -1;
}

.safety-environment-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5CC9E2;
  margin: 0;
  font-weight: 600;
}

.safety-content-blocks {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.safety-block {
  flex: 1;
  max-width: 500px;
  min-width: 0;
}

.safety-image {
  margin-bottom: 20px;
}

.safety-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.safety-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: 1px solid #999;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #333;
  border-color: #333;
}

.safety-block-title {
  font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem);
  font-weight: 700;
  color: #5CC9E2;
  margin: 0 0 15px 0;
  line-height: 1.4;
  text-align: center;
}

.safety-text-group {
  position: relative;
  padding: 20px;
}

.safety-text-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 1);
  border-radius: 15px;
  filter: blur(10px);
  z-index: -1;
}

.safety-block-description {
  font-size: clamp(1rem, 0.988rem + 0.06vw, 1.063rem);
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .safety-environment-description {
    font-size: 1.1rem;
  }

  .safety-content-blocks {
    flex-direction: column;
    gap: 30px;
  }

  .safety-block {
    max-width: none;
  }

  .safety-image img {
    height: 200px;
  }

  .safety-environment-section::before {
    display: none;
  }

  .safety-environment-section::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .safety-environment-section {
    padding: 40px 0;
  }

  .safety-environment-header {
    padding: 0 15px;
  }

  .safety-content-blocks {
    padding: 0 15px;
  }

  .safety-block {
    padding: 20px;
  }

  .benefit-circle {
    width: 120px;
    height: 120px;
  }

  .youth-yell-benefits {
    gap: 0;
  }
}

/* キャリアアップ支援セクション */
.career-support-section {
  background: #fff;
  padding: 60px 0;
  margin: 100px auto;
  position: relative;
  border-radius: 300px 0 300px 0;
  max-width: 1200px;
  width: 100%;
}

.career-support-section::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  border-radius: 300px 0 300px 0;
  z-index: -1;
}

.career-support-header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.career-support-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.career-support-title {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  position: relative;
}

.career-support-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  filter: blur(15px);
  z-index: -1;
}

.career-support-icon {
  flex-shrink: 0;
}

.career-support-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.career-support-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.career-support-description p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}

.career-support-description p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .career-support-title-group {
    gap: 10px;
  }

  .career-support-icon img {
    width: 50px;
    height: 50px;
  }

  .career-support-description p {
    font-size: 1.1rem;
  }

  .career-support-section {
    border-radius: 150px 0 150px 0;
  }

  .career-support-section::before {
    border-radius: 150px 0 150px 0;
  }
}

@media (max-width: 480px) {
  .career-support-section {
    padding: 40px 0;
  }

  .career-support-header {
    padding: 0 15px;
  }

  .career-support-description p {
    font-size: 1rem;
  }

  .career-support-section::before {
    border-radius: 50px 0 50px 0;
  }

  .career-support-section {
    border-radius: 50px 0 50px 0;
  }
}

/* キャリアアップの3ステップ */
.career-steps {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 1200px;
  margin: 100px auto 0 auto;
}

.career-step {
  background: #fff;
  border: 2px solid #5CC9E2;
  padding: 30px 25px;
  position: relative;
  border-right: none;
}

.career-step:last-child {
  border-right: 2px solid #5CC9E2;
}

/* 階段状のサイズ設定 */
.career-step:nth-child(1) {
  width: 280px;
  height: 230px;
}

.career-step:nth-child(2) {
  width: 280px;
  height: 280px;
}

.career-step:nth-child(3) {
  width: 280px;
  height: 320px;
}

.career-step .step-number {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1px;
}

.career-step .step-number::before {
  content: "STEP";
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 5px;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
}

.career-step:nth-child(1) .step-number::after {
  content: "01";
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
}

.career-step:nth-child(2) .step-number::after {
  content: "02";
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
}

.career-step:nth-child(3) .step-number::after {
  content: "03";
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
}

.step-title {
  font-size: 1.3rem;
  color: #5CC9E2;
  margin: 0 0 15px 0;
  line-height: 1.4;
  text-align: center;
}

.step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .career-steps {
    flex-direction: column;
    gap: 80px;
    margin-top: 90px;
    align-items: center;
  }

  .career-step {
    max-width: none;
    padding: 25px 20px;
    border-right: 2px solid #5CC9E2;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-description {
    font-size: 0.95rem;
  }

  .career-step .step-number {
    top: -60px;
  }
}

@media (max-width: 480px) {
  .career-steps {
    padding: 0 15px;
  }

  .career-step {
    padding: 20px 15px;
  }

  .step-number {
    font-size: 1rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.9rem;
  }
}

/* 資格取得支援セクション */
.qualification-support-section {
  padding: 60px 0 0 0;
  position: relative;
}

.qualification-support-header {
  text-align: center;
  margin-bottom: 60px;
}

.qualification-support-title {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  position: relative;
}

.qualification-support-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(15px);
  border-radius: 20px;
  z-index: -1;
}

.qualification-support-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 50px auto;
  position: relative;
  z-index: 1;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  max-width: 300px;
  justify-content: center;
}

.qualification-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qualification-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qualification-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  border-bottom: 2px solid;
}

.qualification-item:nth-child(1) .qualification-title {
  color: #FFD464;
  border-bottom-color: #FFD464;
}

.qualification-item:nth-child(2) .qualification-title {
  color: #70CC94;
  border-bottom-color: #70CC94;
}

.qualification-item:nth-child(3) .qualification-title {
  color: #F24822;
  border-bottom-color: #F24822;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .qualification-support-items {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .qualification-item {
    max-width: none;
  }

}

/* 資格情報リンクセクション */
.qualification-link-section {
  padding: 40px 0 0 0;
  text-align: center;
}

.qualification-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: #fff;
  border: 2px solid #5CC9E2;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 7px 0px 0px #5CC9E2;
}

.qualification-link-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5CC9E2;
  white-space: nowrap;
}

.qualification-link-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qualification-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qualification-link:hover {
  transform: translateY(7px);
  box-shadow: none;
  color: #fff;
  background: #5CC9E2;
}

.qualification-link:hover .qualification-link-text {
  color: #fff;
}

/* ホバー時のアイコン変更はJavaScriptで処理 */

/* 保有資格モーダル */
.qualification-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.qualification-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 15px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  border-radius: 15px 15px 0 0;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5CC9E2;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #5CC9E2;
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

.qualification-table-wrapper {
  overflow-x: auto;
}

.qualification-table-wrapper table,
.qualification-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 1rem;
}

.qualification-table-wrapper table th,
.qualification-table th {
  background: #5CC9E2;
  color: #fff;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
}

.qualification-table-wrapper table td,
.qualification-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.qualification-table-wrapper table tr:hover,
.qualification-table tr:hover {
  background: #f8f9fa;
}

.qualification-table-wrapper table tr:last-child td,
.qualification-table tr:last-child td {
  border-bottom: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    top: calc(8px + env(safe-area-inset-top, 0px));
    transform: translate(-50%, 0);
  }

  .modal-header {
    padding: 20px;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .modal-close {
    font-size: 2rem;
    width: 35px;
    height: 35px;
  }

  .modal-body {
    padding: 20px;
  }

  .qualification-table-wrapper table th,
  .qualification-table th,
  .qualification-table-wrapper table td,
  .qualification-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
    top: calc(8px + env(safe-area-inset-top, 0px));
    transform: translate(-50%, 0);
  }

  .modal-header {
    border-radius: 0;
  }

  .modal-title {
    font-size: 1.2rem;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .qualification-link {
    padding: 10px 5px;
    gap: 10px;
  }

  .qualification-link-text {
    font-size: 1rem;
  }
}

/* 採用の流れセクション */
.recruitment-flow-section {
  background: rgba(30, 150, 252, 0.05);
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.recruitment-flow-section::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 30px solid rgba(30, 150, 252, 0.05);
  z-index: 1;
}

.recruitment-flow-header {
  text-align: center;
  margin-bottom: 50px;
}

.recruitment-flow-title {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}

/* 共通グラデーションタイトルクラス */
.gradient-title {
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recruitment-category {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruitment-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 30px 0;
  text-align: center;
}

.recruitment-steps {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.recruitment-step {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.recruitment-step .step-number {
  position: absolute;
  top: 0;
  left: 0;
  background: #5CC9E2;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5CC9E2;
  margin: 25px 0 15px 0;
  min-height: 3.9rem;
  /* 2行分の高さを確保（line-height: 1.4 × 1.3rem × 2行） */
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .recruitment-flow-section {
    padding: 40px 0;
  }

  .recruitment-category {
    padding: 0 15px;
  }

  .recruitment-category-title {
    font-size: 1.3rem;
  }

  .recruitment-steps {
    flex-direction: column;
    align-items: center;
  }

}

/* 関連リンクセクション */
.recruitment-links {
  max-width: 400px;
  margin: 80px auto 100px;
  padding: 0 20px;
}

.recruitment-link-item {
  position: relative;
}

.job-support-circle {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid #5CC9E2;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: -60px;
  transform: none;
  z-index: 10;
}

.job-support-circle::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 2px dashed #5CC9E2;
  border-radius: 50%;
}

.job-support-circle p {
  font-size: 1rem;
  font-weight: 600;
  color: #5CC9E2;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.link-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 30px;
  width: 250px;
  margin: 0 auto;
}

.link-connector::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(145deg);
  width: 2px;
  height: 25px;
  background: #5CC9E2;
}

.link-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 2px;
  height: 25px;
  background: #5CC9E2;
}

.link-text {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.job-draft-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #5CC9E2;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  justify-content: center;
  max-width: 350px;
  margin: 0 auto;
  box-shadow: 0px 7px 0px 0px #5CC9E2;
}

.job-draft-button:hover {
  background: #5CC9E2;
  color: #fff;
  box-shadow: none;
  transform: translateY(7px);
}

.job-draft-button span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5CC9E2;
}

.job-draft-button:hover span {
  color: #fff;
}

/* ホバー時のアイコン変更はJavaScriptで処理 */

.job-draft-button img {
  width: 30px;
  height: 30px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .recruitment-links {
    padding: 0 15px;
  }

  .recruitment-link-item {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .job-support-circle {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -40px;
    transform: none;
  }

  .job-support-circle p {
    font-size: 0.9rem;
  }

  .job-draft-button {
    max-width: 300px;
  }
}

/* 募集要項セクション */
.job-requirements-section {
  background: #fff;
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
}

.job-requirements-header {
  text-align: center;
  margin-bottom: 50px;
}

.job-requirements-subtitle {
  font-size: clamp(1rem, 0.938rem + 0.31vw, 1.313rem);
  color: #5CC9E2;
}

.job-requirements-title {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}

.job-requirements-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.requirement-row {
  display: flex;
  border-bottom: 1px solid #E0E0E0;
  min-height: 60px;
}

.requirement-category {
  width: 200px;
  padding: 20px;
  font-weight: 600;
  color: #5CC9E2;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.requirement-value {
  flex: 1;
  padding: 20px;
  color: #333;
  align-items: center;
  line-height: 1.6;
}

.job-requirements-footer {
  text-align: center;
  margin-top: 50px;
}

.recruitment-message {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #70CC94, #5CC9E2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 300px;
}

.recruitment-message::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(145deg);
  width: 2px;
  height: 25px;
  background: #5CC9E2;
}

.recruitment-message::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 2px;
  height: 25px;
  background: #5CC9E2;
}

.message-slash {
  color: #5CC9E2;
  font-weight: 600;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
  .job-requirements-section {
    padding: 40px 0;
  }

  .job-requirements-content {
    padding: 0 15px;
  }

  .requirement-row {
    flex-direction: column;
    min-height: auto;
  }

  .requirement-category {
    width: 100%;
    padding: 15px;
    font-size: 0.9rem;
  }

  .requirement-value {
    padding: 15px;
    font-size: 0.9rem;
  }

  .application-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .job-support-circle {
    display: none;
  }

  .link-connector {
    padding-left: 0;
  }

  .link-connector::before {
    left: 0;
  }

  .link-connector::after {
    right: 0;
  }
}