/* =========================================================
   Job is Well — Landing Page
   Design tokens (完成イメージ・背景画像から抽出)
   ========================================================= */
:root {
  /* colors */
  --color-primary:        #0236AE;   /* 一次アクション青 */
  --color-primary-deep:   #0026A4;   /* 濃いボタン */
  --color-primary-hover:  #042B8C;
  --color-headline:       #14246E;   /* 見出し濃紺インク */
  --color-navy:           #001657;   /* セクション濃紺背景に合わせた地色 */
  --color-navy-deep:      #001C5B;
  --color-on-primary:     #FFFFFF;
  --color-on-navy:        #FFFFFF;
  --color-on-navy-sub:    #C5D0EC;
  --color-text-body:      #3A4252;
  --color-text-sub:       #5B6473;
  --color-badge-border:   #C3D2F5;
  --color-badge-text:     #1E3DA6;
  --color-surface:        #FBFCFE;   /* 暖色寄りの白(純白は不使用) */
  --color-surface-2:      #F4F7FC;
  --color-hairline:       #E4E8F0;
  --color-gold:           #EAE0C2;   /* 実績数字のシャンパンゴールド */
  --color-tag:            #163A8C;

  /* typography */
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", sans-serif;
  --font-serif: "Noto Serif JP", "Times New Roman", "YuMincho", serif;

  /* radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-card: 16px;
  --r-pill: 999px;

  /* layout */
  --content: 1200px;
  --page-x: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base);
  color: var(--color-text-body);
  background: #eef1f7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* 全ブロック共通: 背景は画面全幅。内側のコンテンツのみ中央寄せ */
.block {
  position: relative;
  width: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* 内側コンテンツの共通ラッパー幅（背景は全幅・中身は --content 幅） */
.hero__inner,
.mission__inner,
.steps__inner,
.stats__inner,
.voices__inner,
.cta-banner__inner,
.footer__inner {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
}

/* 共通パーツ ---------------------------------------------- */
.cta__arrow { font-size: 1em; line-height: 1; }

.btn {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn--download {
  background: rgba(255,255,255,0.85);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 10px 22px;
}
.btn--download:hover { background: #fff; }
.btn--contact {
  background: var(--color-primary-deep);
  color: var(--color-on-primary);
  padding: 11px 24px;
}
.btn--contact:hover { background: var(--color-primary-hover); }

/* pill button (私たちの想いを見る / 一覧を見る / 会社案内) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 260px;
  padding: 17px 26px;
  background: #fff;
  color: var(--color-headline);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.btn-pill .cta__arrow { color: var(--color-primary); }
.btn-pill:hover { box-shadow: 0 6px 18px rgba(0,0,0,.15); transform: translateY(-1px); }
.btn-pill--sm { min-width: 160px; padding: 11px 20px; font-size: 14px; border: 1.5px solid var(--color-primary); }
.btn-pill--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
  min-width: 220px;
  padding: 12px 22px;
  font-size: 14px;
}
.btn-pill--outline .cta__arrow { color: #fff; }
.btn-pill--outline:hover { background: rgba(255,255,255,.12); }

.section-title {
  color: var(--color-headline);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: .04em;
}
.section-title--center { text-align: center; }

/* =========================================================
   BLOCK 01 : Hero
   ========================================================= */
.block--hero {
  background-image: url("assets/block_01_bg.png");
  background-position: center right;
  padding-bottom: 28px;            /* 特長カード下の余白はブロック内で確保 */
}
.hero__inner { position: relative; z-index: 2; padding: 28px var(--page-x) 0; }
.nav { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav__logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .01em;
  color: #0C1330;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav__logo-img { height: 48px; width: auto; display: block; }
.footer__logo-img { height: 48px; width: auto; display: block; }
}
.nav__badge {
  font-size: 12.5px; font-weight: 700;
  color: var(--color-badge-text);
  border: 1.5px solid var(--color-badge-border);
  border-radius: var(--r-pill);
  padding: 7px 16px; white-space: nowrap;
  background: rgba(255,255,255,.4);
}
.nav__menu { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav__menu a { font-size: 15px; font-weight: 700; color: #1B2440; text-decoration: none; white-space: nowrap; transition: color .15s; }
.nav__menu a:hover { color: var(--color-primary); }
.nav__menu-cta { display: none; } /* デスクトップでは nav__actions を使用、ドロワー時のみ表示 */
.nav__actions { display: flex; gap: 12px; margin-left: 24px; flex: 0 0 auto; }

.hero__copy { max-width: 620px; padding-top: 56px; padding-bottom: 60px; }
.hero__title { color: var(--color-headline); font-weight: 800; font-size: 56px; line-height: 1.32; letter-spacing: .005em; }
.hero__title span { white-space: nowrap; }
.hero__lead { color: var(--color-headline); font-weight: 700; font-size: 28px; line-height: 1.5; margin-top: 28px; }
.hero__desc { color: var(--color-text-sub); font-size: 16px; line-height: 2; margin-top: 26px; font-weight: 500; }
.hero__cta { display: flex; gap: 20px; margin-top: 40px; }
.cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 24px; min-width: 290px; font-size: 16px; font-weight: 700;
  border-radius: var(--r-sm); padding: 18px 24px; text-decoration: none;
  white-space: nowrap; transition: background .15s ease, transform .1s ease;
}
.cta:active { transform: translateY(1px); }
.cta--primary { background: var(--color-primary); color: var(--color-on-primary); }
.cta--primary:hover { background: var(--color-primary-hover); }
.cta--ghost { background: rgba(255,255,255,.7); color: var(--color-headline); border: 1.5px solid #B9C6E6; }
.cta--ghost:hover { background: #fff; }
.cta--ghost .cta__arrow { color: var(--color-primary); }

.features {
  position: relative; z-index: 2;
  max-width: var(--content);
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(20,36,110,.10);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.feature { padding: 36px 28px; border-right: 1px solid var(--color-hairline); }
.feature:last-child { border-right: none; }
.feature__head { display: flex; align-items: flex-start; gap: 14px; }
.feature__icon { flex: 0 0 auto; width: 44px; height: 44px; color: var(--color-primary); }
.feature__icon svg { width: 100%; height: 100%; }
.feature__title { color: var(--color-headline); font-size: 16px; font-weight: 800; line-height: 1.45; padding-top: 2px; }
.feature__desc { color: var(--color-text-sub); font-size: 13.5px; line-height: 1.85; margin-top: 18px; font-weight: 500; }

/* =========================================================
   BLOCK 02 : Mission
   ========================================================= */
.block--mission {
  background-image: url("assets/block_02_bg.png");
  background-color: var(--color-navy);
  background-size: cover;       /* ブロック比率を画像と一致させているため歪まず全体表示 */
  background-position: center;
  aspect-ratio: 3200 / 824;     /* 背景画像と同じ縦横比でブロック高さを確保 */
  display: flex;
  align-items: center;
}
.mission__inner {
  max-width: var(--content); margin: 0 auto; width: 100%;
  padding: 0 var(--page-x);
}
.mission__eyebrow { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .18em; }
.mission__title { color: #fff; font-weight: 800; font-size: clamp(26px, 3vw, 40px); line-height: 1.45; margin-top: 14px; letter-spacing: .02em; }
.mission__desc { color: var(--color-on-navy-sub); font-size: clamp(13px, 1.1vw, 15px); line-height: 2.0; margin-top: 22px; }
.block--mission .btn-pill { margin-top: clamp(20px, 2.5vw, 36px); margin-bottom: clamp(8px, 1.5vw, 20px); }

/* =========================================================
   BLOCK 03 : Steps
   ========================================================= */
.block--steps {
  background-image: url("assets/block_03_bg.png");
  background-color: var(--color-surface);
}
.steps__inner { max-width: var(--content); margin: 0 auto; padding: 64px var(--page-x); }
.steps__eyebrow { text-align: center; color: var(--color-primary); font-weight: 700; font-size: 16px; }
.steps__slash { color: var(--color-primary); margin: 0 6px; font-weight: 400; }
.steps__title { text-align: center; color: var(--color-headline); font-weight: 800; font-size: 30px; margin-top: 10px; letter-spacing: .03em; }
.steps__list {
  list-style: none; margin-top: 40px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  align-items: stretch;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid #E6ECF6;
  border-radius: var(--r-card);
  padding: 30px 16px 26px;
  text-align: center;
}
.step:not(:last-child)::after {
  content: "\203A";
  position: absolute; top: 50%; right: -13px; transform: translateY(-50%);
  color: var(--color-primary); font-size: 22px; font-weight: 700; z-index: 3;
}
.step__icon { display: block; width: 52px; height: 52px; margin: 0 auto 16px; color: var(--color-primary); }
.step__icon svg { width: 100%; height: 100%; }
.step__title { color: var(--color-headline); font-weight: 700; font-size: 14.5px; line-height: 1.5; }
.step__title b { color: var(--color-primary); font-weight: 800; margin-right: 2px; }
.step__desc { color: var(--color-text-sub); font-size: 12.5px; line-height: 1.7; margin-top: 10px; }

/* =========================================================
   BLOCK 04 : Stats
   ========================================================= */
.block--stats {
  background-image: url("assets/block_04_bg.png");
  background-color: var(--color-navy);
}
.stats__inner { max-width: var(--content); margin: 0 auto; padding: 56px var(--page-x); }
.stats__title { text-align: center; color: #fff; font-weight: 800; font-size: 28px; letter-spacing: .04em; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 36px; }
.stat {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-card);
  padding: 24px 18px 26px;
  text-align: center;
}
.stat__label { color: #fff; font-size: 14px; font-weight: 600; }
.stat__lead {
  color: #fff; font-weight: 800;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  margin: 12px 0 10px;
}
.stat__num {
  color: var(--color-gold);
  font-weight: 800; font-size: 52px; line-height: 1.1; margin: 8px 0 12px;
  letter-spacing: .01em;
}
.stat__unit { font-size: 17px; font-weight: 700; margin-left: 4px; }
.stat__note { color: var(--color-on-navy-sub); font-size: 12.5px; line-height: 1.7; }

/* =========================================================
   BLOCK 05 : Voices + News
   ========================================================= */
.block--voices {
  background-image: url("assets/block_05_bg.png");
  background-color: var(--color-surface-2);
}
.voices__inner { max-width: var(--content); margin: 0 auto; padding: 60px var(--page-x) 64px; }

.voices__carousel { position: relative; margin-top: 36px; }
.voices__arrow {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid #C5CEDF; background: #fff; color: var(--color-headline);
  font-size: 20px; cursor: pointer; z-index: 4;
  display: grid; place-items: center;
}
.voices__arrow--prev { left: -52px; }
.voices__arrow--next { right: -52px; }
.voices__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.voice-card {
  background: #fff; border-radius: var(--r-card); overflow: hidden;
  box-shadow: 0 8px 22px rgba(20,36,110,.07);
}
.voice-card--link {
  display: block; text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.voice-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20,36,110,.16);
}
/* 声一覧ページ：カードのグリッド表示 */
.voices__grid--page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .voices__grid--page { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .voices__grid--page { grid-template-columns: 1fr; } }
.voice-card__media { position: relative; height: 150px; background-size: cover; background-position: center; }
.voice-card__media--1 { background-image: linear-gradient(135deg,#7d8aa0,#4a5870); }
.voice-card__media--2 { background-image: linear-gradient(135deg,#9aa6b8,#6b7686); }
.voice-card__media--3 { background-image: linear-gradient(135deg,#5b6b86,#37425a); }
.voice-card__media--4 { background-image: linear-gradient(135deg,#6f7a8c,#3f4960); }
.voice-card__tag {
  position: absolute; left: 0; bottom: 12px;
  background: var(--color-tag); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 12px;
}
.voice-card__body { padding: 18px 18px 22px; }
.voice-card__name { color: var(--color-headline); font-weight: 800; font-size: 15px; }
.voice-card__sub { color: #9AA2B0; font-size: 11px; margin-top: 2px; }
.voice-card__text { color: var(--color-text-sub); font-size: 13px; line-height: 1.8; margin-top: 12px; }

.news__head { display: flex; align-items: center; justify-content: center; position: relative; margin-top: 64px; }
.news__more { position: absolute; right: 0; }
.news__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 30px; }
.news-card { cursor: pointer; }
.news-card__media { height: 120px; border-radius: 10px; background-size: cover; background-position: center; }
.news-card__media--1 { background-image: linear-gradient(135deg,#8e9aae,#59647c); }
.news-card__media--2 { background-image: linear-gradient(135deg,#a7b2c4,#6f7a8e); }
.news-card__media--3 { background-image: linear-gradient(135deg,#7e8aa0,#4f5a72); }
.news-card__media--4 { background-image: linear-gradient(135deg,#9ba6b8,#677386); }
.news-card__meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.news-card__meta time { color: #6B7384; font-size: 12.5px; font-weight: 600; }
.news-card__cat { font-size: 11px; font-weight: 700; color: var(--color-primary); background: #E7EDFA; padding: 3px 10px; border-radius: 4px; }
.news-card__cat--gray { color: #6B7384; background: #E8EAEF; }
.news-card__title { color: var(--color-headline); font-weight: 700; font-size: 14.5px; line-height: 1.6; margin-top: 10px; }

/* =========================================================
   BLOCK 06 : CTA banner
   ========================================================= */
.block--cta {
  background-image: url("assets/block_06_bg.png");
  background-color: var(--color-navy);
  background-position: center;
}
.cta-banner__inner { max-width: var(--content); margin: 0 auto; padding: 64px var(--page-x); text-align: center; }
.cta-banner__title { color: #fff; font-weight: 800; font-size: 36px; letter-spacing: .03em; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.cta-banner__lead { color: #Eaf0ff; font-size: 17px; margin-top: 16px; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.cta-banner__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 40px;
  margin-top: 30px; min-width: 420px;
  background: var(--color-primary-deep); color: #fff;
  font-weight: 700; font-size: 18px;
  padding: 20px 36px; border-radius: var(--r-sm); text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: background .15s ease, transform .1s ease;
}
.cta-banner__btn:hover { background: var(--color-primary-hover); }
.cta-banner__btn:active { transform: translateY(1px); }

/* =========================================================
   BLOCK 07 : Footer
   ========================================================= */
.block--footer {
  background-image: url("assets/block_07_bg.png");
  background-color: var(--color-navy);
  color: #fff;
}
.footer__inner { max-width: var(--content); margin: 0 auto; padding: 56px var(--page-x) 30px; }
.footer__top { display: flex; gap: 50px; }
.footer__brand { flex: 0 0 250px; }
.footer__logo { font-family: var(--font-serif); font-weight: 700; font-size: 26px; color: #fff; }
.footer__brand-desc { color: var(--color-on-navy-sub); font-size: 13px; line-height: 1.9; margin: 16px 0 20px; }
.footer__cols { display: grid; grid-template-columns: repeat(6,1fr); gap: 24px; flex: 1; }
.footer__col-title { font-weight: 700; font-size: 14px; margin-bottom: 14px; color: #fff; }
.footer__col a { display: block; color: var(--color-on-navy-sub); font-size: 12.5px; text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer__col a:hover { color: #fff; }

.footer__contact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.contact-box {
  border-radius: var(--r-md); padding: 20px 26px;
  display: flex; flex-direction: column; justify-content: center;
  text-decoration: none;
}
.contact-box--tel { background: #fff; color: #14224a; }
.contact-box__label { font-size: 12px; font-weight: 600; }
.contact-box__tel { font-size: 28px; font-weight: 800; letter-spacing: .02em; display: flex; align-items: center; gap: 10px; }
.contact-box__ico { font-size: 22px; }
.contact-box__hours { font-size: 11px; color: #6B7384; }

.contact-box--form, .contact-box--dl {
  flex-direction: row; align-items: center; gap: 16px;
  font-weight: 800; font-size: 19px;
  transition: transform .1s ease, box-shadow .15s ease;
}
.contact-box--form { background: var(--color-primary-deep); color: #fff; }
.contact-box--dl { background: #EDEFF2; color: #14224a; }
.contact-box--form:hover, .contact-box--dl:hover { box-shadow: 0 8px 22px rgba(0,0,0,.25); transform: translateY(-1px); }
.contact-box__ico--lg { font-size: 26px; }
.contact-box__main { flex: 1; line-height: 1.35; }
.contact-box__main small { font-size: 12px; font-weight: 600; opacity: .85; }
.contact-box--form .cta__arrow, .contact-box--dl .cta__arrow { font-size: 22px; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.footer__legal { display: flex; gap: 28px; }
.footer__legal a { color: var(--color-on-navy-sub); font-size: 12.5px; text-decoration: none; }
.footer__legal a:hover { color: #fff; }
.footer__copy { color: var(--color-on-navy-sub); font-size: 12px; }

/* page top button */
.pagetop {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--color-headline);
  display: grid; place-items: center; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.2); font-size: 20px; z-index: 50;
}

/* =========================================================
   Responsive (PC primary, graceful down to tablet)
   ========================================================= */
@media (max-width: 1280px) {
  :root { --page-x: 36px; }
  .hero__title { font-size: 48px; }
  .nav__badge { display: none; } /* 中間幅では支援バッジを省きはみ出し防止 */
  .nav__menu { gap: 20px; }
  .nav__menu a { font-size: 14px; }
  .hero__copy { max-width: 540px; }
  .hero__desc { max-width: 30em; }
}
@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .hero__title { font-size: 40px; }
  .hero__title span { white-space: normal; }
  .hero__lead { font-size: 22px; }
  .features { grid-template-columns: repeat(2,1fr); }
  .feature:nth-child(2) { border-right: none; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--color-hairline); }
  .steps__list { grid-template-columns: repeat(2,1fr); }
  .step:not(:last-child)::after { display: none; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .voices__grid, .news__grid { grid-template-columns: repeat(2,1fr); }
  .voices__arrow { display: none; }
  .footer__top { flex-direction: column; }
  .footer__cols { grid-template-columns: repeat(3,1fr); }
  .footer__contact { grid-template-columns: 1fr; }
  .cta-banner__btn { min-width: 0; width: 100%; }
}
@media (max-width: 680px) {
  :root { --page-x: 18px; }
  .hero__inner { padding-top: 16px; }
  .nav__badge { display: none; }
  .hero__copy {
    background: none;
    border-radius: 0; padding: 0; margin-top: 18px;
  }
  .hero__title { font-size: 30px; line-height: 1.4; }
  .hero__lead { font-size: 19px; }
  .hero__desc { color: var(--color-text-body); }
  .hero__desc br { display: none; }
  .hero__cta { flex-direction: column; }
  .cta { min-width: 0; width: 100%; }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: none !important; border-bottom: 1px solid var(--color-hairline); }
  .feature:last-child { border-bottom: none; }
  .mission__title { font-size: 28px; }
  .mission__desc br { display: none; }
  .steps__list { grid-template-columns: 1fr; }
  .steps__title, .stats__title, .cta-banner__title { font-size: 22px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat__num { font-size: 44px; }
  .voices__grid, .news__grid { grid-template-columns: 1fr; }
  .news__more { position: static; margin-top: 14px; }
  .news__head { flex-direction: column; }
  .footer__cols { grid-template-columns: repeat(2,1fr); }
  .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
  .cta-banner__btn { font-size: 15px; padding: 16px 20px; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }

/* =========================================================
   下層ページ共通（about / recruit / contact / materials / news）
   ========================================================= */
/* 白背景ヘッダー（下層ページ用） */
.subheader {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,252,254,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-hairline);
}
.subheader .nav { max-width: var(--content); margin: 0 auto; padding: 16px var(--page-x); }

/* ページヘッダー（タイトル帯） */
.page-hero {
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-primary-deep) 100%);
  color: #fff;
  padding: 64px var(--page-x);
  text-align: center;
}
.page-hero__inner { max-width: var(--content); margin: 0 auto; }
.page-hero__eyebrow { font-size: 14px; letter-spacing: .2em; font-weight: 700; color: var(--color-on-navy-sub); }
.page-hero__title { font-size: 38px; font-weight: 800; margin-top: 10px; letter-spacing: .04em; }
.page-hero__lead { font-size: 16px; margin-top: 16px; color: #E8EEFF; line-height: 1.9; }

/* ページ本文の器 */
.page-main { max-width: var(--content); margin: 0 auto; padding: 64px var(--page-x) 80px; }
.page-section + .page-section { margin-top: 64px; }
.page-section__title {
  font-size: 26px; font-weight: 800; color: var(--color-headline);
  letter-spacing: .03em; margin-bottom: 24px;
  padding-left: 16px; border-left: 5px solid var(--color-primary);
}
.page-section__lead { font-size: 15.5px; line-height: 2; color: var(--color-text-body); }
.page-section p + p { margin-top: 16px; }

/* 会社概要テーブル */
.info-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.info-table th, .info-table td { text-align: left; padding: 16px 14px; border-bottom: 1px solid var(--color-hairline); vertical-align: top; }
.info-table th { width: 200px; color: var(--color-headline); font-weight: 700; background: var(--color-surface-2); }
.info-table td { color: var(--color-text-body); }

/* 値カード（about のバリュー・recruit の福利厚生など） */
.cardgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.info-card {
  background: #fff; border: 1px solid var(--color-hairline);
  border-radius: var(--r-card); padding: 28px 24px;
}
.info-card__icon { width: 46px; height: 46px; color: var(--color-primary); margin-bottom: 14px; }
.info-card__icon svg { width: 100%; height: 100%; }
.info-card__title { font-size: 17px; font-weight: 800; color: var(--color-headline); }
.info-card__text { font-size: 13.5px; line-height: 1.85; color: var(--color-text-sub); margin-top: 10px; }

/* 求人リスト（recruit） */
.job-list { display: flex; flex-direction: column; gap: 16px; }
.job-item {
  display: flex; align-items: center; gap: 24px;
  background: #fff; border: 1px solid var(--color-hairline);
  border-radius: var(--r-card); padding: 24px 28px;
}
.job-item__title { font-size: 18px; font-weight: 800; color: var(--color-headline); flex: 1; }
.job-item__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-item__tag { font-size: 12px; font-weight: 700; color: var(--color-primary); background: #E7EDFA; padding: 5px 12px; border-radius: var(--r-pill); }
.job-item .btn-pill { min-width: 130px; }

/* お知らせリスト（news） */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 6px; border-bottom: 1px solid var(--color-hairline);
  text-decoration: none; transition: background .15s;
}
.news-row:hover { background: var(--color-surface-2); }
.news-row time { color: #6B7384; font-size: 13px; font-weight: 600; flex: 0 0 100px; }
.news-row__cat { font-size: 11px; font-weight: 700; color: var(--color-primary); background: #E7EDFA; padding: 4px 12px; border-radius: 4px; flex: 0 0 auto; }
.news-row__cat--gray { color: #6B7384; background: #E8EAEF; }
.news-row__title { font-size: 15px; font-weight: 600; color: var(--color-headline); flex: 1; }

/* フォーム（contact / materials） */
.form { max-width: 720px; margin: 0 auto; }
.form__row { margin-bottom: 24px; }
.form__label { display: block; font-size: 14px; font-weight: 700; color: var(--color-headline); margin-bottom: 8px; }
.form__req { color: #C8341F; font-size: 12px; margin-left: 6px; }
.form__input, .form__textarea, .form__select {
  width: 100%; font-family: var(--font-base); font-size: 15px;
  padding: 13px 16px; border: 1.5px solid #CDD5E2; border-radius: var(--r-sm);
  background: #fff; color: var(--color-text-body);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2,54,174,.12);
}
.form__textarea { min-height: 150px; resize: vertical; }
.form__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  width: 100%; max-width: 360px; margin: 8px auto 0;
  background: var(--color-primary-deep); color: #fff;
  font-weight: 700; font-size: 17px; padding: 18px 28px;
  border: none; border-radius: var(--r-sm); cursor: pointer;
  transition: background .15s ease, transform .1s ease;
}
.form__submit:hover { background: var(--color-primary-hover); }
.form__submit:active { transform: translateY(1px); }
.form__note { font-size: 12.5px; color: var(--color-text-sub); text-align: center; margin-top: 16px; line-height: 1.8; }

/* 資料カード（materials） */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); gap: 22px; margin-bottom: 56px; justify-content: center; }
.doc-card {
  background: #fff; border: 1px solid var(--color-hairline);
  border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column;
}
.doc-card__thumb { height: 150px; background: linear-gradient(135deg, var(--color-primary), var(--color-navy)); display: grid; place-items: center; color: #fff; font-size: 34px; }
/* 資料アイキャッチ（画像 or PDF1ページ目 or フォールバック） */
.doc-card__cover { height: 200px; background: #F5F7FB; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--color-hairline); }
.doc-card__cover-img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; box-shadow: 0 4px 14px rgba(20,36,110,.12); }
.doc-card__cover-fallback { color: var(--color-primary); opacity: .35; }
.doc-card__cover-fallback svg { width: 60px; height: 78px; }
.doc-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.doc-card__title { font-size: 16px; font-weight: 800; color: var(--color-headline); }
.doc-card__text { font-size: 13px; line-height: 1.8; color: var(--color-text-sub); margin: 8px 0 18px; flex: 1; }
.doc-card .btn-pill { min-width: 0; width: 100%; }

/* 戻るリンク */
.backlink { display: inline-block; margin-top: 48px; color: var(--color-primary); font-weight: 700; font-size: 14px; text-decoration: none; }
.backlink:hover { text-decoration: underline; }

@media (max-width: 1080px) {
  .subheader .nav__menu { display: none; }
  .cardgrid, .doc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .page-hero__title { font-size: 28px; }
  .page-section__title { font-size: 21px; }
  .cardgrid, .doc-grid { grid-template-columns: 1fr; }
  .info-table th { width: auto; display: block; border-bottom: none; }
  .info-table td { display: block; padding-top: 4px; }
  .info-table tr { display: block; padding: 8px 0; border-bottom: 1px solid var(--color-hairline); }
  .info-table th, .info-table td { border-bottom: none; }
  .job-item { flex-direction: column; align-items: flex-start; gap: 14px; }
  .news-row { flex-wrap: wrap; gap: 10px; }
  .news-row time { flex-basis: auto; }
  .news-row__title { flex-basis: 100%; }
}

/* =========================================================
   モバイルメニュー（ハンバーガー）
   ========================================================= */
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
  position: relative; z-index: 120;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--color-headline); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span { top: 21px; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav__toggle.is-active span { background: transparent; }
.nav__toggle.is-active span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__toggle { display: block; }
  /* ヘッダー右のボタンはモバイルでは隠し、CTAはドロワー内へ集約 */
  .nav__actions { display: none; }
  /* ヒーロー内ヘッダー・下層ヘッダー共通のドロワー */
  .nav__menu {
    display: flex !important;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(82vw, 340px);
    flex-direction: column; gap: 0;
    background: var(--color-navy);
    padding: 80px 0 28px;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    box-shadow: -12px 0 40px rgba(0,0,0,.3);
    z-index: 110;
    overflow-y: auto;
    align-items: stretch;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > a {
    color: #fff !important; font-size: 16px; font-weight: 700;
    padding: 18px 28px; border-bottom: 1px solid rgba(255,255,255,.1);
    white-space: nowrap; display: flex; align-items: center;
  }
  .nav__menu > a::after {
    content: "\203A"; margin-left: auto; color: var(--color-on-navy-sub); font-size: 18px;
  }
  .nav__menu > a:hover { background: rgba(255,255,255,.08); color:#fff; }
  /* ドロワー内 CTA */
  .nav__menu-cta {
    display: flex; flex-direction: column; gap: 12px;
    padding: 24px 24px 8px;
  }
  .nav__menu-cta .btn {
    width: 100%; text-align: center; padding: 15px; font-size: 15px;
    border-radius: var(--r-sm);
  }
  .nav__menu-cta .btn--download {
    background: #fff; color: var(--color-primary); border: none;
  }
  .nav__menu-cta .btn--contact { background: var(--color-primary); color: #fff; }
  /* ドロワー開時の背景スクリーン */
  body.nav-open::before {
    content: ""; position: fixed; inset: 0;
    background: rgba(4,10,30,.5); z-index: 105;
    animation: navfade .2s ease;
  }
  @keyframes navfade { from { opacity: 0; } to { opacity: 1; } }
}

/* =========================================================
   SP ブラッシュアップ（v3）— 全体的な見やすさ・余白・装飾の最適化
   ========================================================= */
@media (max-width: 768px) {
  :root { --page-x: 20px; }

  /* ---- 共通：セクションタイトルに下線アクセント ---- */
  .section-title--center,
  .steps__title,
  .stats__title,
  .cta-banner__title {
    position: relative;
  }

  /* ---- HERO（SP専用背景は後段のSPブロックで指定） ---- */
  .hero__inner { padding: 14px var(--page-x) 0; }
  .nav { gap: 10px; }
  .nav__logo { font-size: 22px; flex: 0 0 auto; }
  .nav__logo-img { height: 38px; }
  /* 完成イメージに合わせ、ヘッダーのバッジをSPでも表示（小さめ・2行可） */
  .nav__badge {
    display: inline-block;
    font-size: 11px; font-weight: 700; line-height: 1.35;
    padding: 6px 12px; text-align: center;
    white-space: normal; flex: 0 1 auto;
  }
  /* ハンバーガー：3本線アイコンのみ（テキスト・背景箱なし） */
  .nav__toggle {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    background: none;
    border-radius: 0;
    display: block;
    padding: 0;
  }
  .nav__toggle span,
  .nav__toggle span::before,
  .nav__toggle span::after {
    left: 8px; right: 8px; background: var(--color-headline); height: 2.5px;
  }
  .nav__toggle span { top: 19px; }
  .nav__toggle span::before { top: -7px; }
  .nav__toggle span::after { top: 7px; }
  .nav__toggle::after { content: none; }        /* 「メニュー」テキストは廃止 */
  .nav__toggle.is-active span { background: transparent; }
  .nav__toggle.is-active span::before { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-active span::after { transform: translateY(-7px) rotate(-45deg); }
  /* 完成イメージに合わせ、白いテキストボックスは付けず背景に直接乗せる */
  .hero__copy {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-top: 22px;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero__title { font-size: 30px; line-height: 1.42; }
  .hero__title span { white-space: normal; }
  .hero__lead { font-size: 19px; margin-top: 18px; max-width: 15em; }
  .hero__desc { font-size: 14px; line-height: 1.95; margin-top: 18px; color: var(--color-text-body); max-width: 21em; }
  .hero__desc br { display: none; }
  .hero__cta { flex-direction: column; gap: 12px; margin-top: 26px; }
  .cta { width: 100%; min-width: 0; max-width: 400px; padding: 16px 22px; font-size: 15px; }
  /* SPのみ：資料ダウンロードCTAは背景の女性の顔に被るため非表示（お問い合わせは残す） */
  .hero__cta .cta--primary { display: none; }

  /* 特長カード：完成イメージに合わせ 2×2 グリッド */
  .features {
    margin: 28px var(--page-x) 0;
    border-radius: 16px;
    grid-template-columns: 1fr 1fr;
  }
  .feature {
    padding: 22px 16px;
    border-right: 1px solid var(--color-hairline);
    border-bottom: 1px solid var(--color-hairline);
  }
  .feature:nth-child(2n) { border-right: none; }       /* 右列の縦線を消す */
  .feature:nth-last-child(-n+2) { border-bottom: none; } /* 最下段の横線を消す */
  .feature__head { align-items: flex-start; gap: 10px; }
  .feature__icon { width: 32px; height: 32px; }
  .feature__title { font-size: 13.5px; line-height: 1.4; font-weight: 800; }
  .feature__desc { margin-top: 10px; font-size: 12px; line-height: 1.75; }

  /* ---- MISSION：SP専用背景に人物コラージュが焼き込み済み（背景指定は後段のSPブロックで実施） ---- */
  .block--mission {
    aspect-ratio: auto;              /* 横長固定を解除 */
    display: block;
    padding: 0;
  }
  .mission__inner {
    padding: 44px var(--page-x) 36px;
  }
  .mission__eyebrow { font-size: 13px; }
  .mission__title { font-size: 24px; line-height: 1.5; margin-top: 12px; }
  .mission__title br { display: none; }
  .mission__desc { font-size: 13.5px; line-height: 2.0; margin-top: 18px; }
  .mission__desc br { display: none; }
  .block--mission .btn-pill {
    margin-top: 26px; width: 100%; justify-content: center; gap: 14px; min-width: 0;
  }

  /* ---- STEPS ---- */
  .block--steps { background-size: cover; }
  .steps__inner { padding: 48px var(--page-x); }
  .steps__eyebrow { font-size: 14px; }
  .steps__title { font-size: 21px; margin-top: 8px; line-height: 1.5; }
  .steps__list { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .step { display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto; column-gap: 16px; text-align: left; padding: 20px 20px; align-items: center; }
  .step__icon { width: 44px; height: 44px; margin: 0; grid-row: 1 / span 2; }
  .step__title { grid-column: 2; margin: 0; }
  .step__desc { grid-column: 2; margin-top: 4px; }
  .step__desc br { display: none; }
  .step:not(:last-child)::after { display: none; }
  /* カード間に下向き矢印 */
  .step:not(:last-child) {
    position: relative; margin-bottom: 4px;
  }
  .step:not(:last-child)::before {
    content: "\203A";
    position: absolute; left: 50%; bottom: -13px; transform: translateX(-50%) rotate(90deg);
    color: var(--color-primary); font-size: 20px; font-weight: 700; z-index: 3;
  }

  /* ---- STATS ---- */
  .stats__inner { padding: 44px var(--page-x); }
  .stats__title { font-size: 21px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
  .stat { padding: 18px 10px 20px; border-radius: 12px; }
  .stat__label { font-size: 12px; }
  .stat__num { font-size: 38px; margin: 6px 0 8px; }
  .stat__lead { font-size: 16px; margin: 8px 0; }
  .stat__unit { font-size: 13px; }
  .stat__note { font-size: 11px; line-height: 1.6; }
  .stat__note br { display: none; }

  /* ---- VOICES ---- */
  .voices__inner { padding: 46px var(--page-x) 50px; }
  .voices__grid { grid-template-columns: 1fr; gap: 16px; }
  .voices__carousel { margin-top: 26px; }
  .voice-card { display: grid; grid-template-columns: 120px 1fr; }
  .voice-card__media { height: 100%; min-height: 130px; }
  .voice-card__tag { font-size: 11px; padding: 3px 10px; }
  .voice-card__body { padding: 16px 16px 18px; }
  .voice-card__name { font-size: 14px; }
  .voice-card__text { font-size: 12.5px; margin-top: 8px; line-height: 1.7; }

  /* ---- CTA banner ---- */
  .block--cta { background-size: cover; background-position: center; }
  .cta-banner__inner { padding: 48px var(--page-x); }
  .cta-banner__title { font-size: 21px; line-height: 1.5; }
  .cta-banner__lead { font-size: 14px; margin-top: 12px; }
  .cta-banner__btn {
    margin-top: 24px; width: 100%; min-width: 0;
    font-size: 15px; padding: 17px 20px; gap: 14px;
  }

  /* ---- Footer ---- */
  .footer__inner { padding: 44px var(--page-x) 24px; }
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__brand { flex: none; }
  .footer__logo { font-size: 23px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .footer__col-title { font-size: 13.5px; margin-bottom: 10px; }
  .footer__col a { font-size: 12.5px; margin-bottom: 8px; }
  .footer__contact { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .contact-box { padding: 18px 22px; }
  .contact-box--tel { align-items: center; text-align: center; }
  .contact-box__tel { justify-content: center; font-size: 26px; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: center; text-align: center; padding-top: 20px; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
  .footer__legal a { font-size: 12px; }
  .footer__copy { font-size: 11px; }

  /* page top */
  .pagetop { right: 16px; bottom: 16px; width: 42px; height: 42px; }

  /* ---- 下層ページ ---- */
  .page-hero { padding: 44px var(--page-x); }
  .page-hero__title { font-size: 25px; }
  .page-hero__lead { font-size: 14px; }
  .page-hero__lead br { display: none; }
  .page-main { padding: 44px var(--page-x) 56px; }
  .page-section + .page-section { margin-top: 44px; }
}

/* さらに狭い端末（〜400px）の微調整 */
@media (max-width: 400px) {
  .stats__grid { grid-template-columns: 1fr; }
  .voice-card { grid-template-columns: 100px 1fr; }
  .hero__title { font-size: 24px; }
}

/* =========================================================
   TABLET 背景（PCとSPの中間：769〜1080px）
   tb_block_01〜06_bg.png を使用（比率 1448/1086 ≒ 4:3）
   背景は装飾・人物焼き込み済み。要素を上に重ねる。
   ========================================================= */
@media (min-width: 769px) and (max-width: 1080px) {
  /* --- HERO --- */
  .block--hero {
    background-image: url("assets/tb_block_01_bg.png");
    background-position: center top;
    background-size: cover;
    background-color: var(--color-surface);
    padding-bottom: 32px;
  }
  .hero__copy {
    max-width: 560px; padding-top: 32px; padding-bottom: 36px;
    background: linear-gradient(90deg, rgba(248,250,253,.92), rgba(248,250,253,.78) 70%, rgba(248,250,253,0));
    border-radius: 14px; padding-left: 18px; padding-right: 18px;
  }

  /* --- MISSION（人物コラージュは背景に焼き込み済み → ::after 画像は出さない） --- */
  .block--mission {
    background-image: url("assets/tb_block_02_bg.png");
    background-position: center top;
    background-size: cover;
    background-color: var(--color-navy);
    aspect-ratio: 1448 / 1086;    /* TB背景比率に合わせる */
    align-items: flex-start;
  }
  .mission__inner { padding-top: 48px; padding-bottom: 0; }
  .block--mission::after { content: none; display: none; }   /* 二重画像を防止 */
  .block--mission .btn-pill { margin-bottom: 0; }

  /* --- STEPS（無地背景） --- */
  .block--steps {
    background-image: url("assets/tb_block_03_bg.png");
    background-position: center; background-size: cover;
  }

  /* --- STATS（メッシュ背景） --- */
  .block--stats {
    background-image: url("assets/tb_block_04_bg.png");
    background-position: center; background-size: cover;
  }

  /* --- VOICES（無地背景・お知らせは非表示のまま） --- */
  .block--voices {
    background-image: url("assets/tb_block_05_bg.png");
    background-position: center; background-size: cover;
  }

  /* --- CTA（国旗・富士山が背景に焼き込み済み） --- */
  .block--cta {
    background-image: url("assets/tb_block_06_bg.png");
    background-position: center; background-size: cover;
  }

  /* --- FOOTER（TB/SP背景なし → 濃紺ベタ） --- */
  .block--footer {
    background-image: none;
    background-color: var(--color-navy);
  }
}

/* =========================================================
   SP 背景（〜768px）
   sp_block_01〜06_bg.png を使用（比率 941/1672 ≒ 9:16）
   背景は装飾・人物焼き込み済み。要素を上に重ねる。
   ========================================================= */
@media (max-width: 768px) {
  /* --- HERO --- */
  .block--hero {
    background-image: url("assets/sp_block_01_bg.png");
    background-position: center top;
    background-size: cover;
    background-color: var(--color-surface);
    padding-bottom: 28px;
  }

  /* --- MISSION：人物コラージュが背景に焼き込み済み。
         画像を丸みなく全体表示し、テキスト＋CTAは人物の上（上部）に配置 --- */
  .block--mission {
    background-image: url("assets/sp_block_02_bg.png");
    background-position: center top;
    background-size: 100% auto;      /* 幅いっぱい・高さは比率維持（丸みや切れを防ぐ） */
    background-repeat: no-repeat;
    background-color: var(--color-navy);
    aspect-ratio: 941 / 1672;        /* 背景画像と同じ縦横比でブロック高さを確保（下端で人物が切れない） */
    display: block;
    border-radius: 0;                /* 角丸を明示的に無効化 */
    overflow: hidden;
    padding: 0;
  }
  .block--mission::after { content: none; display: none; }   /* 焼き込み済みのため二重表示を防止 */
  /* テキストとCTAは画像上部（人物の顔より上）に収める */
  .mission__inner { padding: 40px var(--page-x) 0; }
  .block--mission .btn-pill { margin-top: 24px; margin-bottom: 0; width: 100%; justify-content: center; }

  /* --- STEPS（無地背景） --- */
  .block--steps {
    background-image: url("assets/sp_block_03_bg.png");
    background-position: center top;
    background-size: cover;
  }

  /* --- STATS（メッシュ背景） --- */
  .block--stats {
    background-image: url("assets/sp_block_04_bg.png");
    background-position: center top;
    background-size: cover;
  }

  /* --- VOICES（無地背景・お知らせ非表示のまま） --- */
  .block--voices {
    background-image: url("assets/sp_block_05_bg.png");
    background-position: center top;
    background-size: cover;
  }

  /* --- CTA（国旗・富士山が背景に焼き込み済み） --- */
  .block--cta {
    background-image: url("assets/sp_block_06_bg.png");
    background-position: center bottom;
    background-size: cover;
  }
  .block--cta .cta-banner__inner { padding-top: 56px; padding-bottom: 56px; }
  /* 旗の明るい部分に重なる見出しの可読性を確保（背景画像は無加工） */
  .block--cta .cta-banner__title { text-shadow: 0 2px 10px rgba(0,12,40,.55), 0 0 2px rgba(0,12,40,.5); }
  .block--cta .cta-banner__lead { text-shadow: 0 2px 8px rgba(0,12,40,.55); }

  /* --- FOOTER（SP背景なし → 濃紺ベタ） --- */
  .block--footer {
    background-image: none;
    background-color: var(--color-navy);
  }
}

/* ============================================================
   【一時対応 2026-07-27】資料ダウンロード導線を非表示
   ------------------------------------------------------------
   配布できる資料が揃うまでの暫定措置。
   資料を管理画面に登録したら、このブロックごと削除して戻すこと。
   ============================================================ */
a[href="/materials"],
a[href="/materials/"] { display: none !important; }
