.recruit-title {
  width: 100%;
  padding: 120px 80px 60px;
  box-sizing: border-box;
  background-color: #60ac4f;
  color: white;
}

.recruit-title h1 {
  margin: 0;
  font-size: 42px;
}

.recruit-title span {
  margin-left: 20px;
  font-size: 16px;
  letter-spacing: 2px;
}

.entry-area {
  text-align: center;
  padding: 80px 20px;
}

.entry-guide {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
}

.entry-button {
  display: inline-block;

  padding: 20px 100px;

  background-color: white;
  color: #60ac4f;

  border: 2px solid #60ac4f;

  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;

  transition: all 0.3s ease;
}

.entry-button:hover {
  background-color: #60ac4f;
  color: white;

  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.recruit-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.recruit-section h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.section-line {
  width: 100%;
  height: 2px;
  background-color: #60ac4f;
  margin-bottom: 30px;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
}

.recruit-table th,
.recruit-table td {
  border-bottom: 1px solid #ddd;
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

.recruit-table th {
  width: 25%;
  background-color: #f5f5f5;
}

.fade-up {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .recruit-title {
    padding: 110px 50px 50px;
  }

  .recruit-section {
    max-width: 900px;
    margin: 70px auto;
  }
}

/* スマホ */
@media screen and (max-width: 768px) {
  .recruit-title {
    padding: 100px 20px 45px;
  }

  .recruit-title h1 {
    font-size: 32px;
  }

  .recruit-title span {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    font-size: 13px;
  }

  .entry-area {
    padding: 60px 20px;
  }

  .entry-guide {
    font-size: 18px;
  }

  .entry-button {
    width: 100%;
    max-width: 320px;

    padding: 18px 0;

    font-size: 20px;
    box-sizing: border-box;
  }

  .recruit-section {
    margin: 60px auto;
    padding: 0 20px;
  }

  .recruit-section h2 {
    font-size: 24px;
  }

  .recruit-table,
  .recruit-table tbody,
  .recruit-table tr,
  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
  }

  .recruit-table th {
    box-sizing: border-box;
    padding: 14px 16px;
    border-bottom: none;
  }

  .recruit-table td {
    box-sizing: border-box;
    padding: 14px 16px 22px;
  }
}

/* 小さいスマホ */
@media screen and (max-width: 480px) {
  .recruit-title h1 {
    font-size: 28px;
  }

  .entry-button {
    font-size: 18px;
  }

  .recruit-section {
    margin: 50px auto;
  }
}