/* ========================================
   採用情報ページ専用CSS
   ======================================== */

/* ページヒーロー */
.page-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
  background-size: cover;
  background-position: bottom;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
}

.page-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.page-hero-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* メッセージセクション */
.message {
  background-color: var(--white);
}

.message-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-gray);
}

.message-content p {
  margin-bottom: 20px;
}

/* 職場の魅力セクション */
.appeal {
  background: linear-gradient(to bottom, var(--white), var(--sky-blue));
}

.appeal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.appeal-card {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.appeal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.appeal-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.appeal-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.appeal-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* 募集要項セクション */
.requirements {
  background-color: var(--white);
}

.requirements-content {
  max-width: 900px;
  margin: 0 auto;
}

.requirement-item {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 12px;
  border: 2px solid var(--sky-blue);
  transition: all 0.3s ease;
}

.requirement-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.15);
}

.requirement-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--sky-blue);
}

.requirement-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.requirement-text p {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.requirement-text p::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* 応募の流れ */
.flow {
  background: linear-gradient(to bottom, var(--sky-blue), var(--white));
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.flow-step {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.flow-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.flow-step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.flow-step-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.flow-step-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTAセクション */
.cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.contact-info-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.contact-info-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-info-text {
  flex: 1;
}

.contact-info-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
  word-break: break-all;
  overflow-wrap: break-word;
}

.contact-info-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-text {
    font-size: 1rem;
  }

  .appeal-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.6rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .requirement-title {
    font-size: 1.2rem;
  }
}
