/* ============================================================
   index-4.html 追加スタイル
   styles.css のデザイントークン（--blue / --orange / --ink …）を
   そのまま継承。ここには index.html の設計に無いパーツだけを定義。
   接頭辞  n- : index-3 から引き継いだ共通パーツ
           h- : 病院研修セクション（新規）
           v- : 先輩社員インタビュー（新規・ポップアップ）
   ============================================================ */

/* ============================================================
   ファーストビュー
   文言・構成・配色は「カテゴリー整理・HPイメージ1.pdf」に準拠
   ============================================================ */
.fv {
  --fv-navy: #0a2b58; /* 見出しの濃紺 */
  --fv-blue: #14488c; /* サブコピー・強調フレーズ */
  --fv-cta: #0255b5; /* CTAボタン */
  --fv-band: #edf4fe; /* 下部CTA帯 */
  position: relative;
  padding-top: 112px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.fv-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}

.fv-title {
  font-size: clamp(30px, 3.9vw, 52px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0.01em;
  color: var(--fv-navy);
  margin: 0 0 18px;
}
.fv-sub {
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--fv-blue);
  margin: 0 0 30px;
}
.fv-body p {
  font-size: 15px;
  line-height: 2.05;
  color: var(--ink);
  margin: 0 0 22px;
}
.fv-body p:last-child {
  margin-bottom: 0;
}
.fv-body b {
  color: var(--fv-blue);
  font-weight: 700;
}

.fv-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* 下部CTA帯 */
.fv-cta {
  background: var(--fv-band);
  border-radius: 40px 40px 0 0;
  padding: 38px 0 44px;
  text-align: center;
}
.fv-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
}
.fv-cta-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--fv-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(20, 60, 130, 0.12);
}
.fv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 56px;
  border-radius: 999px;
  background: var(--fv-cta);
  color: #fff;
  font-size: clamp(17px, 1.9vw, 25px);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(2, 85, 181, 0.28);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.fv-cta-btn:hover {
  background: #0a4a9d;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(2, 85, 181, 0.36);
}
.fv-cta-scroll {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.92;
}
.fv-cta-note {
  font-size: 15px;
  line-height: 1.95;
  font-weight: 500;
  color: var(--fv-blue);
  margin: 0;
}

@media (max-width: 900px) {
  .fv {
    padding-top: 96px;
  }
  .fv-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }
  .fv-visual {
    max-width: 620px;
    margin-inline: auto;
  }
  .fv-body p {
    font-size: 14.5px;
    line-height: 1.95;
  }
  /* PDF の改行はデスクトップ用のため、狭い画面では自然改行にする */
  .fv-body br {
    display: none;
  }
  .fv-body b {
    display: inline;
  }
}
@media (max-width: 640px) {
  .fv {
    padding-top: 88px;
  }
  .fv-title {
    line-height: 1.4;
  }
  .fv-sub {
    margin-bottom: 24px;
  }
  .fv-cta {
    border-radius: 28px 28px 0 0;
    padding: 30px 0 34px;
  }
  .fv-cta-row {
    flex-direction: column;
    gap: 14px;
  }
  .fv-cta-circle {
    width: 46px;
    height: 46px;
  }
  .fv-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
    gap: 10px;
  }
  .fv-cta-note {
    font-size: 13.5px;
  }
}

/* ---- マーキー ---- */
.n-marquee {
  overflow: hidden;
  background: var(--blue-050);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
  padding: 14px 0;
}
.n-marquee-track {
  display: flex;
  width: max-content;
  animation: n-marquee 34s linear infinite;
}
.n-marquee-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  white-space: nowrap;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
}
.n-marquee-track span::before {
  content: "◆";
  color: var(--orange);
  font-size: 8px;
  margin-right: 28px;
}
@keyframes n-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---- §01 STANCE ---- */
.n-stance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.n-stance-body p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 20px;
}
.n-stance-body p:last-child {
  margin-bottom: 0;
}
.n-stance-body strong {
  color: var(--ink);
}
.n-stance-quote {
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.n-quote-mark {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--blue-200);
  line-height: 1;
  margin-bottom: 4px;
}
.n-stance-quote blockquote {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.7;
}

/* ---- §02 業界の変化（棒グラフ） ---- */
.n-bars {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding: 0 12px;
}
.n-bar-col {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.n-bar-val {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.n-bar {
  border-radius: 10px 10px 0 0;
}
.n-bar.is-before {
  height: 150px;
  background: linear-gradient(180deg, #d0d7e3, #b7c1d1);
}
.n-bar.is-after {
  height: 105px;
  background: linear-gradient(180deg, #4f92dc, var(--blue));
}
.n-bar-label {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 10px;
  line-height: 1.5;
}
.n-bar-label span {
  display: block;
  font-size: 11px;
}
.n-drop-arrow {
  flex: 0 0 auto;
  padding-bottom: 56px;
  text-align: center;
}
.n-drop-arrow b {
  display: block;
  color: var(--orange);
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}
.n-policy {
  background: var(--blue-050);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--blue);
}
.n-policy p {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.7;
  margin: 0 0 14px;
}
.n-policy cite {
  font-size: 13px;
  color: var(--ink-2);
  font-style: normal;
}
.n-shift {
  margin-top: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}
.n-shift b {
  color: var(--orange);
}
.n-take {
  margin-top: 48px;
  padding: 28px 36px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-600) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.n-take .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.n-take p {
  flex: 1;
  min-width: 260px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}
.n-take b {
  color: #ffcf8a;
}
.n-tent {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange);
  background: var(--orange-050);
  border: 1px solid var(--orange-100);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
}
.n-tent.is-blue {
  color: var(--blue);
  background: var(--blue-050);
  border-color: var(--blue-100);
}

/* ---- 大見出し＋サブ見出し（OUR ANSWER） ---- */
.n-title-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.n-title-lead {
  font-size: clamp(19px, 2.3vw, 28px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
  margin: 18px 0 12px;
}

/* ---- OUR ANSWER と STABLE FOUNDATION を地続きに見せる ---- */
#answer {
  padding-bottom: 88px;
}
#foundation {
  background: linear-gradient(180deg, #eaf2fb 0%, #f4f8fd 55%, #ffffff 100%);
  padding-top: 0;
  margin-top: -1px;
}
#foundation .section-head {
  padding-top: 88px;
}

/* ---- 教育体制バナー（強み.png 準拠） ---- */
.s-banner {
  --s-navy: #123293;
  --s-orange: #ea662c;
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  background: linear-gradient(180deg, #f9fbff 0%, #eef3fb 100%);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}
.s-banner-body {
  padding: 38px 20px 38px 40px;
  align-self: center;
}
.s-banner-badge {
  display: inline-block;
  position: relative;
  background: var(--s-navy);
  color: #fff;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 34px 9px 20px;
  margin: 0 0 18px;
  /* 右端を矢羽根状に */
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 50%,
    calc(100% - 14px) 100%,
    0 100%
  );
}
.s-banner-badge b {
  font-weight: 900;
  font-size: 1.12em;
  margin-right: 0.15em;
}
.s-banner-title {
  font-size: clamp(23px, 2.9vw, 36px);
  font-weight: 900;
  line-height: 1.42;
  color: #111;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}
.s-banner-title .o {
  color: var(--s-orange);
}
.s-banner-title .o b {
  font-size: 1.22em;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.s-banner-title .b {
  color: var(--s-navy);
}
.s-banner-lead {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
}
.s-banner-photo {
  position: relative;
}
.s-banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* 左端を背景へなじませる */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%);
  mask-image: linear-gradient(90deg, transparent 0, #000 16%);
}

/* ---- 研修制度の3つの特長 ---- */
.t-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}
.t-feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.t-feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.t-feat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.t-feat-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.t-feat h4 {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
}
.t-feat p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
}
.t-feat.is-teal {
  border-color: #cfe6ec;
  background: #fbfeff;
}
.t-feat.is-teal .t-feat-ic {
  background: #469caf;
}
.t-feat.is-teal h4 {
  color: #3d90a3;
}
.t-feat.is-green {
  border-color: #dcead0;
  background: #fdfffb;
}
.t-feat.is-green .t-feat-ic {
  background: #719b41;
}
.t-feat.is-green h4 {
  color: #658f38;
}
.t-feat.is-orange {
  border-color: #fbe0c9;
  background: #fffdfb;
}
.t-feat.is-orange .t-feat-ic {
  background: #e58232;
}
.t-feat.is-orange h4 {
  color: #ec7631;
}

/* ---- 教育メッセージ帯 ---- */
.t-msg {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #eff3fb;
  border-radius: var(--radius);
  padding: 22px 28px;
  overflow: hidden;
}
.t-msg-ic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #133496;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-msg-body {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--ink);
  font-weight: 600;
}
.t-msg-body strong {
  display: block;
  font-size: 1.22em;
  font-weight: 900;
  margin-top: 2px;
}
.t-msg-body em {
  font-style: normal;
  color: #ea662e;
}
.t-msg-art {
  flex: 0 0 300px;
  align-self: flex-end;
  line-height: 0;
}
.t-msg-art svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- スクロール誘導 ---- */
.t-scroll {
  text-align: center;
  margin-top: 30px;
  color: var(--blue);
}
.t-scroll p {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}
.t-scroll p::before,
.t-scroll p::after {
  content: "";
  width: 2px;
  height: 22px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.55;
}
.t-scroll p::before {
  transform: rotate(-22deg);
}
.t-scroll p::after {
  transform: rotate(22deg);
}
.t-scroll-chev {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  animation: t-bob 1.9s ease-in-out infinite;
}
@keyframes t-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .t-scroll-chev {
    animation: none;
  }
}

@media (max-width: 900px) {
  #answer {
    padding-bottom: 64px;
  }
  #foundation .section-head {
    padding-top: 64px;
  }
  .t-feats {
    grid-template-columns: 1fr;
  }
  .t-feat {
    padding: 20px 22px;
  }
  .t-msg {
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px;
  }
  .t-msg-art {
    flex: 1 1 100%;
    max-width: 340px;
    margin-inline: auto;
  }
  .s-banner {
    grid-template-columns: 1fr;
  }
  .s-banner-body {
    padding: 32px 24px 24px;
    order: 2;
  }
  .s-banner-photo {
    order: 1;
    aspect-ratio: 16/7;
  }
  .s-banner-photo img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .s-banner-lead br {
    display: none;
  }
}
@media (max-width: 640px) {
  .s-banner-body {
    padding: 26px 20px 22px;
  }
  .s-banner-badge {
    padding: 8px 28px 8px 16px;
  }
  .s-banner-title {
    line-height: 1.5;
  }
  .n-sc-head.is-navy,
  .n-sc-head.is-orange {
    font-size: 12.5px;
    padding: 8px 16px;
  }
  .t-feat-ic {
    width: 48px;
    height: 48px;
  }
  .t-feat h4 {
    font-size: 17px;
  }
  .t-msg-ic {
    width: 56px;
    height: 56px;
  }
  .t-msg-body br {
    display: none;
  }
  .t-scroll p {
    font-size: 13.5px;
    gap: 12px;
  }
}

/* ---- 地域包括ケア連携図 ---- */
.n-hub-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
  /* 元画像が 342×340 のため、拡大しすぎない幅に抑える */
  max-width: 520px;
  margin-inline: auto;
  padding: 20px;
}
.n-hub-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- 写真ブロック ---- */
.n-photo-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.n-photo-sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.n-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}
.n-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/2;
}
.n-photo-sub .n-photo-frame {
  flex: 1;
}
.n-photo-sub .n-photo {
  height: 100%;
  aspect-ratio: auto;
  min-height: 150px;
}
.n-card-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-050);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}

/* ---- 社長メッセージ ---- */
.n-ceo {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.n-ceo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-050);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.n-ceo blockquote {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.65;
}
.n-ceo blockquote em {
  font-style: normal;
  color: var(--blue);
}
.n-ceo p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.85;
}
.n-ceo-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow-sm);
}
.n-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.n-ceo-name {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

/* ---- 強みの源泉 ----
   写真の有無で2枚の高さが大きく変わるため1カラムで縦積みにする */
.n-strength {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.n-sc-head {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-050);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.n-strength-card.is-accent .n-sc-head {
  color: var(--orange);
  background: var(--orange-050);
}
/* 見出しラベルを塗りつぶして目立たせる */
.n-sc-head.is-navy,
.n-strength-card .n-sc-head.is-navy {
  background: #123293;
  color: #fff;
}
.n-sc-head.is-orange,
.n-strength-card.is-accent .n-sc-head.is-orange {
  background: #ee7700;
  color: #fff;
}
.n-sc-head.is-navy,
.n-sc-head.is-orange {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  padding: 9px 20px;
  margin-bottom: 6px;
}

/* ---- 自社の介護施設フォトグリッド ---- */
/* カードが1カラム＝全幅になったため、4枚を横一列で見せる */
.n-care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
  margin: 22px 0 26px;
}
.n-care {
  margin: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-3);
}
.n-care.is-lead {
  grid-column: auto;
}
.n-care img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.n-care.is-lead img {
  aspect-ratio: 16/9;
}
.n-care:hover img {
  transform: scale(1.05);
}
.n-care figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 10px 7px;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(0deg, rgba(10, 22, 44, 0.78), transparent);
  line-height: 1.4;
}
.n-care figcaption .n-tent {
  display: block;
  margin: 3px 0 0;
  background: rgba(255, 255, 255, 0.9);
}
.n-strength-card h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
  margin: 0 0 12px;
}
.n-strength-card h4 em {
  font-style: normal;
  color: var(--blue);
}
.n-strength-card.is-accent h4 em {
  color: var(--orange);
}
.n-strength-card > p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.85;
  margin: 0 0 20px;
}
.n-strength-figs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.n-strength-fig .v {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.n-strength-fig .v small {
  font-size: 14px;
  margin-left: 2px;
}
.n-strength-card.is-accent .n-strength-fig .v {
  color: var(--orange);
}
.n-strength-fig .l {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}
.n-note {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.75;
  margin-top: 20px;
}

/* ---- 経営基盤 ---- */
.n-found-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.n-found-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.n-fc-region {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.n-fc-val {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.6;
}
.n-fc-val b {
  color: var(--blue);
  font-weight: 800;
}

/* ---- §04 研修タイムライン ---- */
.n-flow-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}
.n-flow-row:last-child {
  padding-bottom: 0;
}
.n-flow-row::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 56px;
  bottom: -8px;
  width: 2px;
  background: var(--line);
}
.n-flow-row:last-child::before {
  display: none;
}
.n-flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.n-flow-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  flex-shrink: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  font-family: "Inter", sans-serif;
  box-shadow: 0 6px 16px rgba(36, 106, 186, 0.28);
}
.n-flow-when {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 10px;
  line-height: 1.5;
}
.n-flow-row.is-feat .n-flow-badge {
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(238, 119, 0, 0.3);
}
.n-flow-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.n-flow-row.is-feat .n-flow-body {
  background: var(--orange-050);
  border-color: var(--orange-100);
}
.n-flow-body h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.55;
}
.n-flow-own {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
}
.n-flow-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 16px;
}
.n-flow-body p strong {
  color: var(--orange);
}
.n-flow-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.n-skill-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  background: var(--blue-050);
  color: var(--blue);
  border-radius: 999px;
}
.n-flow-row.is-feat .n-skill-tag {
  background: #fff;
  color: var(--orange);
}
/* 病院研修ポップアップを開くボタン */
.n-flow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 8px 20px rgba(238, 119, 0, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.n-flow-btn:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(238, 119, 0, 0.4);
}
.n-flow-btn:active {
  transform: translateY(0);
}
.n-flow-btn > svg:last-child {
  transition: transform 0.2s;
}
.n-flow-btn:hover > svg:last-child {
  transform: translateX(3px);
}

/* ============================================================
   病院研修セクション（新規デザイン）
   ============================================================ */
.h-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.h-hero-photo {
  height: 100%;
}
.h-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.h-hero-body {
  padding: 40px 40px 40px 8px;
}
.h-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: var(--orange-050);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.h-hero-body h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  margin: 0 0 16px;
}
.h-hero-body h3 em {
  font-style: normal;
  color: var(--orange);
}
.h-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.h-profile div {
  font-size: 12px;
  color: var(--ink-2);
  background: var(--paper-2);
  border-radius: 8px;
  padding: 8px 14px;
}
.h-profile div b {
  color: var(--blue);
  font-weight: 800;
}

.h-bubble {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-bottom: 40px;
}
.h-bubble .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-050);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h-bubble-q {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 6px;
}
.h-bubble-a {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
  margin: 0;
}
.h-bubble-a em {
  font-style: normal;
  color: var(--orange);
}

.h-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.h-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.h-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.h-card-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--blue-050);
  color: var(--blue);
}
.h-card:nth-child(2) .h-card-ic {
  background: #eaf7ee;
  color: #2f9e5c;
}
.h-card:nth-child(3) .h-card-ic {
  background: #f0edfa;
  color: #6a52c9;
}
.h-card:nth-child(4) .h-card-ic {
  background: var(--orange-050);
  color: var(--orange);
}
.h-card h4 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  margin: 0 0 14px;
}
.h-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.h-card li {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.h-card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--blue);
}
.h-card:nth-child(2) li::before {
  color: #2f9e5c;
}
.h-card:nth-child(3) li::before {
  color: #6a52c9;
}
.h-card:nth-child(4) li::before {
  color: var(--orange);
}

.h-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.h-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.h-panel-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.h-panel-title .sq {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h-merits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.h-merits li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-2);
}
.h-merits li .no {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  margin-top: 2px;
}

.h-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.h-timeline li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  padding-bottom: 16px;
  position: relative;
}
.h-timeline li:last-child {
  padding-bottom: 0;
}
.h-timeline li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  bottom: 0;
  width: 1.5px;
  background: var(--line);
}
.h-timeline li:last-child::before {
  display: none;
}
.h-timeline .tm {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  padding-left: 18px;
  position: relative;
}
.h-timeline .tm::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--blue);
}
.h-timeline .tx {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

.h-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 16px;
  align-items: stretch;
}
.h-step {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--blue-050);
  text-align: center;
}
.h-step:last-of-type {
  background: var(--orange-050);
}
.h-step-no {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
}
.h-step:last-of-type .h-step-no {
  background: var(--orange);
}
.h-step h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 8px;
}
.h-step:last-of-type h5 {
  color: var(--orange);
}
.h-step p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.h-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
}
.h-closing {
  margin-top: 28px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}
.h-closing mark {
  background: linear-gradient(transparent 60%, rgba(238, 119, 0, 0.24) 60%);
  color: inherit;
  padding: 0 4px;
}

.h-voice {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  flex-wrap: wrap;
}
.h-voice-mark {
  font-family: "Inter", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.34);
}
.h-voice-body {
  flex: 1;
  min-width: 280px;
}
.h-voice-body blockquote {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.9;
}
.h-voice-by {
  font-size: 13px;
  opacity: 0.85;
}

/* ============================================================
   先輩社員インタビュー（新規デザイン＋ポップアップ）
   ============================================================ */
.v-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.v-filter button {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  transition: 0.2s;
}
.v-filter button:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.v-filter button.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(36, 106, 186, 0.26);
}

/* ---- 横スライド（カルーセル） ---- */
.v-slider {
  --v-card-w: 288px;
  --v-gap: 24px;
  position: relative;
}
.v-slider-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.v-slider-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.v-slider-arrows {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.v-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    opacity 0.2s,
    transform 0.2s;
}
.v-arrow:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.v-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  color: var(--ink-3);
}

.v-track {
  display: flex;
  gap: var(--v-gap);
  overflow-x: auto;
  overflow-y: hidden;
  /* proximity ＝ 近づいたときだけ吸着。mandatory だと最後のカードまで
     スクロールしきれず右端に到達できないため proximity にしている */
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  /* ホバー時の浮きと影が切れないよう、上下だけ余白を確保
     （左右に余白を入れるとスナップ位置がずれるため 0 のままにする） */
  padding: 10px 0 26px;
  margin: -10px 0 -26px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.v-track::-webkit-scrollbar {
  display: none;
}
.v-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.v-track.is-dragging * {
  pointer-events: none;
}
.v-track:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: var(--radius);
}
.v-track > * {
  flex: 0 0 var(--v-card-w);
  scroll-snap-align: start;
}

.v-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--blue-100);
  margin-top: 26px;
  overflow: hidden;
}
.v-progress span {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: var(--blue);
  transition:
    transform 0.18s ease,
    width 0.2s;
  transform-origin: left;
}

/* button 要素はブラウザ既定で中身が縦中央寄せになり、写真の上に隙間（白）が
   できてしまうため、flex 縦並びにして上端から詰める */
.v-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.v-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.v-card-photo {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-3);
}
/* 人物の顔が切れないよう上寄せで表示 */
.v-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.v-card:hover .v-card-photo img {
  transform: scale(1.05);
}
.v-card-no {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(20, 40, 80, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 5px 12px;
}
.v-card-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
}
.v-card-body {
  padding: 22px 22px 24px;
}
.v-card-catch {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
  margin: 0 0 14px;
  min-height: 3.2em;
}
.v-card-name {
  font-size: 16px;
  font-weight: 800;
}
.v-card-name span {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  display: block;
  margin-top: 2px;
}
.v-card-meta {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.v-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue);
}
.v-card-more svg {
  transition: transform 0.2s;
}
.v-card:hover .v-card-more svg {
  transform: translateX(3px);
}
.v-card.is-soon {
  cursor: default;
}
.v-card.is-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}
.v-card.is-soon .v-card-photo img {
  filter: grayscale(0.35);
}
.v-card.is-soon:hover .v-card-photo img {
  transform: none;
}
.v-soon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 6px 14px;
  margin-top: 14px;
}

.v-closing {
  margin-top: 48px;
  text-align: center;
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.v-closing p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.7;
}
.v-closing p em {
  font-style: normal;
  color: var(--orange);
}
.v-closing small {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-3);
}

/* ---- ポップアップ（モーダル） ---- */
.v-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.v-modal.is-open {
  display: block;
}
.v-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 56, 0.62);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.v-modal.is-open .v-modal-scrim {
  opacity: 1;
}
.v-modal-panel {
  position: absolute;
  inset: auto 0 0 0;
  margin: 0 auto;
  width: min(920px, 100%);
  max-height: 92vh;
  background: #fff;
  border-radius: 24px 24px 0 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.3s;
}
@media (min-width: 721px) {
  .v-modal-panel {
    inset: 4vh 0 auto 0;
    max-height: 92vh;
    border-radius: var(--radius-lg);
  }
  .v-modal-panel.is-wide {
    width: min(1100px, 100%);
  }
}

/* 病院研修ポップアップ：セクション用の余白を、モーダル幅に合わせて調整 */
.h-article {
  padding: 8px 40px 48px;
}
.h-article .section-head {
  margin-bottom: 36px;
}
.h-article .h-voice {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .h-article {
    padding: 8px 20px 40px;
  }
}
.v-modal.is-open .v-modal-panel {
  transform: none;
  opacity: 1;
}
.v-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transform: translate(-16px, 16px);
  transition: background 0.2s;
}
.v-modal-close:hover {
  background: #fff;
  color: var(--blue);
}
.v-modal-body {
  margin-top: -44px;
}

/* モーダル内 記事レイアウト */
.v-art-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.v-art-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-3);
}
/* ポップアップ内も同様に上寄せ */
.v-art-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.v-art-intro {
  padding: 56px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v-art-no {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 10px;
}
.v-art-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.v-art-catch {
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 900;
  line-height: 1.55;
  margin: 0 0 22px;
}
.v-art-catch em {
  font-style: normal;
  color: var(--blue);
}
.v-art-name {
  font-size: 22px;
  font-weight: 800;
}
.v-art-name span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  display: block;
  margin-top: 4px;
}
.v-art-meta {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.v-art-main {
  padding: 48px 40px 56px;
  max-width: 760px;
  margin: 0 auto;
}
.v-art-sec {
  margin-bottom: 44px;
}
.v-art-sec:last-child {
  margin-bottom: 0;
}
.v-art-sec h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.65;
  margin: 0 0 18px;
  padding-top: 18px;
  border-top: 3px solid var(--blue);
  display: inline-block;
}
.v-art-sec.is-off h3 {
  border-top-color: var(--orange);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
}
.v-art-sec p {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.v-art-sec p:last-child {
  margin-bottom: 0;
}
.v-art-sec p strong {
  color: var(--ink);
  font-weight: 700;
}
.v-art-figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 0;
}
.v-art-figs.is-one {
  grid-template-columns: 1fr;
}
.v-art-figs figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.v-art-figs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.v-art-pull {
  background: var(--blue-050);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
  color: var(--ink);
}
.v-art-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 40px 40px;
  border-top: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
}
.v-art-nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.v-art-nav button:disabled {
  color: var(--ink-3);
  opacity: 0.5;
  cursor: default;
}
.v-art-noimg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  background: repeating-linear-gradient(45deg, #eef2f7 0 8px, #f5f7fa 8px 16px);
  color: var(--ink-3);
  font-size: 12px;
  text-align: center;
  padding: 24px;
}
.v-art-noimg b {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--blue-200);
}
body.v-locked {
  overflow: hidden;
}

/* ---- 数字 ---- */
/* 5項目のため、最終行（2枚）が中央に寄るよう flex で組む */
.n-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.n-fact {
  flex: 0 1 calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.n-fnum-sub {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.n-fnum {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1;
}
.n-fnum small {
  font-size: 15px;
  font-weight: 700;
  margin-left: 3px;
}
.n-flabel {
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}
.n-fnote {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.6;
}
.n-highlight {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9333 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(238, 119, 0, 0.28);
}
.n-highlight-num {
  font-family: "Inter", sans-serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}
.n-highlight-num small {
  font-size: 28px;
  margin-left: 2px;
}
.n-highlight-body {
  flex: 1;
  min-width: 280px;
}
.n-highlight-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}
.n-highlight-body p {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  opacity: 0.95;
}

/* ---- インターン導線 ---- */
.n-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.n-route {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.n-route-wide {
  grid-column: span 2;
}
.n-route-split {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}
.n-route-photo-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.n-route-photo-2 figure {
  margin: 0;
  position: relative;
  height: 100%;
  min-height: 220px;
}
.n-route-photo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.n-photo-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(0deg, rgba(10, 20, 40, 0.68), transparent);
}
.n-route-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.n-route-photo-single {
  margin: -32px -32px 20px;
}
.n-route-photo-single img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.n-route-step {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.n-route h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 12px;
}
.n-route p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 18px;
}
.n-route-tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-050);
  padding: 6px 14px;
  border-radius: 999px;
}
.n-web4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 32px 32px;
}
.n-web4-item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.n-web4-item h5 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.5;
}
.n-web4-item .num {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  padding: 3px 7px;
}
.n-web4-item p {
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
}
.n-dates {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.n-date {
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.n-date .d {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}
.n-date .t {
  font-size: 11.5px;
  color: var(--ink-2);
  margin-top: 4px;
}
.n-badge-pair {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.n-mini-badge {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
}
.n-mini-badge b {
  color: var(--orange);
  font-weight: 800;
}
.n-gallery-head {
  text-align: center;
  margin-bottom: 32px;
}
.n-gallery-head h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.n-gallery-head p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
}
.n-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.n-gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.n-gallery img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.n-entry-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.n-entry-box h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
}
.n-entry-box p {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  max-width: 540px;
  line-height: 1.8;
}

/* ---- ボタン・フッター ---- */
.btn-white {
  background: #fff;
  color: var(--blue);
}
.btn-white:hover {
  background: #f2f7fd;
  transform: translateY(-2px);
}
.n-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.n-footer-tagline {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #9fb0c8;
  max-width: 380px;
}
.n-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 6px;
}
.n-footer-nav a {
  color: #9fb0c8;
  font-size: 14px;
  transition: color 0.2s;
}
.n-footer-nav a:hover {
  color: #fff;
}

/* ---- 進捗バー ---- */
.n-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
}
.n-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width 0.1s linear;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1080px) {
  .v-slider {
    --v-card-w: 262px;
  }
  .h-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .n-stance-grid {
    grid-template-columns: 1fr;
  }
  .n-photo-block {
    grid-template-columns: 1fr;
  }
  .n-photo-sub {
    flex-direction: row;
  }
  .n-ceo {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }
  .n-ceo-portrait {
    max-width: 260px;
    margin: 0 auto;
  }
  .n-strength {
    grid-template-columns: 1fr;
  }
  .n-found-side {
    grid-template-columns: 1fr;
  }
  .h-hero {
    grid-template-columns: 1fr;
  }
  .h-hero-body {
    padding: 32px 28px;
  }
  .h-split {
    grid-template-columns: 1fr;
  }
  .n-care-grid {
    grid-template-columns: 1fr 1fr;
  }
  .v-slider {
    --v-card-w: 280px;
    --v-gap: 20px;
  }
  .v-art-head {
    grid-template-columns: 1fr;
  }
  .v-art-photo {
    aspect-ratio: 4/3;
  }
  .v-art-intro {
    padding: 32px 28px;
  }
  .v-art-main {
    padding: 36px 28px 44px;
  }
  .v-art-nav {
    padding: 24px 28px 36px;
  }
  .n-fact {
    flex: 0 1 calc((100% - 20px) / 2);
  }
  .n-routes {
    grid-template-columns: 1fr;
  }
  .n-route-wide {
    grid-column: span 1;
  }
  .n-route-split {
    grid-template-columns: 1fr;
  }
  .n-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .n-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .n-care-grid {
    gap: 8px;
  }
  .n-bars {
    gap: 16px;
  }
  .n-bar.is-before {
    height: 120px;
  }
  .n-bar.is-after {
    height: 84px;
  }
  .n-bar-val {
    font-size: 22px;
  }
  .n-drop-arrow {
    padding-bottom: 44px;
  }
  .n-drop-arrow b {
    font-size: 16px;
  }
  .n-photo-sub {
    flex-direction: column;
  }
  .n-flow-row {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }
  .n-flow-row::before {
    left: 19px;
  }
  .n-flow-badge {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .n-flow-body {
    padding: 22px 20px;
  }
  .h-cards {
    grid-template-columns: 1fr;
  }
  .h-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .h-step-arrow {
    transform: rotate(90deg);
    height: 26px;
  }
  .h-voice {
    padding: 28px 24px;
    gap: 16px;
  }
  .v-slider {
    --v-card-w: 76%;
    --v-gap: 16px;
  }
  .v-slider-hint {
    font-size: 11px;
  }
  .v-arrow {
    width: 42px;
    height: 42px;
  }
  .v-card-catch {
    min-height: 0;
  }
  .v-art-figs {
    grid-template-columns: 1fr;
  }
  .v-modal-panel {
    max-height: 94vh;
  }
  .n-fact {
    flex: 0 1 calc((100% - 20px) / 2);
  }
  .n-fnum {
    font-size: 32px;
  }
  .n-highlight {
    padding: 28px 24px;
    gap: 20px;
  }
  .n-highlight-num {
    font-size: 60px;
  }
  .n-web4 {
    grid-template-columns: 1fr;
    padding: 0 24px 24px;
  }
  .n-route {
    padding: 24px;
  }
  .n-route-photo-single {
    margin: -24px -24px 18px;
  }
  .n-route-body {
    padding: 24px;
  }
  .n-route-photo-2 figure {
    min-height: 150px;
  }
  .n-gallery {
    grid-template-columns: 1fr;
  }
  .n-stance-quote {
    padding: 28px 24px;
  }
  .n-stance-quote blockquote {
    font-size: 18px;
  }
  .n-entry-box {
    padding: 24px;
  }
}
