/* ========================================
   採用導線セクション（Recruit Gateway）
   ======================================== */

.recruit-gateway {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  margin-bottom: 0;
}

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

.gateway-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.gateway-text {
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.gateway-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.gateway-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gateway-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: 0;
}

.gateway-btn:hover {
  border-color: #4a90e2;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.15);
  transform: translateY(-2px);
}

.gateway-btn:hover::before {
  left: 100%;
}

.gateway-btn.facility-style {
  border-color: #ff6b6b;
}

.gateway-btn.facility-style:hover {
  border-color: #ff5252;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.15);
}

.gateway-btn.visiting-style {
  border-color: #4ecdc4;
}

.gateway-btn.visiting-style:hover {
  border-color: #3db8b0;
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.15);
}

.gateway-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.gateway-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.gateway-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
}

.gateway-main {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

.gateway-arrow {
  font-size: 20px;
  color: #bbb;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.gateway-btn:hover .gateway-arrow {
  color: #4a90e2;
  transform: translateX(4px);
}

.gateway-btn.facility-style:hover .gateway-arrow {
  color: #ff6b6b;
}

.gateway-btn.visiting-style:hover .gateway-arrow {
  color: #4ecdc4;
}

/* ========================================
   モバイル対応（スマートフォン）
   ======================================== */

@media (max-width: 768px) {
  .recruit-gateway {
    padding: 40px 16px;
  }

  .gateway-container {
    padding: 0 8px;
  }

  .gateway-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .gateway-text {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .gateway-buttons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gateway-btn {
    padding: 20px;
    gap: 12px;
  }

  .gateway-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .gateway-label {
    font-size: 11px;
  }

  .gateway-main {
    font-size: 16px;
  }

  .gateway-arrow {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .recruit-gateway {
    padding: 32px 12px;
  }

  .gateway-container {
    padding: 0;
  }

  .gateway-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .gateway-text {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .gateway-btn {
    padding: 16px;
    gap: 10px;
  }

  .gateway-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .gateway-main {
    font-size: 15px;
  }
}
