@charset "UTF-8";

.recruit-env {
  background: #fff;
  padding: 0 40px 60px;
}

.recruit-env-lead {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}

.recruit-env-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.recruit-env-card {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  min-height: 180px;
  display: flex;
}
.recruit-env-side {
  content: " ";
  width: 70px;
  height: auto;
  background: url('../images/side_purple.png') center/cover no-repeat;
}
.recruit-env-cont {
  width: 100%;
  background-color: #ccc1e1;
  padding: 40px 20px 20px 20px;
	clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 80%, 90% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 80%, 90% 100%, 0 100%);
}
.recruit-env-bg {
  width: 100%;
  height: 120px;
  opacity: 0.6;
  margin-bottom: 16px;
}

.recruit-env-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  padding: 0 0px;
}

.recruit-env-card p {
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  padding: 0 0px;
}

@media (max-width: 768px) {
  .recruit-env-grid {
    grid-template-columns: 1fr;
  }
  .recruit-env {
    padding: 0 20px 50px;
  }
  .recruit-env-card {
    width: 100%;
    min-height: 180px;
  }
}
@media (max-width: 480px) {
  .recruit-env-card {
    width: 100%;
    height: 180px;
  }
  .recruit-env-cont {
    padding: 40px 20px 20px 20px;
    clip-path: polygon(0 0, 10% 0, 100% 20%, 100% 80%, 90% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 80%, 90% 100%, 0 100%);
  }
}

.recruit-numbers {
  background: #fff;
  padding: 0 40px 60px;
}

.recruit-numbers-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.recruit-number-card {
  background: #eceaf2;
  padding: 24px 20px;
  border-radius: 4px;
  text-align: center;
}

.number-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.number-value {
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.number-value span {
  font-size: 14px;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .recruit-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit-numbers {
    padding: 0 20px 50px;
  }
}

.recruit-bg-gray {
  background: #eeecf2;
}

.recruit-daily {
  padding: 60px 40px;
}

.daily-cols {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.daily-col {
  background: var(--accent);
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 20px;
}

.daily-col-accent {
  background: var(--accent-dark);
}

.daily-col-title {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.daily-item {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
}

.daily-time {
  flex-shrink: 0;
  font-size: 12px;
  opacity: 0.8;
  padding-top: 2px;
}

.daily-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.daily-item p {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .daily-cols {
    grid-template-columns: 1fr;
  }
  .recruit-daily {
    padding: 40px 20px;
  }
}

.recruit-guidelines {
  background: #fff;
  padding: 0 40px 80px;
}

.recruit-guidelines-inner {
  max-width: 900px;
  margin: 0 auto 60px;
}
.recruit-guidelines-inner h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.recruit-table th,
.recruit-table td {
  padding: 26px 20px;
  vertical-align: top;
  line-height: 1.8;
  color: #555;
  background: #fff;
  text-align: left;
}

.recruit-table tr:first-child th {
  border-top: 2px solid var(--accent);
}

.recruit-table tr:first-child td {
  border-top: 1px solid var(--accent);
}

.recruit-table th {
  width: 200px;
  color: var(--accent);
  font-weight: 400;
  white-space: nowrap;
  border-bottom: 2px solid var(--accent);
  font-size: 18px;
}

.recruit-table td {
  border-bottom: 1px solid var(--accent);
  font-size: 20px;
}

@media (max-width: 768px) {
  .recruit-guidelines {
    padding: 0 20px 60px;
  }
  .recruit-table th {
    width: 100px;
    font-size: 16px;
    padding: 12px;
  }
  .recruit-table td {
    font-size: 16px;
    padding: 12px;
  }
}
