/* リセット & ベース */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #222;
  background: #fff;
  font-size: 15px;
  line-height: 1.8;
}
a {
  color: #0b67d1;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
/* 全体コンテナ */
.page {
  width: 100%;
  background: #fff;
}
.wrap {
  width: 1120px;
  margin: 0 auto;
}
/* 見出し共通 */
.section-title {
  border-left: 6px solid #0b67d1;
  padding-left: 12px;
  margin: 10px 0 18px;
}
.section-title--spaced {
  margin-top: 60px;
}
.section-company {
  margin-top: 60px;
}
/* ヘッダー */
header {
  background: #fff;
  border-bottom: 1px solid #e6eef9;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: #2772d6;
}
/* MV */
.top-visual {
  background-color: #d0efff; /* 水色背景 */
  width: 100%;
}
.top-visual-inner picture img {
  width: 100%;
  height: auto;
  display: block;
}
.top-visual .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-subcatch {
  text-align: center;
  margin: 30px auto 40px;
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 500;
}
/* 求職者コンテンツ 共通 */
.job-outer {
  display: block;
}
.job-main {
  width: 100%;
}
/* テキストカードのベース（全画面共通） */
.job-text-area {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 16px;
}
.lead-text {
  margin-bottom: 16px;
}
.job-text-strong {
  font-weight: 700;
  margin-top: 8px;
}
.job-text-margin {
  margin-top: 8px;
}
.sp-main-image {
  display: none;
  max-width: 100%;
  height: auto;
  margin-top: 16px;
  border-radius: 6px;
}
/* 求職者コンテンツ（上部テキスト＋背景画像：PCのみ） */
@media (min-width: 768px) {
  .job-text-area {
    position: relative;
    padding: 26px 35% 24px 28px;
    box-shadow: 0 5px 20px rgba(10, 40, 80, 0.08);
    background-image:
      linear-gradient(to bottom right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 80%), url("/img/jobseeker.png");
    background-repeat: no-repeat;
    background-size: 32% auto;
    background-position: right 3% bottom 50%;
  }
  .lead-text {
    position: relative;
    z-index: 10; /* テキストは常に最前面 */
  }
}
/* 青枠の3カラム（横並び） */
.boxes {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}
.box {
  flex: 1;
  border: 2px solid #0b67d1;
  padding: 14px;
  border-radius: 6px;
  background: #fff;
}
.box h4 {
  font-size: 15px;
  font-weight: 700;
  padding: 4px 6px;
  background: rgba(11, 103, 209, 0.08);
  border-radius: 4px;
  margin: 0 0 10px 0;
}
.box p {
  margin: 0;
}
/* 応募の流れ */
.flow-wrap {
  margin-top: 12px;
}
.flow-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 6px solid #0b67d1;
  line-height: 1.4;
}
.flow-box {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 16px 20px;
}
.flow-box ol {
  margin: 0;
  padding-left: 18px;
}
.flow-box li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.8;
}
/* 下の補足（②③）のグレー帯 */
.aux-list {
  margin: 10px 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aux {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 10px 12px;
}
.flow-mail {
  font-weight: 700;
}
/* 青枠の大CTA */
.cta-big {
  border: 2px solid #0b67d1;
  padding: 35px;
  border-radius: 6px;
  margin-top: 18px;
  text-align: center;
  background: #fff;
}
.cta-text {
  text-align: center;
  margin-bottom: 16px;
}
.cta-headline {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.cta-sub {
  font-size: 14px;
  font-weight: 400;
  margin: 2px 0;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 38px;
  background: #0b67d1;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(1px);
}
.cta-btn--column {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}
.cta-btn svg {
  vertical-align: middle;
}
/* 企業向けセクション */
.company-section {
  margin-top: 30px;
}
.company-left {
  width: 100%;
}
/* 企業テキストのベース（全画面共通） */
.company-text-bg {
  margin-top: 8px;
}
.company-text-bg p {
  margin-top: 8px;
}
.company-text-bg p:first-of-type {
  margin-top: 12px;
}
/* 企業テキストに人物画像を背景で重ねる（PCのみ） */
@media (min-width: 768px) {
  .company-text-bg {
    position: relative;
    background-image: url("/img/recruiter.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 320px auto;
    padding-right: 350px;
    padding-bottom: 24px;
  }
}
/* 企業お問い合わせボタン（中央の大きなボタン） */
.company-contact {
  margin-top: 24px;
  text-align: center;
}
.company-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  background: #0b67d1;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-size: 15px;
}
.company-btn-title {
  display: block;
}
.company-btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.company-btn-icon {
  color: #fff;
}
.company-btn-email {
  color: #fff;
}
/* ホバー時の演出 */
.company-btn:hover {
  opacity: 0.9;
  transform: translateY(1px);
}
/* 運営会社表 */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 120px 0;
}
.company-table th {
  background: #fbfdff;
  padding: 10px;
  text-align: left;
  border: 1px solid #f1f6fb;
  width: 220px;
}
.company-table td {
  padding: 10px;
  border: 1px solid #f1f6fb;
}
/* メールアイコン */
.mail-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 6px;
}
.mail-icon svg {
  display: inline-block;
  vertical-align: middle;
}
/* フッター */
footer {
  background: linear-gradient(180deg, #e8f6ff, #dff6ff);
  padding: 28px 0;
  margin-top: 36px;
  text-align: center;
}
.footer-inner {
  text-align: center;
}
footer .footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 36px;
}
footer p {
  margin: 6px 0;
  color: #666;
  font-size: 13px;
}
/* タブレット〜中サイズ：横幅を広げる＆3カラムを縦並びに */
@media (max-width: 1180px) {
  header {
    padding-top: 15px;
  }
  .logo {
    margin-bottom: 10px;
  }
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
  .boxes {
    flex-direction: column;
  }
}
/* スマホ向け微調整 */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  header {
    padding-top: 15px;
  }
  .lead-text {
    text-align: left;
  }
  .logo {
    margin-bottom: 0px;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .nav {
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    margin: 5px 0;
  }
  .main-subcatch {
    margin: 20px 20px 30px;
    font-size: 13px;
    text-align: left;
  }
  .job-text-area {
    padding: 16px 12px;
    box-shadow: 0 3px 10px rgba(10, 40, 80, 0.05);
  }
  .cta-big {
    padding: 24px 16px;
  }
  .company-btn {
    width: 100%;
    max-width: 320px;
    padding: 12px 16px;
  }
  .company-table {
    font-size: 13px;
  }
  .sp-main-image {
    display: block;
  }
}