/* =========================================================================
   セコカンjob — リデザイン用デザインシステム
   コンセプト: ブループリント(設計図) × プロフェッショナル
   紺(#0f172a) × オレンジ(#f97316)。施工管理に根ざした業界特化UI。
   ※ アクセント変数名は --sk-gold だが、値はオレンジ系。
   すべて sk- 接頭辞。既存YTCページ(診断/クライアント)とは衝突しない。
   ========================================================================= */

:root {
  --sk-navy-900: #0b1220;
  --sk-navy-800: #0f172a;
  --sk-navy-700: #1e293b;
  --sk-navy-600: #334155;
  --sk-ink: #0f172a;
  --sk-slate-700: #334155;
  --sk-slate-600: #475569;
  --sk-slate-500: #64748b;
  --sk-slate-400: #94a3b8;
  --sk-slate-300: #cbd5e1;
  --sk-slate-200: #e2e8f0;
  --sk-slate-100: #f1f5f9;
  --sk-slate-50: #f8fafc;
  --sk-white: #ffffff;

  --sk-gold: #f97316;
  --sk-gold-600: #ea580c;
  --sk-gold-soft: #ffedd5;

  --sk-blue: #2563eb;
  --sk-green: #06c755;
  --sk-red: #e11d48;

  --sk-line: #e7ebf0;

  --sk-radius: 14px;
  --sk-radius-lg: 20px;
  --sk-radius-sm: 10px;

  --sk-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.05);
  --sk-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  --sk-shadow-md: 0 10px 30px rgba(15, 23, 42, 0.1);
  --sk-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
  --sk-shadow-gold: 0 6px 16px rgba(15, 23, 42, 0.12);

  --sk-font: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --sk-font-en: "Poppins", var(--sk-font);

  --sk-maxw: 1180px;
}

/* ページ単位の土台（YTCのbody styleに依存しないよう .sk-page でスコープ） */
.sk-page {
  font-family: var(--sk-font);
  color: var(--sk-ink);
  background: #fbfcff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
}
.sk-page *,
.sk-page *::before,
.sk-page *::after { box-sizing: border-box; }
.sk-page img { max-width: 100%; height: auto; display: block; }
.sk-page a { text-decoration: none; }
.sk-page a:not(.sk-btn) { color: inherit; }

.sk-container {
  width: 100%;
  max-width: var(--sk-maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ブループリントのグリッド背景（薄いライン） */
.sk-blueprint {
  background-color: var(--sk-navy-800);
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ---------- ボタン ---------- */
.sk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sk-font);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.sk-btn--primary {
  background: var(--sk-gold);
  color: #fff;
  box-shadow: var(--sk-shadow-gold);
}
.sk-btn--primary:hover { background: var(--sk-gold-600); transform: translateY(-2px); }
.sk-btn--navy { background: var(--sk-navy-800); color: #fff; }
.sk-btn--navy:hover { background: var(--sk-navy-700); transform: translateY(-2px); }
.sk-btn--ghost { background: transparent; color: var(--sk-navy-800); border-color: var(--sk-slate-300); }
.sk-btn--ghost:hover { border-color: var(--sk-navy-800); background: var(--sk-white); }
.sk-btn--ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.3); }
.sk-btn--ghost-light:hover { background: rgba(255,255,255,0.16); }
.sk-btn--line { background: var(--sk-green); color: #fff; }
.sk-btn--line:hover { filter: brightness(0.95); transform: translateY(-2px); }
.sk-btn--lg { font-size: 1.05rem; padding: 17px 32px; }
.sk-btn--full { width: 100%; }
.sk-btn--block { display: flex; width: 100%; }
/* YTC style.css の a:link{color:#333}(0,1,1) を上書きするため詳細度を上げる */
.sk-page a.sk-btn--primary,
.sk-page a.sk-btn--navy,
.sk-page a.sk-btn--line,
.sk-page a.sk-btn--ghost-light { color: #fff; }
.sk-page a.sk-btn--ghost { color: var(--sk-navy-800); }

/* ---------- ヘッダー ---------- */
.sk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--sk-line);
}
.sk-header__inner {
  max-width: var(--sk-maxw);
  margin-inline: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sk-header__logo { display: inline-flex; align-items: center; }
.sk-header__logo img { height: 42px; width: auto; max-width: 170px; object-fit: contain; }
.sk-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.sk-header__link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sk-slate-700);
  transition: color 0.15s ease;
}
.sk-header__link:hover { color: var(--sk-navy-800); }
.sk-header__cta { display: inline-flex; align-items: center; gap: 10px; }
.sk-header__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--sk-line);
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.sk-header__burger span { width: 20px; height: 2px; background: var(--sk-navy-800); border-radius: 2px; }

@media (max-width: 860px) {
  .sk-header__nav { gap: 14px; }
  .sk-header__link, .sk-header__cta .sk-btn--ghost { display: none; }
}
@media (max-width: 520px) {
  .sk-header__inner { gap: 14px; padding: 10px 16px; }
  .sk-header__logo img { height: 36px; max-width: 140px; }
}

/* ---------- HERO ---------- */
.sk-hero {
  position: relative;
  overflow: hidden;
  color: var(--sk-navy-800);
  padding: 72px 0 62px;
  background: #eef5fb;
}
.sk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.16) 72%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
  z-index: 1;
  pointer-events: none;
}
.sk-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/img/feature_range_1764101807852.png');
  background-size: cover;
  background-position: center center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
  z-index: 0;
}
.sk-hero__inner { position: relative; z-index: 2; }
.sk-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sk-font-en);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sk-gold);
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
}
.sk-hero__title {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 18px 0 10px;
  max-width: 840px;
  color: var(--sk-navy-800);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.sk-hero__title .sk-mark {
  color: var(--sk-navy-900);
  background: linear-gradient(transparent 62%, var(--sk-gold) 62%);
  padding: 0 4px;
}
.sk-hero__title em { color: var(--sk-gold); font-style: normal; font-weight: 900; }
.sk-hero__lead {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: var(--sk-slate-700);
  max-width: 720px;
  margin-bottom: 22px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
}
.sk-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.sk-chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sk-navy-800);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.36);
  padding: 6px 13px;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .sk-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.74) 46%, rgba(255, 255, 255, 0.9) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  }
  .sk-hero::after {
    background-position: center top;
  }
}

/* ========================================================================
   FV スライダー（ヒーロー・カルーセル）
   ======================================================================== */
.sk-hs {
  position: relative;
  background: #f5faff;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}
.sk-hs__viewport {
  position: relative;
  height: clamp(430px, 48vw, 590px);
  overflow: hidden;
}
.sk-hs__track {
  display: flex;
  height: 100%;
  transition: transform 0.72s cubic-bezier(0.22, 0.72, 0.2, 1);
}
.sk-hs__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  pointer-events: none;
}
.sk-hs__slide.is-active { pointer-events: auto; }
.sk-hs__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.24) contrast(1.08);
}
.sk-hs__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.62) 44%, rgba(255, 255, 255, 0.08) 66%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.02), rgba(245, 250, 255, 0.14));
}
.sk-hs__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--sk-navy-900);
}
.sk-hs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--sk-font-en);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sk-navy-800);
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.44);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.sk-hs__title {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: 0;
  max-width: 780px;
  color: var(--sk-navy-900);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
  text-wrap: balance;
}
.sk-hs__title em {
  color: var(--sk-navy-900);
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(transparent 60%, rgba(249, 115, 22, 0.75) 60%);
  padding: 0 0.08em;
}
.sk-hs__lead {
  margin-top: 14px;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--sk-slate-700);
  max-width: 560px;
  font-weight: 600;
}
.sk-hs__actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.sk-hs__dots { position: absolute; z-index: 3; bottom: 74px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; }
.sk-hs__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(15, 23, 42, 0.24); border: none; cursor: pointer; padding: 0; transition: all 0.2s; }
.sk-hs__dot.is-active { background: var(--sk-gold); width: 26px; border-radius: 5px; }
.sk-hs__arrow {
  position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(148, 163, 184, 0.36);
  color: var(--sk-navy-800); cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: background 0.2s;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}
.sk-hs__arrow:hover { background: #fff; }
.sk-hs__arrow--prev { left: 16px; }
.sk-hs__arrow--next { right: 16px; }
@media (max-width: 640px) {
  .sk-hs__viewport { height: 560px; }
  .sk-hs__bg { background-position: 62% center !important; }
  .sk-hs__scrim {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 56%, rgba(255,255,255,0.34) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0.62) 48%, #fff 100%);
  }
  .sk-hs__content { justify-content: flex-start; padding-top: 52px; }
  .sk-hs__lead { max-width: 96%; }
  .sk-hs__actions { flex-direction: column; align-items: stretch; max-width: 340px; }
  .sk-hs__arrow { display: none; }
}
@media (max-width: 860px) {
  .sk-hs__dots { bottom: 18px; }
}

/* 検索ストリップ（ヒーロー直下に重ねる白いバー） */
.sk-searchstrip { position: relative; z-index: 5; margin-top: -36px; margin-bottom: 8px; }
@media (max-width: 860px) { .sk-searchstrip { margin-top: 0; padding-top: 20px; } }

/* ========================================================================
   求人カルーセル（ピックアップ / 新着）
   ======================================================================== */
.sk-carousel__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.sk-carousel__titles .sk-eyebrow { margin-bottom: 6px; }
.sk-carousel__title { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; color: var(--sk-navy-800); }
.sk-carousel__nav { display: flex; align-items: center; gap: 8px; }
.sk-carousel__btn {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--sk-line); background: #fff;
  color: var(--sk-navy-800); cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--sk-shadow-sm); transition: all 0.15s ease;
}
.sk-carousel__btn:hover { background: var(--sk-navy-800); color: #fff; border-color: var(--sk-navy-800); }
.sk-carousel__more { font-weight: 700; font-size: 0.9rem; color: var(--sk-navy-700); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; margin-left: 4px; }
.sk-carousel__more:hover { color: var(--sk-gold-600); }
@media (max-width: 560px) { .sk-carousel__more { display: none; } }
.sk-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sk-carousel__track::-webkit-scrollbar { display: none; }
.sk-carousel__track > * { scroll-snap-align: start; }
@media (min-width: 1100px) {
  .sk-carousel__track { grid-auto-columns: 318px; }
}

/* 横スライド：モバイル1.2枚 → タブレット2枚 → PC4枚 */
.sk-carousel__track--lg { grid-auto-columns: 82%; gap: 16px; }
@media (min-width: 640px) { .sk-carousel__track--lg { grid-auto-columns: calc((100% - 16px) / 2); } }
@media (min-width: 1000px) { .sk-carousel__track--lg { grid-auto-columns: calc((100% - 48px) / 4); } }

.sk-carousel__morebtn { font-size: 0.9rem; padding: 11px 18px; }
@media (max-width: 560px) { .sk-carousel__morebtn { padding: 9px 14px; font-size: 0.84rem; } }

.sk-carousel__arrows { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.sk-carousel__arrows .sk-carousel__btn { width: 46px; height: 46px; }

/* ========================================================================
   エリアから探す
   ======================================================================== */
.sk-area-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .sk-area-tiles { grid-template-columns: repeat(2, 1fr); } }
.sk-area-tile {
  position: relative;
  border-radius: var(--sk-radius);
  overflow: hidden;
  min-height: 128px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  background: var(--sk-navy-700);
  box-shadow: var(--sk-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sk-area-tile::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--tile-img);
  transform: scale(1.02);
  transition: transform 0.3s ease;
  filter: saturate(1.18) contrast(1.06);
}
/* 下部だけ締めて県名を読みやすくし、画像の色は残す */
.sk-area-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.03) 0%, rgba(11,18,32,0.12) 45%, rgba(11,18,32,0.76) 100%);
}
.sk-area-tile:hover { transform: translateY(-3px); box-shadow: var(--sk-shadow-md); }
.sk-area-tile:hover::before { transform: scale(1.08); }
.sk-area-tile__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 3px; }
.sk-area-tile__name { font-size: 1.25rem; font-weight: 800; line-height: 1.15; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.65), 0 1px 2px rgba(0,0,0,0.5); }
.sk-area-tile__count {
  font-family: var(--sk-font-en); font-size: 0.82rem; font-weight: 700;
  color: var(--sk-navy-900); background: var(--sk-gold);
  align-self: flex-start; padding: 2px 9px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.sk-area-regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 28px; margin-top: 28px; }
@media (max-width: 860px) { .sk-area-regions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .sk-area-regions { grid-template-columns: 1fr; } }
.sk-area-region__name { font-size: 0.82rem; font-weight: 800; color: var(--sk-navy-800); padding-bottom: 8px; margin-bottom: 8px; border-bottom: 2px solid var(--sk-gold); display: inline-block; }
.sk-area-region__links { display: flex; flex-wrap: wrap; gap: 7px; }
.sk-pref-link {
  font-size: 0.84rem; color: var(--sk-slate-700);
  background: #fff; border: 1px solid var(--sk-line);
  padding: 6px 12px; border-radius: 999px; transition: all 0.15s;
}
.sk-pref-link:hover { border-color: var(--sk-navy-800); color: var(--sk-navy-800); background: var(--sk-slate-50); }

/* ========================================================================
   職種・こだわり条件から探す
   ======================================================================== */
.sk-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 860px) { .sk-cat-grid { grid-template-columns: repeat(2, 1fr); } }
.sk-cat {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--sk-line); border-radius: var(--sk-radius);
  padding: 16px 18px; box-shadow: var(--sk-shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.sk-cat:hover { transform: translateY(-2px); box-shadow: var(--sk-shadow-md); border-color: var(--sk-slate-300); }
.sk-cat__icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; background: var(--sk-gold-soft); color: var(--sk-gold-600); display: grid; place-items: center; font-size: 1.05rem; }
.sk-cat__label { font-weight: 700; color: var(--sk-navy-800); font-size: 0.95rem; }
.sk-cat__arrow { margin-left: auto; color: var(--sk-slate-300); transition: color 0.18s, transform 0.18s; }
.sk-cat:hover .sk-cat__arrow { color: var(--sk-gold-600); transform: translateX(3px); }

.sk-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sk-chip-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; font-weight: 600; color: var(--sk-navy-800);
  background: #fff; border: 1.5px solid var(--sk-slate-200);
  padding: 9px 16px; border-radius: 999px; transition: all 0.15s;
}
.sk-chip-link:hover { border-color: var(--sk-gold); background: var(--sk-gold-soft); }
.sk-chip-link i { color: var(--sk-gold-600); font-size: 0.8rem; }

/* ---------- 検索バー ---------- */
.sk-search {
  background: var(--sk-white);
  border-radius: var(--sk-radius-lg);
  box-shadow: var(--sk-shadow-lg);
  padding: 14px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 10px;
  align-items: stretch;
}
.sk-search__field { display: flex; flex-direction: column; gap: 5px; text-align: left; }
.sk-search__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--sk-slate-500);
  letter-spacing: 0.04em;
  padding-left: 4px;
}
.sk-search__control {
  position: relative;
  display: flex;
  align-items: center;
}
.sk-search__control > i {
  position: absolute;
  left: 13px;
  color: var(--sk-slate-400);
  font-size: 0.9rem;
  pointer-events: none;
}
.sk-search__input,
.sk-search__select {
  width: 100%;
  font-family: var(--sk-font);
  font-size: 0.95rem;
  color: var(--sk-ink);
  background: var(--sk-slate-50);
  border: 1.5px solid var(--sk-slate-200);
  border-radius: var(--sk-radius-sm);
  padding: 12px 14px 12px 36px;
  height: 48px;
  transition: border-color 0.15s ease, background 0.15s ease;
  appearance: none;
}
.sk-search__select { cursor: pointer; }
.sk-search__input:focus,
.sk-search__select:focus {
  outline: none;
  border-color: var(--sk-gold);
  background: #fff;
}
.sk-search__submit {
  height: 48px;
  align-self: flex-end;
  padding-inline: 30px;
}
@media (max-width: 860px) {
  .sk-search { grid-template-columns: 1fr 1fr; }
  .sk-search__field--wide { grid-column: 1 / -1; }
  .sk-search__submit { grid-column: 1 / -1; }
}

/* ---------- 信頼の数値 ---------- */
.sk-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-top: 26px;
}
.sk-stat { display: flex; flex-direction: column; }
.sk-stat__num {
  font-family: var(--sk-font-en);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  color: #fff;
}
.sk-stat__num em { color: var(--sk-gold); font-style: normal; }
.sk-stat__label { font-size: 0.74rem; color: var(--sk-slate-400); margin-top: 6px; font-weight: 600; }
.sk-stat__sep { width: 1px; background: rgba(255,255,255,0.12); }
.sk-hero .sk-stat__num { color: var(--sk-navy-800); }
.sk-hero .sk-stat__num em { color: var(--sk-gold-600); }
.sk-hero .sk-stat__label { color: var(--sk-slate-600); }
.sk-hero .sk-stat__sep { background: rgba(15, 23, 42, 0.16); }

/* ---------- セクション共通 ---------- */
.sk-section { padding: 64px 0; }
.sk-section--tint { background: var(--sk-white); }
.sk-section--soft { background: #f6f9fc; }
.sk-section__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.sk-eyebrow {
  display: inline-block;
  font-family: var(--sk-font-en);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sk-gold-600);
  margin-bottom: 10px;
}
.sk-h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--sk-navy-800);
}
.sk-h2 em { color: var(--sk-gold-600); font-style: normal; font-weight: 800; }
.sk-sub { color: var(--sk-slate-500); margin-top: 12px; font-size: 1rem; }

.sk-section__more { text-align: center; margin-top: 36px; }

/* ---------- 求人カード（画像トップ型） ---------- */
.sk-jobgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.sk-job {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--sk-white);
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  overflow: hidden;
  box-shadow: var(--sk-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}
.sk-job:hover {
  transform: translateY(-4px);
  box-shadow: var(--sk-shadow-md);
  border-color: var(--sk-slate-300);
}

/* 画像エリア */
.sk-job__photo {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--sk-navy-700);
  overflow: hidden;
}
.sk-job__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.sk-job:hover .sk-job__photo img { transform: scale(1.05); }
.sk-job__badges { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 1; }
.sk-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.sk-badge--new { background: var(--sk-red); color: #fff; }
.sk-badge--type { background: var(--sk-navy-800); color: #fff; }
.sk-badge--soft { background: var(--sk-slate-100); color: var(--sk-slate-600); }
.sk-badge--remote { background: #eaf0f8; color: #2f5fb3; }

/* 本文 */
.sk-job__content { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.sk-job__title {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
  color: var(--sk-navy-800);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sk-job:hover .sk-job__title { color: var(--sk-gold-600); }
.sk-job__sub { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.sk-job__cat { font-size: 0.88rem; color: var(--sk-slate-700); font-weight: 600; }
.sk-job__company { font-size: 0.84rem; color: var(--sk-slate-500); font-weight: 500; }

.sk-job__divider { border: none; border-top: 1px solid var(--sk-line); margin: 0 0 14px; }

.sk-job__rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.sk-job__row { display: flex; align-items: center; gap: 11px; }
.sk-job__rk {
  flex-shrink: 0;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--sk-slate-500);
  background: #fff;
  border: 1px solid var(--sk-slate-300);
  border-radius: 6px;
  padding: 3px 9px;
  min-width: 62px;
  text-align: center;
}
.sk-job__rv { font-size: 0.92rem; font-weight: 600; color: var(--sk-navy-800); }
.sk-job__rv.is-salary { color: var(--sk-gold-600); font-weight: 700; }

.sk-job__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--sk-line); }
.sk-tag {
  font-size: 0.78rem;
  color: var(--sk-slate-700);
  background: var(--sk-slate-100);
  padding: 5px 11px;
  border-radius: 7px;
}

/* 詳細ページ・応募ボックスの年収表示 */
.sk-job__salary-label { font-size: 0.7rem; font-weight: 700; color: var(--sk-gold-600); letter-spacing: 0.03em; }
.sk-job__salary-value {
  font-family: var(--sk-font-en);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--sk-navy-800);
  line-height: 1.2;
  margin-top: 2px;
}

/* ---------- 検索結果：横長の詳細行カード ---------- */
.sk-joblist-rows { display: flex; flex-direction: column; gap: 28px; }
.sk-jobrow {
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  overflow: hidden;
  box-shadow: var(--sk-shadow-sm);
  transition: box-shadow 0.2s ease;
}
.sk-jobrow:hover { box-shadow: var(--sk-shadow-md); }
.sk-jobrow__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--sk-navy-900); color: #fff;
  padding: 14px 20px;
}
.sk-jobrow__company { font-weight: 800; font-size: 1.05rem; }
.sk-jobrow__new { background: var(--sk-red); color: #fff; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 4px; }

.sk-jobrow__body { display: grid; grid-template-columns: 340px 1fr; gap: 26px; padding: 22px; }
@media (max-width: 820px) { .sk-jobrow__body { grid-template-columns: 1fr; gap: 18px; } }

.sk-jobrow__photo { display: block; border-radius: var(--sk-radius-sm); overflow: hidden; aspect-ratio: 16 / 11; background: var(--sk-navy-700); }
.sk-jobrow__photo img { width: 100%; height: 100%; object-fit: cover; }
.sk-jobrow__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.sk-jobrow__chip { font-size: 0.8rem; color: var(--sk-slate-700); background: var(--sk-slate-100); padding: 5px 12px; border-radius: 6px; }

.sk-jobrow__cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sk-jobrow__cat { font-size: 0.8rem; font-weight: 700; color: #fff; background: var(--sk-navy-800); padding: 5px 12px; border-radius: 4px; }
.sk-jobrow__divider { border: none; border-top: 1px solid var(--sk-line); margin: 16px 0; }
.sk-jobrow__title {
  font-size: 1.18rem; font-weight: 800; line-height: 1.5; color: var(--sk-navy-800);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.sk-jobrow__title:hover { color: var(--sk-gold-600); }
.sk-jobrow__desc {
  margin-top: 10px; font-size: 0.92rem; color: var(--sk-slate-600); line-height: 1.8;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sk-jobrow__info { display: flex; gap: 18px; padding: 12px 0; border-bottom: 1px dashed var(--sk-slate-200); }
.sk-jobrow__info:last-child { border-bottom: none; }
.sk-jobrow__k { flex: 0 0 92px; font-weight: 700; color: var(--sk-navy-800); font-size: 0.9rem; }
.sk-jobrow__v { color: var(--sk-slate-700); font-size: 0.92rem; white-space: pre-line; }
.sk-jobrow__v.is-salary { color: var(--sk-gold-600); font-weight: 700; }

.sk-jobrow__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  padding: 18px 22px; border-top: 1px solid var(--sk-line); background: var(--sk-slate-50);
}
.sk-jobrow__actions .sk-btn { min-width: 200px; }
@media (max-width: 600px) { .sk-jobrow__actions .sk-btn { min-width: 0; flex: 1 1 100%; } }

.sk-results-range { font-size: 0.92rem; color: var(--sk-slate-500); }

/* ---------- 求人一覧ページ ---------- */
.sk-pagehead {
  position: relative;
  color: #fff;
  padding: 50px 0 54px;
  overflow: hidden;
}
.sk-pagehead__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 900; }
.sk-pagehead__desc { color: var(--sk-slate-300); margin-top: 8px; }

.sk-jobs-layout {
  display: grid;
  grid-template-columns: 296px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .sk-jobs-layout { grid-template-columns: 1fr; } }

.sk-filter {
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow);
  padding: 22px;
  position: sticky;
  top: 84px;
}
.sk-filter__title { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--sk-navy-800); margin-bottom: 16px; }
.sk-filter__group { border-top: 1px solid var(--sk-line); padding: 16px 0; }
.sk-filter__group:first-of-type { border-top: none; padding-top: 0; }
.sk-filter__label { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 700; color: var(--sk-slate-600); margin-bottom: 9px; }
.sk-filter__label i { color: var(--sk-gold-600); }
.sk-input, .sk-select {
  width: 100%;
  font-family: var(--sk-font);
  font-size: 0.92rem;
  color: var(--sk-ink);
  background: var(--sk-slate-50);
  border: 1.5px solid var(--sk-slate-200);
  border-radius: var(--sk-radius-sm);
  padding: 11px 13px;
  appearance: none;
}
.sk-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 32px; }
.sk-input:focus, .sk-select:focus { outline: none; border-color: var(--sk-gold); background: #fff; }
.sk-check { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--sk-slate-700); padding: 6px 0; cursor: pointer; }
.sk-check input { width: 17px; height: 17px; accent-color: var(--sk-gold-600); }
.sk-filter__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }

.sk-results-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.sk-results-count { font-size: 1rem; color: var(--sk-slate-600); }
.sk-results-count strong { font-family: var(--sk-font-en); font-size: 1.5rem; color: var(--sk-navy-800); margin-right: 4px; }

.sk-joblist { display: flex; flex-direction: column; gap: 14px; }
/* 一覧では横長カード */
.sk-job--row { padding: 20px 22px; }
.sk-job--row .sk-job__title { -webkit-line-clamp: 1; }

.sk-mobile-filter { display: none; }
@media (max-width: 980px) {
  .sk-mobile-filter {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px; margin-bottom: 16px;
    background: #fff; border: 1px solid var(--sk-line); border-radius: var(--sk-radius-sm);
    font-weight: 700; color: var(--sk-navy-800); cursor: pointer;
  }
  .sk-filter { display: none; }
  .sk-filter.is-open { display: block; }
}

/* ---------- ページネーション ---------- */
.sk-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.sk-page-link {
  min-width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--sk-line);
  font-weight: 700; font-family: var(--sk-font-en);
  color: var(--sk-slate-700);
  transition: all 0.15s ease;
}
.sk-page-link:hover { border-color: var(--sk-navy-800); color: var(--sk-navy-800); }
.sk-page-link.is-current,
.sk-page a.sk-page-link.is-current { background: var(--sk-navy-800); color: #fff; border-color: var(--sk-navy-800); }
.sk-page-link.is-disabled { opacity: 0.4; pointer-events: none; }

/* ---------- 求人詳細 ---------- */
.sk-detail-head { position: relative; color: #fff; padding: 44px 0 96px; overflow: hidden; }
.sk-breadcrumb { font-size: 0.8rem; color: var(--sk-slate-400); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.sk-breadcrumb a:hover { color: #fff; }
.sk-detail-head__badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.sk-detail-head__title { font-size: clamp(1.5rem, 3.4vw, 2.3rem); font-weight: 900; line-height: 1.3; }
.sk-detail-head__company { margin-top: 10px; color: var(--sk-slate-300); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }

.sk-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  margin-top: -64px;
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}
@media (max-width: 980px) { .sk-detail-layout { grid-template-columns: 1fr; } }

.sk-card {
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow);
}
.sk-detail-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sk-line);
  border-radius: var(--sk-radius);
  overflow: hidden;
  margin-bottom: 22px;
}
@media (max-width: 620px) { .sk-detail-highlights { grid-template-columns: 1fr; } }
.sk-hl { background: #fff; padding: 18px 20px; }
.sk-hl__label { font-size: 0.72rem; font-weight: 700; color: var(--sk-slate-500); }
.sk-hl__value { font-weight: 800; color: var(--sk-navy-800); margin-top: 4px; font-size: 1.05rem; }
.sk-hl__value.is-salary { color: var(--sk-gold-600); }

.sk-section-block { padding: 26px; border-bottom: 1px solid var(--sk-line); }
.sk-section-block:last-child { border-bottom: none; }
.sk-section-block__title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 800; color: var(--sk-navy-800);
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--sk-gold);
}
.sk-prose { color: var(--sk-slate-700); white-space: pre-line; line-height: 1.85; }
.sk-deftable { width: 100%; border-collapse: collapse; }
.sk-deftable th, .sk-deftable td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--sk-line); font-size: 0.92rem; vertical-align: top; }
.sk-deftable th { width: 34%; color: var(--sk-slate-500); font-weight: 700; background: var(--sk-slate-50); white-space: nowrap; }
.sk-deftable td { color: var(--sk-slate-700); }
.sk-taglist { display: flex; flex-wrap: wrap; gap: 8px; }

.sk-apply {
  position: sticky;
  top: 84px;
  padding: 24px;
  text-align: center;
}
.sk-apply__title { font-weight: 800; color: var(--sk-navy-800); font-size: 1.05rem; }
.sk-apply__text { font-size: 0.84rem; color: var(--sk-slate-500); margin: 8px 0 16px; }
.sk-apply__salary { background: var(--sk-gold-soft); border-radius: var(--sk-radius-sm); padding: 12px; margin-bottom: 16px; }

/* ---------- フッター ---------- */
.sk-footer { background: var(--sk-navy-900); color: var(--sk-slate-300); }
.sk-footer__top { padding-block: 50px; display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.sk-footer__brand { max-width: 320px; }
.sk-footer__logo img { height: 42px; width: auto; }
.sk-footer__tagline { font-size: 0.86rem; color: var(--sk-slate-400); margin-top: 14px; line-height: 1.7; }
.sk-footer__license { margin-top: 12px; font-size: 0.78rem; color: var(--sk-slate-500); line-height: 1.6; }
.sk-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.sk-footer__col h4 { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--sk-slate-500); text-transform: uppercase; margin-bottom: 14px; font-family: var(--sk-font-en); }
.sk-footer__col a { display: block; font-size: 0.9rem; color: var(--sk-slate-300); padding: 5px 0; transition: color 0.15s; }
.sk-footer__col a:hover { color: var(--sk-gold); }
.sk-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; text-align: center; font-size: 0.78rem; color: var(--sk-slate-500); }

/* ---------- 内部回遊バナー ---------- */
.sk-internal-banners { width: 100%; }
.sk-internal-banners__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.sk-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.sk-link-banner {
  --sk-banner-accent: var(--sk-navy-800);
  --sk-banner-soft: #f8fafc;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 42%);
  min-height: 238px;
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease;
}
.sk-link-banner:hover {
  transform: translateY(-3px);
  box-shadow: none;
}
.sk-link-banner__body {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sk-link-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sk-navy-800);
  background: #fff8dd;
  border: 1px solid #f0d778;
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}
.sk-link-banner__kicker i { color: var(--sk-gold-600); }
.sk-link-banner__title {
  margin-top: 16px;
  color: var(--sk-navy-800);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 800;
  line-height: 1.45;
}
.sk-link-banner__text {
  margin-top: 8px;
  color: var(--sk-slate-600);
  font-size: 0.9rem;
  line-height: 1.75;
}
.sk-link-banner__cta {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sk-navy-800);
  font-size: 0.9rem;
  font-weight: 800;
}
.sk-link-banner__cta i {
  color: var(--sk-gold-600);
  transition: transform 0.2s ease;
}
.sk-link-banner:hover .sk-link-banner__cta i { transform: translateX(4px); }
.sk-link-banner__media {
  position: relative;
  z-index: 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.sk-link-banner__media::before {
  content: none;
}
.sk-link-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sk-link-banner--teal {
  --sk-banner-accent: var(--sk-navy-800);
  --sk-banner-soft: #f8fafc;
}
.sk-link-banner--amber {
  --sk-banner-accent: var(--sk-navy-800);
  --sk-banner-soft: #f8fafc;
}
.sk-link-banner--blue {
  --sk-banner-accent: var(--sk-navy-800);
  --sk-banner-soft: #f8fafc;
}
.sk-link-banner--rose {
  --sk-banner-accent: var(--sk-navy-800);
  --sk-banner-soft: #f8fafc;
}
.sk-internal-banners--compact {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--sk-line);
}
.sk-internal-banners--compact .sk-internal-banners__head {
  text-align: left;
  max-width: none;
  margin: 0 0 16px;
}
.sk-internal-banners--compact .sk-banner-grid { gap: 14px; }
.sk-internal-banners--compact .sk-link-banner {
  grid-template-columns: minmax(0, 1fr) 188px;
  min-height: 196px;
}
.sk-internal-banners--compact .sk-link-banner__body { padding: 22px; }
.sk-internal-banners--compact .sk-link-banner__title { font-size: 1.02rem; }
.sk-internal-banners--compact .sk-link-banner__text { font-size: 0.84rem; }

@media (max-width: 860px) {
  .sk-banner-grid { grid-template-columns: 1fr; }
  .sk-link-banner,
  .sk-internal-banners--compact .sk-link-banner {
    grid-template-columns: minmax(0, 1fr) 42%;
  }
}
@media (max-width: 560px) {
  .sk-internal-banners__head { text-align: left; }
  .sk-link-banner,
  .sk-internal-banners--compact .sk-link-banner {
    grid-template-columns: 1fr;
  }
  .sk-link-banner__media {
    order: -1;
    height: 176px;
  }
  .sk-link-banner__media::before {
    content: none;
  }
  .sk-link-banner__body,
  .sk-internal-banners--compact .sk-link-banner__body {
    padding: 20px;
  }
}

/* ---------- 求職者向けCTA（診断 / LINE）---------- */
.sk-cta-band { position: relative; overflow: hidden; color: #fff; padding: 56px 0; }
.sk-cta-band__inner { display: flex; align-items: center; gap: 36px; position: relative; z-index: 1; }
.sk-cta-band__img { flex: 0 0 280px; border-radius: var(--sk-radius-lg); overflow: hidden; box-shadow: var(--sk-shadow-lg); }
.sk-cta-band__img img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.sk-cta-band__body { flex: 1; }
.sk-cta-band__title { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; line-height: 1.4; margin-bottom: 10px; }
.sk-cta-band__text { color: var(--sk-slate-300); margin-bottom: 20px; }
@media (max-width: 760px) {
  .sk-cta-band__inner { flex-direction: column; text-align: center; }
  .sk-cta-band__img { flex: none; max-width: 240px; }
}
.sk-line-band { background: var(--sk-slate-50); border-top: 1px solid var(--sk-line); padding: 50px 0; text-align: center; }
.sk-line-band__title { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 800; color: var(--sk-navy-800); margin-bottom: 10px; }
.sk-line-band__text { color: var(--sk-slate-600); margin-bottom: 24px; }

/* ---------- フォーム（問い合わせ） ---------- */
.sk-form { display: grid; gap: 16px; }
.sk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .sk-form__row { grid-template-columns: 1fr; } }
.sk-field { display: flex; flex-direction: column; gap: 7px; }
.sk-label { font-size: 0.86rem; font-weight: 700; color: var(--sk-navy-800); display: flex; align-items: center; gap: 8px; }
.sk-label .sk-req { font-size: 0.66rem; font-weight: 700; color: #fff; background: var(--sk-red); padding: 2px 7px; border-radius: 5px; }
.sk-label .sk-opt { font-size: 0.66rem; font-weight: 700; color: var(--sk-slate-500); background: var(--sk-slate-100); padding: 2px 7px; border-radius: 5px; }
.sk-textarea {
  width: 100%; min-height: 120px; resize: vertical;
  font-family: var(--sk-font); font-size: 0.95rem; color: var(--sk-ink);
  background: var(--sk-slate-50); border: 1.5px solid var(--sk-slate-200);
  border-radius: var(--sk-radius-sm); padding: 12px 14px;
}
.sk-textarea:focus, .sk-form .sk-input:focus { outline: none; border-color: var(--sk-gold); background: #fff; }
.sk-hint { font-size: 0.8rem; color: var(--sk-slate-500); }
.sk-alert { padding: 14px 16px; border-radius: var(--sk-radius-sm); font-weight: 600; font-size: 0.9rem; }
.sk-alert--error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.sk-alert--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

/* ---------- TOP: トラストバー / 特長 / フロー ---------- */
.sk-trust {
  background: #fff;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}
.sk-trust__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 40px; padding: 22px 20px; }
.sk-trust__item { display: flex; align-items: center; gap: 10px; color: var(--sk-slate-700); font-weight: 700; font-size: 0.92rem; }
.sk-trust__item i { color: var(--sk-gold); }

.sk-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .sk-features { grid-template-columns: 1fr; } }
.sk-feature { background: #fff; border: 1px solid var(--sk-line); border-radius: var(--sk-radius); padding: 28px; box-shadow: var(--sk-shadow-sm); }
.sk-feature__media { position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden; background: #fff; margin-bottom: 20px; }
.sk-feature__image { object-fit: cover; }
.sk-feature__title { font-weight: 800; color: var(--sk-navy-800); font-size: 1.1rem; margin-bottom: 8px; }
.sk-feature__text { color: var(--sk-slate-600); font-size: 0.92rem; }

.sk-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
  padding-top: 22px;
}
.sk-flow::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 9%;
  right: 9%;
  height: 2px;
  border-radius: 999px;
  background: var(--sk-slate-200);
}
.sk-step {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}
.sk-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -12px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--sk-slate-300);
  border-right: 2px solid var(--sk-slate-300);
  transform: rotate(45deg);
  background: transparent;
}
.sk-step__node {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border: 2px solid var(--sk-gold);
  border-radius: 999px;
  color: var(--sk-gold-600);
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}
.sk-step__index {
  font-family: var(--sk-font-en);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}
.sk-step__body {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}
.sk-step__num { font-family: var(--sk-font-en); font-weight: 800; font-size: 0.74rem; color: var(--sk-gold-600); letter-spacing: 0.12em; }
.sk-step__title { font-weight: 800; color: var(--sk-navy-800); margin: 6px 0 7px; font-size: 1.02rem; }
.sk-step__text { font-size: 0.88rem; color: var(--sk-slate-600); line-height: 1.8; }
@media (max-width: 820px) {
  .sk-flow {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
    gap: 14px;
    padding-top: 0;
  }
  .sk-flow::before {
    top: 22px;
    bottom: 22px;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: var(--sk-slate-200);
  }
  .sk-step {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: none;
    align-items: stretch;
    gap: 14px;
  }
  .sk-step:not(:last-child)::after { display: none; }
  .sk-step__node { margin: 0; }
  .sk-step__body {
    padding: 20px 20px 20px;
  }
}
@media (max-width: 480px) {
  .sk-flow { gap: 12px; }
  .sk-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .sk-step__node {
    width: 40px;
    height: 40px;
  }
  .sk-step__body { padding: 18px; }
}

.sk-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .sk-contact-grid { grid-template-columns: 1fr; } }
.sk-contact-aside .sk-h2 { color: #fff; }
.sk-contact-points { display: grid; gap: 14px; margin-top: 22px; }
.sk-contact-point { display: flex; gap: 12px; align-items: flex-start; color: var(--sk-slate-300); }
.sk-contact-point i { color: var(--sk-gold); margin-top: 3px; }
.sk-contact-card { background: #fff; border-radius: var(--sk-radius-lg); padding: 30px; box-shadow: var(--sk-shadow-lg); }

/* ---------- 複数選択ドロップダウン ---------- */
.sk-ms { position: relative; width: 100%; }
.sk-ms__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  font-family: var(--sk-font);
  font-size: 0.95rem;
  color: var(--sk-slate-500);
  background: var(--sk-slate-50);
  border: 1.5px solid var(--sk-slate-200);
  border-radius: var(--sk-radius-sm);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.sk-ms__trigger:hover { border-color: var(--sk-slate-300); }
.sk-ms.is-open .sk-ms__trigger { border-color: var(--sk-gold); background: #fff; }
.sk-ms__trigger.is-active { color: var(--sk-ink); font-weight: 600; }
.sk-ms__icon { color: var(--sk-slate-400); font-size: 0.9rem; flex-shrink: 0; }
.sk-ms__value { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sk-ms__caret { color: var(--sk-slate-400); font-size: 0.75rem; transition: transform 0.2s ease; }
.sk-ms.is-open .sk-ms__caret { transform: rotate(180deg); }

.sk-ms__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 280px;
  max-width: min(92vw, 420px);
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow-lg);
  z-index: 60;
  overflow: hidden;
}
.sk-ms__panel--wide { width: 380px; }
.sk-ms__panelhead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--sk-line);
  font-size: 0.78rem; font-weight: 700; color: var(--sk-slate-500);
}
.sk-ms__clear { background: none; border: none; color: var(--sk-gold-600); font-weight: 700; font-size: 0.8rem; cursor: pointer; padding: 0; }
.sk-ms__clear:hover { text-decoration: underline; }
.sk-ms__scroll { max-height: 320px; overflow-y: auto; padding: 8px; }
.sk-ms__group { margin-bottom: 6px; }
.sk-ms__grouplabel { font-size: 0.72rem; font-weight: 700; color: var(--sk-slate-400); padding: 8px 8px 4px; }
.sk-ms__options { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.sk-ms__panel:not(.sk-ms__panel--wide) .sk-ms__options { grid-template-columns: 1fr; }
.sk-ms__opt {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 9px; border-radius: 8px; cursor: pointer;
  font-size: 0.88rem; color: var(--sk-slate-700);
  transition: background 0.12s ease;
}
.sk-ms__opt:hover { background: var(--sk-slate-50); }
.sk-ms__opt.is-on { background: var(--sk-gold-soft); color: var(--sk-navy-800); font-weight: 600; }
.sk-ms__opt input { width: 16px; height: 16px; accent-color: var(--sk-gold-600); flex-shrink: 0; }

/* ---------- 右下固定CTA（FAB） ---------- */
.sk-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sk-fab a { color: #fff; }
.sk-fab__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.22);
  transition: transform 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}
.sk-fab__btn:hover { transform: translateY(-2px); filter: brightness(0.97); }
.sk-fab__btn i { font-size: 1.15rem; }
.sk-fab__btn--line { background: var(--sk-green); }
.sk-fab__btn--primary { background: var(--sk-gold); }
@media (max-width: 640px) {
  .sk-fab { right: 12px; bottom: 12px; gap: 8px; }
  .sk-fab__label { display: none; }
  .sk-fab__btn { width: 54px; height: 54px; justify-content: center; padding: 0; }
  .sk-fab__btn i { font-size: 1.4rem; }
}

/* ---------- お気に入り（ハート） ---------- */
.sk-fav {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--sk-line); background: rgba(255, 255, 255, 0.95);
  color: var(--sk-slate-400); cursor: pointer; display: grid; place-items: center;
  font-size: 1rem; transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  box-shadow: var(--sk-shadow-sm);
}
.sk-fav:hover { color: var(--sk-red); border-color: var(--sk-red); transform: scale(1.06); }
.sk-fav.is-on { color: var(--sk-red); border-color: var(--sk-red); background: #fff; }
.sk-fav-corner { position: absolute; top: 10px; right: 10px; z-index: 2; }

.sk-jobrow__barright { display: inline-flex; align-items: center; gap: 12px; }
.sk-jobrow__barright .sk-fav {
  width: 34px; height: 34px; box-shadow: none;
  background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.32); color: #fff;
}
.sk-jobrow__barright .sk-fav:hover,
.sk-jobrow__barright .sk-fav.is-on { color: #fff; background: var(--sk-red); border-color: var(--sk-red); }

/* ヘッダーお気に入り */
.sk-header__fav { position: relative; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem; color: var(--sk-slate-700); }
.sk-header__fav i { color: var(--sk-red); }
.sk-header__fav:hover { color: var(--sk-navy-800); }
.sk-header__favbadge {
  position: absolute; top: -9px; left: 11px;
  background: var(--sk-red); color: #fff; font-family: var(--sk-font-en);
  font-size: 0.64rem; font-weight: 700; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; display: grid; place-items: center; line-height: 1;
}
@media (max-width: 860px) { .sk-header__favlabel { display: none; } }

/* ---------- トップ：バナー2枠 ---------- */
.sk-banners { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 36px; }
@media (max-width: 860px) { .sk-banners { grid-template-columns: 1fr; } }
.sk-banner {
  display: block; border-radius: var(--sk-radius-sm); overflow: hidden;
  aspect-ratio: 3 / 1; box-shadow: var(--sk-shadow-sm); border: 1px solid var(--sk-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sk-banner:hover { transform: translateY(-3px); box-shadow: var(--sk-shadow-md); }
.sk-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 無料転職相談CTA ---------- */
.sk-consult-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(310px, 0.9fr) 230px;
  align-items: center;
  gap: 26px;
  min-height: 238px;
  margin: 28px 0 38px;
  padding: 28px 30px 24px 34px;
  color: #fff;
  letter-spacing: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 12px),
    linear-gradient(100deg, #008f7f 0%, #0f766e 54%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}
.sk-consult-cta::before {
  content: '';
  position: absolute;
  inset: 18px 20px;
  z-index: -1;
  border-top: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  pointer-events: none;
}
.sk-consult-cta__copy,
.sk-consult-cta__points,
.sk-consult-cta__visual {
  position: relative;
  z-index: 1;
}
.sk-consult-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 12px;
  color: #0f172a;
  background: #fff6cf;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}
.sk-consult-cta__eyebrow i { color: var(--sk-gold-600); }
.sk-consult-cta__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 0;
  color: #fff;
  font-size: 3.55rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 3px 0 rgba(15, 23, 42, 0.18);
}
.sk-consult-cta__free {
  position: relative;
  display: inline-block;
}
.sk-consult-cta__free::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -10px;
  height: 9px;
  background-image: radial-gradient(circle, #ff5579 0 5px, transparent 6px);
  background-size: 19px 9px;
  background-repeat: repeat-x;
}
.sk-consult-cta__lead {
  margin-top: 20px;
  padding-top: 12px;
  color: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(255,255,255,0.5);
  font-size: 1.06rem;
  font-weight: 800;
}
.sk-consult-cta__lead strong { color: #fff6cf; }
.sk-consult-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.sk-consult-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.sk-consult-cta__button:hover { transform: translateY(-2px); filter: brightness(0.98); }
.sk-consult-cta a.sk-consult-cta__button,
.sk-consult-cta a.sk-consult-cta__button:link,
.sk-consult-cta a.sk-consult-cta__button:visited,
.sk-consult-cta a.sk-consult-cta__button:hover,
.sk-consult-cta a.sk-consult-cta__button:active {
  color: #fff;
  text-decoration: none;
}
.sk-page a.sk-consult-cta__button--primary,
.sk-consult-cta__button--primary {
  color: #fff;
  background: var(--sk-gold);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}
.sk-page a.sk-consult-cta__button--line,
.sk-consult-cta__button--line {
  color: #fff;
  background: var(--sk-green);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}
.sk-consult-cta__points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sk-consult-cta__point {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 11px 16px;
  color: #0f172a;
  background: #fff;
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 5px 6px 0 rgba(15, 23, 42, 0.2);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
}
.sk-consult-cta__point i {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: #ff5579;
  border-radius: 50%;
  font-size: 0.74rem;
}
.sk-consult-cta__point strong {
  color: #0f766e;
  background: linear-gradient(transparent 52%, #fff08a 52%);
}
.sk-consult-cta__visual {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 190px;
}
.sk-consult-cta__visual img {
  width: 202px;
  height: 218px;
  object-fit: cover;
  object-position: 42% center;
  border: 3px solid rgba(255,255,255,0.95);
  border-radius: 13px 13px 0 0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
}
.sk-consult-cta__bubble {
  position: absolute;
  top: -12px;
  right: -4px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding-top: 10px;
  color: #fff7a6;
  background: #ff5579;
  border: 4px solid #fff36a;
  border-radius: 50% 50% 50% 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
  transform: rotate(7deg);
  text-align: center;
  font-weight: 900;
}
.sk-consult-cta__bubble span {
  display: block;
  color: #fff36a;
  font-size: 2rem;
  line-height: 0.95;
}
.sk-consult-cta__bubble small {
  display: block;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.1;
}
.sk-consult-cta--compact {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.88fr);
  min-height: 0;
  padding: 24px 26px;
}
.sk-consult-cta--compact .sk-consult-cta__title { font-size: 3rem; }
.sk-consult-cta--compact .sk-consult-cta__lead { font-size: 0.96rem; }
.sk-consult-cta--compact .sk-consult-cta__visual { display: none; }
.sk-consult-cta--compact .sk-consult-cta__visual img {
  width: 166px;
  height: 184px;
}
.sk-consult-cta--compact .sk-consult-cta__bubble {
  width: 92px;
  height: 92px;
}
.sk-consult-cta--compact .sk-consult-cta__bubble span { font-size: 1.56rem; }
.sk-consult-cta--compact .sk-consult-cta__bubble small { font-size: 0.76rem; }
.sk-consult-cta--sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  min-height: 0;
  margin: 16px 0 0;
  padding: 18px;
}
.sk-consult-cta--sidebar::before { inset: 12px; }
.sk-consult-cta--sidebar .sk-consult-cta__eyebrow {
  font-size: 0.72rem;
  padding: 6px 9px;
}
.sk-consult-cta--sidebar .sk-consult-cta__title { font-size: 2.05rem; }
.sk-consult-cta--sidebar .sk-consult-cta__lead {
  margin-top: 14px;
  font-size: 0.86rem;
}
.sk-consult-cta--sidebar .sk-consult-cta__actions { flex-direction: column; }
.sk-consult-cta--sidebar .sk-consult-cta__button { width: 100%; }
.sk-consult-cta--sidebar .sk-consult-cta__points { display: none; }
.sk-consult-cta--sidebar .sk-consult-cta__point {
  min-height: 0;
  padding: 9px 10px;
  box-shadow: 3px 4px 0 rgba(15, 23, 42, 0.2);
  font-size: 0.82rem;
}
.sk-consult-cta--sidebar .sk-consult-cta__visual {
  order: -1;
  min-height: 132px;
}
.sk-consult-cta--sidebar .sk-consult-cta__visual img {
  width: 100%;
  max-width: 210px;
  height: 132px;
  border-radius: 10px;
}
.sk-consult-cta--sidebar .sk-consult-cta__bubble {
  right: 12px;
  width: 78px;
  height: 78px;
  border-width: 3px;
}
.sk-consult-cta--sidebar .sk-consult-cta__bubble span { font-size: 1.3rem; }
.sk-consult-cta--sidebar .sk-consult-cta__bubble small { font-size: 0.68rem; }

@media (max-width: 1120px) {
  .sk-consult-cta,
  .sk-consult-cta--compact {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  }
  .sk-consult-cta__visual { display: none; }
}
@media (max-width: 820px) {
  .sk-consult-cta,
  .sk-consult-cta--compact {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .sk-consult-cta__title,
  .sk-consult-cta--compact .sk-consult-cta__title {
    font-size: 2.55rem;
  }
  .sk-consult-cta__points { gap: 10px; }
}
@media (max-width: 560px) {
  .sk-consult-cta,
  .sk-consult-cta--compact {
    margin: 22px 0 30px;
    padding: 22px 16px;
  }
  .sk-consult-cta::before { inset: 12px; }
  .sk-consult-cta__title,
  .sk-consult-cta--compact .sk-consult-cta__title {
    font-size: 2.12rem;
  }
  .sk-consult-cta__lead { font-size: 0.9rem; }
  .sk-consult-cta__actions { flex-direction: column; }
  .sk-consult-cta__button { width: 100%; }
  .sk-consult-cta__point {
    align-items: flex-start;
    min-height: 0;
    padding: 10px 12px;
    font-size: 0.88rem;
    box-shadow: 3px 4px 0 rgba(15, 23, 42, 0.2);
  }
}

/* 無料転職相談CTA: 参照画像の構成から離したカード型デザイン */
.sk-consult-cta {
  grid-template-columns: minmax(360px, 1.1fr) minmax(300px, 0.92fr) 238px;
  gap: 28px;
  min-height: 252px;
  padding: 32px;
  color: var(--sk-navy-800);
  background:
    linear-gradient(90deg, #fff 0%, #fff 58%, transparent 58%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #dbe3ec;
  border-left: 7px solid var(--sk-gold);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}
.sk-consult-cta::before {
  inset: 0 0 0 auto;
  z-index: 0;
  width: 46%;
  border: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.sk-consult-cta::after {
  content: 'CAREER SESSION';
  position: absolute;
  right: 28px;
  bottom: 18px;
  z-index: 0;
  color: rgba(255,255,255,0.11);
  font-family: var(--sk-font-en);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.sk-consult-cta__copy {
  max-width: 560px;
}
.sk-consult-cta__eyebrow {
  margin-bottom: 14px;
  color: var(--sk-gold-600);
  background: var(--sk-gold-soft);
  border: 1px solid #fed7aa;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0;
}
.sk-consult-cta__eyebrow i { color: var(--sk-gold-600); }
.sk-consult-cta__title {
  display: block;
  color: var(--sk-navy-800);
  max-width: 560px;
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.22;
  text-shadow: none;
}
.sk-consult-cta__lead {
  margin-top: 14px;
  padding-top: 0;
  max-width: 540px;
  color: var(--sk-slate-600);
  border-top: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.85;
}
.sk-consult-cta__actions {
  margin-top: 22px;
}
.sk-consult-cta__button {
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
}
.sk-consult-cta__button--primary {
  background: var(--sk-gold);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.22);
}
.sk-consult-cta__button--line {
  background: #0f172a;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}
.sk-consult-cta__points {
  gap: 10px;
}
.sk-consult-cta__point {
  align-items: flex-start;
  gap: 12px;
  min-height: 0;
  padding: 14px;
  color: var(--sk-navy-800);
  background: rgba(255,255,255,0.92);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}
.sk-consult-cta__point i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--sk-navy-800);
  border-radius: 10px;
  font-size: 0.86rem;
}
.sk-consult-cta__point span {
  display: grid;
  gap: 3px;
}
.sk-consult-cta__point strong {
  color: var(--sk-navy-800);
  background: none;
  font-size: 0.94rem;
  line-height: 1.35;
}
.sk-consult-cta__point small {
  color: var(--sk-slate-600);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}
.sk-consult-cta__visual {
  align-self: stretch;
  min-height: 194px;
  align-items: center;
  justify-content: center;
}
.sk-consult-cta__visual img {
  width: 208px;
  height: 210px;
  object-fit: cover;
  object-position: 42% center;
  border: 5px solid #fff;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}
.sk-consult-cta__note {
  position: absolute;
  right: 8px;
  bottom: 10px;
  display: grid;
  gap: 1px;
  min-width: 128px;
  padding: 10px 12px;
  color: var(--sk-navy-800);
  background: #fff;
  border-left: 4px solid var(--sk-gold);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}
.sk-consult-cta__note span {
  color: var(--sk-gold-600);
  font-weight: 900;
  line-height: 1.15;
}
.sk-consult-cta__note small {
  color: var(--sk-slate-600);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}
.sk-consult-cta--compact {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  min-height: 0;
  padding: 26px;
  background: #fff;
}
.sk-consult-cta--compact::before,
.sk-consult-cta--compact::after {
  content: none;
}
.sk-consult-cta--compact .sk-consult-cta__title {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}
.sk-consult-cta--compact .sk-consult-cta__lead {
  font-size: 0.9rem;
}
.sk-consult-cta--compact .sk-consult-cta__visual {
  display: none;
}
.sk-consult-cta--sidebar {
  gap: 14px;
  padding: 20px;
  color: var(--sk-navy-800);
  background: #fff;
  border-left-width: 5px;
}
.sk-consult-cta--sidebar::before,
.sk-consult-cta--sidebar::after {
  content: none;
}
.sk-consult-cta--sidebar .sk-consult-cta__visual {
  display: none;
}
.sk-consult-cta--sidebar .sk-consult-cta__title {
  font-size: 1.45rem;
}
.sk-consult-cta--sidebar .sk-consult-cta__lead {
  margin-top: 10px;
  font-size: 0.82rem;
}
.sk-consult-cta--sidebar .sk-consult-cta__points {
  display: none;
}
.sk-consult-cta--sidebar .sk-consult-cta__point {
  padding: 12px;
}
.sk-consult-cta--sidebar .sk-consult-cta__point i {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.sk-consult-cta--sidebar .sk-consult-cta__point small {
  display: none;
}

@media (max-width: 1120px) {
  .sk-consult-cta {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    background: #fff;
  }
  .sk-consult-cta::before,
  .sk-consult-cta::after,
  .sk-consult-cta__visual {
    display: none;
  }
}
@media (max-width: 820px) {
  .sk-consult-cta,
  .sk-consult-cta--compact {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }
  .sk-consult-cta__title,
  .sk-consult-cta--compact .sk-consult-cta__title {
    font-size: 1.72rem;
  }
  .sk-consult-cta__lead {
    font-size: 0.9rem;
  }
}
@media (max-width: 560px) {
  .sk-consult-cta,
  .sk-consult-cta--compact {
    margin: 22px 0 30px;
    padding: 22px 16px;
    border-left-width: 5px;
  }
  .sk-consult-cta__eyebrow {
    font-size: 0.72rem;
  }
  .sk-consult-cta__title,
  .sk-consult-cta--compact .sk-consult-cta__title {
    font-size: 1.48rem;
  }
  .sk-consult-cta__actions {
    flex-direction: column;
  }
  .sk-consult-cta__button {
    width: 100%;
  }
  .sk-consult-cta__point {
    padding: 12px;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  }
}

/* 無料転職相談CTA: 支給画像版 */
.sk-consult-cta,
.sk-consult-cta--compact,
.sk-consult-cta--sidebar {
  display: block;
  min-height: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.sk-consult-cta {
  margin: 28px 0 38px;
}
.sk-consult-cta--compact {
  margin: 24px 0 30px;
}
.sk-consult-cta--sidebar {
  margin: 16px 0 0;
}
.sk-consult-cta::before,
.sk-consult-cta::after,
.sk-consult-cta--compact::before,
.sk-consult-cta--compact::after,
.sk-consult-cta--sidebar::before,
.sk-consult-cta--sidebar::after {
  content: none;
  display: none;
}
.sk-consult-cta__link {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.18s ease;
}
.sk-consult-cta__link:hover {
  transform: translateY(-2px);
  box-shadow: none;
}
.sk-consult-cta__link img {
  display: block;
  width: 100%;
  height: auto;
}
.sk-consult-cta--sidebar .sk-consult-cta__link {
  border-radius: 10px;
  box-shadow: none;
}
@media (max-width: 560px) {
  .sk-consult-cta,
  .sk-consult-cta--compact {
    margin: 22px 0 30px;
  }
  .sk-consult-cta__link {
    border-radius: 12px;
  }
}

/* ---------- ユーティリティ ---------- */
.sk-reveal { opacity: 0; transform: translateY(16px); animation: sk-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.sk-reveal-1 { animation-delay: 0.05s; }
.sk-reveal-2 { animation-delay: 0.15s; }
.sk-reveal-3 { animation-delay: 0.25s; }
.sk-reveal-4 { animation-delay: 0.35s; }
@keyframes sk-rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .sk-reveal { animation: none; opacity: 1; transform: none; }
  .sk-btn, .sk-job { transition: none; }
}

/* =========================================================================
   コラム（キャリアコラム）一覧・記事  ※WordPressから移行
   ========================================================================= */

/* 一覧カテゴリタブ */
.sk-col-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.sk-col-tab {
  display: inline-flex; align-items: center; padding: 8px 18px;
  border: 1px solid var(--sk-line); border-radius: 999px;
  background: #fff; color: var(--sk-navy-700); font-weight: 700; font-size: .92rem;
  transition: all .15s ease;
}
.sk-col-tab:hover { border-color: var(--sk-gold); color: var(--sk-gold-600); }
.sk-col-tab.is-active { background: var(--sk-navy-800); color: #fff; border-color: var(--sk-navy-800); }

/* カードグリッド */
.sk-col-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* コラムカード */
.sk-col-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--sk-line); border-radius: var(--sk-radius-lg);
  overflow: hidden; box-shadow: var(--sk-shadow-sm); transition: all .2s ease;
}
.sk-col-card:hover { box-shadow: var(--sk-shadow-md); transform: translateY(-3px); }
.sk-col-card__photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #eef2f7; }
.sk-col-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.sk-col-card:hover .sk-col-card__photo img { transform: scale(1.05); }
.sk-col-card__cat {
  position: absolute; left: 10px; top: 10px; padding: 4px 12px;
  background: var(--sk-gold); color: #fff; font-size: .76rem; font-weight: 700;
  border-radius: 999px;
}
.sk-col-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sk-col-card__date { color: var(--sk-navy-600); font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.sk-col-card__title {
  font-size: 1.05rem; font-weight: 800; line-height: 1.5; color: var(--sk-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sk-col-card:hover .sk-col-card__title { color: var(--sk-gold-600); }
.sk-col-card__desc {
  color: var(--sk-navy-600); font-size: .88rem; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* 記事ヘッダー */
.sk-article-meta { display: flex; align-items: center; gap: 14px; margin: 6px 0; color: var(--sk-slate-300); font-weight: 600; }
.sk-article-title { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; line-height: 1.45; margin-top: 6px; }

/* 記事本文ラッパ（読みやすい幅に） */
.sk-article-wrap { max-width: 820px; }
.sk-article-hero { aspect-ratio: 16 / 9; border-radius: var(--sk-radius-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--sk-shadow); background: #eef2f7; }
.sk-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.sk-article-back { margin-top: 40px; text-align: center; }

/* 記事本文タイポグラフィ（WordPress Gutenberg ブロック由来のHTML） */
.sk-article { color: var(--sk-ink); font-size: 1.02rem; line-height: 1.95; }
.sk-article > :first-child { margin-top: 0; }
.sk-article h2 {
  font-size: 1.45rem; font-weight: 800; line-height: 1.5; margin: 2.2em 0 .9em;
  padding: 14px 18px; border-left: 5px solid var(--sk-gold);
  background: #f6f9fc; border-radius: 0 var(--sk-radius-sm) var(--sk-radius-sm) 0;
}
.sk-article h3 {
  font-size: 1.2rem; font-weight: 800; margin: 1.8em 0 .7em;
  padding-bottom: .4em; border-bottom: 2px solid var(--sk-line);
}
.sk-article h4 { font-size: 1.08rem; font-weight: 800; margin: 1.5em 0 .6em; }
.sk-article p { margin: 0 0 1.4em; }
.sk-article a { color: var(--sk-gold-600); text-decoration: underline; font-weight: 600; }
.sk-article ul, .sk-article ol { margin: 0 0 1.5em; padding-left: 1.6em; }
.sk-article li { margin-bottom: .5em; }
.sk-article ul li { list-style: disc; }
.sk-article ol li { list-style: decimal; }
.sk-article img { max-width: 100%; height: auto; border-radius: var(--sk-radius); margin: 1em 0; }
.sk-article blockquote {
  margin: 1.6em 0; padding: 14px 20px; border-left: 4px solid var(--sk-slate-300);
  background: #f6f9fc; color: var(--sk-navy-700); border-radius: 0 var(--sk-radius-sm) var(--sk-radius-sm) 0;
}
.sk-article strong { font-weight: 800; }
.sk-article hr { border: 0; border-top: 1px solid var(--sk-line); margin: 2em 0; }

/* 記事内テーブル */
.sk-article .wp-block-table, .sk-article figure.wp-block-table { margin: 1.6em 0; overflow-x: auto; }
.sk-article table { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; }
.sk-article th, .sk-article td { border: 1px solid var(--sk-line); padding: 10px 14px; text-align: left; vertical-align: top; }
.sk-article thead th, .sk-article th { background: #f1f5f9; font-weight: 700; }
.sk-article tbody tr:nth-child(even) td { background: #fafcfe; }

@media (max-width: 640px) {
  .sk-article { font-size: .98rem; line-height: 1.85; }
  .sk-article h2 { font-size: 1.25rem; }
}

/* コラム一覧ページャ */
.sk-pager { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.sk-pager__num, .sk-pager__btn {
  min-width: 42px; height: 42px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--sk-line); border-radius: var(--sk-radius-sm);
  background: #fff; color: var(--sk-navy-700); font-weight: 700; transition: all .15s ease;
}
.sk-pager__num:hover, .sk-pager__btn:hover { border-color: var(--sk-gold); color: var(--sk-gold-600); }
.sk-pager__num.is-active,
.sk-page a.sk-pager__num.is-active { background: var(--sk-navy-800); color: #fff; border-color: var(--sk-navy-800); }

/* =========================================================================
   可読性修正・no-image対応（暗背景の白文字 / ロゴのno-imageサムネ）
   ========================================================================= */

/* 暗背景(sk-blueprint)上の見出しは白に（.sk-h2 の既定は暗色のため不可視になる） */
.sk-blueprint .sk-h2,
.sk-detail-head .sk-h2,
.sk-pagehead .sk-h2 { color: #fff; }

/* 色付きボタンの文字色を、.sk-page の外（Footer等）でも白に固定する。
   YTC の a:link{color:#333}(0,1,1) に勝つよう a.<class>(0,2,0) で指定。 */
a.sk-btn--primary,
a.sk-btn--navy,
a.sk-btn--line,
a.sk-btn--ghost-light { color: #fff; }

/* no-image サムネ：セコカンjobロゴを中央に小さめ表示 */
.sk-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}
.sk-noimg img {
  width: 52%;
  max-width: 150px;
  height: auto;
  opacity: 0.55;
}

/* 働き方診断バナー（Footer。自己完結型バナーを全幅表示） */
.sk-diagnosis-band { padding: 44px 0; background: var(--sk-slate-50); }
