@charset "UTF-8";

/* イントロダクション */
.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;
}
.work-lead-text {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}

/* --- 2. 豪快セクション共通 --- */
.goukai-section {
  padding: 100px 0;
}
.bg-black { background: #111; color: #fff; }
.bg-white { background: #fff; color: #111; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出し */
.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: 120px;
  font-weight: 900;
  font-family: "Impact", sans-serif;
  line-height: 0.8;
  color: var(--primary);
}
.huge-num.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--dark);
}
.goukai-head h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
}


/* --- 3. 職種紹介 (Job Card) --- */
.job-card {
  display: flex;
  margin-bottom: 100px; /* カード間の余白 */
  border: 2px solid #333;
  background: #222; /* 黒背景 */
}
.job-card:last-child { margin-bottom: 0; }

.job-visual {
  width: 45%;
  position: relative;
}
.job-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2); /* 白黒で渋く */
}
.job-role {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--primary);
  color: #000;
  font-weight: 900;
  padding: 5px 20px;
  font-family: "Impact", sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
}

.job-info {
  width: 55%;
  padding: 50px;
  color: #fff;
}
.job-info h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--primary);
  display: inline-block;
}
.desc {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  color: #ccc;
}

.task-box {
  background: #333;
  padding: 20px;
  border-left: 5px solid var(--primary);
}
.task-box h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.task-box ul {
  list-style: square;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1.8;
}


/* --- 4. 1日の流れ (Time Flow) --- */
.time-flow {
  border-left: 10px solid #111; /* 太い線 */
  margin-left: 20px;
  padding: 20px 0;
}

.tf-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
.tf-item:last-child { margin-bottom: 0; }

/* タイムスタンプ */
.tf-time {
  width: 100px;
  font-family: "Impact", sans-serif;
  font-size: 36px;
  color: #111;
  text-align: right;
  padding-right: 20px;
  position: absolute; /* 左に配置 */
  left: -140px;
  top: -5px;
}

/* 横線装飾 */
.tf-line {
  width: 40px;
  height: 4px;
  background: var(--primary);
  margin-top: 15px;
  margin-right: 20px;
}

.tf-content h4 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
.tf-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}


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


/* --- スマホ対応 --- */
@media (max-width: 900px) {
  .goukai-lead { font-size: 24px; }
  
  .huge-num { font-size: 60px; }
  .goukai-head h2 { font-size: 24px; }
  
  /* Job Card 縦積み */
  .job-card { flex-direction: column; }
  .job-visual, .job-info { width: 100%; }
  .job-visual img { height: 250px; }
  .job-info { padding: 30px; }
  
  /* Time Flow */
  .time-flow { margin-left: 0; border-left: none; padding-left: 0; }
  .tf-item { flex-direction: column; margin-bottom: 40px; border-left: 4px solid #ddd; padding-left: 20px; }
  .tf-time { position: relative; left: auto; top: auto; text-align: left; margin-bottom: 5px; font-size: 30px; }
  .tf-line { display: none; }
  
  .final-action { padding: 30px; }
  .final-action p { font-size: 20px; }
  .action-btns { flex-direction: column; }
}