@charset "UTF-8";

/* =========================================
   メインコンテナ
========================================= */
.recruit-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 100px;
  color: #333;
  line-height: 1.8;
  text-align: left;
}

/* =========================================
   ヒーロー（メインビジュアル）
========================================= */
.recruit-hero {
  width: 100%;
  height: clamp(250px, 40vw, 400px);
  background-color: #0056b3; /* 画像がない場合のベースカラー */
  /* background-image: url("../img/recruit-hero.jpg"); */
  /* background-size: cover; */
  /* background-position: center; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.hero-text {
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-text h1 {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  margin: 0 0 10px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-text p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin: 0;
}

/* =========================================
   共通見出し
========================================= */
.section-title {
  font-size: 2.8rem;
  color: #0056b3;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #0056b3;
  border-radius: 2px;
}

/* =========================================
   コンセプト
========================================= */
.concept-section {
  text-align: center;
  margin-bottom: 80px;
}

.concept-section h2 {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #2c3e50;
}

.concept-section span {
  color: #e74c3c;
  font-size: 2.8rem;
}

/* =========================================
   3つの特徴
========================================= */
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

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

.feature-body {
  padding: 30px 20px;
}

.feature-body h3 {
  font-size: 2rem;
  color: #0056b3;
  margin: 0 0 15px 0;
  text-align: center;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 15px;
}

.feature-body p {
  font-size: 1.5rem;
  color: #555;
  margin: 0;
}

/* =========================================
   働き方について（画像グリッド）
========================================= */
.workstyle-section {
  margin-bottom: 100px;
}

.workstyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
.workstyle-item h3{
	border-top:solid 2px #6495ed;
}
.workstyle-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* =========================================
   職種紹介
========================================= */
.jobs-section {
  margin-bottom: 100px;
  background-color: #f9fbff;
  padding: 60px 40px;
  border-radius: 16px;
}

.jobs-container {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.job-category {
  flex: 1;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.category-title {
  font-size: 2rem;
  color: #fff;
  background: #0056b3;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  margin: 0 0 25px 0;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.job-list li {
  width: calc(50% - 5px);
  position: relative;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #444;
}

.job-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* =========================================
   スタッフコメント
========================================= */
.comments-section {
  margin-bottom: 100px;
  background-color: #f4f5f7; /* 全体の背景色を薄いグレーに */
  padding: 60px 40px;
  border-radius: 16px;
}

.comments-section .section-title {
  margin-bottom: 50px;
}

.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; /* 余白を標準サイズに */
}

.comment-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden; /* 写真の上部角を丸く切り取るため */
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

/* 写真をカード上部に画面幅いっぱいで配置 */
.comment-icon {
  width: 100%;
  height: 220px; /* 写真の高さ */
  background: #eee;
}

.comment-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-card h3 {
  margin: 25px 20px 15px;
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  line-height: 1.5;
}

.comment-card p {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
  margin: 0 20px 20px;
  flex-grow: 1; /* 高さを揃える */
}

/* スタッフの職種・名前 */
.comment-name {
  text-align: right;
  font-size: 1.3rem;
  font-weight: bold;
  color: #0056b3;
  background-color: #fafafa;
  border-top: 1px dashed #ddd;
  padding: 15px 20px;
  margin-top: auto;
}

/* スマホ用 */
@media screen and (max-width: 768px) {
  .comments-section {
    padding: 50px 20px;
  }
}

/* =========================================
   採用の流れ
========================================= */
.flow-section {
  margin-bottom: 100px;
}

.flow-category {
  margin-bottom: 40px;
}

.flow-category-title {
  display: inline-block;
  padding: 8px 25px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.flow-category-title.new-grad {
  background-color: #e0f7fa; /* 新卒：薄い水色 */
}

.flow-category-title.mid-career {
  background-color: #e8f5e9; /* 中途：薄い緑色 */
}

.flow-wrap {
  display: flex;
  gap: 20px;
  padding: 30px;
}

.flow-wrap.bg-blue {
  background-color: #f0fbff;
}

.flow-wrap.bg-green {
  background-color: #f2fcf5;
}

.flow-steps {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 15px;
}

.step {
  flex: 1;
  background: #eee; /* 矢印部分の背景色風 */
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%); /* 矢印の形 */
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #e0e0e0;
}

/* 最初のステップは左側を平らに */
.step:first-child {
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}

.step-icon {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* 右側の補足情報ボックス */
.flow-extra {
  width: 250px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-extra h4 {
  font-size: 1.6rem;
  margin: 0 0 10px 0;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.flow-extra.extra-contact h4.text-green {
  color: #28a745;
  border-bottom-color: #28a745;
}

.flow-extra p {
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.flow-extra a {
  color: #0056b3;
  text-decoration: underline;
}

/* レスポンシブ対応の調整 */
@media screen and (max-width: 1000px) {
  .flow-wrap {
    flex-direction: column;
    padding: 20px;
  }
  
  .flow-steps {
    flex-direction: column;
    gap: 10px;
  }
  
  .step, .step:first-child {
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%); /* 下向き矢印 */
    padding: 20px;
  }
  
  .flow-extra {
    width: 100%;
  }
}
/* =========================================
   エントリー・お問い合わせ (CTA)
========================================= */
.entry-section {
  background: #eef5ff;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
}

.tour-box {
  background: #fff;
  border-left: 6px solid #f39c12;
  padding: 25px;
  margin-bottom: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tour-box h3 {
  font-size: 2rem;
  color: #f39c12;
  margin: 0 0 10px 0;
}

.tour-box p {
  font-size: 1.6rem;
  margin: 0;
}

.entry-note {
  font-size: 1.4rem;
  color: #e74c3c;
  margin-bottom: 30px;
}

.entry-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.btn-entry {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 320px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn-new {
  background: #ff7f50;
  color: #fff;
}

.btn-mid {
  background: #0056b3;
  color: #fff;
}

.btn-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  opacity: 0.9;
}

.btn-sub {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 5px;
}

.btn-main {
  font-size: 2.2rem;
  font-weight: bold;
}

.recruit-contact-box {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 30px;
}

.recruit-contact-box h3 {
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  color: #333;
}

.contact-info-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-label {
  font-size: 1.4rem;
  background: #333;
  color: #fff;
  padding: 3px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.contact-value {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 5px;
}

.contact-sub {
  font-size: 1.3rem;
  color: #666;
}

/* =========================================
   スマホ用レスポンシブ
========================================= */
@media screen and (max-width: 768px) {
  .concept-section h2 {
    font-size: 1.8rem;
  }
  
  .concept-section span {
    font-size: 2rem;
  }
  
  .workstyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-section {
    padding: 30px 20px;
  }

  .jobs-container {
    flex-direction: column;
  }
  
  .job-list li {
    width: 100%;
  }

  .flow-steps {
    flex-direction: column;
  }
  
  .step:not(:last-child)::after {
    content: "▼";
    right: auto;
    bottom: -25px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .entry-section {
    padding: 40px 20px;
  }

  .entry-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-entry {
    width: 100%;
  }

  .contact-info-wrap {
    flex-direction: column;
    gap: 20px;
  }
}