.pc{
  display: block;
}
.sp{
  display: none;
}
.job-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}
.job-title {
  margin-top: 120px;
  font-size: 2.0rem;
  font-weight: bold;
  color: #005bac;
  text-align: center;
  margin-bottom: 8px;
}
.job-lead {
  text-align: center;
  color: #555;
  margin-bottom: 32px;
}
.job-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 0;
  margin-bottom: 32px;
}
.job-card-inner {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 32px 24px 0 24px;
}
.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.job-header h3 {
  font-size: 1.5rem;
  color: #005bac;
  margin: 0;
}
.job-category {
  background: #eaf3fb;
  color: #005bac;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.95rem;
  margin-left: 30px;
}
.apply-btn {
  background: #df1069;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin-left: auto;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
}
.apply-btn i {
  color: #fff;
  margin-left: 10px;
  font-size: 1.2em;
}
.apply-btn:hover {
  opacity: 0.7;
  color: #fff !important;
}
.job-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 18px 0;
  color: #333;
  font-size: 0.97rem;
  justify-content: flex-start;
}
.job-info-box {
  background: #f5f6fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  padding: 8px 16px;
  margin: 0;
  gap: 4px;
  white-space: nowrap;
}
.job-info-icon {
  color: #005bac;
  font-size: 1em;
  margin-right: 2px;
}
.job-info-label {
  font-weight: bold;
  color: #005bac;
  margin-right: 2px;
  font-size: 0.97em;
}
.job-info-text {
  color: #333;
  font-size: 0.97em;
}
.job-points {
  background: #f6fafd;
  border-radius: 8px;
  padding: 16px 20px 16px 18px;
  margin-bottom: 20px;
}
.job-points h4 {
  color: #005bac;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.job-points ul {
  margin: 0;
  padding-left: 20px;
}
.job-points ul li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 20px;
}
.job-points ul li:before {
  content: '\f00c';
  font-family: 'FontAwesome';
  color: #00b16a;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}
.job-detail h4 {
  color: #005bac;
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 6px;
  padding-left: 18px;
}
.job-detail p {
  padding-left: 32px;
}
.job-detail ul,
.job-detail ol {
  padding-left: 32px;
  margin-left: 0;
  list-style-position: inside;
}
.job-detail ul, .job-detail ol {
  margin: 0 0 10px 32px;
  padding: 0;
}
.job-detail ul li, .job-detail ol li {
  margin-bottom: 4px;
}

.job-card-footer {
  background: #f5f6fa;
  border-radius: 0 0 16px 16px;
  padding: 0;
  text-align: center;
}
.job-accordion-toggle-wrap {
  margin: 0;
  padding: 0;
}
.job-accordion-toggle {
  background: #f5f6fa;
  color: #005bac;
  border: none;
  border-radius: 0 0 16px 16px;
  padding: 16px 0;
  font-size: 1.0em;
  font-weight: bold;
  cursor: pointer;
  margin: 30px 0 0 0;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
  display: block;
  width: 100%;
  text-align: center;
  align-items: center;
  gap: 8px;
}
.job-accordion-toggle i {
  color: #005bac;
  font-size: 1.0em;
  margin-left: 6px;
}
.job-accordion-toggle:hover {
  background: #e5e7eb;
  color: #005bac;
}
.job-accordion-toggle:hover i {
  color: #005bac;
}
@media (max-width: 768px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .job-section {
    margin: 80px auto 40px;
  }
  .job-card {
    padding: 16px 0 0;
  }
  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .job-info-row {
    flex-direction: column;
    gap: 8px;
  }
  .job-card-inner {
    padding: 0 12px 0 12px;
  }
  .apply-btn {
    display: block;
    margin: 16px auto 0 auto;
    text-align: center;
  }
  .job-info-box {
    min-width: 0;
    width: 100%;
    white-space: normal;
    padding: 8px 10px;
  }
  .job-card-footer {
    background: #f5f6fa;
    border-radius: 0 0 16px 16px;
    padding: 0;
    text-align: center;
  }
  .job-accordion-toggle-wrap {
    margin: 0;
    padding: 0;
  }
  .job-accordion-toggle {
    background: #f5f6fa;
    color: #005bac;
    border: none;
    border-radius: 0 0 16px 16px;
    padding: 16px 0;
    font-size: 1.0em;
    font-weight: bold;
    cursor: pointer;
    margin: 30px 0 0 0;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    display: block;
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 8px;
  }
  .job-accordion-toggle i {
    color: #005bac;
    font-size: 1.0em;
    margin-left: 6px;
  }
  .job-accordion-toggle:hover {
    background: #e5e7eb;
    color: #005bac;
  }
  .job-accordion-toggle:hover i {
    color: #005bac;
  }
  .job-lead {
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .job-category {
    margin-left: 0;
  }
  .job-detail h4 {
    padding-left: 10px;
}
.job-detail ul, .job-detail ol {
  margin: 0 0 10px 22px;
}
.job-detail p {
  padding-left: 22px;
}
.job-points ul {
  padding-left: 8px;
}
}