  .service-section {
    background-color: #f8f9fa;
    padding: 120px 20px 80px; /* 上部のパディングを120pxに増やしました */
    overflow: hidden;
  }
  
  .service-title-container {
    max-width: 1200px;
    margin: 80px auto 80px;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
  }
  
  .service-title {
    position: relative;
    font-family: 'Futura Lt BT', sans-serif;
    line-height: 1;
    text-align: center;
  }
  
  .service-title .title-bg {
    font-size: clamp(60px, 10vw, 120px);
    color: #e9ecef;
    display: block;
    position: relative;
    z-index: 1;
  }
  
  .service-title .title-main {
    font-size: clamp(35px, 3vw, 24px);
    color: #034060;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
  }
  
  .service-title .title-bg span {
    display: inline-block;
    opacity: 0;
  }
  
  @keyframes fadeInGradient {
    0% {
      opacity: 0;
      color: #ffffff;
    }
    50% {
      opacity: 0.5;
      color: #a8c5d6;
    }
    100% {
      opacity: 1;
      color: #e9ecef;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

/* サービスセクションのスタイル */
/* 採用情報セクション */
/* 採用情報セクション */
.recruitment-info {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruitment-info h3 {
  font-size: 42px;
  color: #034060;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
}

.department-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.department {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.department::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #034060, #0077be);
}

.department:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.department h4 {
  font-size: 28px;
  color: #034060;
  margin-bottom: 20px;
  font-weight: 600;
}

.department p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.job-details {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.job-details li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #666;
  display: flex;
  align-items: center;
}

.job-details li strong {
  color: #034060;
  font-weight: 600;
  margin-right: 10px;
  min-width: 100px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #034060;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #0077be;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* モーダルスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 50px;
  border: none;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.close {
  color: #aaa;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #034060;
}

#contact-form {
  display: flex;
  flex-direction: column;
}

#contact-form label {
  margin-top: 20px;
  color: #034060;
  font-weight: 600;
  font-size: 16px;
}

#contact-form input,
#contact-form textarea {
  margin-top: 8px;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #034060;
  outline: none;
}

#contact-form textarea {
  height: 120px;
  resize: vertical;
}

#contact-form button {
  margin-top: 30px;
  align-self: flex-start;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
  .recruitment-info h3 {
      font-size: 36px;
  }
}

@media (max-width: 768px) {
  .recruitment-info h3 {
      font-size: 32px;
      margin-bottom: 40px;
  }

  .department h4 {
      font-size: 24px;
  }

  .department p {
      font-size: 15px;
  }

  .job-details li {
      font-size: 14px;
  }

  .btn {
      font-size: 15px;
      padding: 10px 20px;
  }

  .modal-content {
      padding: 40px;
  }
}

@media (max-width: 480px) {
  .recruitment-info {
      padding: 60px 0;
  }

  .recruitment-info h3 {
      font-size: 28px;
      margin-bottom: 30px;
  }

  .department {
      padding: 30px;
  }

  .department h4 {
      font-size: 22px;
  }

  .job-details li {
      font-size: 13px;
  }

  .modal-content {
      padding: 30px;
  }

  #contact-form input,
  #contact-form textarea {
      font-size: 15px;
  }
} 
