
.recruit .main01 {
    background-image: url(../../recruit/images/pagetitle_back.png);
}
.rec-philosophy{
  text-align: center;
}
.rec-philosophy-img{
  margin: 50px auto 130px;
}
.rec-philosophy img{
  width: 100%;
}

.recruit-entry-title{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8.5%;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .recruit .subtitle01{
    font-size: 20px;
  }
  .rec-philosophy{
    text-align: left;
  }
  .rec-philosophy-img {
    margin: 50px auto;
  }
}


/* ==========================================
   Job List Section Styles
   ========================================== */

/* コンテナ全体の最大幅と余白の設定 */
.job-list-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 4%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .job-list-container{
    padding: 0 8.5%;
  }
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.job-item {
  width: 100%;
}

.job-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 60px 70px;
  background-color: #f7f8f9;
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s;
}
/* 青いドット */
.job-link::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #3b7bb2;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .job-link {
    padding: 25px 30px 25px 40px;
  }
  .job-link::before{
    left: 20px;
  }
}

/* 右側の矢印 */
.job-link::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../../recruit/images/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.job-link:hover {
  background-color: #f0f2f5;
  opacity: 0.9;
}
.job-link:hover::after {
  transform: translate(4px, 0);
}


/* ==========================================
   Support Section Styles
   ========================================== */
.support-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 130px;
  padding: 0 4%;
  box-sizing: border-box;
  gap: 8%;
}
@media screen and (max-width: 960px) {
  .support-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .support-container {
    max-width: 100%;
    padding: 0 8.5%;
    margin: 0 auto 60px;
  }
}


.support-text-block {
  flex: 1; /* 比率による幅調整（約50%） */
  max-width: 540px;
}
@media screen and (max-width: 960px) {
  .support-text-block,
  .support-image-block {
    max-width: 100%;
    width: 100%;
  }
}

/* メイン見出し */
.support-heading {
  font-size: 28px;
  color: #333333;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .support-heading {
    margin-bottom: 30px;
  }
}

/* 英語サブタイトル */
.support-sub-heading {
  display: block;
  font-family: 'Abel', sans-serif;
  font-size: 14px;
  color: #b5b5b5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* 本文テキスト */
.support-lead p {
  font-size: 16px;
  color: #333333;
  line-height: 2;
  margin-bottom: 2em;
}
.support-lead p:last-child {
  margin-bottom: 0;
}
.support-image-block {
  flex: 1; /* 比率による幅調整（約50%） */
  max-width: 580px;
}
.support-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ==========================================
support Grid Section Styles
========================================== */

.support-grid-container {
  width: 100%;
  max-width: 1200px; /* 全体の最大幅（デザインに応じて調整してください） */
  margin: 0 auto;
  padding: 0 2% 100px 2%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .support-grid-container{
    padding: 0 8.5% 50px 8.5%;
  }
}

/* 3カラムを並べるためのFlexコンテナ */
.support-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px; /* カード同士の間隔 */
  width: 100%;
}
@media screen and (max-width: 768px) {
  .support-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; 
    width: 100%;
  }
}

/* 各カードのベース設定 */
.support-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 370px;
}

/* ------------------------------------------
   画像とオーバーラップアイコンの制御
   ------------------------------------------ */
.support-image-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

/* メイン画像 */
.support-image-wrap > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 青い丸型アイコンのベース */
.support-icon-circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 86px;
  height: 86px;
  background-color: #2b75a9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

/* 青い丸の中のSVGアイコン */
.support-icon-circle img {
  width: auto;
  height: 32px;
}

/* ------------------------------------------
コンテンツ（テキスト・見出し）
------------------------------------------ */
.support-content {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* カード内タイトル (旧: .support-card-title) */
.support-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* カード内説明文 (旧: .support-card-text) */
.support-content p {
  font-size: 16px;
  line-height: 1.8;
  text-align: left; /* 可読性を考慮して左寄せ */
}


/* ==========================================
Work Comfort Section Styles
========================================== */
.work-comfort-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7.5%;
  margin: 105px auto;
  box-sizing: border-box;
  gap: 8%;
  border: #E5E5E5 solid 1px;
}
@media screen and (max-width: 960px) {
  .work-comfort-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 4%;
  }
}
@media screen and (max-width: 768px) {
  .work-comfort-container {
    width: 83%;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto 8.5%;
    gap: 20;
    padding: 25px;
  }
}

/* ------------------------------------------
   左側：テキストエリアの調整
   ------------------------------------------ */
.work-comfort-text {
  flex: 1;
  max-width: 400px;
}
@media screen and (max-width: 960px) {
  .work-comfort-text,
  .work-comfort-image {
    max-width: 100%;
    width: 100%;
  }
}

/* 見出し（アイコンと文字を横並びに） */
.work-comfort-text h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .work-comfort-text h2 {
    font-size: 20px;
  }
}

/* 見出し横の時計アイコン */
.work-comfort-text h2 .title-icon {
  width: 32px; /* アイコンの適切なサイズ */
  height: auto;
  display: block;
}

/* 本文テキスト */
.work-comfort-lead p {
  font-size: 16px;
}

/* ------------------------------------------
   右側：画像エリアの調整
   ------------------------------------------ */
.work-comfort-image {
  flex: 1;
  max-width: 580px;
}

.work-comfort-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================
   Work Info Table Section Styles
   ========================================== */
.work-style{
  padding:100px 0;
}
@media screen and (max-width: 768px) {
  .work-style {
    padding: 75px 0 0px;
  }
}

.bg-lightgray{
  background-color: #F8F9F9;
}

.work-style .subtitle01{
  float: none;
}

.work-info-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8.5% 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .work-info-container{
    padding: 0 8.5%;
  }
}

/* セクション見出し */
.work-info-container h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .work-info-container h3 {
    margin-bottom: 15px;
  }
}

/* テーブル全体の共通ベース */
.work-info-table {
  width: 100%;
  border-collapse: collapse;
  /* リセットCSSの「float: left;」を打ち消し、中央配置を担保 */
  float: none !important; 
}
@media screen and (max-width: 768px) {
  .work-info-table,
  .work-info-table thead,
  .work-info-table tbody,
  .work-info-table tr,
  .work-info-table th,
  .work-info-table td {
    display: block;
    width: 100% !important;
  }
  .work-info-table{
    margin-bottom: 16%;
  }
  .work-info-table tr {
    border-bottom:none;
  }
}
  

.work-info-table tr:first-child{
  border-top: 1px solid #E5E5E5;
} 

@media screen and (max-width: 768px) {
  .work-info-table tr:last-child {
    border-bottom: none;
  }
}

/* 枠線とセルの基本余白設定 */
.work-info-table th,
.work-info-table td {
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 2.5% 4%;
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .work-info-table th,
  .work-info-table td{
    border-right: none;
  }
}

.work-info-table th:last-child,
.work-info-table td:last-child {
  border-right: none;
}

/* --- ヘッダー（最上行の項目・内容） --- */
.work-info-table thead th {
  background-color: #ededed;
  color: #000000;
  font-weight: bold;
  text-align: center; /* ヘッダーのみ中央寄せ */
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .work-info-table thead {
    display: none;
  }
}

/* --- ボディ（データ行） --- */
/* 左側の項目列 */
.work-info-table tbody th {
  width: 25%; /* 項目の幅を固定（デザインに応じて調整可） */
  background-color: #fff;
  color: #000000;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .work-info-table tbody th {
    background-color: #e0e0e0;
    border-bottom: none;
    padding: 15px 20px;
    text-align: left;
  }
}

/* 右側の内容列 */
.work-info-table tbody td {
  width: 75%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .work-info-table tbody td {
    padding: 20px 20px 30px 20px;
    border-top: none;
  }
}

/* 内包するテキストの行間と余白調整 */
.work-info-table tbody td p {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
}

/* ==========================================
   Entry Table Extension Styles (.entry-table)
   ========================================== */

/* 募集要項テーブル内の th 全体にドット用の左余白を設定 */
.work-info-table.entry-table {
  margin-bottom: 100px;
}

.work-info-table.entry-table tbody th {
  position: relative;
  padding-left: 50px; /* ドットが入るスペース */
  background-color: #F8F9F9;
  text-align: left;
}

/* 募集要項テーブル内の th に一括で青いドットを表示 */
.work-info-table.entry-table tbody th::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 37px;
  width: 8px;
  height: 8px;
  background-color: #2b75a9;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .work-info-table.entry-table tbody th::before{
    top: 28px;
  }
}

/* 後半の「ドットを入れない行（no-dot-row）」のスタイル打ち消し */
.work-info-table.entry-table tr.no-dot-row tbody th {
  padding-left: 40px; /* 元の通常のthのpaddingに戻す */
}
.work-info-table.entry-table tr.no-dot-row th::before {
  display: none; /* ドットを非表示にする */
}
.work-info-table.entry-table tbody th,
.work-info-table.entry-table tbody td{
  vertical-align: top;
} 


/* ==========================================
   Recruit Form Extension Styles
   ========================================== */
.form-container{
  width: 100%;
  max-width: 1280px;
  margin: 20px auto;
  padding: 6.56% 5.47%;
  border-radius: 4px;
  border: #E5E5E5 solid 1px;
  box-sizing: border-box;
}

/* フォームテーブル内のセル調整 */
.work-info-table.recruit-form-table tbody th {
  padding-left: 20px;
  text-align: left;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .work-info-table.recruit-form-table tbody th {
  padding-left: 20px;
  }
}

.work-info-table.recruit-form-table tbody td {
  padding: 25px 40px;
}
@media screen and (max-width: 768px) {
  .work-info-table.recruit-form-table tbody td{
    padding: 25px 0;
  }
}


.work-info-table.recruit-form-table tbody tr{
  border-top: #e5e5e5 solid 1px;
}


/* --- 必須・任意バッジのスタイル --- */
.badge-required,
.badge-optional {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 12px;
  vertical-align: middle;
}
/* 必須：赤 */
.badge-required {
  background-color: #d93838;
}
/* 任意：グレー */
.badge-optional {
  background-color: #999999;
}

/* --- 入力パーツ共通スタイル --- */
.recruit-form input[type="text"],
.recruit-form input[type="tel"],
.recruit-form input[type="email"],
.recruit-form select,
.recruit-form textarea {
  width: 100%;
  /* max-width: 600px; 最大幅 */
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  background-color: #f7f8f9; /* 薄いグレーの背景 */
  padding: 12px 15px;
  font-size: 16px;
  color: #333333;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
}

/* フォーカス時の挙動 */
.recruit-form input:focus,
.recruit-form select:focus,
.recruit-form textarea:focus {
  border-color: #2b75a9;
  background-color: #ffffff;
}

/* セレクトボックスの矢印カスタマイズ用（必要に応じて） */
.form-select-wrap {
  position: relative;
  /* max-width: 600px; */
}

/* 電話番号の横並びテキスト（[半角数字]） */
.form-inline-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.form-inline-group input {
  max-width: 300px; /* 電話番号は少しスマートに */
}
.form-note {
  font-size: 14px;
  color: #333333;
  white-space: nowrap;
}

/* --- 個人情報保護方針（スクロールエリア） --- */
.privacy-policy-block {
  max-width: 800px;
  margin: 60px auto 0 auto;
}
.privacy-policy-block h3 {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}
.privacy-scroll-box {
  width: 100%;
  height: 200px; /* スクロールさせる高さ */
  overflow-y: scroll;
  border: 1px solid #e0e0e0;
  padding: 25px;
  box-sizing: border-box;
  background-color: #ffffff;
}
.privacy-scroll-box p {
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.privacy-scroll-box p:last-child {
  margin-bottom: 0;
}
.privacy-scroll-box .policy-date,
.privacy-scroll-box .policy-contact {
  margin-top: 2em;
}

/* --- 同意チェックボックス --- */
.privacy-agreement {
  text-align: center;
  margin: 40px 0;
}
.privacy-agreement label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  color: #333333;
  font-weight: bold;
}
.privacy-agreement input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* --- 送信ボタンエリア --- */
.form-submit-wrap {
  text-align: center;
}
.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px; /* ボタンの横幅 */
  height: 60px;
  background-color: #297BAD;
  color: #ffffff;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s;
  padding: 0 40px;
}
.submit-btn:hover {
  background-color: #205983;
}
/* 送信ボタン内の擬似要素で右矢印「＞」を表現 */
.submit-btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}