@charset "UTF-8";
/* ============================================================
   採用ページ 共通スタイル（Image#1〜3）
   ============================================================ */

/* --- FV（ファーストビュー） ---
   career/style.css の .fv をそのまま継承
   背景画像は career テーマと同じ bg_career.jpg を使用
   ============================================================ */
.recruit .fv {
  min-height: 500px;
  background: url("../../img/career/bg_career.jpg") no-repeat center center / cover;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.recruit .fv h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.recruit .fv h1 span {
  font-family: abuget, 'Homemade Apple', cursive;
  font-size: 10rem;
  font-weight: normal;
  display: block;
  line-height: 1;
}

/* --- コンテンツ背景 --- */
.recruit .conts {
  background: url("../../img/bg-txtlogo.svg") 10% center / 7% fixed no-repeat;
}

/* --- 幅制限コンテナ --- */
.recruit .inner1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================================
   Image#1: 採用情報トップ - カテゴリボタン一覧
   ============================================================ */
.recruit-categories {
  padding: 80px 0;
}

.recruit-categories .inner1000 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.recruit-category-item {
  display: block;
  width: calc((100% - 40px) / 2);
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.2s;
}

.recruit-category-item:hover {
  opacity: 0.7;
}

/* アイキャッチ画像 */
.recruit-category-img {
  width: 100%;
  height: 170px;
  display: block;
  border-radius: 10px;
  border: solid 1px #999;
}
.recruit-category-img--no-img {
  background-color: #444;
}

/* ラベル部分 */
.recruit-category-label {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.recruit-category-title {
  color: #000;
  font-size: 20px;
  font-weight: bold;
}
.recruit-category-arrow {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #ED86B4;
  position: relative;
  flex-shrink: 0;
  margin-left: 12px;
}
.recruit-category-arrow::after {
  content: '';
  position: absolute;
  right: 1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ED86B4;
  transform: rotate(45deg);
}

.recruit-category-item:nth-child(2) .recruit-category-arrow{
  background: #FBC171;
}
.recruit-category-item:nth-child(2) .recruit-category-arrow:after{
  border-top: 2px solid #FBC171;
}

.recruit-category-item:nth-child(3) .recruit-category-arrow{
  background: #55C4E7;
}
.recruit-category-item:nth-child(3) .recruit-category-arrow:after{
  border-top: 2px solid #55C4E7;
}

.recruit-category-item:nth-child(4) .recruit-category-arrow{
  background: #4495D2;
}
.recruit-category-item:nth-child(4) .recruit-category-arrow:after{
  border-top: 2px solid #4495D2;
}

@media screen and (max-width: 900px) {
  .recruit-categories {
    padding: 40px 0 50px;
  }

  .recruit-categories .inner1000 {
    flex-direction: column;
    gap: 30px;
  }

  .recruit-category-item {
    width: 100%;
  }

  .recruit-category-img {
    width: 100%;
    height: 150px;
  }
}
/* ============================================================
   Image#2: 採用カテゴリページ
   ============================================================ */

/* ページヘッダー */
.recruit-page-header {
  padding: 80px 0 0;
}
.recruit-page-title {
  font-size: 3.6rem;
  font-weight: bold;
}
.recruit-page-intro {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
}

/* --- スタッフカード --- */
.recruit-staff {
  padding: 40px 0 100px;
}
.recruit-staff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
.recruit-staff-item {
  width: calc((100% - 40px) / 3);
}

/* スタッフ写真 */
.staff-photo {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
}
.staff-photo::before{
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  border-bottom-right-radius: 100%;
  border-top-left-radius: 8px;
  position: absolute;
  left: 0;
  top: 0;
}
.recruit-staff-item:nth-child(3n + 1){
  .staff-photo::before{
    background: #ED86B4;
  }
}
.recruit-staff-item:nth-child(3n + 2){
  .staff-photo::before{
    background: #FBC171;
  }
}
.recruit-staff-item:nth-child(3n){
  .staff-photo::before{
    background: #55C4E7;
  }
}
.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.staff-photo--placeholder {
  width: 100%;
  height: 100%;
  background: #ccc;
  border-radius: 8px;
}

/* スタッフ本文 */
.staff-body {
  margin-top: 16px;
}
.staff-comment {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}
.staff-name {
  font-size: 1.6rem;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.staff-role {
  font-size: 1.2rem;
  color: #aaa;
}
.staff-name-ja {
  font-weight: bold;
  color: #000;
  font-size: 1.6rem;
}
.staff-name-en {
  font-size: 1.2rem;
  color: #aaa;
}

/* --- 部署グループ --- */
.recruit-jobs {
  padding: 100px 0;
  background: #f5f5f5;
}
.recruit-dept-group + .recruit-dept-group {
  margin-top: 50px;
}
.recruit-dept-group:nth-child(4n + 1) .recruit-dept-name span{
  color: #ED86B4;
}
.recruit-dept-group:nth-child(4n + 2) .recruit-dept-name span{
  color: #FBC171;
}
.recruit-dept-group:nth-child(4n + 3) .recruit-dept-name span{
  color: #55C4E7;
}
.recruit-dept-group:nth-child(4n) .recruit-dept-name span{
  color: #4495D2;
}
.recruit-dept-name {
  font-size: 2.8rem;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

/* 求人ボタンリスト */
.recruit-job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.recruit-job-item{
  width: calc((100% - 40px) / 3);
}

/* 求人ボタン */
.recruit-job-btn {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  transition: background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.recruit-job-btn:hover {
  background: #333;
}
.recruit-job-arrow {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.recruit-jobs-empty {
  color: #999;
  font-size: 1.6rem;
  padding: 20px 0;
}

@media screen and (max-width: 900px) {
  .recruit-page-header {
    padding: 40px 0 0;
  }
  .recruit-page-title {
    font-size: 2.4rem;
  }
  .recruit-page-intro {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .recruit-staff {
    padding: 25px 0 6cap;
  }
  .recruit-staff-list {
    flex-direction: column;
    gap: 30px;
  }
  .recruit-staff-item {
    width: 100%;
  }
  .recruit-dept-group + .recruit-dept-group {
    margin-top: 30px;
  }
  .recruit-jobs {
    padding: 60px 0;
  }
  .recruit-dept-name {
    font-size: 2rem;
    gap: 8px;
    margin-bottom: 20px;
  }
  .recruit-job-list {
    gap: 10px;
  }
  .recruit-job-item{
    width: 100%;
  }

}

/* ============================================================
   Image#3: 求人詳細ページ
   ============================================================ */
.recruit-job-detail {
  padding: 80px 0 100px;
}

/* 求人タイトル */
.recruit-job-title {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 40px;
}

/* セクション共通 */
.recruit-job-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: solid 1px #ccc;
}
.recruit-job-section-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}
.recruit-job-section-body {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
}
/* 募集要項・会社概要テーブル */
.recruit-job-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.recruit-job-table th,
.recruit-job-table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.recruit-job-table th {
  background: #f5f5f5;
  font-weight: bold;
  width: 30%;
  color: #333;
}
.recruit-job-table td {
  color: #444;
}

/* 戻るボタン */
.recruit-job-back {
  margin-top: 40px;
}
.recruit-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  border: 1px solid #1a1a1a;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.recruit-back-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .recruit-job-detail {
    background: #fff;
    padding: 40px 30px 60px;
  }
  .recruit-job-title {
    font-size: 2.4rem;
  }
  .recruit-job-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .recruit-job-back {
    margin-top: 30px;
  }
}

/* ============================================================
   レスポンシブ（SP: max-width 900px）
   ============================================================ */
@media screen and (max-width: 900px) {

  /* FV */
  .recruit .fv h1 span {
    font-size: 7rem;
  }
  .recruit .fv h1 {
    font-size: 1.6rem;
  }

  /* コンテンツ背景を非表示 */
  .recruit .conts {
    background: none;
  }

  /* Image#1 カテゴリボタン */
  .recruit-category-img {
    height: 160px;
  }
  .recruit-category-title {
    font-size: 1.4rem;
  }

  /* Image#2 ページヘッダー */
  .recruit-page-title {
    font-size: 2rem;
  }

  /* Image#2 スタッフカード */
  .recruit-staff-item {
    flex-direction: column;
  }
  .staff-photo {
    width: 100%;
    height: 200px;
  }
  .staff-photo img {
    height: 200px;
    object-fit: cover;
    object-position: top;
  }

  /* Image#2 求人ボタン */
  .recruit-job-btn {
    font-size: 1.3rem;
    padding: 12px 16px;
  }

  /* Image#3 求人タイトル */
  .recruit-job-title {
    font-size: 2.2rem;
  }

  /* Image#3 テーブル */
  .recruit-job-table th {
    width: 40%;
  }
}

.footer-contact{
	display: none!important;
}
