    /* =========================================================
      JOB FAIR LP (scoped)
      - ステップ既存テンプレ干渉を避けるため .jobfair-lp 配下に限定
      - 角丸廃止（border-radius:0）
    ========================================================= */

    :root{
      --bg:#f6f7fb;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#64748b;
      --line:#e5e7eb;
      --accent:#e60012;
      --accent2:#0ea5e9;
      --radius:0px; /* ← 角丸廃止 */
      --shadow:0 10px 30px rgba(15,23,42,.08);
      --max:1200px;
    }

    /* 既存CSSの影響を最小化 */
    html, body{
      margin:0;
      padding:0;
      background:var(--bg);
      color:var(--text);
      font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif;
      line-height:1.75;
    }
    img{ max-width:100%; height:auto; display:block; }

    /* ユーザー指定：ヘッダー調整用の img 幅（削除しない） */
    h1 img{ width:150px; }

    /* layout */
    .jobfair-lp{
      background:var(--bg);
      overflow-x:hidden;
    }
    .jobfair-lp .container{
      max-width:var(--max);
      margin:0 auto;
      padding:0 18px;
    }

    /* hero */
    .jobfair-lp .hero{
      padding:8px 0 0px;
    }
    .jobfair-lp .hero-inner{
      border:1px solid var(--line);
      border-radius:0;
      box-shadow:var(--shadow);
      padding:0px 18px 26px;
    }
    @media (min-width: 769px){
      .jobfair-lp .hero-inner{
        padding:20px 28px 34px;
      }
    }

    /* ★ 追加：ページ上部バナー */
    .jobfair-lp .hero-banner{
      border:1px solid var(--line);
      background:#fff;
      border-radius:0;
      overflow:hidden;
      margin-bottom:14px;
    }
    .jobfair-lp .hero-banner img{
      width:100%;
      height:auto;
      display:block;
    }

    .jobfair-lp .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:12px;
      font-weight:700;
      color:var(--text);
      background:#fff;
      border:1px solid var(--line);
      border-radius:0;
      padding:6px 10px;
      margin-bottom:10px;
    }
    .jobfair-lp .hero h1{
      margin:0 0 10px;
      font-size:24px;
      line-height:1.25;
      letter-spacing:.02em;
    }
    @media (min-width: 769px){
      .jobfair-lp .hero h1{ font-size:34px; }
    }
    .jobfair-lp .hero p.lead{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    @media (min-width: 769px){
      .jobfair-lp .hero p.lead{ font-size:16px; }
    }

    /* CTA */
    .jobfair-lp .cta-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:14px;
    }
    .jobfair-lp .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:0;
      padding:12px 14px;
      text-decoration:none;
      font-weight:800;
      border:1px solid transparent;
      transition:transform .05s ease, filter .2s ease;
      user-select:none;
    }
    .jobfair-lp .btn:active{ transform:translateY(1px); }
    .jobfair-lp .btn-primary{
      background:var(--accent);
      color:#fff;
      border-color:rgba(230,0,18,.35);
    }
    .jobfair-lp .btn-secondary{
      background:#fff;
      color:var(--text);
      border-color:var(--line);
    }
    .jobfair-lp .btn:hover{ filter:brightness(1.02); }

    /* blocks */
    .jobfair-lp .block{
      padding:18px 0;
    }
    .jobfair-lp .card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:0;
      box-shadow:var(--shadow);
      padding:18px;
    }
    @media (min-width: 769px){
      .jobfair-lp .card{ padding:22px; }
    }
    .jobfair-lp h2{
      margin:0 0 10px;
      font-size:18px;
      letter-spacing:.02em;
    }
    @media (min-width: 769px){
      .jobfair-lp h2{ font-size:22px; }
    }
    .jobfair-lp .copy p{
      margin:0 0 12px;
    }
    .jobfair-lp .copy p:last-child{ margin-bottom:0; }

    /* items */
	.jobfair-lp .grid{
	  display:grid;
	  grid-template-columns:1fr;
	  gap:18px;
	}

	@media (min-width: 769px){
	  .jobfair-lp .grid{
		grid-template-columns:repeat(2, 1fr); /* ← 3列→2列に変更 */
	  }
	}
	.jobfair-lp .item{
	  display:flex;
	  flex-direction:column;
	  gap:14px;
	  padding:18px;
	  border:1px solid var(--line);
	  background:#fff;
	}

	@media (min-width: 769px){
	  .jobfair-lp .item{
		flex-direction:row;
		align-items:flex-start;
	  }

	  .jobfair-lp .item .thumb{
		width:42%;
	  }

	  .jobfair-lp .item .meta{
		width:58%;
	  }

	  .jobfair-lp .item .thumb img{
		height:220px;
		object-fit:contain;
	  }
	}

    .jobfair-lp .item .k{
      font-weight:900;
      font-size:14px;
      margin:0;
    }
    .jobfair-lp .item .d{
      color:var(--muted);
      font-size:13px;
      margin:0;
    }

    .jobfair-lp .item a:hover{ filter:brightness(1.02); }

    /* section labels */
    .jobfair-lp .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .jobfair-lp .section-head .note{
      color:var(--muted);
      font-size:12px;
      margin:0;
    }

    /* bottom CTA */
    .jobfair-lp .big-cta{

      border:1px solid var(--line);
      border-radius:0;
      box-shadow:var(--shadow);
      padding:18px;
    }
    @media (min-width: 769px){
      .jobfair-lp .big-cta{ padding:22px; }
    }
    .jobfair-lp .big-cta h2{ margin-bottom:6px; }
    .jobfair-lp .big-cta p{
      margin:0;
      color:var(--muted);
    }

    /* small helper */
    .jobfair-lp .sep{
      height:1px;
      background:var(--line);
      margin:14px 0;
    }
/* =========================
  商品カード：アピール強化（仕様・タグ・ポイント）
========================= */
.jobfair-lp .item .tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:0;
  padding:0;
  list-style:none;
}
.jobfair-lp .item .tags li{
  font-size:12px;
  font-weight:800;
  color:#0f172a;
  background:#f8fafc;
  border:1px solid var(--line);
  padding:4px 8px;
}

.jobfair-lp .item .spec{
  border-top:1px dashed var(--line);
  padding-top:10px;
  margin-top:2px;
}
.jobfair-lp .item .spec dl{
  display:grid;
  grid-template-columns:88px 1fr;
  gap:6px 10px;
  margin:0;
  font-size:13px;
}
.jobfair-lp .item .spec dt{
  color:var(--muted);
  font-weight:800;
}
.jobfair-lp .item .spec dd{
  margin:0;
  font-weight:700;
}

.jobfair-lp .item .points{
  margin:8px 0 0;
  padding-left:18px;
  color:#0f172a;
  font-size:13px;
}
.jobfair-lp .item .points li{ margin:4px 0; }



/* SPでカードの“見出し感”を強める */
@media (max-width: 768px){
  .jobfair-lp .item .k{ font-size:15px; }
  .jobfair-lp .item{ padding:16px; }
  .jobfair-lp .item .thumb img{ height:190px; }
}

/* HEROの主CTAだけ赤を避けて、落ち着いた紺/グレー系に */
.jobfair-lp .btn-primary.btn-hero{
  background:#1f2a44;         /* 例：濃いめネイビー */
  border-color:rgba(31,42,68,.35);
}
.jobfair-lp .btn-primary.btn-hero:hover{ filter:brightness(1.06); }



/* 画像リンクは装飾しない */
.jobfair-lp .item .thumb a{
  display:block;
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
  line-height:0;
  text-decoration:none;
}

/* 商品ページを見るボタンだけ装飾 */
.jobfair-lp .item .meta > a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:auto;
  padding:10px 12px;
  background:#fff;
  color:#0f172a;
  text-decoration:none;
  font-weight:900;
  border:1px solid #cbd5e1;
  border-radius:0;
}

.jobfair-lp .item .meta > a:hover{
  background:#f8fafc;
  filter:none;
}

/* 主ボタン化したい時用 */
.jobfair-lp .item .meta > a.-primary{
  background:var(--accent2);
  color:#fff;
  border-color:rgba(14,165,233,.45);
}

.jobfair-lp .item .meta > a.-primary:hover{
  filter:brightness(1.02);
}


/* =========================
  申込の流れ（JOB FAIR LP向け）
========================= */
.jobfair-lp .flow{
  padding:18px 0;
}
.jobfair-lp .flow .flow-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:18px;
}
@media (min-width:769px){
  .jobfair-lp .flow .flow-card{ padding:22px; }
}

.jobfair-lp .flow .flow-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:12px;
}
@media (min-width:769px){
  .jobfair-lp .flow .flow-grid{
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
  }
}

.jobfair-lp .flow .flow-step{
  border:1px solid var(--line);
  background:#fff;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.jobfair-lp .flow .step-head{
  display:flex;
  align-items:center;
  gap:10px;
}
.jobfair-lp .flow .step-no{
  font-weight:900;
  font-size:12px;
  letter-spacing:.06em;
  color:#0f172a;
  border:1px solid var(--line);
  background:#f8fafc;
  padding:4px 8px;
}
.jobfair-lp .flow .step-title{
  font-weight:900;
  margin:0;
  font-size:14px;
}

.jobfair-lp .flow .step-ico{
  width:72px;
  height:72px;
  border:1px solid var(--line);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.jobfair-lp .flow .step-ico img{
  width:56px;
  height:56px;
  object-fit:contain;
}

.jobfair-lp .flow .step-desc{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

/* フロー下のボタン（赤は使わず、LPに合わせた紺） */
.jobfair-lp .flow .flow-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.jobfair-lp .flow .flow-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  font-weight:900;
  text-decoration:none;
  border:1px solid #cbd5e1;
  background:#0f172a;
  color:#fff;
}
.jobfair-lp .flow .flow-btn:hover{ filter:brightness(1.06); }
.jobfair-lp .flow .flow-btn.-ghost{
  background:#fff;
  color:#0f172a;
}
.jobfair-lp .flow .flow-btn.-ghost:hover{
  background:#f8fafc;
  filter:none;
}


/* buttonのデフォルトを消して、枠の計算を安定させる */
.jobfair-lp .jf-th{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  padding:0;
  margin:0;
  background:transparent;
  line-height:0;           /* ← これがズレ対策に効く */
  box-sizing:border-box;
  flex:0 0 auto;
  cursor:pointer;
  position:relative;
  outline:none;            /* デフォoutlineは消す（代わりに下でfocus表示） */
}

/* 画像の下に出る謎の隙間（inline基準線）を消す */
.jobfair-lp .jf-th img{
  display:block;           /* ← これもズレ対策に効く */
  width:220px;             /* 必要に応じて調整 */
  height:120px;            /* 高さ固定でデコボコ防止 */
  object-fit:cover;
  object-position:center;
}

/* hover：少し明るく（「選択できる」感） */
@media (hover:hover){
  .jobfair-lp .jf-th:hover img{
    filter:brightness(1.08);
  }
}

/* 選択中：ページに合わせたアクセント（赤線じゃなく“上品な枠”） */
.jobfair-lp .jf-th.is-active{
  /* STEP系の赤に寄せたい場合：下の色だけ変えればOK */
  box-shadow:
    0 0 0 2px #e60012 inset,   /* 内側のライン（ズレにくい） */
    0 0 0 1px rgba(0,0,0,.08); /* うっすら外側で馴染ませ */
}

/* 選択中は少しだけ強調（やりすぎない） */
.jobfair-lp .jf-th.is-active img{
  filter:brightness(1.03);
}

/* キーボード操作時も分かるように（デザイン馴染むfocus） */
.jobfair-lp .jf-th:focus-visible{
  box-shadow:
    0 0 0 2px #111 inset,
    0 0 0 1px rgba(0,0,0,.10);
}

/* =========================
  Radius OFF（角丸完全なし）
========================= */
.card, .btn, .pill, .hero-badge,
.kmw-main, .kmw-thumb,
.price, .spec-table, .note, .kmw-contactCard{
  border-radius:0 !important;
}

#breadcrumbs{
  display: block !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 18px;
  padding: 18px 20px 0;
  box-sizing: border-box;
  font-size: 13px;
}

#breadcrumbs ol{
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#breadcrumbs li{
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: #666;
}

#breadcrumbs li:not(:last-child)::after{
  content: ">";
  color: #999;
  font-size: 11px;
}

#breadcrumbs a{
  color: #666;
  text-decoration: none;
}

#breadcrumbs a:hover{
  color: #222;
}

/* =========================
   就職説明会：説明文まわり
   ========================= */
.copy-jobfair h2 {
  margin: 0 0 18px;
  line-height: 1.5;
}

.copy-jobfair h3 {
  margin: 34px 0 14px;
  padding-left: 12px;
  border-left: 4px solid #2da9d7;
  font-size: 1.35rem;
  line-height: 1.5;
}

.copy-jobfair p {
  margin: 0;
  line-height: 2;
}

.copy-jobfair p + p {
  margin-top: 16px;
}

/* =========================
   就職説明会：展示事例カード
   ========================= */
#cases-gallery .section-head {
  margin-bottom: 18px;
}

.jobcase-list {
  display: grid;
  gap: 28px;
}

.jobcase-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 18px;
  border: 1px solid #39afd9;
  background: #fff;
  text-decoration: none;
  color: #222;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.jobcase-card:hover {
  background: #fcfeff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.jobcase-thumb {
  flex: 0 0 180px;
  max-width: 180px;
}

.jobcase-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.jobcase-body {
  flex: 1;
  min-width: 0;
}

.jobcase-body h3 {
  margin: 2px 0 18px;
  color: #2da9d7;
  font-size: 1.05rem;
  line-height: 1.5;
  text-decoration: underline;
  font-weight: 500;
}

.jobcase-body p {
  margin: 0;
  color: #222;
  line-height: 2;
  font-size: 0.98rem;
}

@media screen and (max-width: 767px) {
  .jobcase-card {
    display: block;
    padding: 14px;
  }

  .jobcase-thumb {
    max-width: 100%;
    margin-bottom: 14px;
  }

  .jobcase-body h3 {
    margin: 0 0 12px;
    font-size: 1rem;
  }

  .copy-jobfair h3 {
    margin-top: 26px;
    font-size: 1.15rem;
  }
}

/* =========================
   JOB FAIR：展示事例ギャラリー
   統合整理版
   ========================= */
.jobfair-lp #cases-gallery .jf-gallery{
  border-radius:0 !important;
}

.jobfair-lp #cases-gallery .jf-g-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.jobfair-lp #cases-gallery .jf-g-title{
  margin:0;
  font-weight:700;
}

.jobfair-lp #cases-gallery .jf-g-controls{
  display:flex;
  gap:8px;
}

.jobfair-lp #cases-gallery .jf-g-btn{
  width:38px;
  height:38px;
  border:1px solid #d0d7de;
  background:#fff;
  border-radius:0 !important;
  cursor:pointer;
  font-size:22px;
  line-height:1;
}

.jobfair-lp #cases-gallery .jf-g-btn:hover{
  background:#f3f4f6;
}

.jobfair-lp #cases-gallery .jf-stage{
  display:block;
  position:relative;
  border:1px solid #d0d7de;
  border-radius:0 !important;
  overflow:hidden;
  text-decoration:none;
  background:#fff;
  aspect-ratio:16 / 9;
}

.jobfair-lp #cases-gallery .jf-stage img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.jobfair-lp #cases-gallery .jf-stage-cap{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:10px 12px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,0));
}

.jobfair-lp #cases-gallery .jf-thumbs{
  display:flex;
  gap:12px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding:10px 2px;
}

.jobfair-lp #cases-gallery .jf-th{
  appearance:none;
  -webkit-appearance:none;
  position:relative;
  flex:0 0 auto;
  width:220px;
  margin:0;
  padding:0;
  border:1px solid #d0d7de;
  background:#fff;
  border-radius:0 !important;
  cursor:pointer;
  overflow:hidden;
  outline:none;
  line-height:0;
  box-sizing:border-box;
  aspect-ratio:16 / 9;
  transition:filter .18s ease, transform .18s ease, box-shadow .18s ease;
}

@media (max-width:768px){
  .jobfair-lp #cases-gallery .jf-th{
    width:160px;
  }
}

.jobfair-lp #cases-gallery .jf-th img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transform:scale(1.001);
}

@media (hover:hover){
  .jobfair-lp #cases-gallery .jf-th:hover img{
    filter:brightness(1.08);
  }
}

.jobfair-lp #cases-gallery .jf-th:hover{
  transform:translateY(-1px);
}

.jobfair-lp #cases-gallery .jf-th.is-active{
  box-shadow:
    0 0 0 2px #e60012 inset,
    0 0 0 1px rgba(0,0,0,.08);
  filter:brightness(1.05);
}

.jobfair-lp #cases-gallery .jf-th.is-active img{
  filter:brightness(1.03);
}

.jobfair-lp #cases-gallery .jf-th:focus-visible{
  box-shadow:
    0 0 0 2px #111 inset,
    0 0 0 1px rgba(0,0,0,.10);
}

@media (max-width: 768px){
  .jobfair-lp .hero-banner{
    margin: 0 -18px 16px;
    border-left: 0;
    border-right: 0;
  }
}