@charset "UTF-8";

/* ============================================================
   株式会社ファースト テーマ style.css

   【目次】
   01. リセット / ベース
   02. 共通ユーティリティ（フォント・コンテナ・リンク等）
   03. 共通パーツ（下層FV / パンくず / ページャー / ボタン / CTA）
   03b. 下層ページ共通（ヒーロー / パンくず / セクション見出し / CTAボックス）
   04. ヘッダー / ハンバーガー
   05. フッター
   06. トップへ戻るボタン
   07. お知らせ（一覧 / 詳細 / 関連 / 著者 / サイドバー）
   08. 固定ページ用（content / policy / 404 / sitemap）
   09. TOPページ（front-page）
   10. 事業内容ページ（page-service / .sv-）
   11. 採用情報ページ（page-recruit / .rc-）
   12. 先輩の声ページ（page-voice / .vo-）
   13. お知らせ/ブログ アーカイブ（category / .nw-）
   14. 会社概要ページ（page-company / .co-）
   15. 個別投稿ページ（single / .sg-）
   16. お問い合わせページ2（page-contact2 / .cp-）
   17. 採用エントリーページ（page-entry / .ee-）
   ============================================================ */


/* ============================================================
   01. リセット / ベース
   ============================================================ */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #515151;
  word-break: auto-phrase;
  background-color: #fff;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 100%;
  top: 0;
  left: 7.5%;
  background: url(./images/main-bg.png) repeat-y center/cover;
  z-index: -1;
}

h1, h2, h3, h4 {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h2, h3, h4, h5 {
    line-height: 1.5;
  }
}

a {
  text-decoration: none;
  color: #000;
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}


/* ============================================================
   02. 共通ユーティリティ
   ============================================================ */
.oswald {
  font-family: "Oswald", sans-serif;
}

.accent-font {
  font-family: "Roboto", sans-serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1180px;
}
@media screen and (max-width: 1024px) {
  .container {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 90%;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.grecaptcha-badge {
  display: none;
}


/* ============================================================
   03. 共通パーツ（下層FV / パンくず / ページャー / ボタン / CTA）
   ============================================================ */

/* --- 下層ページFV --- */
.lower-fv {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 2046/496;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lower-fv {
    aspect-ratio: 2/1;
  }
}
.lower-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./images/lower-fv.png) no-repeat bottom center/cover;
  z-index: -1;
}
.lower-fv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  max-width: 90%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.lower-fv h1 {
  font-size: clamp(1.5rem, 0.909rem + 1.97vw, 3.125rem);
  color: #4fae4f;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0px -2px 0 #FFF, -2px 0px 0 #FFF, 2px 0px 0 #FFF;
}

/* --- パンくず（プラグイン Breadcrumb NavXT） --- */
#breadcrumbs {
  padding: 3.5rem 10% 4rem;
  background-color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  #breadcrumbs {
    padding: 1.5rem 5% 2rem;
  }
}
#breadcrumbs > span > span:first-child {
  position: relative;
  padding-left: 18px;
}
#breadcrumbs > span > span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1rem;
  height: 1rem;
  background: url(./images/home.png) no-repeat center/contain;
}

/* --- ページャー（WP-PageNavi） --- */
.wp-pagenavi {
  width: 100%;
  margin: 5rem auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 2.5rem;
  }
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  aspect-ratio: 1/1;
  border-radius: 999vh;
  display: inline-block;
  color: #515151;
  padding: 0 !important;
  width: 50px;
  height: 50px;
  border: none !important;
  font-weight: bold;
  margin: 10px 15px !important;
  font-size: 20px !important;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    padding: 8px 5px !important;
  }
}
.wp-pagenavi span.current {
  background: #4fae4f;
  color: #fff;
}

/* --- ボタン --- */
.btn {
  border: 2px solid #129E37;
  background: #fff;
  color: #129E37 !important;
  text-align: center;
  padding: 1.5rem;
  width: 100%;
  max-width: 340px;
  font-size: 18px;
  display: block;
  -webkit-box-shadow: 4px 4px 4px 0 #129E37;
          box-shadow: 4px 4px 4px 0 #129E37;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 280px;
    padding: 1rem;
  }
}
.btn::before {
  content: "";
  position: absolute;
  right: -2rem;
  width: 5rem;
  background: #129E37;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn::before {
    width: 4.5rem;
  }
}
.btn.green {
  background: #129E37;
  color: #fff !important;
}
.btn.green::after {
  content: "";
  position: absolute;
  right: 0;
  width: 3.5rem;
  background: #fff;
  height: 1px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn.green::after {
    width: 2.5rem;
  }
}

/* --- CTA（共通：採用誘導などで流用可） --- */
.cta {
  background: url(./images/cta.png) no-repeat center/cover;
  padding: 10rem 0 100px;
  text-align: center;
  margin: 7.5rem 0 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 5rem 0 70px;
    margin: 0rem 0 60px;
  }
}
.cta .container {
  background-color: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  padding: 5rem 1rem !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cta .container {
    padding: 3rem 1rem !important;
  }
}
.cta h2 {
  font-size: clamp(1.25rem, 0.977rem + 0.91vw, 2rem);
  margin-bottom: 1rem;
  color: #4fae4f;
}
.cta-btn {
  margin: 1.5rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .cta-btn {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta-btn a {
  width: 28%;
}
@media screen and (max-width: 1024px) {
  .cta-btn a {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .cta-btn a {
    width: 200px;
  }
}


/* ============================================================
   03b. 下層ページ共通（ヒーロー / パンくず / セクション見出し / CTAボックス）
   ※ 事業内容・採用情報など各下層ページで流用。
     ページ側ラッパーに .lp-page を付け、共通部は .lp- を使用。
     固有部分のみ各ページのプレフィックス（.sv- / .rc- 等）で追加する。
   ============================================================ */
.lp-page {
  --navy-deep: #0a2856;
  --blue: #1b4fd6;
  --white: #ffffff;
  --text: #1a1f2e;
  --line: #e8eaee;
  --green: #1aa64b;
  --green-dark: #0f8c3c;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
}
.lp-page a { color: inherit; text-decoration: none; }

/* 青グラデ文字（見出し用：131deg） */
.lp-grad {
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0a1c65; /* clip非対応フォールバック */
}
/* 数字用（水平グラデ：90deg・Oswald／デザインデータ準拠） */
.lp-num {
  font-family: 'Oswald', sans-serif;
  background-image: linear-gradient(90deg, #0a1c65 0%, #014be5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0a1c65;
}

/* 縦グリッドライン（ヘッダー基準＝左右2.5%余白で6分割） */
.lp-grid-lines {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
  left: 2.5%; right: 2.5%; width: auto;
  z-index: 0;
}
.lp-grid-lines span { border-right: 1px solid rgba(20, 58, 122, 0.08); }
.lp-grid-lines span:first-child { border-left: 1px solid rgba(20, 58, 122, 0.08); }

/* ヒーロー */
.lp-hero { position: relative; background: #fff; overflow: hidden; padding: 0; }
.lp-hero-inner {
  position: relative; width: 95%; margin: 0 auto;
  min-height: 500px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 48px; z-index: 2;
}
.lp-hero-watermark {
  font-family: 'Barlow', sans-serif; font-weight: 900;
  font-size: 88px; line-height: 1;
  color: rgba(20, 58, 122, 0.08); letter-spacing: 0.01em;
  white-space: nowrap; pointer-events: none; user-select: none;
  margin: 0 0 8px; position: relative; z-index: 3;
}
.lp-hero-text { position: relative; z-index: 3; max-width: 900px; }
.lp-hero-title {
  font-size: 50px; font-weight: 900; line-height: 1.4;
  letter-spacing: 0.01em; color: var(--navy-deep);
  margin: 0 0 28px; white-space: nowrap;
}
.lp-hero-lead { font-size: 16px; line-height: 2; color: var(--text); margin: 0; }
.lp-hero-deco {
  position: absolute; top: 60%; right: 0; transform: translateY(-50%);
  width: 46%; max-width: 560px; aspect-ratio: 560 / 440;
  z-index: 1; pointer-events: none;
}
.lp-hero-deco img { width: 100%; height: 100%; object-fit: contain; }

/* パンくず（青グラデ帯） */
.lp-breadcrumb {
  position: relative; z-index: 2;
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--blue) 100%);
}
.lp-breadcrumb-inner {
  width: 95%; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; font-size: 13px; letter-spacing: 0.04em; color: #fff;
}
.lp-breadcrumb-inner a { color: #fff; transition: opacity 0.25s ease; }
.lp-breadcrumb-inner a:hover { opacity: 0.7; }
.lp-breadcrumb-sep { opacity: 0.6; font-family: 'Barlow', sans-serif; }
.lp-breadcrumb-current { font-weight: 700; }

/* セクション見出し（ラベル＋大見出し＋リード＋英字ウォーターマーク） */
.lp-sec-label {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 600;
  letter-spacing: 0.18em; margin: 0 0 18px;
}
.lp-sec-label::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.lp-sec-title { font-size: 34px; font-weight: 900; line-height: 1.4; margin: 0 0 14px; }
.lp-sec-lead { font-size: 15px; line-height: 1.9; margin: 0; }
.lp-sec-watermark {
  position: absolute; top: 24px; right: 2.5%;
  font-family: 'Barlow', sans-serif; font-weight: 900;
  font-size: 130px; line-height: 1; letter-spacing: 0.01em;
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 1;
  color: rgba(20, 58, 122, 0.06);
}

/* CTA（全幅背景＋白半透明ボックス＋棒線装飾ボタン） */
.lp-cta {
  position: relative; width: 100%; min-height: 480px;
  overflow: hidden; display: flex; align-items: center; padding: 80px 0;
  background-color: var(--navy-deep);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.lp-cta-inner {
  position: relative; z-index: 2;
  width: 92%; max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center;
}
.lp-cta-box {
  position: relative; z-index: 2;
  width: 100%; max-width: 900px; margin: 0 auto;
  padding: 64px 7%; text-align: center;
  background: rgba(255, 255, 255, 0.9);
}
.lp-cta-title {
  font-size: clamp(22px, 3.2vw, 38px); font-weight: 700;
  line-height: 1.45; color: var(--navy-deep); margin: 0 0 22px;
}
.lp-cta-lead {
  font-size: clamp(13px, 1.1vw, 16px); line-height: 1.9;
  color: var(--text); margin: 0 0 40px;
}
.lp-cta-actions { display: flex; justify-content: center; gap: 72px; flex-wrap: wrap; }
.lp-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 300px; height: 64px; padding: 0 32px;
  font-size: 16px; font-weight: 700; letter-spacing: 0.04em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; cursor: pointer;
}
.lp-cta-btn::before {
  content: ''; position: absolute; right: -2rem; width: 4rem; height: 1px;
  top: 50%; transform: translateY(-50%);
}
.lp-cta-btn::after {
  content: ''; position: absolute; right: 0; width: 3rem; height: 1px;
  top: 50%; transform: translateY(-50%); z-index: 10;
}
.lp-cta-btn-outline {
  background: #fff; color: var(--green-dark) !important;
  border: 2px solid var(--green) !important;
}
.lp-cta-btn-outline::before { background: var(--green); }
.lp-cta-btn-outline::after  { background: var(--green); }
.lp-cta-btn-outline:hover {
  background: var(--green); color: #fff !important;
  transform: translateY(-2px); box-shadow: 0 12px 24px rgba(26, 166, 75, 0.25);
}
.lp-cta-btn-solid {
  background: var(--green); color: #fff !important;
  border: 2px solid var(--green) !important;
}
.lp-cta-btn-solid::before { background: var(--green); }
.lp-cta-btn-solid::after  { background: #fff; }
.lp-cta-btn-solid:hover {
  background: var(--green-dark); border-color: var(--green-dark) !important;
  transform: translateY(-2px); box-shadow: 0 12px 24px rgba(26, 166, 75, 0.3);
}

/* 下層共通 レスポンシブ */
@media (max-width: 1024px) {
  .lp-hero-deco { opacity: 0.5; width: 50%; }
  .lp-sec-watermark { font-size: 92px; }
}
@media (max-width: 768px) {
  .lp-hero { padding: 72px 0 0; }
  .lp-hero-inner { min-height: auto; padding: 24px 0 40px; }
  .lp-hero-watermark { font-size: 56px; }
  .lp-hero-title { font-size: 26px; margin-bottom: 20px; white-space: normal; }
  .lp-hero-lead { font-size: 13px; line-height: 1.9; }
  .lp-hero-deco { display: none !important; }
  .lp-breadcrumb-inner { font-size: 11px; padding: 12px 0; }
  .lp-sec-label { font-size: 13px; margin-bottom: 12px; }
  .lp-sec-label::before { width: 24px; }
  .lp-sec-title { font-size: 22px; }
  .lp-sec-lead { font-size: 13px; }
  .lp-sec-watermark { font-size: 56px; top: 8px; }
  .lp-cta { min-height: 0; padding: 48px 0; }
  .lp-cta-box { padding: 40px 24px; }
  .lp-cta-title { font-size: 21px; margin-bottom: 16px; }
  .lp-cta-lead { font-size: 13px; margin-bottom: 28px; }
  .lp-cta-actions { flex-direction: column; gap: 14px; align-items: center; }
  .lp-cta-btn { width: 100%; min-width: 0; max-width: 360px; height: 56px; font-size: 15px; }
}


/* ============================================================
   04. ヘッダー / ハンバーガー
   ============================================================ */
header {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  header {
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  header + section {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  header + section {
    margin-top: 55px;
  }
}

.header-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0 1rem 2.5%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-contents {
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .header-contents {
    height: 55px;
  }
}
.header-contents::before {
  content: "";
  width: 20%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.home .header-contents::before {
  display: none;
}

.header-left a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header-left a img {
  width: 180px;
}
@media screen and (max-width: 1400px) {
  .header-left a img {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .header-left a img {
    width: 140px;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1600px) {
  .header-right {
    gap: 2rem;
  }
}
@media screen and (max-width: 1280px) {
  .header-right {
    gap: 1rem;
  }
}
.header-right > a {
  width: 240px;
  display: block;
}
@media screen and (max-width: 1400px) {
  .header-right > a {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .header-right > a {
    display: none;
  }
}
.header-right > .hamburger-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1600px) {
  .header-right > .hamburger-nav > ul {
    gap: 2rem;
  }
}
@media screen and (max-width: 1280px) {
  .header-right > .hamburger-nav > ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .header-right > .hamburger-nav > ul {
    display: none;
  }
}
.header-right > .hamburger-nav > ul > li > a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1280px) {
  .header-right > .hamburger-nav > ul > li > a {
    font-size: 14px;
  }
}

.hamburger-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger-menu {
    display: block;
  }
}
.hamburger-menu input {
  display: none;
}
.hamburger-menu .menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 30;
  position: relative;
  height: 25px;
  width: 40px;
}
.hamburger-menu .menu-btn span,
.hamburger-menu .menu-btn span:before,
.hamburger-menu .menu-btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a1c65), to(#014be5));
  background-image: linear-gradient(90deg, #0a1c65, #014be5);
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hamburger-menu .menu-btn span:before {
  bottom: 8px;
}
.hamburger-menu .menu-btn span:after {
  top: 8px;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
  background: transparent;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger-menu .menu-content .logo {
  width: 250px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hamburger-menu .menu-content .logo {
    width: 180px;
  }
}
.hamburger-menu .menu-content .hamburger-wrap {
  width: 80%;
  margin: 0 auto;
}
.hamburger-menu .menu-content .hamburger-wrap + a {
  width: 250px;
  margin-top: 2.5rem;
}
.hamburger-menu .menu-content ul li a {
  font-weight: bold;
  font-size: 20px;
  display: block;
  color: #333333;
  text-align: left;
  padding-bottom: 1rem;
  border-bottom: 1px solid #B2B2B2;
}
@media screen and (max-width: 767px) {
  .hamburger-menu .menu-content ul li a {
    padding-bottom: 1rem;
    font-size: 1rem;
  }
}
.hamburger-menu .gnavi__sp-style {
  position: fixed;
  z-index: -2;
  top: 70px;
  background-image: linear-gradient(135deg, #0a1c65, #014be5);
  width: 100%;
  height: calc(100vh - 70px);
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 20% 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hamburger-menu .gnavi__sp-style {
    top: 55px;
    height: calc(100% - 55px);
    padding: 60px 0 0;
  }
}
.hamburger-menu .gnavi__sp-style::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}
.hamburger-menu .gnavi__sp-style .hamburger-nav > ul > li {
  margin-bottom: 1rem;
}
.hamburger-menu .gnavi__sp-style .hamburger-nav > ul > li:last-child {
  margin-bottom: 0;
}
.hamburger-menu .gnavi__sp-style.active {
  opacity: 1;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hamburger-menu .copyright {
  position: absolute;
  bottom: 2.5%;
  left: 5%;
  background: #1C803F;
  width: 90%;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  font-size: clamp(0.625rem, 0.489rem + 0.45vw, 1rem);
}
.hamburger-menu .copyright::before {
  content: "";
  position: absolute;
  height: 250%;
  aspect-ratio: 57/101;
  background: url(./images/ham-left.png) no-repeat center/contain;
  left: 5%;
  top: -250%;
}
@media screen and (max-width: 767px) {
  .hamburger-menu .copyright::before {
    height: 150%;
    top: -150%;
  }
}
.hamburger-menu .copyright::after {
  content: "";
  position: absolute;
  height: 250%;
  aspect-ratio: 163/98;
  background: url(./images/ham-right.png) no-repeat center/contain;
  right: 5%;
  top: -250%;
}
@media screen and (max-width: 767px) {
  .hamburger-menu .copyright::after {
    height: 150%;
    top: -150%;
  }
}

/* --- 下層ページ：ヘッダー透過（縦線をヘッダー裏まで通す。PC幅のみ） --- */
@media screen and (min-width: 1025px) {
  body:not(.home) header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
  }
}


/* ============================================================
   05. フッター
   ============================================================ */
.footer {
  padding: 70px 0 3.5rem;
  position: relative;
  z-index: 15;
  color: #fff;
  overflow: hidden;
  background: url(./images/footer-bg.png) no-repeat top center/cover;
}
.footer a {
  color: #fff;
}
.footer .container {
  max-width: 1200px;
}
.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.footer-left {
  width: 290px;
}
.footer-left a {
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}
.footer-left a .zenkaku {
  font-size: clamp(1.125rem, 0.989rem + 0.45vw, 1.5rem);
}
.footer-right {
  width: calc(100% - 400px);
  max-width: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .footer-right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.footer-right .footer-nav {
  border-right: 0.5px solid #fff;
  width: 360px;
}
.footer-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0;
}
@media screen and (max-width: 1024px) {
  .footer-right ul {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-right ul {
    gap: 1rem 0;
  }
}
.footer-right ul li {
  width: 50%;
  min-width: 150px;
  display: inline-block;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .footer-right ul li {
    font-size: 14px;
  }
}
.footer-right ul li a {
  color: #fff;
}
.footer-right-2 {
  width: 240px;
}
.footer-right-2 ul {
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer-right-2 ul {
    gap: 0.5rem;
  }
}
.footer-right-2 ul li {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer-right-2 ul li {
    font-size: 12px;
  }
}
.footer-right-2 .btn {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer-right-2 .btn {
    margin-bottom: 1rem;
  }
}
.footer p.copyright {
  text-align: right;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid #FFFFFF;
  font-size: 12px;
}

/* フッター内のボタン（採用エントリー：棒線装飾つき） */
.footer .btn {
  border: 1.2px solid #129E37;
  background: #fff;
  color: #129E37 !important;
  text-align: center;
  padding: 12px;
  width: 240px;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 12px;
  font-weight: bold;
}
.footer .btn::before {
  width: 4rem;
  background: #fff;
}
.footer .btn::after {
  content: "";
  position: absolute;
  right: 0;
  width: 3rem;
  background: #129E37;
  height: 1px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}


/* ============================================================
   06. トップへ戻るボタン（右下・スクロール連動）
   ============================================================ */
.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 999vh;
  background: #129E37;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top:hover {
  background: #0e7e2c;
  opacity: 1;
}
.page-top-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .page-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}


/* ============================================================
   07. お知らせ（一覧 / 詳細 / 関連 / 著者 / サイドバー）
   ============================================================ */

/* --- 共通：日付・ラベル --- */
.time-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #515151;
}
.time-wrap img {
  width: 14px;
}
.news-label {
  width: 80px;
  height: 24px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 24px;
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
}

/* --- 一覧 --- */
.news {
  padding-bottom: 5rem;
}
.news .post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 10;
}
.news .post-list .item:first-child a {
  border-top: 1px solid #E8E8E8;
}
.news .post-list .item a {
  background-color: #fff;
  padding: 2rem 0;
  display: block;
  border-bottom: 1px solid #E8E8E8;
}
@media screen and (max-width: 767px) {
  .news .post-list .item a {
    padding: 1rem 0;
  }
}
.news-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news-text-wrap {
    gap: 0.5rem 1rem;
  }
}
.news-text .category {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news-text .category {
    gap: 1rem;
  }
}
.news-text .post-title {
  color: #333333;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .news-text .post-title {
    width: 100%;
  }
}
.news-img img {
  aspect-ratio: 312/206;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

/* --- 詳細 --- */
.single .news-img {
  margin-bottom: 2rem;
}
.news-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .news-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .news-contents {
    gap: 3rem;
  }
}
.news-contents .news-right {
  width: 300px;
}
.news-contents .news-left {
  width: calc(100% - 360px);
}
@media screen and (max-width: 1280px) {
  .news-contents .news-left {
    width: 100%;
  }
}
.news-contents .news-left .content {
  width: 100%;
  margin: 0;
  font-weight: 400;
}
.news-contents .news-left .content > h2 {
  font-size: clamp(1.25rem, 1.159rem + 0.3vw, 1.5rem);
  padding: 1rem 0;
  border-bottom: 1px solid #DBDBDB;
  margin: 4rem 0 2rem;
  color: #4fae4f;
}
@media screen and (max-width: 767px) {
  .news-contents .news-left .content > h2 {
    margin: 2rem 0 1rem;
    padding: 0.5rem 0;
  }
}
.news-contents .news-left .content > h3 {
  font-size: clamp(1.125rem, 1.034rem + 0.3vw, 1.375rem);
  margin: 2rem 0 1.5rem;
  padding: 2px 1rem;
  border-left: 4px solid #4fae4f;
}
.news-contents .news-left .content > h4 {
  margin: 2rem 0 1.5rem;
  font-size: clamp(1rem, 0.955rem + 0.15vw, 1.125rem);
}
.news-contents .news-left .content table {
  width: 100%;
  border-collapse: collapse;
}
.news-contents .news-left .content table td {
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news-contents .news-left .content table td {
    padding: 0.5rem;
  }
}
.news-contents .news-left .content table td:first-child {
  font-weight: bold;
  min-width: 100px;
}
.news-contents .news-left .content table tr {
  border-top: 1px solid #4fae4f;
}
.news-contents .news-left .content table tr:last-child {
  border-bottom: 1px solid #4fae4f;
}
.news-contents .news-left .content ul {
  margin: 2rem 0;
}
.news-contents .news-left .content ul li {
  list-style: inside;
  margin: 1rem 0;
}
.news-contents .news-left .content p {
  line-height: 2;
  margin-bottom: 1rem;
}
.news-contents .post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news-contents .post-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.news-contents .post-navigation > div {
  width: calc((100% - 1.5rem) / 2);
}
@media screen and (max-width: 767px) {
  .news-contents .post-navigation > div {
    width: 100%;
  }
}
.news-contents .post-navigation > div a {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 4px 2px rgba(79, 174, 79, 0.1);
          box-shadow: 0 0 4px 2px rgba(79, 174, 79, 0.1);
  display: block;
  font-size: 14px;
  color: #666666;
}
.news-contents .post-navigation > div a span {
  color: #333;
  font-size: 1rem;
}
.news-contents .post-navigation a {
  text-decoration: none;
  font-weight: bold;
}
.news-contents .post-navigation span {
  display: block;
  margin-top: 5px;
}

/* --- サイドバー --- */
.news-right-box {
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5rem;
}
.news-right-box h2 {
  color: #4fae4f;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #DBDBDB;
}
.news-right .category-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #DBDBDB;
  font-size: 14px;
}
.news-right .category-list li span {
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 12px;
  background-color: #F4FFF4;
  color: #999999;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
}
.popular-posts a {
  display: block;
  border-bottom: 1px solid #F0F0F0;
  padding: 20px 0 1.5rem;
}
.popular-posts a .post-title {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

/* --- 関連記事 --- */
.related-posts {
  margin: 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .related-posts {
    margin: 2.5rem 0 0;
  }
}
.related-posts h2 {
  font-size: clamp(1.25rem, 1.159rem + 0.3vw, 1.5rem);
  padding: 1rem 0;
  border-bottom: 1px solid #DBDBDB;
  margin: 0 0 2rem;
  color: #4fae4f;
}
.related-posts ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .related-posts ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.related-posts ul li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .related-posts ul li {
    width: 100%;
  }
}
.related-posts ul li a {
  padding: 1.5rem 1rem;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  display: block;
}
.related-posts ul li a .news-img {
  margin-bottom: 1rem;
}
.related-posts ul li a span {
  color: #fff;
  background-color: #4fae4f;
  padding: 5px 1rem;
  border-radius: 20px;
  font-size: 12px;
  font-family: "Quicksand", sans-serif;
}
.related-posts ul li a h3 {
  font-size: 14px;
  margin-top: 10px;
}

/* --- 著者 --- */
.author {
  padding: 2rem 0;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  margin: 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
  }
}
.author h2 {
  font-size: 18px;
  width: 130px;
}
.author-txt {
  width: calc(100% - 170px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .author-txt {
    width: 100%;
  }
}
.author-txt > img {
  width: 5rem;
}
.author-txt > div {
  width: calc(100% - 6.5rem);
}
.author-txt > div h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.author-txt > div > p {
  line-height: 2;
}
.author-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}
.author-sns a {
  width: 2rem;
  display: block;
}


/* ============================================================
   08. 固定ページ用（content / policy / 404 / sitemap / ToC）
   ============================================================ */
.content {
  width: 70%;
  margin: 5rem auto;
  max-width: 1000px;
}
@media screen and (max-width: 1024px) {
  .content {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .content {
    width: 90%;
    margin: 2.5rem auto;
  }
  .content .wp-block-spacer {
    height: 3rem !important;
  }
}
.wp-block-table th {
  word-break: auto-phrase !important;
}

.policy h2 {
  font-size: clamp(1.125rem, 0.898rem + 0.76vw, 1.75rem);
  margin: 7.5rem 0 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1024px) {
  .policy h2 {
    margin: 4rem 0 1.5rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .policy h2 {
    margin: 2rem 0 1rem;
  }
}
.policy h2:first-of-type {
  margin-top: 0;
  font-size: clamp(1.25rem, 0.977rem + 0.91vw, 2rem);
}
.policy p {
  line-height: 2;
}

.simple-sitemap-wrap a {
  color: #4fae4f;
  text-decoration: underline;
}
.simple-sitemap-wrap ul, .simple-sitemap-wrap li {
  list-style: inside;
}

#ez-toc-container {
  margin: 2rem 0;
}

.not-found {
  text-align: center;
  margin: 5rem 0 7.5rem;
}


/* ============================================================
   09. TOPページ（front-page）
   ============================================================ */
.home-h2 {
  font-size: 20px;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #333;
}
.home-h3 {
  font-size: clamp(1.5rem, 0.717rem + 2.61vw, 3rem);
  margin-top: 20px;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .home-h3 {
    margin-top: 1rem;
  }
}
.home .label {
  text-align: right;
  font-size: clamp(4rem, 0.87rem + 10.43vw, 10rem);
  color: #DCDCDC;
  opacity: 0.4;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin-bottom: 40px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .home .label {
    margin-bottom: 20px;
  }
}

.home header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .home header {
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: #fff;
  }
}
.home header .header-contents {
  padding: 0rem 0 1rem 2.5%;
}
@media screen and (max-width: 1024px) {
  .home header .header-contents {
    padding: 0.5rem 5%;
  }
}
.home header a {
  color: #fff;
}
header ul li:last-child a {
  background-color: #129E37;
  padding: 1.5rem 12px;
	color: #fff !important;
}
@media screen and (max-width: 1024px) {
 header ul li:last-child a {
    color: #fff !important;
    padding: 1rem;
    text-align: center;
    max-width: 250px;
    margin: 2rem auto 0;
    border: none;
  }
}

.top-title {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .top-title {
    margin-bottom: 2.5rem;
  }
}
.top-title img {
  width: 4rem;
  margin: 0 auto 8px;
}
@media screen and (max-width: 767px) {
  .top-title img {
    width: 2rem;
  }
}
.top-title h2 {
  font-size: clamp(1.5rem, 1.318rem + 0.61vw, 2rem);
}

/* --- TOP FV --- */
.fv {
  position: relative;
  z-index: 1;
  overflow: hidden;
/*   padding-top: 5rem; */
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .fv {
/*     padding-top: 3rem; */
    margin-bottom: 20px;
  }
}
.fv::before {
  content: "";
  position: absolute;
  width: 83.5%;
  height: 90%;
  top: 0;
  right: 0;
  background: url(./images/fv-bg.png) no-repeat center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .fv::before {
    width: 100%;
    height: 95%;
  }
}
.fv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10rem;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -10;
}
.fv-bg {
  position: relative;
}
.fv-swiper {
  position: relative;
  width: 87.5%;
  margin: 0;
}
.fv-swiper img {
  display: block;
  width: 100%;
  height: auto;
}
.fv-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10rem 10%;
  color: #fff;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
  letter-spacing: 4px;
  z-index: 2;
  box-sizing: border-box;
}
@media screen and (max-width: 1600px) {
  .fv-txt {
    padding: 10% 5% 5%;
  }
}
@media screen and (max-width: 767px) {
  .fv-swiper {
    width: 90%;
  }
  .fv-txt {
    padding: 7% 5% 0;
    letter-spacing: 1px;
    font-size: 10px;
    text-shadow: 0px 0px 6px rgb(0, 0, 0);
  }
}
.fv-txt h1 {
  font-size: clamp(2rem, 0.727rem + 4.24vw, 5.5rem);
  letter-spacing: 7px;
  margin: 1rem 0;
  line-height: 1.3;
}
.fv-txt h1 + p {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .fv-txt h1 {
    font-size: 28px;
    letter-spacing: 2px;
    margin: 8px 0;
  }
  .fv-txt h1 + p {
    font-size: 10px;
  }
  .fv-txt > p:first-child {
    font-size: 10px;
  }
}

/* スクロールダウン */
.scroll {
  position: absolute;
  right: 5%;
  bottom: 30%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .scroll {
    right: 3%;
    font-size: 10px;
  }
}
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -90px;
  content: "";
  height: 75px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@-webkit-keyframes scroll {
  0% { -webkit-transform: scale(1, 0); transform: scale(1, 0); -webkit-transform-origin: 0 0; transform-origin: 0 0; }
  50% { -webkit-transform: scale(1, 1); transform: scale(1, 1); -webkit-transform-origin: 0 0; transform-origin: 0 0; }
  51% { -webkit-transform: scale(1, 1); transform: scale(1, 1); -webkit-transform-origin: 0 100%; transform-origin: 0 100%; }
  100% { -webkit-transform: scale(1, 0); transform: scale(1, 0); -webkit-transform-origin: 0 100%; transform-origin: 0 100%; }
}
@keyframes scroll {
  0% { -webkit-transform: scale(1, 0); transform: scale(1, 0); -webkit-transform-origin: 0 0; transform-origin: 0 0; }
  50% { -webkit-transform: scale(1, 1); transform: scale(1, 1); -webkit-transform-origin: 0 0; transform-origin: 0 0; }
  51% { -webkit-transform: scale(1, 1); transform: scale(1, 1); -webkit-transform-origin: 0 100%; transform-origin: 0 100%; }
  100% { -webkit-transform: scale(1, 0); transform: scale(1, 0); -webkit-transform-origin: 0 100%; transform-origin: 0 100%; }
}

/* --- TOP 企業理念 --- */
.top-strength {
  padding: 60px 0 0;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-strength {
    margin-bottom: 40px;
  }
}
.top-strength .label {
  position: absolute;
  top: 20px;
  width: 100%;
  left: 0;
  z-index: -1;
}
.top-strength-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
  background: #DADADA;
}
@media screen and (max-width: 1024px) {
  .top-strength-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .top-strength-wrap {
    margin-top: 2.5rem;
  }
}
.top-strength-item {
  padding: 3rem 1rem;
  color: #333;
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  .top-strength-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-strength-item {
    padding: 2rem 1rem;
  }
}
.top-strength-item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.top-strength-item div span {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.25rem, 0.859rem + 1.3vw, 2rem);
  display: inline-block;
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  line-height: 1;
}
.top-strength-item div span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000000;
  right: -1rem;
  top: 0;
}
.top-strength-item div h4 {
  font-size: clamp(1.25rem, 0.859rem + 1.3vw, 2rem);
  display: inline-block;
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-strength-item h5 {
  font-size: clamp(1.125rem, 0.864rem + 0.87vw, 1.625rem);
  margin: 2rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-strength-item h5 {
    margin: 1rem 0;
  }
}
.top-strength-item p {
  line-height: 2;
}

/* --- TOP 業務内容（タブ） --- */
.top-service {
  padding: 0 0 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding-bottom: 0;
  }
}
.top-service .label {
  text-align: left;
  margin: 0 0 -3.5%;
  z-index: -1;
  position: relative;
}
.top-service .container {
  max-width: none;
  width: 90%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-service .container {
    margin: 0 auto;
  }
}
.top-service .home-h3 + p {
  margin: 1.5rem 0;
  font-size: clamp(1rem, 0.87rem + 0.43vw, 1.25rem);
  font-weight: bold;
}
.top-service-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-service-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-service-wrap > .btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .top-service-wrap > .btn {
    display: block;
  }
}
.top-service-txt {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .top-service-txt {
    width: 100%;
  }
}
.top-service-txt .tab {
  margin-bottom: 3rem;
	pointer-events:none;
}
@media screen and (max-width: 1024px) {
  .top-service-txt .btn {
    display: none;
  }
}
.top-service-img {
  width: 56%;
}
@media screen and (max-width: 1024px) {
  .top-service-img {
    width: 100%;
  }
}
.top-service .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #333333;
}
.top-service .tab-list li {
  padding: 2rem 0 2rem 1rem;
  border-bottom: 1px solid #C7C7C7;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service .tab-list li {
    padding: 1rem 0 1.5rem 0.5rem;
    gap: 20px;
  }
}
.top-service .tab-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
}
@media screen and (max-width: 767px) {
  .top-service .tab-list li::before {
    display: none;
  }
}
.top-service .tab-list li span {
  font-size: clamp(1.25rem, 0.598rem + 2.17vw, 2.5rem);
  font-family: "Oswald", sans-serif;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service .tab-list li span {
    font-size: 2rem;
  }
}
.top-service .tab-list li span::before {
  content: "";
  position: absolute;
  height: 4rem;
  width: 1px;
  background-color: #333333;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top-service .tab-list li span::before {
    right: -10px;
    height: 3.5rem;
  }
}
.top-service .tab-list li h4 {
  font-size: clamp(1.125rem, 0.929rem + 0.65vw, 1.5rem);
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .top-service .tab-list li h4 {
    margin-bottom: 4px;
  }
}
.top-service .tab-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.top-service .tab-menu.current {
  border-bottom: 1px solid #0A1C65;
}
.top-service .tab-menu.current span,
.top-service .tab-menu.current h4 {
  display: inline-block;
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-service .tab-menu.current::before {
  background: url(./images/top-service-box.png) no-repeat center/contain;
}
.top-service .content-box {
  display: none;
}
.top-service .content-box img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-service .content-box img {
    margin: 0 auto 3rem;
  }
}

/* --- TOP スライダー --- */
.swiper {
  margin-top: 5rem;
}
.swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.top-slider {
  margin: 10rem 0 3.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-slider {
    margin-top: 0;
  }
}
.top-slider::before {
  content: "";
  position: absolute;
  width: 92%;
  height: 95%;
  background: url(./images/top-slider-bg.png) no-repeat center/cover;
  right: 0;
  bottom: 0;
}
.top-slider .even {
  padding-top: 6rem;
}
.top-slider .swiper-slide img {
  height: auto;
  width: 100%;
}
.top-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* --- TOP 採用 --- */
.top-recruit {
  background: url(./images/top-recruit-bg.png) no-repeat center/cover;
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}
.top-recruit .label {
  position: absolute;
  top: 20px;
  width: 100%;
  left: 0;
  z-index: -1;
}
.top-recruit .home-h2,
.top-recruit .home-h3 {
  color: #fff;
}
.top-recruit .home-h2::before {
  background: #fff;
}
.top-recruit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
  .top-recruit-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-recruit-btn .btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .top-recruit-btn .btn {
    max-width: 300px;
    font-size: 16px;
  }
}
.top-recruit-wrap {
  background-color: #fff;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-recruit-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 450px;
    margin: 3rem auto;
  }
}
.top-recruit-item {
  width: 30%;
  font-weight: bold;
  text-align: center;
  font-size: clamp(1.125rem, 0.929rem + 0.65vw, 1.5rem);
  color: #333;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-recruit-item {
    width: 100%;
  }
}
.top-recruit-item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #C0C0C0;
  right: -9%;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .top-recruit-item::before {
    display: none;
  }
}
.top-recruit-item:last-child::before {
  display: none;
}
.top-recruit-item img {
  width: 3rem;
  margin: 0 auto 1rem;
}
.top-recruit-item .top {
  display: inline-block;
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-recruit-item .middle span {
  font-size: clamp(2.5rem, 0.87rem + 5.43vw, 5.625rem);
  display: inline-block;
  background-image: linear-gradient(131deg, #0a1c65, #0a1c65 39%, #014be5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Oswald", sans-serif;
}

/* --- TOP お知らせ --- */
.top-news {
  padding: 0 0 100px;
  position: relative;
}
.top-news .container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .top-news .container {
    margin: 0 2.5% 0 auto;
  }
}
.top-news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .top-news-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-news-wrap {
    gap: 1.5rem;
  }
}
.top-news-wrap > .btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .top-news-wrap > .btn {
    display: block;
    margin: 0 auto;
  }
}
.top-news-left {
  width: 375px;
}
@media screen and (max-width: 767px) {
  .top-news-left {
    width: 100%;
  }
}
.top-news-left .btn {
  margin: 7.5rem 0 0;
}
@media screen and (max-width: 1024px) {
  .top-news-left .btn {
    display: none;
  }
}
.top-news-right {
  width: calc(100% - 450px);
  max-width: 810px;
}
@media screen and (max-width: 1024px) {
  .top-news-right {
    width: 100%;
  }
}

/* --- TOP 地図 --- */
.top-map iframe {
  width: 100%;
  height: 350px;
}


/* ============================================================
   10. 事業内容ページ（page-service / .sv-）
   ※ 共通部（ヒーロー / パンくず / CTA 等）は 03b の .lp- を使用。
     ここはサービス3項目セクションのみ。
   ============================================================ */
.sv-services {
  position: relative; background: #fff; overflow: hidden;
  padding: 100px 0 120px;
}
.sv-services-inner {
  position: relative; z-index: 2;
  width: 92%; max-width: 1180px; margin: 0 auto;
}
.sv-services-inner-bg{
	position:relative;
}
.sv-item {
  position: relative; display: flex; align-items: center;
  gap: 4%; margin-bottom: 120px; padding-top: 180px;
}
.sv-item:last-child { margin-bottom: 0; }
.sv-item-img { width: 54%; flex-shrink: 0; }
.sv-item-img-inner {
  position: relative; width: 100%; aspect-ratio: 650 / 470;
  overflow: hidden; background: #fff;
}
.sv-item-img-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv-item-body { width: 42%; position: relative; }
.sv-item-imgleft { flex-direction: row-reverse; }
.sv-item-watermark {
  position: absolute; top: 5%;
  font-family: 'Barlow', sans-serif; font-weight: 900;
  font-size: 150px; line-height: 1; color: rgba(20, 58, 122, 0.07);
  letter-spacing: 0; white-space: nowrap;
  pointer-events: none; user-select: none;
  margin: 0; z-index: 1; display: block; max-width: 100%; overflow: hidden;
}
.sv-item-default .sv-item-watermark { right: 0; left: auto; text-align: right; }
.sv-item-imgleft .sv-item-watermark { left: 0; right: auto; text-align: left; }
.sv-item-num {
  font-size: 80px; line-height: 1;
  margin: 0 0 18px; position: relative; z-index: 2;
}
.sv-item-label {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Barlow', sans-serif; font-size: 20px; font-weight: 600;
  letter-spacing: 0.18em; color: #333;
  margin: 0 0 22px; position: relative; z-index: 2;
}
.sv-item-label::before { content: ''; width: 36px; height: 1px; background: #333; }
.sv-item-title {
  font-size: 32px; font-weight: 900; line-height: 1.5; color: #333;
  margin: 0 0 22px; position: relative; z-index: 2;
}
.sv-item-desc {
  font-size: 16px; line-height: 1.95; color: #333;
  margin: 0; position: relative; z-index: 2;
}
.sv-services-inner-bg:nth-of-type(3) .sv-item-watermark{
    left: auto;
    right: 0;
}
@media (max-width: 1024px) {
  .sv-item { gap: 4%; margin-bottom: 88px; }
}
@media (max-width: 768px) {
  .sv-services { padding: 56px 0 64px; }
  .sv-item,
  .sv-item-default,
  .sv-item-imgleft {
    flex-direction: column !important; gap: 24px; margin-bottom: 64px; padding-top: 0;
  }
  .sv-item-img { width: 100%; order: 0; }
  .sv-item-body { width: 100%; order: 1; }
  .sv-item-watermark,
  .sv-item-default .sv-item-watermark,
  .sv-item-imgleft .sv-item-watermark {
    position: static; left: auto; right: auto;
    font-size: 40px; text-align: left; margin-bottom: -4px; display: block;
  }
  .sv-item-num { font-size: 44px; margin-bottom: 12px; }
  .sv-item-label { font-size: 12px; margin-bottom: 16px; }
  .sv-item-label::before { width: 24px; }
  .sv-item-title { font-size: 19px; margin-bottom: 16px; }
  .sv-item-desc { font-size: 13px; }
}


/* ============================================================
   11. 採用情報ページ（page-recruit / .rc-）
   ※ 共通部（ヒーロー / パンくず / セクション見出し / CTA）は 03b の .lp- を使用。
     ここは DATA（数字）と MESSAGE（求める人物像）セクションのみ。
   ============================================================ */

/* --- DATA（数字で見る働きやすさ） --- */
.rc-data {
  position: relative;
  background-color: var(--navy-deep);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden; padding: 96px 0 110px;
}
.rc-data-inner {
  position: relative; z-index: 2;
  width: 92%; max-width: 1180px; margin: 0 auto;
}
.rc-data .lp-sec-label { color: #fff; }
.rc-data .lp-sec-title { color: #fff; }
.rc-data .lp-sec-lead  { color: rgba(255, 255, 255, 0.85); }
.rc-data .lp-sec-watermark {
  font-family: "Roboto", sans-serif;
  font-size: clamp(4rem, 0.87rem + 10.43vw, 10rem);
  font-weight: bold;
  color: #DCDCDC;
  opacity: 0.4;
  text-align: right;
  line-height: 1;
  top: 20px;
}
.rc-data-grid {
  position: relative; z-index: 2; margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.rc-data-card {
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 24px 36px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
/* 6セル目（右下）は空＝背景写真を透過。外線（右・下）は無し */
.rc-data-card.is-empty { background: transparent; border-right: none; border-bottom: none; }
.rc-data-icon { width: 52px; height: 52px; margin-bottom: 16px; }
.rc-data-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.rc-data-label { font-size: clamp(1.125rem, 0.929rem + 0.65vw, 1.5rem); font-weight: bold; letter-spacing: 0.04em; margin-bottom: 8px; }
.rc-data-value {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  line-height: 1; margin-bottom: 14px;
}
.rc-data-value .rc-num { font-size: clamp(2.5rem, 0.87rem + 5.43vw, 5.625rem); line-height: 1; font-weight: bold; }
.rc-data-value .rc-unit { font-size: clamp(1.125rem, 0.929rem + 0.65vw, 1.5rem); font-weight: bold; color: #333; }
.rc-data-cap { font-size: clamp(1.125rem, 0.929rem + 0.65vw, 1.5rem); font-weight: bold; color: #333; margin: 0; }

/* --- MESSAGE（求める人物像） --- */
.rc-message { position: relative; background: #fff; overflow: hidden; padding: 100px 0 110px; }
.rc-message-inner {
  position: relative; z-index: 2;
  width: 92%; max-width: 1180px; margin: 0 auto;
}
.rc-message .lp-sec-label { color: #333; }
.rc-message .lp-sec-title { color: #1a1f2e; }
.rc-message .lp-sec-lead  { color: #515151; }
.rc-message .lp-sec-watermark { color: rgba(20, 58, 122, 0.06); top: 12px; }
.rc-message-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px;
}
.rc-msg-card {
  background: #f3faff; padding: 40px 36px 36px;
}
.rc-message-grid .rc-msg-card:nth-child(1) { background: #f3faff; } /* 経験者の方へ */
.rc-message-grid .rc-msg-card:nth-child(2) { background: #f1fffa; } /* 未経験の方へ */
.rc-message-grid .rc-msg-card:nth-child(2) .rc-msg-tag { background-image: linear-gradient(128deg, #004319, #004319 48%, #00aa11); }
.rc-message-grid .rc-msg-card:nth-child(2) .rc-msg-title { border-bottom-color: var(--green); }
.rc-msg-tag {
  display: inline-block; background-image: linear-gradient(128deg, #0a1c65, #0a1c65 48%, #014be5); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 18px; margin-bottom: 22px;
}
.rc-msg-title {
  font-size: 24px; font-weight: 900; line-height: 1.5; color: #1a1f2e;
  margin: 0 0 24px; padding-bottom: 20px; border-bottom: 1px solid var(--navy-deep);
}
.rc-msg-body { margin: 0 0 26px; }
.rc-msg-body p { font-size: 15px; line-height: 1.95; color: #515151; margin: 0 0 12px; }
.rc-msg-body p:last-child { margin-bottom: 0; }
.rc-msg-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.rc-msg-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #cfe3d6;
  font-size: 13px; font-weight: 700; color: #1a1f2e; padding: 7px 14px;
}
.rc-msg-chip svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }

/* --- 採用情報 レスポンシブ --- */
@media (max-width: 1024px) {
  .rc-data-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-data-card.is-empty { display: none; }
}
@media (max-width: 768px) {
  .rc-data { padding: 56px 0 64px; }
  .rc-data-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .rc-data-card { padding: 28px 20px; }
  .rc-data-icon { width: 46px; height: 46px; }
  .rc-message { padding: 56px 0 64px; }
  .rc-message-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
  .rc-msg-card { padding: 28px 22px; }
  .rc-msg-title { font-size: 19px; }
  .rc-msg-body p { font-size: 13px; }
}


/* ============================================================
   12. 先輩の声ページ（page-voice / .vo-）
   ※ 共通部（ヒーロー / パンくず / セクション見出し）は 03b の .lp- を使用。
     ここは INTERVIEW（社員インタビュー）セクション。
   ============================================================ */
.vo-interview {
  position: relative; background: #fff; overflow: hidden;
  padding: 100px 0 110px;
}
.vo-interview-inner {
  position: relative; z-index: 2;
  width: 92%; max-width: 1180px; margin: 0 auto;
}
.vo-interview .lp-sec-label { color: #333; }
.vo-interview .lp-sec-title { color: #1a1f2e; }
.vo-interview .lp-sec-lead  { color: #515151; }
.vo-interview .lp-sec-watermark { color: rgba(20, 58, 122, 0.06); top: 12px; }

/* インタビュー 2カラム */
.vo-interview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px;
  margin-top: 56px;
}
.vo-card {
  position: relative;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.vo-card-body { padding: 0 32px 40px; }
.vo-card-img { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; }
.vo-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vo-card-name { font-size: 18px; font-weight: bold; color: #1a1f2e; margin: 28px 0 14px; }

/* 属性タグ（枠線・角なし） */
.vo-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.vo-card-tags li { font-size: 12px; font-weight: 500; color: #1a1f2e; border: 1px solid #b9c2cf; padding: 5px 12px; }

/* 引用見出し（上に区切り線＋左に青い引用符） */
.vo-card-quote {
  position: relative;
  border-top: 1px solid #d4dae2;
  margin: 0 0 32px; padding: 30px 0 0 46px;
  font-size: 22px; font-weight: 900; line-height: 1.55; color: #1a1f2e;
}
.vo-card-quote::before {
  content: '\201C'; position: absolute; left: 0; top: 20px;
  font-family: 'Barlow', sans-serif; font-weight: 900;
  font-size: 46px; line-height: 1; color: var(--blue);
}

/* 小見出し（縦棒）＋本文 */
.vo-block { margin-bottom: 24px; }
.vo-block-title {
  font-size: 16px; font-weight: bold; color: #1a1f2e; line-height: 1.4;
  border-left: 4px solid var(--navy-deep); padding-left: 12px; margin: 0 0 12px;
}
.vo-block-text { font-size: 15px; line-height: 1.95; color: #515151; margin: 0; }

/* MESSAGE ボックス */
.vo-message { background: #f4f5f7; padding: 28px 30px 30px; margin-top: 4px; }
.vo-message-label {
  font-family: 'Barlow', sans-serif; font-weight: 700; letter-spacing: 0.1em;
  color: var(--navy-deep); font-size: 15px; margin: 0 0 12px;
}
.vo-message-text { font-size: 14px; line-height: 1.95; color: #515151; margin: 0; }

/* --- 先輩の声 レスポンシブ --- */
@media (max-width: 768px) {
  .vo-interview { padding: 56px 0 64px; }
  .vo-interview-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 28px; }
  .vo-card-body { padding: 0 22px 28px; }
  .vo-card-name { margin: 20px 0 12px; }
  .vo-card-quote { font-size: 18px; padding: 24px 0 0 38px; margin-bottom: 24px; }
  .vo-card-quote::before { font-size: 38px; top: 16px; }
  .vo-block-text { font-size: 13px; }
  .vo-message-text { font-size: 13px; }
}

/* --- CROSS TALK（若手社員座談会） --- */
.vo-talk {
  position: relative; background: #fff; overflow: hidden;
  padding: 24px 0 120px;
}
.vo-talk-inner {
  position: relative; z-index: 2;
  width: 92%; max-width: 1180px; margin: 0 auto;
}
.vo-talk .lp-sec-label { color: #333; }
.vo-talk .lp-sec-title { color: #1a1f2e; }
.vo-talk .lp-sec-lead  { color: #515151; }
.vo-talk .lp-sec-watermark { color: rgba(20, 58, 122, 0.06); top: 0; }

.vo-talk-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 48px; align-items: start;
}

/* 左：画像 */
.vo-talk-img {
  height: 620px;
  background-image: url(./images/voice/voice-crosstalk.jpg);
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}

/* 右：座談会トークカード */
.vo-talk-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 48px 44px 44px;
}
.vo-talk-head { text-align: center; margin-bottom: 36px; }
.vo-talk-head-label {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--navy-deep); margin: 0 0 14px;
}
.vo-talk-head-label::before,
.vo-talk-head-label::after { content: ''; width: 32px; height: 1px; background: var(--navy-deep); }
.vo-talk-head-title { font-size: 26px; font-weight: 900; color: #1a1f2e; margin: 0 0 14px; }
.vo-talk-head-title .vo-talk-accent { color: var(--blue); }
.vo-talk-head-lead { font-size: 14px; line-height: 1.8; color: #515151; margin: 0; }

/* 設問 */
.vo-talk-q + .vo-talk-q { margin-top: 32px; }
.vo-talk-q-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid #d4dae2; margin-bottom: 4px;
}
.vo-talk-q-num { font-family: 'Barlow', sans-serif; font-size: 22px; font-weight: 900; color: #1a1f2e; }
.vo-talk-q-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--navy-deep); color: #fff;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700;
}
.vo-talk-q-text { font-size: 18px; font-weight: bold; color: #1a1f2e; line-height: 1.4; margin: 0; }

/* 回答 */
.vo-talk-answer {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid #ebedf1;
}
.vo-talk-answer:last-child { border-bottom: none; }
.vo-talk-person { display: flex; align-items: center; gap: 10px; width: 110px; flex-shrink: 0; }
.vo-talk-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; color: #fff;
}
.vo-talk-avatar.is-navy { background: var(--navy-deep); }
.vo-talk-avatar.is-blue { background: var(--blue); }
.vo-talk-name { font-size: 13px; font-weight: bold; color: #1a1f2e; }
.vo-talk-text {
  flex: 1; font-size: 14px; line-height: 1.9; color: #515151; margin: 0;
  padding-left: 24px; border-left: 1px solid #d4dae2;
}
.vo-talk-note { font-size: 12px; color: #999; margin: 32px 0 0; }

/* CROSS TALK レスポンシブ */
@media (max-width: 1024px) {
  .vo-talk-layout { grid-template-columns: 1fr; gap: 32px; }
  .vo-talk-img { height: auto; aspect-ratio: 4 / 3; }
}
@media (max-width: 768px) {
  .vo-talk { padding: 8px 0 64px; }
  .vo-talk-card { padding: 28px 18px; border-radius: 12px; }
  .vo-talk-head-title { font-size: 20px; }
  .vo-talk-q-text { font-size: 16px; }
  .vo-talk-answer { flex-direction: column; gap: 10px; padding: 16px 0; }
  .vo-talk-person { width: auto; }
  .vo-talk-text { padding-left: 0; border-left: none; }
}

/* --- CROSS TALK 別パターン：LINEトーク画面風（.vo-chat） --- */
/* ※ 既存 .vo-talk-layout（画像＋カード版）と併存可。HTML側でどちらを使うか選ぶ */
.vo-chat {
  max-width: 560px; margin: 0 auto 0;
  border-radius: 18px; overflow: hidden;
  background: #e9eef4;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.vo-chat-header {
  background: #fff; text-align: center;
  padding: 16px; border-bottom: 1px solid #e3e6ea;
}
.vo-chat-header-title { font-size: 16px; font-weight: bold; color: #1a1f2e; margin: 0; }
.vo-chat-header-sub { font-size: 11px; color: #6b7380; margin: 4px 0 0; }
.vo-chat-body { padding: 20px 18px 26px; }

/* 設問（中央の区切りラベル） */
.vo-chat-q { text-align: center; margin: 26px 0 18px; }
.vo-chat-q:first-child { margin-top: 4px; }
.vo-chat-q-label {
  display: inline-block; max-width: 92%;
  background: rgba(10, 40, 86, 0.85); color: #fff;
  font-size: 13px; font-weight: bold; line-height: 1.5;
  padding: 8px 18px; border-radius: 999px;
}

/* 発言行 */
.vo-chat-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.vo-chat-row.is-right { flex-direction: row-reverse; }
.vo-chat-avatar {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 50%;
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; color: #fff;
}
.vo-chat-avatar.is-navy { background: var(--navy-deep); }
.vo-chat-avatar.is-blue { background: var(--blue); }
.vo-chat-msg { max-width: 78%; }
.vo-chat-row.is-right .vo-chat-msg { text-align: right; }
.vo-chat-name { display: block; font-size: 11px; color: #6b7380; margin: 0 0 4px; }
.vo-chat-bubble {
  position: relative; display: inline-block; text-align: left;
  padding: 11px 15px; border-radius: 16px;
  font-size: 14px; line-height: 1.7;
  background: #fff; color: #333;
}
.vo-chat-row.is-left .vo-chat-bubble { border-top-left-radius: 4px; }
.vo-chat-row.is-left .vo-chat-bubble::before {
  content: ''; position: absolute; left: -6px; top: 12px;
  border: 6px solid transparent; border-right-color: #fff; border-left: 0;
}
.vo-chat-row.is-right .vo-chat-bubble {
  background: var(--green); color: #fff; border-top-right-radius: 4px;
}
.vo-chat-row.is-right .vo-chat-bubble::before {
  content: ''; position: absolute; right: -6px; top: 12px;
  border: 6px solid transparent; border-left-color: var(--green); border-right: 0;
}
.vo-chat-note { font-size: 11px; color: #999; text-align: center; margin: 22px 0 0; }

@media (max-width: 768px) {
  .vo-chat { margin-top: 28px; border-radius: 14px; }
  .vo-chat-body { padding: 16px 12px 22px; }
  .vo-chat-msg { max-width: 80%; }
  .vo-chat-bubble { font-size: 13px; }
}


/* ============================================================
   13. お知らせ / ブログ アーカイブ（category / .nw-）
   ※ ヒーロー・パンくずは 03b の .lp- を使用。ここは一覧リスト。
   ============================================================ */
.nw-section { position: relative; background: #fff; padding: 80px 0 100px; }
.nw-inner { width: 92%; max-width: 1080px; margin: 0 auto; }

/* 一覧（1行 = 日付 / カテゴリ / タイトル / 矢印） */
.nw-list { border-top: 1px solid var(--line); }
.nw-item {
  display: flex; align-items: center; gap: 28px;
  padding: 26px 12px; border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}
.nw-item:hover { background: #f7f9fb; }
.nw-date {
  flex-shrink: 0; width: 96px;
  font-family: 'Barlow', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: 0.04em; color: var(--navy-deep);
}
.nw-cat {
  flex-shrink: 0; min-width: 96px; text-align: center;
  padding: 5px 16px; border: 1px solid #b9c2cf; border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--navy-deep); line-height: 1.4;
}
.nw-title {
  flex: 1; font-size: 15px; line-height: 1.7; color: var(--text);
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
}
.nw-item:hover .nw-title { color: var(--navy-deep); }
.nw-arrow {
  flex-shrink: 0; width: 8px; height: 8px;
  border-top: 2px solid #9aa3b0; border-right: 2px solid #9aa3b0;
  transform: rotate(45deg); transition: border-color 0.25s ease;
}
.nw-item:hover .nw-arrow { border-color: var(--navy-deep); }
.nw-empty { text-align: center; color: var(--text); padding: 60px 0; font-size: 15px; }

/* ページネーション（中央寄せ・四角・濃紺カレント） */
.nw-pager {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 8px; margin-top: 56px;
}
.nw-pager .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 10px;
  border: 1px solid #d9dde3; background: #fff; color: var(--text);
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 2px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.nw-pager a.page-numbers:hover { border-color: var(--navy-deep); color: var(--navy-deep); }
.nw-pager .page-numbers.current { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.nw-pager .page-numbers.dots { border: none; background: transparent; min-width: 24px; }

@media (max-width: 767px) {
  .nw-section { padding: 48px 0 64px; }
  .nw-item { gap: 12px; padding: 18px 6px; flex-wrap: wrap; }
  .nw-date { width: auto; font-size: 13px; }
  .nw-cat { min-width: 0; font-size: 11px; padding: 4px 12px; }
  .nw-title { flex-basis: 100%; order: 3; font-size: 14px; -webkit-line-clamp: 2; }
  .nw-arrow { display: none; }
  .nw-pager { gap: 6px; margin-top: 40px; }
  .nw-pager .page-numbers { min-width: 36px; height: 36px; font-size: 14px; }
}


/* ============================================================
   14. 会社概要ページ（page-company / .co-）
   ※ ヒーロー・パンくず・セクション見出しは 03b の .lp- を使用。
     ここはヒーローのキャッチ追加と MESSAGE（代表挨拶）。
   ============================================================ */
/* ヒーロー：タイトル下に太字キャッチ＋リード（会社概要のみ） */
.lp-hero.co-hero .lp-hero-title { margin-bottom: 16px; }
.co-hero-catch {
  font-size: 22px; font-weight: bold; line-height: 1.5;
  color: var(--text); margin: 0 0 18px;
}

/* MESSAGE（代表挨拶） */
.co-message { position: relative; background: #fff; overflow: hidden; padding: 100px 0 110px; }
.co-message-inner { position: relative; z-index: 2; width: 92%; max-width: 1180px; margin: 0 auto; }
.co-message .lp-sec-label { color: #333; }
.co-message .lp-sec-title { color: #1a1f2e; }
.co-message .lp-sec-lead  { color: #515151; }
.co-message .lp-sec-watermark { color: rgba(20, 58, 122, 0.06); top: 12px; }

.co-msg-layout {
/*   display: grid; grid-template-columns: 440px 1fr; gap: 64px;
  align-items: start;  */
	margin-top: 56px;
	display:block;
}
/* 左：代表写真＋ネームプレート */
.co-msg-figure { position: relative; }
.co-msg-photo { display: block; width: 100%; height: auto; }
.co-msg-nameplate {
  position: absolute; left: -24px; bottom: 0;
  background: #fff; padding: 16px 28px; min-width: 260px;
	position:relative;
	width:fit-content;
	margin:0 0 0 auto;
}
.co-msg-line { display: block; width: 100%; height: 1px; background: var(--navy-deep); margin-bottom: 14px; }
.co-msg-person { display: flex; align-items: baseline; gap: 12px; margin: 0 0 6px; }
.co-msg-role { font-size: 13px; font-weight: 500; color: var(--text); }
.co-msg-name { font-size: 22px; font-weight: bold; letter-spacing: 0.08em; color: var(--text); }
.co-msg-name-en { font-family: 'Barlow', sans-serif; font-size: 12px; letter-spacing: 0.18em; color: #8c93a0; margin: 0; }

/* 右：見出し＋本文 */
.co-msg-body { padding-top: 4px; }
.co-msg-title { font-size: 28px; font-weight: 900; line-height: 1.55; color: var(--text); margin: 0 0 28px; }
.co-msg-text { font-size: 15px; line-height: 2; color: #515151; margin: 0 0 1.6em; }
.co-msg-text:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .co-msg-layout { grid-template-columns: 1fr; gap: 48px; }
  .co-msg-figure { max-width: 440px; }
}
@media (max-width: 767px) {
  .co-message { padding: 56px 0 64px; }
  .co-hero-catch { font-size: 18px; }
  .co-msg-nameplate { left: 0; min-width: 0; padding: 14px 20px; }
  .co-msg-name { font-size: 19px; }
  .co-msg-title { font-size: 22px; margin-bottom: 20px; }
  .co-msg-text { font-size: 14px; }
}

/* --- OFFICE & ENVIRONMENT（こだわりの社屋） --- */
.co-office { position: relative; background: #fff; overflow: hidden; padding: 100px 0 110px; }
.co-office-inner { position: relative; z-index: 2; width: 92%; max-width: 1180px; margin: 0 auto; }
.co-office .lp-sec-label { color: #333; }
.co-office .lp-sec-title { color: #1a1f2e; }
.co-office .lp-sec-lead  { color: #515151; }
.co-office .lp-sec-watermark { color: rgba(20, 58, 122, 0.06); top: 12px; }

.co-office-layout {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px;
  align-items: center; margin-top: 56px;
}
.co-office-photo { display: block; width: 100%; height: auto; }
.co-office-title { font-size: 28px; font-weight: 900; line-height: 1.55; color: var(--text); margin: 0 0 32px; }
.co-office-text { font-size: 15px; line-height: 2; color: #515151; margin: 0 0 1.4em; }
.co-office-text:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .co-office-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
  .co-office { padding: 56px 0 64px; }
  .co-office-title { font-size: 22px; margin-bottom: 20px; }
  .co-office-text { font-size: 14px; }
}

/* --- RELAXATION SPACE（自然と触れ合う自由な空間） --- */
.co-relax { position: relative; background: #fff; overflow: hidden; padding: 0 0 110px; }
.co-relax-inner { position: relative; z-index: 2; width: 92%; max-width: 1180px; margin: 0 auto; }
.co-relax .lp-sec-label { color: #333; }
.co-relax .lp-sec-title { color: #1a1f2e; }
.co-relax .lp-sec-lead  { color: #515151; }

.co-relax-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* 季節の花ブロック（見出し＋EN｜縦線｜本文） */
.co-relax-flower { display: flex; align-items: flex-start; gap: 32px; margin-top: 44px; }
.co-relax-flower-head { flex-shrink: 0; }
.co-relax-flower-title { font-size: 22px; font-weight: 900; color: var(--text); margin: 0 0 6px; }
.co-relax-flower-en { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--navy-deep); margin: 0; }
.co-relax-flower-text { border-left: 1px solid #d4dae2; padding-left: 32px; font-size: 14px; line-height: 1.9; color: #515151; margin: 0; }

/* 右：画像（1枚） */
.co-relax-gallery { display: block; }
.co-relax-gallery img { display: block; width: 100%; height: auto; }

@media (max-width: 1024px) {
  .co-relax-layout { grid-template-columns: 1fr; gap: 40px; }
  .co-relax-gallery { max-width: 520px; }
}
@media (max-width: 767px) {
  .co-relax { padding: 0 0 64px; }
  .co-relax-flower { flex-direction: column; gap: 14px; margin-top: 32px; }
  .co-relax-flower-text { border-left: none; padding-left: 0; }
}

/* --- COMPANY PROFILE（会社概要表） --- */
.co-profile { position: relative; background: #fff; overflow: hidden; padding: 0 0 120px; }
.co-profile-inner { position: relative; z-index: 2; width: 92%; max-width: 1180px; margin: 0 auto; }
.co-profile .lp-sec-label { color: #333; }
.co-profile .lp-sec-title { color: #1a1f2e; }
.co-profile .lp-sec-lead  { color: #515151; }

.co-profile-table {
  width: 100%; border-collapse: collapse; margin-top: 48px;
}
.co-profile-table th,
.co-profile-table td {
  text-align: left; vertical-align: top;
  padding: 22px 28px;
  font-size: 15px; line-height: 1.85;
}
.co-profile-table th {
  width: 220px; background: #f5f6f8; font-weight: bold; color: var(--text);
  border-top: 1px solid var(--navy-deep);
  border-bottom: 1px solid var(--navy-deep);
}
.co-profile-table td {
  background: #fff; color: #515151;
  border-top: 1px solid #afafaf;
  border-bottom: 1px solid #afafaf;
}
.co-profile-list { list-style: none; margin: 0; padding: 0; }
.co-profile-list li { position: relative; padding-left: 1.1em; margin-bottom: 0.4em; }
.co-profile-list li:last-child { margin-bottom: 0; }
.co-profile-list li::before { content: '・'; position: absolute; left: 0; }

@media (max-width: 767px) {
  .co-profile { padding: 0 0 64px; }
  .co-profile-table { margin-top: 28px; }
  .co-profile-table th, .co-profile-table td { display: block; width: 100%; padding: 14px 16px; font-size: 14px; }
}


/* ============================================================
   15. 個別投稿ページ（single / .sg-）
   ※ 旧 single.php のインライン <style> から移植。
     変数(--sg-*)は .sg-section 内で定義。
   ============================================================ */
/* ===================================================
   個別投稿ページ専用スタイル
   .sg- プレフィックスで他ページへの干渉を防止
   =================================================== */

.sg-section {
  --sg-navy-deep: #0a2856;
  --sg-navy: #143a7a;
  --sg-navy-light: #1e4d9a;
  --sg-white: #ffffff;
  --sg-bg: #f4f6f8;
  --sg-border: #e3e6ea;
  --sg-text: #1a1f2e;
  --sg-gray-text: #6b7380;

  position: relative;
  padding: 80px 0 120px;
  background: linear-gradient(180deg, var(--sg-white) 0%, var(--sg-bg) 100%);
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--sg-text);
  box-sizing: border-box;
}
.sg-section *, .sg-section *::before, .sg-section *::after { box-sizing: border-box; }
.sg-section a { color: inherit; text-decoration: none; }

.sg-grid-lines {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
  max-width: 1400px; margin: 0 auto;
  left: 50%; transform: translateX(-50%); width: 90%;
}
.sg-grid-lines span { border-right: 1px solid rgba(20, 58, 122, 0.06); }
.sg-grid-lines span:last-child { border-right: none; }

.sg-watermark {
  position: absolute; top: 80px; right: -3%;
  font-family: 'Barlow', sans-serif; font-weight: 900;
  font-size: clamp(120px, 18vw, 280px); line-height: 0.85;
  color: rgba(20, 58, 122, 0.05); letter-spacing: -0.02em;
  white-space: nowrap; pointer-events: none; user-select: none; margin: 0;
}

.sg-container {
  width: 90%; max-width: 880px; margin: 0 auto;
  position: relative; z-index: 2;
}

/* ========== パンくず ========== */
.sg-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--sg-gray-text); margin: 0 0 40px;
}
.sg-breadcrumb a {
  color: var(--sg-gray-text);
  transition: opacity 0.25s ease;
}
.sg-breadcrumb a:hover { opacity: 0.6; }
.sg-breadcrumb-sep {
  font-family: 'Barlow', sans-serif; opacity: 0.5;
}
.sg-breadcrumb-current { color: var(--sg-navy-deep); font-weight: 700; }

/* ========== セクションラベル ========== */
.sg-section-label {
  display: flex; align-items: center; gap: 16px;
  margin: 0 0 20px;
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--sg-navy-deep);
}
.sg-section-label::before {
  content: ''; width: 42px; height: 1px; background: var(--sg-navy-deep);
}

/* ========== 記事ヘッダー ========== */
.sg-article-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--sg-border);
}

.sg-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.sg-date {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.08em;
  color: #333;
}
.sg-category {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 4px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  background: var(--sg-navy-deep); color: var(--sg-white);
  border-radius: 2px;
}
.sg-category + .sg-category { margin-left: 6px; }
.sg-category-link { color: var(--sg-white) !important; }
.sg-category-link:hover { opacity: 0.85; }

.sg-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--sg-text);
  margin: 0;
}

/* ========== アイキャッチ ========== */
.sg-thumbnail {
  margin: 0 0 56px;
  position: relative;
  overflow: hidden;
  background: var(--sg-bg);
}
.sg-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== 本文 ========== */
.sg-content {
  font-size: 16px;
  line-height: 1.95;
  color: var(--sg-text);
  word-wrap: break-word;
}

/* 本文内のタグ装飾 */
.sg-content p { margin: 0 0 1.6em; }
.sg-content p:last-child { margin-bottom: 0; }

.sg-content h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  color: var(--sg-text);
  margin: 2.4em 0 1em;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--sg-text);
  line-height: 1.45;
}

.sg-content h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--sg-text);
  margin: 2em 0 0.8em;
  padding-left: 18px;
  border-left: 5px solid var(--sg-navy-deep);
  line-height: 1.5;
}

.sg-content h4 {
  font-size: 17px; font-weight: 700;
  color: var(--sg-text);
  margin: 1.8em 0 0.6em;
  line-height: 1.5;
}

.sg-content a {
  color: var(--sg-navy-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.25s ease;
}
.sg-content a:hover { opacity: 0.7; }

.sg-content strong, .sg-content b { font-weight: 700; color: var(--sg-text); }

.sg-content ul, .sg-content ol {
  margin: 1.2em 0;
  padding-left: 1.6em;
}
.sg-content li { margin-bottom: 0.6em; line-height: 1.85; }

.sg-content blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  background: var(--sg-bg);
  border-left: 4px solid var(--sg-navy-light);
  font-size: 15px;
  color: var(--sg-gray-text);
  line-height: 1.85;
}

.sg-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.8em auto;
}

.sg-content figure { margin: 2em 0; }
.sg-content figure img { margin: 0; } /* figure側で余白を持つため二重マージン防止 */
.sg-content figcaption,
.sg-content .wp-element-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--sg-gray-text);
  text-align: center;
}

/* テーブル（ブロックエディタ wp-block-table / 素の <table> 両対応） */
.sg-content .wp-block-table { margin: 2em 0; overflow-x: auto; }
.sg-content .wp-block-table > table { margin: 0; }
.sg-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 14px;
  background: #fff;
}
/* セルはコアCSS（.wp-block-table td 等）に確実に勝つよう詳細度を上げる */
.sg-content table th,
.sg-content table td {
  padding: 14px 18px;
  border: 1px solid var(--sg-border);
  text-align: left;
  line-height: 1.7;
  vertical-align: top;
}
.sg-content table th {
  background: var(--sg-bg);
  font-weight: 700;
  color: #333;
}
/* ブロックエディタの thead/tfoot 太線をリセット（セル枠で見せる） */
.sg-content .wp-block-table thead,
.sg-content .wp-block-table tfoot { border: 0; }

.sg-content hr {
  border: none;
  border-top: 1px solid var(--sg-border);
  margin: 3em 0;
}

.sg-content code {
  background: var(--sg-bg);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.92em;
  font-family: ui-monospace, Menlo, monospace;
  color: var(--sg-navy-deep);
}

.sg-content pre {
  background: var(--sg-navy-deep);
  color: #e8edf6;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 2em 0;
  font-size: 13px;
  line-height: 1.7;
}
.sg-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

/* ========== 投稿ページネーション（記事内分割） ========== */
.sg-page-links {
  margin: 48px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--sg-border);
  font-size: 14px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.sg-page-links > span:first-child {
  font-weight: 700; color: var(--sg-navy-deep); margin-right: 8px;
}
.sg-page-links a, .sg-page-links > span:not(:first-child) {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border: 1px solid var(--sg-border);
  background: var(--sg-white);
  color: var(--sg-text);
  transition: all 0.25s ease;
}
.sg-page-links a:hover {
  border-color: var(--sg-navy-deep);
  color: var(--sg-navy-deep);
}

/* ========== 前後の記事ナビ ========== */
.sg-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--sg-border);
}
.sg-post-nav-item {
  display: block;
  padding: 20px 24px;
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sg-post-nav-item:hover {
  border-color: var(--sg-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 40, 86, 0.08);
}
.sg-post-nav-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--sg-navy-light);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.sg-post-nav-item-next { text-align: right; }
.sg-post-nav-item-next .sg-post-nav-label { justify-content: flex-end; }
.sg-post-nav-title {
  font-size: 14px; line-height: 1.6;
  color: var(--sg-text);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== 一覧へ戻る ========== */
.sg-back-wrap {
  display: flex; justify-content: center;
  margin-top: 56px;
}
.sg-back {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 40px;
  background: var(--sg-navy-deep);
  color: var(--sg-white) !important;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em;
  border: none !important;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.sg-back:hover {
  background: var(--sg-navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 40, 86, 0.25);
  color: var(--sg-white) !important;
}
.sg-back::before, .sg-back::after { display: none !important; content: none !important; }
.sg-back-arrow {
  width: 18px; height: 1.5px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
  display: inline-block;
}
.sg-back-arrow::before {
  content: ''; position: absolute;
  left: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(-45deg);
}
.sg-back:hover .sg-back-arrow { width: 26px; }

/* ===================================================
   テーマ側の演出（position: sticky/fixed/absolute や
   transform によるスクロールアニメ）でテキストが重なる
   不具合の打ち消し。全幅（PC含む）で適用。
   ※装飾の絶対配置（ウォーターマーク/グリッド線/戻る
     ボタン矢印）や、前後ナビ・戻るボタンのhover transform
     には影響させない。
   =================================================== */
.sg-section { position: relative !important; }
.sg-section .sg-container {
  position: relative !important;
  top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
  transform: none !important; will-change: auto !important; opacity: 1 !important;
  filter: none !important; -webkit-filter: none !important;
}
.sg-section .sg-breadcrumb,
.sg-section .sg-article,
.sg-section .sg-article-header,
.sg-section .sg-section-label,
.sg-section .sg-meta,
.sg-section .sg-date,
.sg-section .sg-title,
.sg-section .sg-thumbnail,
.sg-section .sg-content {
  position: static !important;
  top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
  transform: none !important; will-change: auto !important; opacity: 1 !important;
  animation: none !important;
  filter: none !important; -webkit-filter: none !important; text-shadow: none !important;
}

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .sg-section { padding: 56px 0; position: relative !important; }

  /* SP時はウォーターマークを非表示 */
  .sg-section .sg-watermark { display: none !important; }

  /* テーマ側のposition固定・シャドウを強制リセット */
  .sg-section .sg-container,
  .sg-section .sg-article-header,
  .sg-section .sg-title,
  .sg-section .sg-meta,
  .sg-section .sg-breadcrumb {
    position: static !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    will-change: auto !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: transparent !important;
  }

  .sg-breadcrumb { font-size: 11px; gap: 6px; margin-bottom: 32px; }
  .sg-section-label { font-size: 13px; margin-bottom: 16px; }
  .sg-section-label::before { width: 28px; }

  .sg-article-header { margin-bottom: 40px; padding-bottom: 24px; }
  .sg-meta { gap: 12px; margin-bottom: 16px; }
  .sg-date { font-size: 13px; }
  .sg-category { font-size: 10px; padding: 3px 10px; }
  .sg-title { font-size: 22px; line-height: 1.5; }

  .sg-thumbnail { margin-bottom: 40px; }
  .sg-content { font-size: 15px; line-height: 1.9; }
  .sg-content h2 { padding-bottom: 18px; }
  .sg-content blockquote { padding: 18px 20px; font-size: 14px; }

  .sg-post-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 56px;
    padding-top: 32px;
  }
  .sg-post-nav-item { padding: 16px 18px; }
  .sg-post-nav-item-next { text-align: left; }
  .sg-post-nav-item-next .sg-post-nav-label { justify-content: flex-start; }

  .sg-back-wrap { margin-top: 40px; }
  .sg-back { width: 100%; justify-content: center; padding: 16px 24px; font-size: 14px; }
}

@media (max-width: 480px) {
  .sg-title { font-size: 20px; }
}


/* ============================================================
   16. お問い合わせページ2（page-contact2 / .cp-）
   ※ ヒーロー・パンくずは 03b の .lp- を使用（.lp-page 内）。
     ここは採用バナー / フォーム枠 / CF7装飾 / OTHER CONTACT。
   ============================================================ */

/* --- 採用誘導バナー（画像1枚） --- */
.cp-recruit-section { position: relative; background: #fff; padding: 64px 0 0; }
.cp-recruit-inner { width: 92%; max-width: 1180px; margin: 0 auto; }
.cp-recruit { display: block; }
.cp-recruit img { display: block; width: 100%; height: auto; }

/* --- フォームセクション（薄グレー枠） --- */
.cp-form-section { position: relative; background: #fff; padding: 56px 0 100px; }
.cp-form-inner { width: 92%; max-width: 1180px; margin: 0 auto; }
.cp-form-box { background: #f5f6f8; border: 1px solid var(--line); padding: 64px 56px; }
.cp-form-lead { text-align: center; font-size: 16px; line-height: 1.9; color: var(--text); margin: 0 0 48px; }

/* --- CF7 フォーム本体 --- */
.cp-form .wpcf7-form { margin: 0; }
.cp-field { margin-bottom: 28px; }
.cp-field-head { display: flex; align-items: center; margin-bottom: 12px; flex-wrap: nowrap; }
.cp-field-head br { display: none; }
.cp-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; height: 26px; padding: 0 10px; border-radius: 3px; margin-right: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: #fff;
}
.cp-badge-req { background: var(--navy-deep); }
.cp-badge-any { background: #8a909c; }
.cp-label { font-size: 16px; font-weight: 700; color: var(--text); }

/* 入力欄（CF7コントロール） */
.cp-form .cp-input,
.cp-form .cp-select,
.cp-form .cp-textarea {
  width: 100%; display: block;
  background: #fff; border: 1px solid #d8dce2; border-radius: 6px;
  padding: 15px 18px; font-size: 15px; color: var(--text); line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none; appearance: none;
}
.cp-form .cp-input:focus,
.cp-form .cp-select:focus,
.cp-form .cp-textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 79, 214, 0.12);
}
.cp-form .cp-textarea { min-height: 220px; resize: vertical; }
.cp-form .cp-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a2856' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px;
}
.cp-field-note { font-size: 13px; color: #8a909c; margin: 8px 0 0; }

/* 個人情報の取り扱い */
.cp-privacy { background: #fff; border: 1px solid var(--line); padding: 36px 40px; margin: 8px 0 0; }
.cp-privacy-title { font-size: 16px; font-weight: 700; color: var(--text); margin: 0 0 24px; }
.cp-privacy-text { font-size: 14px; line-height: 1.9; color: #515151; margin: 0 0 10px; }
.cp-privacy-text:last-of-type { margin-bottom: 8px; }
.cp-privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cp-privacy .wpcf7-list-item { margin: 0; }
.cp-privacy .wpcf7-list-item-label { font-size: 14px; color: var(--text); }
.cp-privacy .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
  width: 18px; height: 18px; margin-right: 8px; accent-color: var(--navy-deep); vertical-align: middle;
}

/* 送信ボタン */
.cp-submit-wrap { position: relative; display: flex; justify-content: center; margin-top: 48px; }
.cp-form .cp-submit {
  width: 300px; max-width: 100%; height: 64px; padding: 0 32px;
  background: linear-gradient(90deg, #0a1c65 0%, #013bbf 100%);
  color: #fff; font-size: 16px; font-weight: 700; letter-spacing: 0.06em;
  border: none; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}
.cp-form .cp-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10, 28, 101, 0.3); }
.cp-submit-wrap p{
	position:relative;
}

.cp-submit-wrap p::after {
  content: ''; position: absolute; top: 50%;     right: -20px;
  width: 56px; height: 1px; background: var(--navy-deep);
}

.cp-submit-wrap p::before {
  content: ''; position: absolute; top: 50%;     right: 0px;
  width: 46px; height: 1px; background: #fff; z-index:10;
}

/* CF7 バリデーション・応答メッセージ */
.cp-form .wpcf7-not-valid-tip { color: #d23; font-size: 13px; margin-top: 6px; display: block; }
.cp-form .wpcf7-response-output {
  margin: 24px 0 0 !important; padding: 14px 18px !important;
  border-radius: 6px; font-size: 14px; line-height: 1.7;
}

/* --- OTHER CONTACT --- */
.cp-other { margin-top: 56px; padding-top: 56px; border-top: 1px solid #d6dae0; }
.cp-other-label {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-family: 'Barlow', sans-serif; font-size: 24px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--text); margin: 0 0 40px;
}
.cp-other-label::before,
.cp-other-label::after { content: ''; width: 56px; height: 1px; background: #9aa3b0; }
.cp-other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cp-other-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 40px 24px; text-align: center;
}
.cp-other-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin-bottom: 14px;
}
.cp-other-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cp-other-type { font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.1em; color: var(--text); margin: 0 0 8px; }
.cp-other-num { font-size: clamp(26px, 3vw, 38px); font-weight: 900; color: var(--text); line-height: 1.2; margin: 0 0 10px; }
.cp-other-sub { font-size: 14px; color: #6b7380; margin: 0; }

/* --- お問い合わせ2 レスポンシブ --- */
@media (max-width: 1024px) {
  .cp-form-box { padding: 56px 40px; }
}
@media (max-width: 767px) {
  .cp-recruit-section { padding: 40px 0 0; }

  .cp-form-section { padding: 40px 0 64px; }
  .cp-form-box { padding: 32px 20px; }
  .cp-form-lead { font-size: 14px; margin-bottom: 32px; text-align: left; }
  .cp-field { margin-bottom: 22px; }
  .cp-label { font-size: 15px; }
  .cp-privacy { padding: 24px 18px; }
  .cp-form .cp-submit { width: 100%; }
  .cp-submit-wrap::after { display: none; }

  .cp-other { margin-top: 40px; padding-top: 40px; }
  .cp-other-label { font-size: 18px; gap: 12px; margin-bottom: 28px; }
  .cp-other-label::before, .cp-other-label::after { width: 32px; }
  .cp-other-grid { grid-template-columns: 1fr; gap: 16px; }
  .cp-other-card { padding: 32px 20px; }
}


/* ============================================================
   17. 採用エントリーページ（page-entry / .ee-）
   ※ ヒーロー・パンくずは 03b の .lp-、フォーム共通パーツ（バッジ /
     入力 / 送信 / 個人情報 / お電話カード）は 16 の .cp- を流用。
     ここは固有部（相談会バナー / 区分ラジオ / 面談形式 / ファイル添付 / 2分割）。
   ============================================================ */

/* --- 採用個別相談会バナー（画像1枚） --- */
.ee-cv-section { position: relative; background: #fff; padding: 64px 0 0; }
.ee-cv-inner { width: 92%; max-width: 1180px; margin: 0 auto; }
.ee-cv-img { display: block; width: 100%; height: auto; }

/* --- 姓名 / セイメイ 2分割（CF7が <p> で囲んでも・直下でも横並び） --- */
.ee-col2 { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
.ee-col2 > p { display: flex; flex-wrap: wrap; gap: 16px; flex: 1 1 100%; margin: 0; }
.ee-col2 br { display: none; }
.ee-col2 .wpcf7-form-control-wrap { display: block; flex: 1 1 calc(50% - 8px); min-width: 0; margin: 0; }
.ee-col2 .wpcf7-form-control-wrap input { width: 100%; }
@media (max-width: 600px) { .ee-col2 .wpcf7-form-control-wrap { flex-basis: 100%; } }

/* --- エントリー区分ラジオ（大きい紺グラデのボックス） --- */
/* ※ JSで面談形式/履歴書ブロックを .ee-radio 内へ移動するため、ラジオ用の装飾は
   「.ee-radio の直下の項目」だけに限定する（> 直下セレクタ）。 */
.ee-form .ee-radio { display: block; }
.ee-form .ee-radio > .wpcf7-list-item { display: block; margin: 0 0 16px; }
.ee-form .ee-radio > .wpcf7-list-item label {
  display: flex; align-items: flex-start; gap: 18px;
  background: linear-gradient(90deg, #0a1c65 0%, #013bbf 100%);
  color: #fff; padding: 24px 30px; cursor: pointer; margin: 0;
}
.ee-form .ee-radio > .wpcf7-list-item input[type="radio"] {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border: 2px solid #fff; border-radius: 50%;
  background: transparent; flex-shrink: 0; margin: 3px 0 0; position: relative; cursor: pointer;
}
.ee-form .ee-radio > .wpcf7-list-item input[type="radio"]:checked::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: #fff;
}
.ee-form .ee-radio > .wpcf7-list-item .wpcf7-list-item-label { display: block; font-size: 18px; font-weight: 700; line-height: 1.4; }
.ee-form .ee-radio > .wpcf7-list-item .wpcf7-list-item-label::after {
  display: block; margin-top: 8px; font-size: 13px; font-weight: 400; line-height: 1.7; opacity: 0.92;
}
.ee-form .ee-radio > .wpcf7-list-item:first-of-type .wpcf7-list-item-label::after {
  content: "履歴書不要。まずはカジュアルにお話を聞いてみたい方向け。会社見学も可能。";
}
.ee-form .ee-radio > .wpcf7-list-item:last-of-type .wpcf7-list-item-label::after {
  content: "選考を希望される方（履歴書の添付をお願いします）";
}

/* --- 条件表示ブロック（面談形式 / 履歴書添付） --- */
.ee-cond { background: #fff; border: 1px solid var(--line); border-top: none; padding: 22px 30px; margin: -16px 0 24px; }
.ee-cond-entry { border-top: 1px solid var(--line); margin-top: 0; }
.ee-cond-title { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 14px; }

/* 面談形式チェック */
.ee-form .ee-check .wpcf7-list-item { display: inline-flex; align-items: center; margin: 0 28px 0 0; }
.ee-form .ee-check .wpcf7-list-item label { display: inline-flex; align-items: center; cursor: pointer; margin: 0; }
.ee-form .ee-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-right: 8px; accent-color: var(--navy-deep); vertical-align: middle;
}
.ee-form .ee-check .wpcf7-list-item-label { font-size: 15px; color: var(--text); }

/* --- ファイル添付（クリック / ドラッグ＆ドロップ枠） --- */
.ee-file {
  position: relative; border: 1px dashed #c4cad3; background: #fff; border-radius: 6px;
  padding: 44px 20px; text-align: center;
}
.ee-file.is-dragover { border-color: var(--blue); background: #f3f7ff; }
.ee-file .wpcf7-form-control-wrap { position: absolute; inset: 0; display: block; }
.ee-file .ee-file-input {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;
}
.ee-file-ui { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; pointer-events: none; }
.ee-file-plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid #d8dce2; color: #9aa3b0;
  font-size: 24px; line-height: 1; margin-bottom: 10px;
}
.ee-file-t1 { font-size: 15px; color: var(--text); }
.ee-file-t2 { font-size: 15px; color: #6b7380; }
.ee-file-t3 { font-size: 13px; color: #8a909c; margin-top: 8px; }
.ee-file-name { display: block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--navy-deep); }

/* --- お電話カード（単独・中央） --- */
.ee-tel-lead { text-align: center; font-size: 15px; color: #515151; margin: 0 0 32px; }
.cp-other-grid-single { grid-template-columns: minmax(0, 520px); justify-content: center; }

/* --- 採用エントリー レスポンシブ --- */
@media (max-width: 1024px) {
  .ee-form .ee-radio > .wpcf7-list-item label { padding: 22px 26px; }
}
@media (max-width: 767px) {
  .ee-cv-section { padding: 40px 0 0; }

  .ee-form .ee-radio > .wpcf7-list-item label { padding: 18px 20px; gap: 14px; }
  .ee-form .ee-radio > .wpcf7-list-item .wpcf7-list-item-label { font-size: 16px; }
  .ee-cond { padding: 18px 20px; }
  .ee-file { padding: 32px 16px; }
}

.wpcf7-spinner{
	display:none;
}