@charset "UTF-8";

/* --- 1. 共通設定 --- */
body {
  background-color: #f9f9f9;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #111;
  scroll-behavior: smooth;
}

/* イントロダクション */
.intro-summary {
  padding: 100px 0 80px;
  text-align: center;
  background: #fff;
}
.goukai-lead {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--dark);
}
.mark-yellow {
  background: linear-gradient(transparent 60%, var(--primary) 60%);
  display: inline-block;
  padding: 0 10px;
}
.recruit-lead-text {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}

/* --- 2. 職種ナビゲーション (Shortcut Buttons) --- */
.job-nav {
  background: #111;
  padding: 40px 0;
  border-top: 1px solid #333;
}
.nav-label {
  text-align: center;
  color: #666;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.job-nav-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.job-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
  background: #222;
  border: 2px solid #444;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.job-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  transform: translateY(-5px);
}
.job-nav-btn .num {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.5;
}
.job-nav-btn .text {
  font-weight: 900;
  font-size: 16px;
  margin-top: 5px;
}
.job-nav-btn .arrow {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0;
  transition: 0.3s;
}
.job-nav-btn:hover .arrow { opacity: 1; transform: translateY(3px); }


/* --- 3. 募集要項リスト (Spec Card) --- */
.recruit-list-section { padding: 100px 0; }
.bg-gray { background: #f4f4f4; }
.bg-white { background: #fff; }

/* 豪快な見出し */
.goukai-head {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 80px;
  border-bottom: 10px solid var(--primary);
  padding-bottom: 20px;
}
.huge-num {
  font-size: 100px;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  line-height: 0.8;
  color: var(--primary);
}
.huge-num.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px #000;
}
.goukai-head h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

/* カードデザイン（仕様書風） */
.spec-card {
  background: #fff;
  border: 4px solid #000; /* 極太ボーダーで無骨に */
  margin-bottom: 80px;
  scroll-margin-top: 100px; /* スクロール位置調整 */
  box-shadow: 15px 15px 0 rgba(0,0,0,0.1); /* 少し影を落とす */
}

/* ヘッダー */
.spec-head {
  background: #000;
  color: #fff;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid var(--primary);
}
.job-cat {
  font-family: "Oswald", sans-serif;
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 5px;
}
.head-main h3 {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
}
.head-salary {
  text-align: right;
  background: var(--primary);
  color: #000;
  padding: 10px 25px;
  transform: skew(-10deg); /* 斜めにしてスピード感 */
}
.head-salary.black { background: #fff; }
.head-salary .label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  transform: skew(10deg); /* 文字は戻す */
}
.head-salary .price {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  transform: skew(10deg);
}
.head-salary .unit {
  font-size: 16px;
  font-weight: 900;
  transform: skew(10deg);
}

/* ボディ */
.spec-body {
  padding: 40px;
}

/* テーブル（見やすさ重視の無骨スタイル） */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.spec-table th, .spec-table td {
  padding: 25px 20px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.spec-table th {
  width: 25%;
  font-weight: 900;
  font-size: 16px;
  color: #000;
  vertical-align: top;
  border-left: 8px solid var(--primary); /* 左に黄色いライン */
}
.spec-table td {
  width: 75%;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.note {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

/* チェックリスト */
.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

/* フッター（ボタン） */
.spec-footer {
  text-align: center;
}
.entry-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: 900;
  padding: 20px 80px;
  font-size: 18px;
  transition: 0.3s;
  border: 2px solid #000;
  letter-spacing: 0.05em;
}
.entry-btn:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 5px 5px 0 #000;
  transform: translate(-3px, -3px);
}


/* --- 4. 選考フロー --- */
.flow-section { padding: 100px 0; }

.step-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.step-card {
  width: 30%;
  text-align: center;
  background: #fff;
  padding: 30px;
  border: 3px solid #000;
}
.step-num {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--primary);
  -webkit-text-stroke: 1px #000;
  line-height: 1;
  margin-bottom: 10px;
}
.step-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 10px; }
.step-card p { font-size: 14px; line-height: 1.6; }

.step-arrow {
  flex: 1;
  height: 4px;
  background: #000;
  margin-top: 60px;
  position: relative;
}
.step-arrow::after {
  content: '';
  position: absolute;
  right: -10px; top: -8px;
  border-left: 15px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}


/* --- 5. 面接ガイド (New) --- */
.interview-guide-box {
  background: #111;
  color: #fff;
  padding: 60px;
  border-top: 10px solid var(--primary);
}
.guide-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--primary);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.guide-item h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}
.guide-item .icon {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  margin-right: 10px;
}
.guide-item ul {
  list-style: none;
}
.guide-item li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.guide-item li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.guide-msg {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  background: #222;
  padding: 20px;
  border-radius: 4px;
}
.guide-msg strong {
  color: var(--primary);
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}


/* --- 6. CTA --- */
.final-action {
  text-align: center;
  border: 4px solid #000;
  padding: 60px;
  background: #fff;
  margin-top: 60px;
}
.final-action p {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 40px;
}
.action-btns {
  display: flex;
  justify-content: center;
}
.btn.bg-black {
  background: #000; color: #fff;
  padding: 20px 60px; font-weight: bold;
}


/* --- スマホ対応 --- */
@media (max-width: 900px) {
  .huge-num { font-size: 60px; }
  .goukai-head h2 { font-size: 24px; }
  
  /* Job Nav */
  .job-nav-grid { flex-direction: column; align-items: center; }
  .job-nav-btn { width: 100%; height: 80px; flex-direction: row; justify-content: space-between; padding: 0 30px; }
  .job-nav-btn .num { font-size: 24px; margin-right: 15px; }
  .job-nav-btn .arrow { transform: rotate(-90deg); opacity: 1; margin-top: 0; }
  
  /* Spec Card */
  .spec-head { flex-direction: column; align-items: flex-start; gap: 15px; padding: 20px; }
  .head-main h3 { font-size: 24px; }
  .head-salary { width: 100%; transform: none; text-align: center; }
  .head-salary * { transform: none; }
  
  .spec-body { padding: 20px; }
  
  .spec-table th, .spec-table td { display: block; width: 100%; padding: 10px 0; }
  .spec-table th { border-left: none; border-bottom: 2px solid var(--primary); margin-bottom: 10px; }
  .spec-table td { padding-bottom: 30px; }
  
  .entry-btn { width: 100%; padding: 15px 0; }
  
  /* Flow & Guide */
  .step-flow { flex-direction: column; gap: 30px; }
  .step-card { width: 100%; }
  .step-arrow { display: none; }
  
  .interview-guide-box { padding: 30px 20px; }
  .guide-grid { grid-template-columns: 1fr; gap: 30px; }
  
  .final-action { padding: 30px; }
  .final-action p { font-size: 20px; }
}