@charset "UTF-8";
/* ============================================================
   外国人材の受入れ（サイト内サイト）専用スタイル

   出力先：01_src_編集/css/gaikokujin.css
   使うページ：/seido/gaikokujin/ 配下（日本語・英語）だけ

   なぜ style.css に足さないのか
     このサイト内サイトは本体サイトとは別のヘッダー・別の配色で作る。
     style.css に足すと、無関係な53ページにもこのCSSが配られ、
     本体側の .main ul li:before などとぶつかる。読み込むページを分ける。

   なぜ Bootstrap を使わないのか
     本体サイトは Bootstrap 4 だが、この区画は独立した見た目なので
     グリッドも部品も自前で持つ。依存が減り、崩れの原因も減る。

   配色は部署提供のパンフレット（実習生部会）から実測した値。
   紺 #193A83 は公式トンマナのブルー900 #1e3a8a とほぼ同色。
   ============================================================ */
/* ------------------------------------------------------------
   土台
   ------------------------------------------------------------ */
.gk {
  color: #1e293b;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.gk *, .gk *::before, .gk *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.gk img {
  max-width: 100%;
  height: auto;
}
.gk a {
  color: #3668BE;
}
.gk a:hover, .gk a:focus {
  color: #193A83;
}

.gk-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 英語ページは日本語より行間を詰める（英文は行長が伸びるため） */
.gk[lang=en], [lang=en] .gk {
  line-height: 1.7;
}

/* ------------------------------------------------------------
   ヘッダー
   ------------------------------------------------------------ */
.gk-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #D0D9EC;
}

.gk-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 68px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.gk-brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  line-height: 1.35;
  margin-right: auto;
}
.gk-brand:hover, .gk-brand:focus {
  text-decoration: none;
}

.gk-brand__owner {
  font-size: 13px;
  font-weight: 700;
  color: #193A83;
  letter-spacing: 0.06em;
}

.gk-brand__name {
  /* 部会名が付いて16文字になったので19pxから下げた。ここを大きくすると
     ヘッダーが1行に収まらず、ナビの各項目が文字の途中で折り返す（2026-09-09） */
  font-size: 17px;
  font-weight: 700;
  color: #193A83;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gk-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gk-nav a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  border-radius: 4px;
}
.gk-nav a:hover, .gk-nav a:focus {
  background: #F5F7FC;
  color: #193A83;
  text-decoration: none;
}

.gk-nav a[aria-current=page] {
  color: #193A83;
  -webkit-box-shadow: inset 0 -3px 0 #E8A33D;
          box-shadow: inset 0 -3px 0 #E8A33D;
}

/* 言語切替 */
.gk-lang {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #D0D9EC;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.gk-lang a, .gk-lang span {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #6B7280;
  background: #fff;
}

.gk-lang a:hover, .gk-lang a:focus {
  background: #F5F7FC;
  color: #193A83;
  text-decoration: none;
}

.gk-lang [aria-current=true] {
  background: #193A83;
  color: #fff;
}

/* ヘッダー右のお問い合わせ */
.gk .gk-header__cta {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  display: inline-block;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #E8A33D;
  border-radius: 4px;
  text-decoration: none;
}
.gk .gk-header__cta:hover, .gk .gk-header__cta:focus {
  background: rgb(225.469124424, 145.2764976959, 26.730875576);
  color: #fff;
  text-decoration: none;
}

/* スマホ用の開閉ボタン */
.gk-navtoggle {
  display: none;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #D0D9EC;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.gk-navtoggle span, .gk-navtoggle span::before, .gk-navtoggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #193A83;
  margin: 0 auto;
  position: relative;
}
.gk-navtoggle span::before {
  content: "";
  position: absolute;
  top: -6px;
}
.gk-navtoggle span::after {
  content: "";
  position: absolute;
  top: 6px;
}

/* ヘッダーだけ切替幅が他より広い（1080px）。ブランド名＋ナビ6項目＋言語切替＋CTAを
   1行に並べるには、$gk-max から余白を引いた 1040px 程度が要る。992pxのままだと
   1024px級の画面でヘッダーが横にはみ出す（2026-09-09 実測 22px） */
@media (max-width: 1079px) {
  .gk-navtoggle {
    display: block;
  }
  .gk-header__menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid #D0D9EC;
    padding: 12px 20px 18px;
    -webkit-box-shadow: 0 8px 16px rgba(12, 46, 96, 0.08);
            box-shadow: 0 8px 16px rgba(12, 46, 96, 0.08);
  }
  .gk-header__menu.is-open {
    display: block;
  }
  .gk-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
  .gk-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid #F1F5F9;
    border-radius: 0;
  }
  .gk-nav a[aria-current=page] {
    -webkit-box-shadow: inset 3px 0 0 #E8A33D;
            box-shadow: inset 3px 0 0 #E8A33D;
  }
  .gk-header__sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    margin-top: 14px;
  }
  .gk-header__cta {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center;
  }
}
@media (max-width: 640px) {
  /* 開閉ボタンと並ぶ幅しか無いので、ブランド名をもう一段下げる */
  .gk-brand__name {
    font-size: 15px;
  }
}
@media (min-width: 1080px) {
  .gk-header__inner {
    position: relative;
  }
  .gk-header__menu {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
  .gk-header__sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  /* ブランド名＋ナビ6項目＋言語切替＋CTA が 1080px（$gk-max から左右の余白を引いた幅）に
     収まらないと、ナビが文字の途中で折り返す。項目名は data/gknav.json 側でも短くしている */
  .gk-nav {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 2px;
  }
  .gk-nav a {
    padding: 8px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
}
/* ------------------------------------------------------------
   ヒーロー
   ------------------------------------------------------------ */
.gk-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F7FC), to(#fff));
  background: -webkit-linear-gradient(top, #F5F7FC 0%, #fff 100%);
  background: linear-gradient(180deg, #F5F7FC 0%, #fff 100%);
  border-bottom: 1px solid #D0D9EC;
  padding: 56px 0 48px;
}

.gk-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #193A83;
  border-left: 4px solid #E8A33D;
  padding-left: 10px;
  margin-bottom: 18px;
}

.gk-hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #193A83;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}

.gk-hero__rule {
  width: 220px;
  height: 3px;
  background: #E8A33D;
  margin: 0 0 20px;
}

.gk-hero__lead {
  font-size: 18px;
  font-weight: 700;
  color: #193A83;
  margin: 0 0 12px;
}

.gk-hero p {
  margin: 0 0 8px;
  max-width: 40em;
}

@media (max-width: 767px) {
  .gk-hero {
    padding: 36px 0 32px;
  }
  .gk-hero h1 {
    font-size: 28px;
  }
  .gk-hero__lead {
    font-size: 16px;
  }
}
/* ------------------------------------------------------------
   セクション（パンフレットの「紺の帯＋丸数字」を踏襲）
   ------------------------------------------------------------ */
/* scroll-margin-top はアンカーで飛んだときの止まる位置。
   ヘッダーが position:sticky で常に画面上部に居座るため、これが無いと
   セクションの見出し帯（紺の帯）がヘッダーの下に潜って読めない。
   メニューの「お問い合わせ」（#gk-contact）や、印刷物に載せるURLで効く。
   2026-08-25 追加。$gk-head-h を変えたらここも一緒に効く。 */
.gk-section {
  padding: 0 0 56px;
  scroll-margin-top: 76px;
}

.gk-section__head {
  background: #193A83;
  color: #fff;
  padding: 16px 0;
  margin-bottom: 32px;
}

.gk-section__head .gk-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.gk-num {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8A33D;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
}

.gk-section__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.gk-section__lead {
  font-size: 17px;
  font-weight: 700;
  color: #193A83;
  margin: 0 0 24px;
}

@media (max-width: 767px) {
  .gk-section {
    padding-bottom: 40px;
  }
  .gk-num {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .gk-section__title {
    font-size: 18px;
  }
  .gk-section__lead {
    font-size: 15px;
  }
}
/* ------------------------------------------------------------
   カード（白地＋細枠＋アンバーの大きな数字）
   ------------------------------------------------------------ */
.gk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gk-cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
  .gk-cards, .gk-cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gk-cards, .gk-cards--2 {
    grid-template-columns: 1fr;
  }
}
.gk-card {
  background: #fff;
  border: 1px solid #D0D9EC;
  border-radius: 4px;
  padding: 26px 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gk-card__num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #E8A33D;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.gk-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #193A83;
  line-height: 1.45;
  margin: 0 0 12px;
  padding-bottom: 12px;
  position: relative;
}
.gk-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: #E8A33D;
}

.gk-card p {
  font-size: 14px;
  margin: 0 0 12px;
}

.gk-card p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   数字で見せるブロック
   ------------------------------------------------------------ */
.gk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 640px) {
  .gk-stats {
    grid-template-columns: 1fr;
  }
}
.gk-stat {
  background: #F5F7FC;
  border: 1px solid #D0D9EC;
  border-radius: 4px;
  padding: 22px 20px;
  text-align: center;
}

/* 何の数字かを言う行。※付きの補足とは別扱いにする（サブテキストにしない）
   → 公式トンマナ §8「小さいグレーにしてよいのは注釈だけ」。gk-stat__detail と同じ扱い */
.gk-stat__label {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.gk-stat__value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #193A83;
}

.gk-stat__value small {
  font-size: 16px;
  font-weight: 700;
}

/* 数字の意味を説明する行。※付きの補足とは別扱いにする（サブテキストにしない） */
.gk-stat__detail {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 10px;
  line-height: 1.7;
}

/* 語の途中で折り返さない。長いときは書き手が <br> で切る */
.gk-stat__detail span {
  display: inline-block;
  white-space: nowrap;
}

.gk-stat__note {
  font-size: 13px;
  color: #6B7280;
  margin-top: 8px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   次のページへの入口
   ------------------------------------------------------------ */
.gk-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .gk-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gk-links {
    grid-template-columns: 1fr;
  }
}
.gk-link {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #D0D9EC;
  border-left: 4px solid #E8A33D;
  border-radius: 4px;
  padding: 18px 20px;
  text-decoration: none;
  color: #1e293b;
}
.gk-link:hover, .gk-link:focus {
  background: #F5F7FC;
  text-decoration: none;
  color: #1e293b;
}
.gk-link strong {
  display: block;
  font-size: 16px;
  color: #193A83;
  margin-bottom: 4px;
}
.gk-link span {
  display: block;
  font-size: 15px;
  color: #1e293b;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   ボタン

   ※ 2026-08-25：ダウンロード枠（.gk-dlbox）は廃止した。
     パンフレットは独立セクションをやめて問い合わせの中へ移動し、
     グレーの囲みも外している（.gk-pamph／このファイル下部）。
   ------------------------------------------------------------ */
.gk .gk-btn {
  display: inline-block;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #193A83;
  color: #193A83;
  background: #fff;
}
.gk .gk-btn:hover, .gk .gk-btn:focus {
  background: #193A83;
  color: #fff;
  text-decoration: none;
}

.gk .gk-btn--primary {
  background: #E8A33D;
  border-color: #E8A33D;
  color: #fff;
}
.gk .gk-btn--primary:hover, .gk .gk-btn--primary:focus {
  background: rgb(225.469124424, 145.2764976959, 26.730875576);
  border-color: rgb(225.469124424, 145.2764976959, 26.730875576);
  color: #fff;
}

.gk .gk-btn--lg {
  padding: 15px 32px;
  font-size: 16px;
}

/* ------------------------------------------------------------
   問い合わせ（ページ内のコンテンツとして見せる）

   以前は淡い青の帯で最下部に置いていたが、フッターの一部に見えて
   「サイトの中の内容」と認識されなかった。他のセクションと同じ
   紺の見出し帯を付け、白いカードで本文と同じ扱いにしている。
   ------------------------------------------------------------ */
.gk-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .gk-contact {
    grid-template-columns: 1fr;
  }
}
.gk-contact__card {
  background: #fff;
  border: 1px solid #D0D9EC;
  border-top: 3px solid #193A83;
  border-radius: 4px;
  padding: 24px 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gk-contact__label {
  font-size: 14px;
  font-weight: 700;
  color: #193A83;
  margin: 0 0 10px;
  padding-bottom: 10px;
  position: relative;
}
.gk-contact__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: #E8A33D;
}

.gk-tel {
  font-size: 15px;
  color: #193A83;
  font-weight: 700;
  margin: 0;
}
.gk-tel b {
  display: block;
  font-size: 30px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.gk-tel span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #1e293b;
  margin-top: 4px;
}

.gk-contact__card p {
  margin: 0 0 14px;
  font-size: 15px;
}

.gk-contact__card .gk-btn {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

/* 電話の受付部署。組織名なので小さいグレーにせず、本文と同じ濃さで置く
   （.claude/rules/サブテキスト扱いは注釈だけ.md）。
   .gk-contact__card p に負けないよう、カードを含めた指定にしている。 */
.gk-contact__card .gk-contact__desk {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

/* 営業・PRの振り分けは、フォームのカードの中・ボタンの直前に置く。
   カードの外に独立した注記として置くと、お問い合わせエリア全体のサブ項目に
   見えてスルーされ、振り分けに失敗する（2026-08-25 ユーザー指摘）。 */
.gk-contact__card .gk-eigyo {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.75;
}

/* 資料ダウンロード（パンフレット）。
   資料請求のつもりで来る人がいるので、電話・フォームと横並びの選択肢として
   同じカードで見せる。ただし本題ではないので、2枚の下に全幅で1枚置く。
   （2026-08-25 ユーザー指摘。囲み無しの素置きは「サブ項目に見える」で却下） */
.gk-contact__card--wide {
  grid-column: 1/-1;
}

.gk-contact__card .gk-pamph__name {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.gk-pamph__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .gk-contact__card .gk-btn {
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    text-align: center;
  }
  .gk-tel b {
    font-size: 26px;
  }
}
/* 営業・PRの方の振り分け（本題の問い合わせに混ざらないようにする） */
.gk-eigyo {
  margin-top: 20px;
  background: #F1F5F9;
  border: 1px solid #D0D9EC;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 14px;
  color: #6B7280;
}
.gk-eigyo strong {
  color: #193A83;
}
.gk-eigyo a {
  font-weight: 700;
}

/* ------------------------------------------------------------
   フッター
   ------------------------------------------------------------ */
.gk-footer {
  background: #F5F7FC;
  border-top: 1px solid #D0D9EC;
  padding: 36px 0 24px;
  font-size: 14px;
}

.gk-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

@media (max-width: 767px) {
  .gk-footer__grid {
    grid-template-columns: 1fr;
  }
}
.gk-footer__name {
  font-weight: 700;
  color: #193A83;
  font-size: 15px;
  margin-bottom: 6px;
}

.gk-footer__bukai {
  display: block;
  position: relative;
  padding-left: 1.45em;
  margin-top: 2px;
}

.gk-footer__bukai::before {
  content: "";
  position: absolute;
  left: 0.25em;
  top: 0;
  bottom: 0.5em;
  width: 0.85em;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.gk-footer address {
  font-style: normal;
  color: #6B7280;
  line-height: 1.8;
  margin: 0;
}

.gk-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gk-footer__links li {
  margin-bottom: 8px;
}

.gk-footer__links a {
  color: #193A83;
  text-decoration: underline;
}

.gk-footer__note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #D0D9EC;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.8;
}

.gk-copy {
  margin-top: 10px;
  font-size: 12px;
  color: #6B7280;
}

/* ------------------------------------------------------------
   定義リスト（組合概要・所管認可番号・制度の比較）
   スマホでは項目名の下に内容を積む。横スクロールはさせない
   ------------------------------------------------------------ */
.gk-dl {
  border-top: 1px solid #D0D9EC;
  margin: 0;
}

.gk-dl > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #D0D9EC;
}

.gk-dl dt {
  background: #F5F7FC;
  color: #193A83;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 16px;
  margin: 0;
}

.gk-dl dd {
  padding: 14px 16px;
  margin: 0;
  font-size: 15px;
}

.gk-dl dd p {
  margin: 0 0 6px;
}

.gk-dl dd p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .gk-dl > div {
    grid-template-columns: 1fr;
  }
  .gk-dl dt {
    padding: 10px 14px;
  }
  .gk-dl dd {
    padding: 12px 14px;
  }
}
/* ------------------------------------------------------------
   2つ並べて比べる（技能実習／特定技能 など）
   ------------------------------------------------------------ */
.gk-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .gk-compare {
    grid-template-columns: 1fr;
  }
}
.gk-compare__item {
  border: 1px solid #D0D9EC;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.gk-compare__head {
  background: #E6EDF8;
  color: #193A83;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid #D0D9EC;
}

.gk-compare__body {
  padding: 16px 18px 18px;
}

/* ------------------------------------------------------------
   チェック付きの箇条書き
   ------------------------------------------------------------ */
.gk-checks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gk-checks li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
}
.gk-checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8A33D;
}

.gk-checks li:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   ステップ（受入れの流れ・キャリアステップ）
   ------------------------------------------------------------ */
.gk-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: gkstep;
}

.gk-steps--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .gk-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gk-steps, .gk-steps--3 {
    grid-template-columns: 1fr;
  }
}
.gk-step {
  background: #fff;
  border: 1px solid #D0D9EC;
  border-top: 3px solid #193A83;
  border-radius: 4px;
  padding: 18px 16px;
}

.gk-step__no {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #E8A33D;
  margin-bottom: 6px;
}

.gk-step__title {
  font-size: 16px;
  font-weight: 700;
  color: #193A83;
  margin: 0 0 8px;
  line-height: 1.4;
}

.gk-step__term {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #193A83;
  background: #E6EDF8;
  border-radius: 3px;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.gk-step p {
  font-size: 14px;
  margin: 0;
}

/* ------------------------------------------------------------
   分野・職種のタグ
   ------------------------------------------------------------ */
.gk-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gk-tags li {
  font-size: 14px;
  color: #193A83;
  border: 1px solid #D0D9EC;
  background: #F5F7FC;
  border-radius: 3px;
  padding: 6px 12px;
}

.gk-tags li.is-new {
  border-color: #E8A33D;
}

/* ------------------------------------------------------------
   よくある質問
   ------------------------------------------------------------ */
.gk-faq {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gk-faq li {
  border: 1px solid #D0D9EC;
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 12px;
  background: #fff;
}

.gk-faq dt {
  font-weight: 700;
  color: #193A83;
  font-size: 16px;
  margin: 0 0 8px;
  padding-left: 30px;
  position: relative;
}
.gk-faq dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E8A33D;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}

.gk-faq dd {
  margin: 0;
  padding-left: 30px;
  font-size: 15px;
}

/* ------------------------------------------------------------
   補足
   ------------------------------------------------------------ */
.gk-note {
  font-size: 13px;
  color: #6B7280;
  margin-top: 14px;
  line-height: 1.8;
}

.gk-body {
  font-size: 16px;
}

.gk-body p {
  margin: 0 0 14px;
}

.gk-body p:last-child {
  margin-bottom: 0;
}

.gk-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #193A83;
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 4px solid #E8A33D;
}
