@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
*/


/* ===========================
   求人詳細（single-job）
=========================== */

/* PC/SP切り替え */
.pc-only { display: block; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}

/* グレー背景のタイトル帯 */
.job-single__page-header {
  width: 100%;
  background: #f7f7f7;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.job-single__operator {
  font-size: 24px;
  color: #009245;
  margin: 0 0 10px;
}

.job-single__facility {
  font-size: 30px;
  font-weight: normal !important;
  color: #009245;
  margin: 0;
}

/* パンくず */
.job-breadcrumb {
  margin: 0 auto 20px;
  max-width: 1080px;
  padding: 0 20px;
}

/* ===========================
   青帯（勤務地＋雇用形態）
=========================== */

.job-single__meta-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00b7ff;
  padding: 16px 0;
  color: #fff;
  margin-bottom: 25px;
}

/* フォントサイズ調整（勤務地） */
.job-single__meta-bar .job-single__meta-center .job-single__area {
    font-size: 26px !important;
	font-weight: 700;
    line-height: 1.3 !important;
}
.job-single__area[class] {
    font-size: 26px !important;
}

/* 正社員バッジ */
.job-single__style {
  background: #fff;
  color: #00b7ff;
  padding: 4px 14px;
  font-size: 18px;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 12px;
}

/* 更新日（青帯の下、右寄せ） */
.job-single__updated {
  text-align: right;
  max-width: 1080px;
  margin: 0 auto 20px;
  padding: 0 20px;
  color: #777;
  font-size: 13px;
}

/* ===============================
   求人詳細：画像＋表（デザイン調整）
=============================== */

.job-single__top {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .job-single__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------- PC版：情報テーブル ---------- */

.job-single__info-grid {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #fff;
}

.job-single__info-grid .job-single__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid #e5e5e5;
}

.job-single__info-grid .job-single__row:last-child {
  border-bottom: none;
}

/* 行全体（線は左端から右端まで） */
.job-detail-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}

/* 最初の行の上にも線をつける */
.job-detail-row:first-of-type {
  border-top: 1px solid #e5e5e5;
}

/* 左右のテキストだけインデント（デザインの位置合わせ） */
.job-detail-label,
.job-detail-value {
  padding-left: 40px; /* ← テキストだけインデントする */
}


/* ---------- SP版：縦並び ---------- */
@media (max-width: 768px) {
  .job-single__info-grid {
    display: block; /* ← 表を消さない */
  }
	
/* 行ごとに縦2段へ */
  .job-single__info-grid .job-single__row {
    grid-template-columns: 1fr;     /* 1列にする */
    border-bottom: 1px solid #e5e5e5;
  }

  /* ラベル（青背景） */
  .job-single__label {
    border-right: none;
    border-bottom: 1px solid #d0dceb;
    background: #00b7ff;
    font-size: 16px;
    padding: 14px;
  }

  /* 値（内容） */
  .job-single__value {
    padding: 14px;
    font-size: 15px;
    line-height: 1.6;
  }
}




/* ---------- 特徴タグ（キャッチコピー下） ---------- */
.job-single__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
  justify-content: center;
}

.job-single__feature-tag {
  background: #f7fafe;
  border: 1px solid #d8e4f3;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
}
/* =========================================
   情報テーブル（デザイン画に寄せたスタイル）
========================================= */


/* ========== 表（PC） ========== */
.job-single__info-grid {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  display: table;
}

/* 横並びの行 */
.job-single__row {
  display: table-row;
}

/* 左側ラベル（青背景） */
.job-single__label {
  display: table-cell;
  width: 120px;
  background: #00b7ff !important;
  color: #fff !important;
  font-weight: bold;
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
}

/* 右側の値 */
.job-single__value {
  display: table-cell;
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
}

/* 最後の行はボーダー無し */
.job-single__row:last-child .job-single__label,
.job-single__row:last-child .job-single__value {
  border-bottom: none;
}
/* ===============================
   画像＋テーブルの横幅調整（PC）
=============================== */

/* 親コンテナの幅を制御 */
.job-single__top {
  max-width: 1080px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 画像50%：表50% */
  gap: 30px;
}

/* 画像側 */
.job-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 表側まとめコンテナ */
.job-single__info {
  width: 100%;
}

/* 表自体に横幅100%を強制 */
.job-single__info-grid {
  width: 100% !important;
  table-layout: fixed;
}

/* 値の長文を折り返す */
.job-single__value {
  word-break: break-word;
}

/* PCレイアウト（横並び） */
.job-single__top {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
}

/* ▼スマホ時（縦並び・画像が先） */
@media (max-width: 768px) {

  .job-single__top {
    display: flex;
    flex-direction: column; /* ← これで画像が上、表が下 */
    gap: 20px;
  }

  /* 念のため順序を保証したい場合 */
  .job-single__thumb {
    order: 1;
  }
  .job-single__info {
    order: 2;
  }
}

/* SP：青帯を横幅いっぱいにする */
@media (max-width: 768px) {
  .job-single__info-stack .job-single__section-title {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding-left: 16px; /* 必要なら調整 */
    padding-right: 16px;
  }
}
/* SP：青帯を横幅いっぱいにする */
@media (max-width: 768px) {
  .job-single__section-title {
    display: block !important;
    width: 100% !important;
    margin-left: 0 !important;
    border-radius: 0;
  }
	
/* SP:左側ラベル（青背景） */
.job-single__label {
  display: table-cell;
  width: 120px;
  background: #fff !important;
  color: #00b7ff !important;
  font-weight: bold;
  padding: 14px 16px 0px;
  border-bottom: 0px solid #ddd;
}
}


/* ===========================
   特徴タグ：PC 5列 × 4行 ／ SP 2列
=========================== */

/* コンテナ */
.job-single__features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);  /* PC：5列固定 */
  gap: 16px 24px;                         /* 行・列の間隔 */
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 5px;
}

/* タグ1個分（タイル） */
.job-single__feature-tag {
  display: flex;                          /* 中央寄せしやすくするため flex */
  align-items: center;
  justify-content: center;
  padding: 4px 0;                        /* 横幅はグリッドに任せるので左右は0 */
  background: #f5f5f5;
border-radius: 0px;
  font-size: 16px;
  color: #333;
  border: 1px solid #e3e3e3;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* スマホ：2列 × 10行 */
@media (max-width: 768px) {
  .job-single__features {
    grid-template-columns: repeat(2, 1fr); /* 2列固定 */
    gap: 12px 12px;
    margin-bottom: 32px;
  }

  .job-single__feature-tag {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* ===========================
   キャッチコピー（job-single__lead）
=========================== */

.job-single__lead {
  max-width: 1100px;       /* ここをサイトのメイン幅に合わせて調整 */
  margin: 40px auto 28px;  /* 左右中央にコンテナを寄せる */
  text-align: left;        /* ← 中央揃えを解除して左寄せ */
  font-size: 26px;
  font-weight: 500;
  color: #2e3192;
  line-height: 1.5;
  padding-left: 0;         /* 念のため */
}

/* スマホ */
@media (max-width: 768px) {
  .job-single__lead {
    font-size: 20px;
  margin: 40px auto 28px;
    padding: 0 16px;       /* スマホでは左右に余白を確保 */
  }
	
}

/* =========================================
   仕事内容 タイトル帯（青背景＋白文字）
========================================= */
/* 仕事内容セクションの青帯（見出し）を横幅いっぱいにする */
.job-single__section-title--blue {
  width: 100%;
  display: block;
  background: #40B0FF; /* 表と同じ青 */
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 24px;
  font-weight: 300;
  margin: 80px 0 40px;
}

/* セクション全体の左右余白調整（必要なら） */
.job-single__content {
  max-width: 1100px;
  margin: 0 auto;
}


/* ▼ キャッチコピーと同じ左揃えラインに合わせる */
.job-single__section-title--blue,
.job-single__lead,
.job-single__features {
  margin-left: var(--job-left-edge);
}
@media (max-width: 768px) {
.job-single__section-title--blue,
.job-single__lead,
.job-single__features {
  margin-left: 0;
}
/* =========================================
   本文（仕事内容テキスト）
========================================= */
.job-single__description {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  margin-left: var(--job-left-edge);
  margin-bottom: 60px;
  max-width: 900px;
}

/* =========================================
   左揃えラインの変数
   ※ 必ずページの左端と表の左端が揃うよう調整
========================================= */
:root {
  --job-left-edge: 60px;  /* ← ここを調整すればすべて揃う */
}

/* SP調整 */
@media (max-width: 768px) {
  .job-single__section-title--blue {
    font-size: 22px;
    padding: 10px 20px;
  }
  .job-single__description {
    font-size: 16px;
    margin-left: 20px;
    margin-right: 20px;
  }
  :root {
    --job-left-edge: 20px;
  }
}

/* 青帯（仕事内容）のスタイル */
.job-single__section-title--blue {
  background: #4ab4ff;   /* 表と同じ青 */
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  padding: 14px 0;
  margin: 60px auto 40px;   /* 上に余白60、下に40 */
  width: 100%;
}

/* 🔽 青帯と本文の左右の余白を揃える（これが重要） */
.job-single__description,
.job-single__section-title--blue {
  max-width: 1200px;     /* セクション全体の最大幅（好みで変更OK） */
  padding: 0 40px;        /* 左右に余白を追加→ピンクの部分が空く */
  margin-left: auto;
  margin-right: auto;
}

/* 本文の調整 */
.job-single__body{
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 50px;
}

/* SP（スマホ）のときの余白調整 */
@media (max-width: 768px) {
  .job-single__description,
  .job-single__section-title--blue {
    padding: 0 20px;  /* スマホは余白を少し狭める */
  }
  
  .job-single__section-title--blue {
    font-size: 22px;
    padding: 12px 0;
  }
}

/* ===========================
   詳細情報テーブル
=========================== */
.job-detail-table {
  margin-top: 40px;
}

.job-detail-row {
  display: grid;
  grid-template-columns: 160px 1fr; /* 左：ラベル / 右：内容 */
  gap: 12px 24px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.job-detail-label {
  font-weight: 700;
  white-space: nowrap;
}

.job-detail-value {
  line-height: 1.8;
  word-break: break-word;
}
.job-single__body {
	margin-bottom:40px;	
}

/* 行全体（線は左端から右端まで） */
.job-detail-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}

/* 最初の行の上にも線をつける */
.job-detail-row:first-of-type {
  border-top: 1px solid #e5e5e5;
}

/* 左右のテキストだけインデント（デザインの位置合わせ） */
.job-detail-label,
.job-detail-value {
  padding-left: 40px; /* ← テキストだけインデントする */
}

/* SP：1カラムで縦並び */
@media (max-width: 768px) {

  /* 1カラム化（縦並び） */
  .job-detail-row {
    display: block !important;
  }

  /* ラベル（業種・勤務地など） */
  .job-detail-label {
    font-size: 20px;
    font-weight: 600;
    padding-left: 0 !important;   /* ← インデントなし */
    margin-bottom: 4px;
  }

  /* 値部分（内容） */
  .job-detail-value {
    padding-left: 10px !important;   /* ← インデントなし */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}

/* ボタン */
.job-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0 80px;
}

.job-btn img {
  display: block;
  width: 260px;      /* 必要に応じて調整 */
  height: auto;
}

/* スマホ：縦並びにして少し広めに */
@media (max-width: 768px) {
  .job-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 30px 0 60px;
  }

  .job-btn img {
    width: 90%;
    max-width: 280px;
  }
}

/* ===========================
   求人一覧（archive-job）
=========================== */
/* ===========================
   アーカイブヘッダー（h1画像の中央寄せ）
=========================== */
.job-archive__header {
    text-align: center;
    margin-bottom: 40px;
}

.job-archive__title img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}


/* ===========================
   検索フォーム（PC）
=========================== */
/* かんたんお仕事検索タイトルを中央寄せ＋余白追加 */
.job-search-area__title {
    text-align: center !important;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
    width: 100%;
}

/* 横並びレイアウト */
.job-search-area__form {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

/* 左のキーワード検索：幅広 */
.job-search-item--keyword {
    flex: 1;
}

/* 右の雇用形態：幅狭 */
.job-search-item--style {
    flex: 0 0 260px; /* デザイン画の半分サイズ */
}

/* 共通フォームUI */
.job-search-item input,
.job-search-item select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

/* placeholder 色 */
.job-search-item input::placeholder {
    color: #c6c6c6;
}

/* 検索ボタン */
.job-search-submit__btn {
    background: #1fa3ff;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.job-search-submit__btn img {
    width: 20px;
    height: 20px;
}


/* ===========================
   スマホ（縦並び）
=========================== */
@media (max-width: 768px) {

    .job-search-area__form {
        flex-direction: column;
        gap: 16px;
    }

    .job-search-item--keyword,
    .job-search-item--style {
        flex: none;
        width: 100%;
    }

    .job-search-area__form-wrap {
        padding: 16px 20px;
    }
}

/* 求人エントリー *******************************************************************/
/* 求人エントリーフォーム専用スタイル */
.recruit-entry-form {
  max-width: 740px;
  margin: 0 auto;
  padding: 20px;
}

.recruit-entry-form .form_wrapper {
  background: #fff;
}

.recruit-entry-form .form_message {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.recruit-entry-form .form_contents {
  margin-bottom: 30px;
}

/* 性別ボタン（Step 1） */
.recruit-entry-form .gender-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.recruit-entry-form .gender-buttons .wpcf7-list-item {
  margin: 0;
}

.recruit-entry-form .gender-buttons label {
  display: inline-block;
  padding: 12px 40px;
  background: #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 120px;
  text-align: center;
}

.recruit-entry-form .gender-buttons input[type="radio"] {
  display: none;
}

.recruit-entry-form .gender-buttons input[type="radio"]:checked + span {
  background: #7fa6d6;
  color: white;
}

/* 資格選択ボタン（Step 2） */
.recruit-entry-form .qualification-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.recruit-entry-form .qualification-buttons .wpcf7-list-item {
  margin: 0;
}

.recruit-entry-form .qualification-buttons label {
  display: block;
  padding: 12px 10px;
  background: #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-size: 14px;
}

.recruit-entry-form .qualification-buttons input[type="checkbox"] {
  display: none;
}

.recruit-entry-form .qualification-buttons input[type="checkbox"]:checked + span {
  background: #7fa6d6;
  color: white;
}

/* 住所フィールド（Step 3） */
.recruit-entry-form .address-fields {
  display: flex;
  gap: 20px;
}

.recruit-entry-form .address-fields label {
  flex: 1;
  display: block;
  color: #666;
  font-size: 14px;
}

.recruit-entry-form .address-fields select,
.recruit-entry-form .address-fields input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
}

/* 生年月日フィールド（Step 4） */
.recruit-entry-form .birth-year-field {
  text-align: center;
}

.recruit-entry-form .birth-year-field label {
  display: inline-block;
  color: #666;
  font-size: 14px;
}

.recruit-entry-form .birth-year-field select {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
}

/* お名前フィールド（Step 5） */
.recruit-entry-form .name-field input {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 auto;
  display: block;
}

/* 連絡先フィールド（Step 6） */
.recruit-entry-form .contact-fields label {
  display: block;
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.recruit-entry-form .contact-fields input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
}

/* 送信ボタン共通 */
.recruit-entry-form .form_submit_wrapper {
  text-align: center;
  margin-top: 30px;
}

.recruit-entry-form .form_submit_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-size: 16px;
}

/* 次に進むボタン（青） */
.recruit-entry-form .form_submit_label_next {
  background: #7fa6d6;
}

.recruit-entry-form .form_submit_label_next:hover {
  opacity: 0.8;
}

/* エントリーボタン（ピンク） */
.recruit-entry-form .form_submit_label_entry {
  background: #ff7bac;
}

.recruit-entry-form .form_submit_label_entry:hover {
  opacity: 0.8;
}

/* 実際の送信ボタンを非表示 */
.recruit-entry-form input[type="submit"] {
  display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .recruit-entry-form .qualification-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recruit-entry-form .address-fields {
    flex-direction: column;
  }
  
  .recruit-entry-form .gender-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .recruit-entry-form .gender-buttons label {
    width: 100%;
    max-width: 200px;
  }
}