* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* a-blog対応(bodyに指定) */
body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-optical-sizing: auto;
  /* 不要な横スクロール・スワイプを防ぐ */
  overflow-x: hidden;
}

/* ============================================
============================================ */


/* ============================================
    グローバル変数
============================================ */

:root {
  /* =======================
        見出しカラー
    ======================= */
  --color-heading-h2-green: #32a569;
  --color-heading-h2-white: #fff;
  --color-heading-line: #32a569;

  /* =======================
        主要カラー
    ======================= */
  --color-text: #000; /* 標準テキスト */
  --color-text-white: #fff; /* 標準テキスト */
  --color-text-light: #707070; /* サブテキスト */
  --color-bg: #fef7e1; /* 背景-全体 */
  --color-bg-margin: #ffe8a4; /* 背景-マージン */
  --color-bg-light: #fff; /* 背景-ホワイト */
  --color-bg-dark: #f69f71; /* 背景-オレンジ */
  --color-primary: #f57021; /* メインカラー */
  --color-secondary: #32a569; /* サブカラー */
  --color-accent-yellow: #FFFCB2; /* アクセントカラー(黄) */
  --color-accent-blue: #70ACCE;  /* アクセントカラー(青) */
  /* fcta */
  --color-text-fcta: #fff;
  --color-bg-fcta: #f57021;
  --color-border-fcta: #FEF3EE;
  --color-mo-fcta-title: #f57021;
  /* cta */
  --color-text-cta-title: #000; 
  --color-text-cta-btn: #fff;
  --color-bg-cta: #fff;
  --color-bg-cta-btn: #f57021;
  --color-border-cta-btn: #FEF3EE;
  --color-border-arrow-cta-btn: #fff;
  /* feature */
  --color-bg-feature-box: #fff;
  --color-border-feature-box: #f57021;
  --color-title-feature-box: #f57021;
  /* work */
  --color-text-work-btn: #fff;
  --color-bg-work-btn: #32a569;
  --color-border-work-box: #f69f71;
  --color-mo-work-title: #32a569;
  /* FLOW */
  --color-border-flow: #f57021;
  /* FAQ */
  --color-bg-faq: #fff;
  --color-border-faq: #f57021;
  --color-icon-faq-q: #f57021;
  --color-icon-faq-a: #f69f71;
  --color-accordion-heading: #000;
  /* job/tab */
  --color-tab-active: #32a569; /* タsブアクティブ */
  --color-tab-active-bg: #fff;  /* タブアクティブbg */
  --color-tab-deactive: #9b8066; /* タブ非アクティブ */
  --color-tab-deactive-bg: #e1d1ca;  /* タブ非アクティブbg */


  /* =======================
        フッター
    ======================= */
  /* footerケア（追従CTA） */
    --fixed-btn-height: 88px;
}

/* ================ 変数 end ================ */




/* ============================================
    共通
============================================ */
#iyogin-lp {
  background-color: var(--color-bg-margin);
  /* a-blog用：文字の強制リセット */
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--color-text);
  /* LP内の装飾要素が画面幅を超えても、
     ページ全体に影響させずLP内で閉じ込めるため */
  overflow-x: hidden;
}

#iyogin-lp p,
#iyogin-lp li{
  /* a-blog用：文字の強制リセット */
  margin: 0;
  padding: 0;
  line-height: inherit;
  letter-spacing: inherit;
}

#iyogin-lp .wrap {
  max-width: 430px;
  margin: 0 auto;
  background-color: var(--color-bg);
}

/* モーダルOPEN時オーバーレイの背景をスクロールさせない */
body.tenshoku-lp-modal-open{
  overflow: hidden;
}

/* --------共通で左右のコンテンツ幅を調整-------- */
#tenshoku-lp-wrap {
  padding: 0 16px;
  margin: 0 auto;
}

/* -----------------section見出し----------------- */
#tenshoku-lp-heading-group {
  margin-bottom: 40px;
  text-align: center;
}

#tenshoku-lp-heading-group .heading-group__title--green {
  color: var(--color-heading-h2-green);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
}

#tenshoku-lp-heading-group .heading-group__title--white {
  color: var(--color-heading-h2-white);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
}

#tenshoku-lp-heading-group .heading-group__eyebrow--green {
  color: var(--color-heading-h2-green);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

#tenshoku-lp-heading-group .heading-group__eyebrow--white {
  color: var(--color-heading-h2-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

#tenshoku-lp-heading-group .heading-group__line {
  width: 60px;
  height: 3px;
  background-color: var(--color-heading-line);
  margin: 20px auto 0;
}

/* ================ 共通 end ================ */



/* ============================================
    ロゴ（転職net）
============================================ */
#tenshoku-lp-logo .logo {
  position: fixed;
  left: calc(20px + ((100% - 375px) / 2));
  z-index: 10;
  width: 100px;
  height: 40px;
  top: 20px;
}

/* ================ ロゴ end ================ */




/* ============================================
    フローティングCTA/mo-LINE
============================================ */
#tenshoku-lp-fcta .fcta {
  display: flex;
  gap: 12px;
  padding: 0 16px;
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: 430px;
  bottom: 16px;
}

#tenshoku-lp-fcta .fcta__btn {
  /* buttonタグが親要素を継承しないため直接指定 */
  font-family: "Noto Sans JP", system-ui, sans-serif;
  /* 下線打消し */
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 56px;
  color: var(--color-text-fcta);
  background-color: var(--color-bg-fcta);
  border: 1px solid var(--color-border-fcta);
  border-radius: 34px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

/* ==============================
  mo-LINE
   ============================== */
#tenshoku-lp-modal .modal-content__fcta-line {

}

#tenshoku-lp-modal .modal-content__fcta-line-title {
  color: var(--color-mo-fcta-title);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

#tenshoku-lp-modal .modal-content__fcta-line-text {
  color: var(--color-text);
  font-size: 14px;
  margin-bottom: 24px;
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
}

#tenshoku-lp-modal .modal-content__fcta-line-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#tenshoku-lp-modal .modal-content__fcta-line-btn {
  width: 100%;
}

/* ================ フローティングCTA/mo-LINE end ================ */




/* ============================================
    CTA/mo-LINE
============================================ */
#tenshoku-lp-cta .cta {
  background-color: var(--color-bg-cta);
  border-radius: 32px;
  padding: 48px 0;
}

#tenshoku-lp-cta .cta__title {
  color: var(--color-text-cta-title);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

#tenshoku-lp-cta .cta__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

#tenshoku-lp-cta .cta__btn {
  /* buttonタグが親要素を継承しないため直接指定 */
  font-family: "Noto Sans JP", system-ui, sans-serif;
  /* 下線打消し */
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 302px;
  height: 68px;
  color: var(--color-text-cta-btn);
  background-color: var(--color-bg-cta-btn);
  border: 1px solid var(--color-border-cta-btn);
  border-radius: 34px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  /* 矢印用 */
  position: relative;
  margin: 0 auto;
}

/* 矢印 */
#tenshoku-lp-cta .cta__btn::after {
    content: "";
    display: block;
    /* ↑疑似クラスへのお作法 */
    /* 正方形のサイズ/色を付ける場所 */
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-border-arrow-cta-btn);
    border-right: 2px solid var(--color-border-arrow-cta-btn);
    /* 位置の指定 */
    position: absolute;
    top: 50%;
    right: 12px;
    /* 正方形の上下位置/角度 */
    /* translateY＝高さ分の半分マイナス */
    transform: translateY(-50%) rotate(45deg);
  }

#tenshoku-lp-cta .mb64 {
  margin-bottom: 64px;
}

/* =========================
  CTA（ボタン1つ）
========================= */

#tenshoku-lp-cta .cta--single {
  background-color: var(--color-bg); /* 背景色変更 */
  padding: 0;
}

#tenshoku-lp-cta .cta--single .cta__btns {
  gap: 0;
}

/* ================ CTA/mo-LINE end ================ */




/* ============================================
    メインビジュアル
============================================ */
#tenshoku-lp-mv .mv {
}

#tenshoku-lp-mv .mv__img {
}

#tenshoku-lp-mv .mv__img img {
  display: block;
  width: 100%;
  max-width: 430px;
  height: auto;
  margin: 0 auto;
}

/* ========== メインビジュアル end ========== */




/* ============================================
    フッター
============================================ */
#tenshoku-lp-footer {
  /* footer（追従CTAケア） */
  padding-bottom: var(--fixed-btn-height);
}

#tenshoku-lp-footer .footer {
  padding: 64px 0;
}

#tenshoku-lp-footer .footer img {
  display: block;
}

#tenshoku-lp-footer .footer p {
  text-align: center;
}

#tenshoku-lp-footer .footer__logo{
  width: 260px;
  height: auto;
  margin: 0 auto 24px;
}

#tenshoku-lp-footer .footer__address {
  font-size: 14px;
  margin-bottom: 24px;
}

#tenshoku-lp-footer .footer__pmark {
  width: 50px;
  height: auto;
  margin: 0 auto 20px;
}

#tenshoku-lp-footer .footer__copyright {
  font-size: 13px;
  opacity: 0.7;
}

/* トップへ戻るボタン */
#tenshoku-lp-footer .backtotop {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 24px;
  bottom: 32px;
}
/* ボタンの基準位置 */
#tenshoku-lp-footer #tenshoku-lp-wrap {
  position: relative;
}

/* ============= フッター end ============= */




/* ============================================
働きやすい理由
============================================ */
#tenshoku-lp-benefits .benefits {
}

#tenshoku-lp-benefits .benefits__img {
  background-color: #fff;
  border-radius: 32px;
  margin-bottom: 64px;
}

#tenshoku-lp-benefits .benefits__img img {
  display: block;
  width: 100%;
  max-width: 342px;
  height: auto;
  padding: 40px 0;
  margin: 0 auto;
}

/* ============= 働きやすい理由 end ============= */




/* ============================================
  3つの安心
============================================ */
#tenshoku-lp-feature .feature-section {
  margin-bottom: 64px;
}

#tenshoku-lp-feature .feature-box-wrap {
  /* 縦並び + gap */
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 25px 12px 0;
}

/* 角丸ボックス */
#tenshoku-lp-feature .feature-box {
  position: relative;
  background-color: var(--color-bg-feature-box);
  border: 3px solid var(--color-border-feature-box);
  border-radius: 46px;
  padding: 32px 32px;
  box-sizing: border-box;
}

/* アイコン（上線に半分かぶせる） */
#tenshoku-lp-feature .feature-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  /*
    本来は translateX(-50%) で中央寄せ
    a-blog のレイアウト（親要素の padding / 幅計算）の影響で
    視覚的に中央からズレるため、アイコン幅（50px）の半分である
    -25px を指定して中央に見える位置へ補正
    ※ スマホ特化（〜414px）前提の調整
  */
  transform: translateX(-25px);
}

#tenshoku-lp-feature .feature-icon img {
  width: 50px;
  height: 50px;
  display: block;
}

/* タイトル */
#tenshoku-lp-feature .feature-title {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--color-title-feature-box);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

/* 本文 */
#tenshoku-lp-feature .feature-text {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 400;
}

/* 注釈 */
#tenshoku-lp-feature .feature-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 400;
  text-align: center;
}
/* ============= 3つの安心 end ============= */




/* ============================================
  ふたつの働き方/tab-求人/mo-勤務地一覧
============================================ */
#tenshoku-lp-jobstyle .jobstyle-section {
  background-color: var(--color-bg-dark);
  border-radius: 32px;
  padding: 40px 0;
  margin-bottom: 40px;
}

#tenshoku-lp-jobstyle .jobstyle__eyebrow--white {
  color: var(--color-text-white);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

#tenshoku-lp-jobstyle .jobstyle__heading {
  color: var(--color-text-white);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

#tenshoku-lp-jobstyle .jobstyle-note {
  font-size: 12px;
  color: var(--color-text-white);
  font-weight: 400;
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
  max-width: 342px;
  margin: 0 auto;
}

#tenshoku-lp-jobstyle .mb-40 {
  margin-bottom: 40px;
}

/* ================================
  tab-求人
================================ */
/* タブボタン */
#tenshoku-lp-tab {
  color: var(--color-text);
  margin-bottom: 16px;
}

#tenshoku-lp-tab .tab {
  width: 50%;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
} 

#tenshoku-lp-tab .tab.active {
  color: var(--color-tab-active);
  line-height: 1.3;
  background-color: var(--color-tab-active-bg)
}

#tenshoku-lp-tab .tab.deactive {
  color: var(--color-tab-deactive);
  line-height: 1.3;
  background-color: var(--color-tab-deactive-bg)
}

#tenshoku-lp-tab .tab span {
  font-size: 18px;
}

#tenshoku-lp-tab .tabs {
  display: flex;
}

/* タブ内コンテンツ */
#tenshoku-lp-tab .tab-content {
  background-color: var(--color-tab-active-bg);
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#tenshoku-lp-tab .tab-content__list {
  display: flex;
  gap: 4px;
}

/* :not(:first-child)=first-child以外mt8px */
#tenshoku-lp-tab .tab-content__list:not(:first-child) {
  margin-top: 8px;
}

#tenshoku-lp-tab .tab-content__title {
  color: var(--color-tab-active);
  font-weight: 700;
  flex-shrink: 0;
  width: 96px;
  /* 項目名とspanの中の「：」を横並びにする */
  display: flex;
  justify-content: space-between;
}

#tenshoku-lp-tab .tab-content .active {
  display: block;
}

#tenshoku-lp-tab .tab-content .deactive {
  display: none;
}

/* ===== tab-求人 end ===== */

/* ================================
  エリアボタン/mo-支店情報
================================ */

#tenshoku-lp-job .area {

}

/* -----------ボタン用のwrap----------- */
#tenshoku-lp-job .btn__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
} 

/* --------------ボタン本体-------------- */
#tenshoku-lp-job .btn {
  /* buttonタグが親要素を継承しないため直接指定 */
  font-family: "Noto Sans JP", system-ui, sans-serif;
  /* 不要ならbuttonタグのデフォルトボーダーをnoneで消す */
  border: 2px solid #fff;
  /* ---位置の指定--- */
  /* 横並び */
  display: flex;
  /* 上下位置の指定 */
  align-items: center;
  /* 左右位置の指定 */
  justify-content: center;
  /* 位置の指定 end */
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  background-color: #32a569;
  font-weight: 500;
  border-radius: 12px;
  width: 302px;
  height: 68px;
  /* 矢印の位置の基準になる */
  position: relative;
}

/* 矢印 */
#tenshoku-lp-job .btn::after {
    content: "";
    display: block;
    /* ↑疑似クラスへのお作法 */
    /* 正方形のサイズ/色を付ける場所 */
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    /* 位置の指定 */
    position: absolute;
    top: 50%;
    right: 20px;
    /* 正方形の上下位置/角度 */
    /* translateY＝高さ分の半分マイナス */
    transform: translateY(-50%) rotate(45deg);
  }

/* =========================
  mo-支店情報 共通設定
   ========================= */
#tenshoku-lp-modal .modal-content__body-list,
#tenshoku-lp-modal .modal-content__body-list ul {
  list-style: none;      /* デフォルトマーカーを消す */
  /* padding-left: 1.5em;   ←マーカーを「・」以外に変える場合はこの子リスト用スペース必要 */
  /* padding-right: 1em; */
  margin: 0;
  font-size: 15px;
  color: #000;
}

/* -----------親リスト----------- */
/* 親リストにマーカーは付けない */
#tenshoku-lp-modal .modal-content__body-list > li::before {
  content: none;
}

#tenshoku-lp-modal .modal-content__body-list > li {
  font-size: 18px;
  font-weight: 500;
  color: #32a569;
}

/* -----------小見出し（雇用形態）----------- */
/* 雇用形態をフルタイム・パートタイムで分ける場合はこちらを使用 */
/* 雇用形態にマーカーは付けない */
#tenshoku-lp-modal .modal-content__body-list li ul li.job-type::before {
  content: none;
}

#tenshoku-lp-modal .modal-content__body-list li ul li.job-type {
  font-size: 16px;
  font-weight: 500;
  color: #32a569;
  margin-left: -1em;
  margin-top: 12px;
  margin-bottom: 4px;
}

/* -----------子リスト（支店・グループ）----------- */
#tenshoku-lp-modal .modal-content__body-list li ul li {
  font-size: 15px;
  font-weight: 400;
}

/* 子リストのマーカー */
#tenshoku-lp-modal .modal-content__body-list li ul li::before {
  content: "・";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  color: #32a569;
}

/* 子リストのインデント */
#tenshoku-lp-modal .modal-content__body-list li ul {
  padding-left: 1.5em;
}

/* 親リスト直下の子リストに余白 */
#tenshoku-lp-modal .modal-content__body-list > li > ul {
  margin-top: 12px;
}

/* ===== エリアボタン/mo-支店情報 end ===== */

/* ==== ふたつの働き方/tab-求人/mo-勤務地一覧 end ==== */




/* ============================================
  お仕事と成長サポート
============================================ */
#tenshoku-lp-work .work-section {

}

#tenshoku-lp-work .work__img {

}

#tenshoku-lp-work .work__img img {
  display: block;
  width: 100%;
  max-width: 342px;
  height: auto;
  margin: 0 auto;
}

#tenshoku-lp-work .mb-24 {
  margin-bottom: 24px;
}

#tenshoku-lp-work .mb-40 {
  margin-bottom: 40px;
}

#tenshoku-lp-work .mb-64 {
  margin-bottom: 64px;
}

#tenshoku-lp-work .btn {
  /* buttonタグが親要素を継承しないため直接指定 */
  font-family: "Noto Sans JP", system-ui, sans-serif;
  width: 220px;
  height: 40px;
  background-color: var(--color-bg-work-btn);
  border: none;
  border-radius: 20px;
  color: var(--color-text-work-btn);
  font-size: 15px;
  font-weight: 500;
  display: block;
  position: relative;
  margin: 0 auto 32px;
}

/* 矢印 */
#tenshoku-lp-work .btn::after {
    content: "";
    display: block;
    /* ↑疑似クラスへのお作法 */
    /* 正方形のサイズ/色を付ける場所 */
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    /* 位置の指定 */
    position: absolute;
    top: 50%;
    right: 12px;
    /* 正方形の上下位置/角度 */
    /* translateY＝高さ分の半分マイナス */
    transform: translateY(-50%) rotate(45deg);
  }

/* ==============================
  mo-お仕事紹介
   ============================== */

#tenshoku-lp-modal .modal-content__works{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#tenshoku-lp-modal .modal-content__work-box {
  width: 100%;
  border: 3px solid var(--color-border-work-box);
  border-radius: 46px;
  padding: 24px;
}

#tenshoku-lp-modal .modal-content__work-title {
  color: var(--color-mo-work-title);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

#tenshoku-lp-modal .modal-content__work-text {
  color: var(--color-text);
  font-size: 15px;
}

/* ======== お仕事と成長サポート end ======== */




/* ============================================
  転職支援のしくみ
============================================ */
#tenshoku-lp-service-flow .service-flow-section {

}

#tenshoku-lp-service-flow .service-flow__worries{
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 2.2;
  letter-spacing: 0.1em;
  max-width: 342px;
  margin: 0 auto;
  margin-bottom: 24px;
}

#tenshoku-lp-service-flow .service-flow__lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-primary);
  text-align: center;
  max-width: 342px;
  margin: 0 auto;
  margin-bottom: 30px;
}

#tenshoku-lp-service-flow .service-flow__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  max-width: 342px;
  margin: 0 auto;
  margin-bottom: 32px;
}

#tenshoku-lp-service-flow .service-flow__img {

}

#tenshoku-lp-service-flow .service-flow__img img {
  display: block;
  width: 100%;
  max-width: 342px;
  height: auto;
  margin: 0 auto 64px;
}

/* ========== 転職支援のしくみ end ========== */




/* ============================================
  内定までの流れ
============================================ */

/* FLOWアコーディオン */

#tenshoku-lp-flow .flow-section {
  margin-bottom: 64px;
}

/* -----------summary----------- */
#tenshoku-lp-flow .flow-accordion__summary {
  /* リストアイテムの指定以外に変えるとデフォルトの三角形アイコンが消える */
  display: flex;
  /* display: flex;の場合、上下の中央にする=center 上付きははstartだけどPCサイズ調整必要 */
  align-items: center;
  /* アコーディオン内のテキストカラー */
  color: var(--color-text);
  /* アコーディオンの背景　角丸ボックス */
  background-color: #fff;
  border: 2px solid var(--color-border-flow);
  border-radius: 10px;
  padding: 16px;
}

/* Safariで表示されるデフォルトの三角形アイコンを消す */
#tenshoku-lp-flow .flow-accordion__summary::-webkit-details-marker {
  display: none;
}

/* -----------summaryを繋ぐ線----------- */
#tenshoku-lp-flow .flow-accordion__summary {
  position: relative;
}

/* 上の線 */
#tenshoku-lp-flow .flow-accordion__summary::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
  width: 2px;
  height: 16px;
  background-color: var(--color-border-flow);
}

/* 下の線 */
#tenshoku-lp-flow .flow-accordion__summary::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 2px;
  height: 16px;
  background-color: var(--color-border-flow);
}

/* 最初と最後 */
#tenshoku-lp-flow .flow-accordion:first-child
.flow-accordion__summary::before {
  display: none;
}

#tenshoku-lp-flow .flow-accordion:last-child
.flow-accordion__summary::after {
  display: none;
}

/* --------アイコン（+）を作る-------- */
#tenshoku-lp-flow .flow-accordion__icon-plus {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  margin-left: 28px;
}

/* アイコンのバー(+)のスタイル */
#tenshoku-lp-flow .flow-accordion__icon-plus::before,
#tenshoku-lp-flow .flow-accordion__icon-plus::after {
    content: "";
    position: absolute;
    display: block;
    /* ↑ここまでお作法 */
    width: 18px;
    height: 2px;
    background-color: var(--color-border-flow);
  }

#tenshoku-lp-flow .flow-accordion__icon-plus::before {
    top: 50%;
    transform: translateY(-50%);
  }

#tenshoku-lp-flow .flow-accordion__icon-plus::after {
    /* deg=角度 順番注意translateが先 */
    transform: translateY(-50%) rotate(90deg);
    top: 50%;
    transition: transform 0.25s;
  }

#tenshoku-lp-flow .flow-accordion {
  margin-bottom: 14px;
}

  /* --------アコーディオンの中身のスタイル-------- */
#tenshoku-lp-flow .flow-accordion::details-content {
    transition: height 0.25s, opacity 0.25s;
    height: 0;
    opacity: 0;
  }

  /* --------アコーディオンの中身のスタイル（開いている時）-------- */
#tenshoku-lp-flow .flow-accordion[open]::details-content {
    opacity: 1;
    height: auto;
  }

  /* アコーディオンが開いた時のスタイル */
#tenshoku-lp-flow .flow-accordion[open] .flow-accordion__icon-plus::after {
      transform: translateY(-50%) rotate(180deg);
  }


/* summaryのテキスト */
#tenshoku-lp-flow .flow-accordion__title {
  display: block;
  /* 余白を自動的に指定　autoだと余白いっぱいに調整してくれる */
  margin-right: auto;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
}

/* -----------description----------- */
#tenshoku-lp-flow .flow__content {
  display: flex;
  padding: 16px;
}

/* descriptionのテキスト */
#tenshoku-lp-flow .flow-accordion__description {
  /* アコーディオン内のテキストカラー */
  color: var(--color-text);
  font-size: 15px;
}

/* ============ 内定までの流れ end ============ */




/* ============================================
  よくある質問
============================================ */

/* FAQアコーディオン */

/* bg */
#tenshoku-lp-faq .qa-section {
  background-color: var(--color-bg-faq);
  padding: 40px 0;
  border-radius: 32px;
  margin-bottom: 64px;
}

/* -----------Q----------- */
#tenshoku-lp-faq .question {
  /* リストアイテムの指定以外に変えるとデフォルトの三角形アイコンが消える */
  display: flex;
  /* display: flex;の場合、上下の中央にする=center 上付きははstartだけどPCサイズ調整必要 */
  align-items: center;
  /* アコーディオン内のテキストカラー */
  color: var(--color-text);
  /* アコーディオンの背景　角丸ボックス */
  background-color: #fff;
  border: 2px solid var(--color-border-faq);
  border-radius: 10px;
  padding: 16px;
}

/* Safariで表示されるデフォルトの三角形アイコンを消す */
#tenshoku-lp-faq .question::-webkit-details-marker {
  display: none;
}

/* --------アイコン（+）を作る-------- */
#tenshoku-lp-faq .accordion__icon-plus {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  margin-left: 28px;
}

/* アイコンのバー(+)のスタイル */
#tenshoku-lp-faq .accordion__icon-plus::before,
#tenshoku-lp-faq .accordion__icon-plus::after {
    content: "";
    position: absolute;
    display: block;
    /* ↑ここまでお作法 */
    width: 18px;
    height: 2px;
    background-color: var(--color-border-faq);
  }

#tenshoku-lp-faq .accordion__icon-plus::before {
    top: 50%;
    transform: translateY(-50%);
  }

#tenshoku-lp-faq .accordion__icon-plus::after {
    /* deg=角度 順番注意translateが先 */
    transform: translateY(-50%) rotate(90deg);
    top: 50%;
    transition: transform 0.25s;
  }

/* アコーディオン */

#tenshoku-lp-faq .accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#tenshoku-lp-faq .mb-24 {
  margin-bottom: 24px;
}


#tenshoku-lp-faq .accordion {

}

/* --------アコーディオンの中身のスタイル-------- */
#tenshoku-lp-faq .accordion::details-content {
    transition: height 0.25s, opacity 0.25s;
    height: 0;
    opacity: 0;
  }

  /* --------アコーディオンの中身のスタイル（開いている時）-------- */
#tenshoku-lp-faq .accordion[open]::details-content {
    opacity: 1;
    height: auto;
  }

  /* アコーディオンが開いた時のスタイル */
#tenshoku-lp-faq .accordion[open] .accordion__icon-plus::after {
      transform: translateY(-50%) rotate(180deg);
  }

/* --------アイコン（Q）を作る-------- */
/* アイコン（Q）のスタイル */
#tenshoku-lp-faq .accordion__icon-q {
  color: #fff;
  font-size: 18px;
  background-color: var(--color-icon-faq-q);
  /* min＝最小値 つけないとテキストサイズとの調整で変動することがある */
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  /* 上下の中央に持ってくる　※Qのようなテキストの位置を調整したい場合は不要 */
  /* display: flex;
  align-items: center; */
  /* 上下の中央に持ってくる */
  display: flex;
  /* 左右の中央に持ってくる */
  justify-content: center;
  /* 左右の中央に持ってくる */
  margin-right: 12px;
}

/* Qのテキスト */
#tenshoku-lp-faq .accordion__question {
  display: block;
  /* 余白を自動的に指定　autoだと余白いっぱいに調整してくれる */
  margin-right: auto;
  font-size: 15px;
  font-weight: 500;
}

/* -----------A----------- */
#tenshoku-lp-faq .answer {
  display: flex;
  padding: 16px;
}

/* --------アイコン（A）を作る-------- */
/* アイコン（A）のスタイル */
#tenshoku-lp-faq .accordion__icon-a {
  color: #fff;
  font-size: 18px;
  background-color: var(--color-icon-faq-a);
  /* min＝最小値 つけないとテキストサイズとの調整で変動することがある */
  min-width: 32px;
  min-height: 32px;
  /* Aは縦に長いため最大値が32より大きかった→縦幅を32に固定した */
  height: 32px;
  border-radius: 50%;
  display: flex;
  /* 左右の中央に持ってくる */
  justify-content: center;
  /* 左右の中央に持ってくる */
  margin-right: 12px;
}

/* Aのテキスト */
#tenshoku-lp-faq .accordion__answer {
  /* アコーディオン内のテキストカラー */
  color: var(--color-text);
  font-size: 15px;
}

/* FAQ内の小見出し */
#tenshoku-lp-faq .accordion__heading {
  color: var(--color-accordion-heading);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
}

/* ============ よくある質問 end ============ */




/* ============================================
  モーダル
============================================ */
#tenshoku-lp-modal .modal {
  background-color: rgba(51, 51, 51, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 100;
  display: none;
}

#tenshoku-lp-modal .modal.active {
  display: flex;
}

#tenshoku-lp-modal .modal-content {
  background-color: #fff;
  border-radius: 12px;
  width: 326px;
  height: 520px;
  padding: 0px 24px 40px;
  display: flex;
  flex-direction: column;
} 

#tenshoku-lp-modal .modal-content__body {
  color: var(--color-text);
  overflow-y: auto;
  flex: 1;
  display: none;
}

#tenshoku-lp-modal .modal-content__body.active{
  display: block;
}

#tenshoku-lp-modal .modal-content__header {
  height: 68px;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}

/* モーダル内閉じるボタン */
#tenshoku-lp-modal .modal-content__close-btn {
  width: 34px;
}

#tenshoku-lp-modal .modal-content__close-btn img {
  width: 100%;
}

/* ========== モーダル end ========== */