body {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}


.recruit-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.recruit-title {
  font-size:2rem;
  font-family:'Noto Serif JP';
  color: #000000;
  border-bottom: 2px solid #1E3A8A;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 40px;
}

.recruit-message p {
  margin: 10px 0;
  font-size: 1.1rem;
  font-family:'Noto Sans JP';
}

/* モバイル対応 */
@media screen and (max-width: 600px) {
  .recruit-container {
    padding: 0 15px;
  }



  .recruit-message p {
    font-size: 1rem;
  }
}

.section {
  margin-top: 0px;
  text-align: left;
}

.section-title {
  font-size: 1.7rem;
  font-family:'Noto serif JP';
  border-bottom: 2px solid #1E3A8A;
  display: inline-block;
  margin-bottom: 20px;
  color: #3B82F6;
}

/* 募集要項テーブル */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.info-table th, .info-table td {
  font-size:1.1rem;
  font-family:'Noto Sans JP';
  padding: 10px;
  border: 1px solid #ccc;
  vertical-align: top;
}

.info-table th {
  width: 25%;
  background-color: #f0f4f8;
  font-weight: bold;
}

/* 職種紹介 */
.job-description h4 {
  font-size: 1.5rem;
    font-family:'Noto Sans JP';
  color: #6B7280;
  margin-bottom: 10px;
}

.job-description p {
    font-family:'Noto Sans JP';
    color: #6B7280;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* FAQ */
.faq p {
  font-family:'Noto Sans JP';
  font-size:1rem;
  margin-bottom: 0px;
  line-height: 1.6;
  font-size: 15px;
}
.faq strong {
    font-family:'Noto Sans JP';
  font-size:1.3rem;
  color: #1e50a2;
}
.faq-answer{
    font-family:'Noto Sans JP';
  font-size:1.1rem;
  margin-bottom:40px;
}


#faq {
  scroll-margin-top: 4rem; /* 上から100pxの余白 */
}


/* 職種カード */
.job-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.job-card {
  flex: 1 1 30%;
  background-color: #f7b3a8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h4 {
  color: #1e50a2;
  font-size: 1.3rem;
  font-family:'Noto sans JP';
  margin-bottom: 10px;
}

.job-card p {
  font-size: 1rem;
    font-family:'Noto sans JP';
  margin-bottom: 8px;
}

.job-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #1e50a2;
  text-decoration: none;
  font-weight: bold;
}

#job1 {
  scroll-margin-top: 4rem; /* 上から100pxの余白 */
}
#job2 {
  scroll-margin-top: 4rem; /* 上から100pxの余白 */
}
#job3 {
  scroll-margin-top: 4rem; /* 上から100pxの余白 */
}
/* スマホ表示時：縦並びにする */
@media screen and (max-width: 768px) {
  .job-cards {
    flex-direction: column;
  }

  .job-card {
    flex: 1 1 100%;
  }
}


/* FAQリンクに飛ぶ */
.faq-link-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}


.faq-link {
  font-size: 1rem;
  text-decoration: none;
  color: #1E3A8A;
  font-weight: bold;
  border: 1px solid #1E3A8A;
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.2s, color 0.2s;
}

.faq-link:hover {
  background-color: #1e50a2;
  color: #fff;
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}



a.link-color:link,
a.link-color:visited {
  color: #1E3A8A !important; /* ← ← ← ← ← ここがポイント！ */
}

a.link-color:hover {
  color: #144182 !important;
}



