
/* Recruit → 採用情報 */
.recruit {
    position: relative;
    padding: 4rem 1rem;
    background: url('image/recruit.jpeg') no-repeat center center / cover;
    color: #fff;
  }
  
  .recruit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* 黒のオーバーレイ */
    z-index: 0;
  }
  
  .recruit-overlay {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .recruit-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 16px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .recruit-copy {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .recruit-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .recruit-button,
  .entry-button {
    display: inline-block;
    background-color: #4b7d4a;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    text-align: center;
    font-size: 0.9rem;
    min-width: 220px;
  }
  
  .entry-button {
    background-color: #8a9a5b;
  }
  
  .recruit-button:hover {
    background-color: #3a633a;
  }
  
  .entry-button:hover {
    background-color: #6e7b47;
  }
  
  /* ========== Recruit アニメーション ========== */
  
  /* アニメーション初期状態 */
  .recruit {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .recruit.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .recruit-message {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
  }
  
  .recruit.animate-in .recruit-message {
    opacity: 1;
    transform: translateY(0);
  }
  
  .recruit-buttons a {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .recruit.animate-in .recruit-buttons a:nth-child(1) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: scale(1);
  }
  .recruit.animate-in .recruit-buttons a:nth-child(2) {
    transition-delay: 1s;
    opacity: 1;
    transform: scale(1);
  }
  