@charset "UTF-8";

@import url("index.css");

.recruit-content {
  display: grid;
  gap: 24px;
}

.recruit-section {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--soft);
}

.recruit-section h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.recruit-section h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.recruit-section p {
  margin: 0 0 12px;
}

.recruit-section p:last-child {
  margin-bottom: 0;
}

.detail-box {
  margin: 18px 0;
  padding: 16px 18px;
  background: #fff;
  border-left: 4px solid var(--primary);
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.action-button:hover {
  background: #163db0;
}

.contact-detail strong {
  font-size: 1.1rem;
}

.contact-detail a {
  color: var(--primary);
  font-weight: 700;
}