@charset "UTF-8";

/* ====================================
   下層ページ共通補完スタイル (Header / Intro)
   ==================================== */
.bg-white { background-color: #fff; }
.bg-light-gray { background-color: #f5f5f5; }
.bg-dark { background-color: var(--dark); }
.bg-black { background-color: var(--black); }
.text-dark { color: #333 !important; }
.text-blue { color: var(--primary) !important; }
.text-white { color: #fff !important; }
.text-center { text-align: center; }

/* --- Page Header --- */
.page-header {
  background: url('https://images.unsplash.com/photo-1494412574643-35d324682133?auto=format&fit=crop&q=80') center/cover no-repeat;
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  color: #fff;
  border-bottom: 8px solid var(--primary);
}
.page-header::before {
  content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.6);
}
.page-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
}
.en-title {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
.jp-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 8px 24px;
  letter-spacing: 0.1em;
  display: inline-block;
}

/* 共通セクションヘッダー */
.section-head { margin-bottom: 60px; }
.section-head .en-label {
  display: block; font-family: var(--font-en); font-size: 18px;
  letter-spacing: 0.2em; margin-bottom: 15px; font-weight: 700;
}
.section-head h2 { font-size: 36px; font-weight: 900; line-height: 1.4; margin: 0; }

/* --- Intro Statement Box (WORK/VALUEと共通) --- */
.intro-summary {
  padding: 120px 0;
}
.intro-statement-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 60px;
  border: 4px solid var(--primary);
  background: #fff;
  box-shadow: 15px 15px 0 rgba(0, 80, 157, 0.1);
  overflow: hidden;
}
.bg-text {
  position: absolute;
  top: 10px;
  right: -20px;
  font-family: var(--font-en);
  font-size: 160px;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.intro-content-inner {
  position: relative;
  z-index: 1;
}
.goukai-lead {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 40px;
  border-bottom: 2px dashed #ddd;
  padding-bottom: 30px;
  color: #111;
}
.intro-body-text p {
  font-size: 16px;
  line-height: 2.2;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}
.intro-body-text p:last-child { margin-bottom: 0; }


/* ====================================
   RECRUIT PAGE STYLES
   ==================================== */

/* --- Requirements Table --- */
.recruit-data-section {
  padding: 120px 0;
  border-top: 1px solid #ddd;
}

.data-table {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #ccc;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.data-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  margin: 0;
}
.data-row:last-child { border-bottom: none; }

.data-row dt {
  width: 30%;
  background: #f9f9f9;
  padding: 25px;
  font-weight: 700;
  color: #111;
  border-right: 1px solid #eee;
  display: flex;
  align-items: center;
}
.data-row dt::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  margin-right: 10px;
}

.data-row dd {
  width: 70%;
  padding: 25px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* リスト・注釈 */
.check-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
}
.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0; top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 12px;
}

.note {
  font-size: 13px;
  color: #666;
  display: block;
  margin-top: 5px;
}

.salary-box {
  background: #fff;
  border: 2px solid var(--primary);
  padding: 15px;
  margin-top: 10px;
}
.model-case { margin: 0; }
.case-title {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  font-weight: bold;
}


/* --- Selection Flow --- */
.recruit-flow-section {
  padding: 120px 0;
  border-top: 1px solid #ddd;
}

.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-item {
  width: 22%;
  text-align: center;
  position: relative;
}

.flow-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: bold;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 80, 157, 0.3);
}

.flow-item h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #111;
}
.flow-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* 矢印 */
.flow-arrow {
  flex-grow: 1;
  height: 2px;
  background: #ddd;
  margin-top: 30px; /* アイコンの中央に合わせる */
  position: relative;
}
.flow-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ddd;
}


/* --- Entry CTA --- */
.entry-cta-section {
  padding: 120px 0;
  color: #fff;
  text-align: center;
}
.entry-head {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.5;
}
.entry-sub {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 50px;
  line-height: 1.8;
}

.contact-btns {
  display: flex;
  justify-content: center;
}

/* 青ボタン (Form) */
.btn-entry-blue {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 25px 80px;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  gap: 15px;
  transition: 0.3s;
  border: 2px solid var(--primary);
}
.btn-entry-blue:hover {
  background: transparent;
  color: var(--primary);
}
.btn-entry-blue .arrow {
  font-family: var(--font-en);
  transition: 0.3s;
}
.btn-entry-blue:hover .arrow {
  transform: translateX(5px);
}


/* --- Responsive --- */
@media (max-width: 900px) {
  .page-header { padding: 120px 0 80px; }
  .en-title { font-size: 48px; }
  
  .section-head h2 { font-size: 28px; }

  /* Intro Statement */
  .intro-statement-box { padding: 40px 20px; }
  .goukai-lead { font-size: 26px; }
  .bg-text { font-size: 80px; top: 20px; right: 0; }
  
  /* Table Stack */
  .data-row { flex-direction: column; }
  .data-row dt { width: 100%; border-right: none; border-bottom: 1px dashed #ddd; padding: 15px 20px; }
  .data-row dd { width: 100%; padding: 20px; }
  
  /* Flow Stack */
  .flow-container { flex-direction: column; align-items: center; gap: 30px; }
  .flow-item { width: 100%; max-width: 300px; }
  .flow-arrow { 
    width: 2px; height: 30px; margin: 0; background: #ddd; 
    transform: none;
  }
  .flow-arrow::after {
    top: auto; bottom: -8px; right: -3px;
    transform: rotate(90deg);
  }

  /* CTA */
  .entry-head { font-size: 24px; }
  .btn-entry-blue { width: 100%; padding: 20px; }
}