@charset "UTF-8";

.recruit-page-container {
    width: 100%;
    padding: clamp(60px, 8.33vw, 120px) 0;
    background-color: #f8f8f8;
}

/* Header Area (Max width 1245px) */
.recruit-header {
    width: 100%;
    margin-bottom: clamp(40px, 5.56vw, 80px);
}

.recruit-header-inner {
    max-width: 1245px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.recruit-title-en {
    font-size: clamp(40px, 5.83vw, 55px);
    font-weight: 500;
    color: #003a8c;
    line-height: 1;
}

.recruit-title-jp {
    font-size: 20px;
    color: #333;
}

/* Content Area (Max width 1245px) */
.recruit_sec01 {
    width: 100%;
}

.recruit_sec01-inner {
    max-width: 1245px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.recruit_sec01 {
  padding-bottom: clamp(60px, 8vw, 120px);
  background-color: transparent !important;
  color: #333;
}

/* Gallery Area */
.recruit_sec01-gallery {
  width: 100%;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.recruit_sec01-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Area */
.recruit_sec01-content {
  max-width: 1025px;
  margin: 0 auto;
}

.recruit_sec01-lead {
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: center;
}

.recruit_sec01-sublead {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: clamp(30px, 4vw, 40px);
  text-align: center;
}

.recruit_sec01-body {
  text-align: justify;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.recruit_sec01-text {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.recruit_sec01-join-us {
  font-size: clamp(32px, 5vw, 45px);
  font-weight: 500;
  margin-top: clamp(40px, 6vw, 80px);
  text-align: center;
}

/* --- Responsive Layout (Break Point: 768px) --- */

@media screen and (max-width: 768px) {
  .recruit-header-inner {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .recruit-title-en { font-size: 40px; }
  .recruit-title-jp { font-size: 16px; }

  .recruit_sec01-lead {
    font-size: 32px;
  }
  .recruit_sec01-sublead {
    font-size: 18px;
  }
}

/* --- recruit_sec02 Settings --- */

.recruit_sec02 {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: transparent !important;
  color: #fff;
}

.recruit_sec02-inner {
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.recruit_sec02-main-title {
  font-size: clamp(24px, 3.5vw, 32px);
  color: #333;
  text-align: center;
  font-weight: bold;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.recruit_sec02-list {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 40px);
}

/* Card Styling */
.recruit_sec02-card {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  min-height: 320px;
}

/* Background Colors */
.recruit_sec02-card--type1 { background-color: #00a0a9; }
.recruit_sec02-card--type2 { background-color: #003a8c; }
.recruit_sec02-card--type3 { background-color: #0093e6; }

/* Content Layout */
.recruit_sec02-card-body {
  flex: 1;
  padding: clamp(30px, 4vw, 50px);
  display: flex;
  flex-direction: column;
}

.recruit_sec02-card-header {
  margin-bottom: 25px;
}

.recruit_sec02-card-label {
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: 5px;
}

.recruit_sec02-card-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: bold;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* タイトル横のライン */
.recruit_sec02-card-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
}

.recruit_sec02-card-lead {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: bold;
  margin-bottom: 10px;
}

.recruit_sec02-card-text-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruit_sec02-card-text-list li {
  font-size: clamp(14px, 1.4vw, 19px);
  line-height: 1.5;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.3em;
}

.recruit_sec02-card-text-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 0.1em;
}

/* Image Layout */
.recruit_sec02-card-image {
  flex: 0 0 40%;
  max-width: 440px;
}

.recruit_sec02-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Responsive Layout (Break Point: 768px) --- */

@media screen and (max-width: 768px) {
  .recruit_sec02-card {
    flex-direction: column;
    min-height: auto;
  }

  .recruit_sec02-card-body {
    padding: 30px 20px;
  }

  .recruit_sec02-card-image {
    width: 100%;
    max-width: 100%;
    order: 2;
    height: 240px;
  }

  .recruit_sec02-card-image img {
    height: 100%;
  }

  .recruit_sec02-card-title {
    margin-bottom: 10px;
  }
}

/* --- recruit_sec03 Settings --- */

.recruit_sec03 {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: transparent !important;
  color: #333;
}

.recruit_sec03-inner {
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.recruit_sec03-main-title {
  font-size: clamp(24px, 3.5vw, 32px);
  text-align: center;
  font-weight: bold;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.recruit_sec03-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}

.recruit_sec03-card {
  border: 2px solid;
  overflow: hidden;
  border-radius: 0;
  background-color: #fff;
}

.recruit_sec03-card-title {
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: clamp(24px, 2vw, 28px);
  font-weight: bold;
}

/* PC版：横並び・高さ揃え */
.recruit_sec03-card-inner {
  padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

/* 左カラム：プロフィール */
.recruit_sec03-profile {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
}

.recruit_sec03-label {
  font-size: clamp(20px, 2vw, 22px);
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.2;
}

.recruit_sec03-person-img {
  width: 100%;
}

.recruit_sec03-person-img img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit_sec03-balloon {
  position: relative;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  width: 100%;
  margin-top: 15px;
}

.recruit_sec03-balloon::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 10px 12px 10px;
}

.recruit_sec03-balloon-text {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
}

/* 区切りライン */
.recruit_sec03-card-separator {
  flex: 0 0 1px;
  margin: 0 4%;
  align-self: stretch;
}

/* 右カラム：スケジュール */
.recruit_sec03-schedule {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recruit_sec03-schedule-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 2vw, 22px);
  font-weight: bold;
  margin-top: 0; 
  margin-bottom: 12px;
  height: 1.2em;
}

.recruit_sec03-clock-icon {
  width: 24px;
  height: auto;
}

.recruit_sec03-schedule-box {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit_sec03-schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruit_sec03-schedule-list li {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.45;
  margin-bottom: 0.45em;
  display: flex;
}

.recruit_sec03-schedule-list li span {
  width: 4.2em;
  flex-shrink: 0;
  font-weight: bold;
}

/* --- カラー定義（背景色・ライン色） --- */

/* Type 1: 供給管理 */
.recruit_sec03-card--type1 { border-color: #00a0a9; }
.recruit_sec03-card--type1 .recruit_sec03-card-title { background-color: #00a0a9; }
.recruit_sec03-card--type1 .recruit_sec03-label { color: #00a0a9; }
.recruit_sec03-card--type1 .recruit_sec03-balloon { background-color: #00a0a9; }
.recruit_sec03-card--type1 .recruit_sec03-balloon::before { border-color: transparent transparent #00a0a9 transparent; }
.recruit_sec03-card--type1 .recruit_sec03-card-separator { background-color: #00a0a9; }
.recruit_sec03-card--type1 .recruit_sec03-schedule-title { color: #00a0a9; }
.recruit_sec03-card--type1 .recruit_sec03-schedule-box { background-color: #00a0a9; }

/* Type 2: 計測管理 */
.recruit_sec03-card--type2 { border-color: #003a8c; }
.recruit_sec03-card--type2 .recruit_sec03-card-title { background-color: #003a8c; }
.recruit_sec03-card--type2 .recruit_sec03-label { color: #003a8c; }
.recruit_sec03-card--type2 .recruit_sec03-balloon { background-color: #003a8c; }
.recruit_sec03-card--type2 .recruit_sec03-balloon::before { border-color: transparent transparent #003a8c transparent; }
.recruit_sec03-card--type2 .recruit_sec03-card-separator { background-color: #003a8c; }
.recruit_sec03-card--type2 .recruit_sec03-schedule-title { color: #003a8c; }
.recruit_sec03-card--type2 .recruit_sec03-schedule-box { background-color: #003a8c; }

/* Type 3: 業務管理 */
.recruit_sec03-card--type3 { border-color: #0093e6; }
.recruit_sec03-card--type3 .recruit_sec03-card-title { background-color: #0093e6; }
.recruit_sec03-card--type3 .recruit_sec03-label { color: #0093e6; }
.recruit_sec03-card--type3 .recruit_sec03-balloon { background-color: #0093e6; }
.recruit_sec03-card--type3 .recruit_sec03-balloon::before { border-color: transparent transparent #0093e6 transparent; }
.recruit_sec03-card--type3 .recruit_sec03-card-separator { background-color: #0093e6; }
.recruit_sec03-card--type3 .recruit_sec03-schedule-title { color: #0093e6; }
.recruit_sec03-card--type3 .recruit_sec03-schedule-box { background-color: #0093e6; }

/* エントリーボタン */
.recruit_sec03-btn-wrapper { margin-top: clamp(40px, 6vw, 80px); text-align: center; }
.recruit_sec03-entry-btn {
  display: inline-block;
  width: clamp(280px, 50vw, 400px);
  padding: 18px 0;
  background-color: #003E92;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.recruit_sec03-entry-btn:hover { background-color: #0192E6; }

/* --- Responsive Layout (Break Point: 768px) --- */

@media screen and (max-width: 768px) {
  .recruit_sec03-card-inner {
    flex-direction: column;
    padding: 30px 20px;
    align-items: center;
  }

  .recruit_sec03-profile, .recruit_sec03-schedule {
    width: 100%;
  }

  .recruit_sec03-card-separator {
    flex: 0 0 1px;
    width: 100%;
    height: 1px;
    margin: 30px 0;
  }

  .recruit_sec03-schedule-title {
    margin-top: 0;
    justify-content: center;
    height: auto;
  }

  .recruit_sec03-schedule-box {
    padding: 25px 20px;
    min-height: 300px;
  }
}

/* --- recruit_sec04 Settings --- */

.recruit_sec04 {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: transparent !important;
  color: #333;
}

.recruit_sec04-inner {
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.recruit_sec04-main-title {
  font-size: clamp(24px, 3.5vw, 32px);
  text-align: center;
  font-weight: bold;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.recruit_sec04-content {
  max-width: 800px;
  margin: 0 auto;
}

.recruit_sec04-intro,
.recruit_sec04-details,
.recruit_sec04-info-box {
  margin-bottom: 40px;
}

.recruit_sec04-intro-title,
.recruit_sec04-details-title,
.recruit_sec04-info-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: bold;
  color: #003a8c;
  margin-bottom: 15px;
  border-left: 5px solid #003a8c;
  padding-left: 15px;
}

.recruit_sec04-intro-text,
.recruit_sec04-info-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1em;
}

.recruit_sec04-intro-list,
.recruit_sec04-work-list {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.recruit_sec04-intro-list li,
.recruit_sec04-work-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0.5em;
}

.recruit_sec04-work-item {
  margin-bottom: 20px;
}

.recruit_sec04-work-label {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Table Styling */
.recruit_sec04-table-wrapper {
  margin-top: 50px;
  border-top: 2px solid #003a8c;
}

.recruit_sec04-table {
  width: 100%;
  border-collapse: collapse;
}

.recruit_sec04-table th,
.recruit_sec04-table td {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.6;
}

.recruit_sec04-table th {
  width: 30%;
  background-color: #f2f6fc;
  text-align: left;
  font-weight: bold;
  color: #003a8c;
}

.recruit_sec04-table td .small {
  font-size: 14px;
  margin-top: 5px;
  color: #666;
}

/* Contact Button */
.recruit_sec04-btn-wrapper {
  margin-top: 50px;
  text-align: center;
}

.recruit_sec04-contact-btn {
  display: inline-block;
  width: clamp(280px, 50vw, 400px);
  padding: 18px 0;
  background-color: #003E92;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.recruit_sec04-contact-btn:hover {
  background-color: #0192E6;
}

@media screen and (max-width: 768px) {
  .recruit_sec04-table th {
    width: 100%;
    display: block;
    padding: 10px 20px;
  }
  .recruit_sec04-table td {
    width: 100%;
    display: block;
    padding: 15px 20px;
  }
}
