:root {
  /* ここケアセンター公式サイトのライトスカイブルー系 */
  --pink-50:  #F4FAFD;
  --pink-75:  #E7F3F9;
  --pink-100: #D2E9F2;
  --pink-200: #A9D6E6;
  --pink-300: #82C2DA;
  --pink-400: #5DAFCC;
  --pink-500: #4FA3C2;  /* メインスカイブルー */
  --pink-600: #3989A8;  /* ホバー */
  --ink:      #1F2A33;
  --ink-2:    #475160;
  --ink-3:    #7A8493;
  --line:     #CFE6EF;
  --line-2:   #E4F1F7;
  --bg:       #ffffff;
  --bg-soft:  #F4FAFD;

  /* 差し色（ピンク） */
  --rose-50:  #FFF5F8;
  --rose-100: #FFE3EC;
  --rose-200: #FFC4D5;
  --rose-300: #FFA6C0;
  --rose-400: #FF7FA3;
  --rose-500: #F26C8B;
  --rose-600: #E0567A;
}

* { box-sizing: border-box; }
html { margin: 0 !important; }
body {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

/* ページ読み込み時のアニメーションを拑制 */
*, *::before, *::after { animation: none !important; }
html { scroll-behavior: auto; }

img { display: block; max-width: 100%; height: auto;}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- 背景装飾（落ち着いた大人っぽいトーン）---------- */
.bg-decor {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(45,133,179,0.06) 1px, transparent 1.4px);
  background-size: 28px 28px;
}
.bg-decor svg { position: absolute; opacity: 0.08; }
.bg-decor .c-cyan   { color: #5DAFCC; }
.bg-decor .c-blue   { color: #2D85B3; }
.bg-decor .c-teal   { color: #6FC8C0; }
.bg-decor .c-pink   { color: #F26C8B; }
.bg-decor .c-yellow { color: #DCC07A; }
.bg-decor .c-purple { color: #8A7EE0; }
.bg-decor .pos { width: 140px; height: 140px; }
.bg-decor .pos.lg { width: 220px; height: 220px; }
.bg-decor .pos.sm { width: 90px;  height: 90px; }
.bg-decor .pos.xs { width: 60px;  height: 60px; }
/* 左サイド */
.bg-decor .L0  { top: 6vh;   left: 2vw; }
.bg-decor .L1  { top: 22vh;  left: 1.5vw; }
.bg-decor .L2  { top: 42vh;  left: 3vw; }
.bg-decor .L3  { top: 62vh;  left: 1.5vw; }
.bg-decor .L4  { top: 82vh;  left: 3vw; }
.bg-decor .L5  { top: 105vh; left: 2vw; }
.bg-decor .L6  { top: 130vh; left: 1.5vw; }
.bg-decor .L7  { top: 158vh; left: 3vw; }
.bg-decor .L8  { top: 188vh; left: 2vw; }
.bg-decor .L9  { top: 220vh; left: 2vw; }
.bg-decor .L10 { top: 252vh; left: 1.5vw; }
.bg-decor .L11 { top: 285vh; left: 3vw; }
/* 右サイド */
.bg-decor .R0  { top: 8vh;   right: 2vw; }
.bg-decor .R1  { top: 26vh;  right: 1.5vw; }
.bg-decor .R2  { top: 50vh;  right: 3vw; }
.bg-decor .R3  { top: 72vh;  right: 1.5vw; }
.bg-decor .R4  { top: 96vh;  right: 3vw; }
.bg-decor .R5  { top: 122vh; right: 2vw; }
.bg-decor .R6  { top: 150vh; right: 1.5vw; }
.bg-decor .R7  { top: 180vh; right: 3vw; }
.bg-decor .R8  { top: 210vh; right: 2vw; }
.bg-decor .R9  { top: 240vh; right: 1.5vw; }
.bg-decor .R10 { top: 272vh; right: 3vw; }
.bg-decor .R11 { top: 300vh; right: 2vw; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(60% 80% at 100% 0%, var(--pink-75), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none;
  background-image: radial-gradient(circle, var(--pink-200) 1.2px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: .5;
}
.hero::before { width: 140px; height: 100px; right: 6%; top: 36%; }
.hero::after  { width: 90px;  height: 70px;  left: 4%;  bottom: 18%; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}

h1.hero-title {
  font-size: 48px; line-height: 1.5;
  font-weight: 700; letter-spacing: 0.04em;
  margin: 0 0 28px;
}
h1.hero-title .pink { color: var(--rose-500); }

.hero-body {
  font-size: 14px; color: var(--ink-2); line-height: 2.0;
  max-width: 520px;
  margin-bottom: 36px;
}

.btn-pill { font-size: 16px !important; }

/* ---------- 画像プレースホルダーをサイズ統一 ---------- */
.photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #E4F1F9 0 14px, #D0E6F2 14px 28px);
  aspect-ratio: 5 / 4;
  width: 100%;
  max-width: 100%;
  max-height: 480px;
}
.photo .label {
  position: absolute; inset: auto 0 14px 0;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; color: var(--pink-600); letter-spacing: 0.14em;
}
.photo.tall { aspect-ratio: 4 / 5; max-height: 560px; }
.photo.wide { aspect-ratio: 16 / 10; max-height: 460px; }
.photo.square { aspect-ratio: 1 / 1; max-height: 480px; }

/* Hero quick-link cards */
.hero-cards {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 2px 0 rgba(180, 210, 230, 0.25);
  transition: transform .15s ease, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.hero-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink-200);
  box-shadow: 0 14px 30px -18px rgba(45,133,179,0.35);
}
.hero-card .ic {
  width: 72px; height: 72px; flex: 0 0 auto;
  border-radius: 50%; background: var(--pink-50);
  display: grid; place-items: center; color: var(--pink-500);
}
.hero-card .t {
  font-weight: 700; font-size: 15px; line-height: 1.5;
  flex: 1;
}
.hero-card .chev {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--pink-200); color: var(--pink-500);
  display: grid; place-items: center; font-size: 11px;
}

/* ---------- MESSAGE section (新規) ---------- */
.message-section { background: #fff; }

.message-section .entry-cta-wrap {
  margin: 30px 0 0;
}

/* 離職率 ハイライトカード（4ブロックの前置き）*/
.retention-card {
  background: var(--rose-50);
  border-radius: 18px;
  padding: 36px 40px;
  margin: 0 auto 56px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px;
  align-items: center;
}
.retention-card .photo {
  aspect-ratio: 5 / 4; border-radius: 12px; margin: 0;
  background: repeating-linear-gradient(135deg, #FFE3EC 0 14px, #FFD2DF 14px 28px);
  max-height: 360px;
}
.retention-card .photo .label { color: var(--rose-600); }
.retention-card .copy p { margin: 0 0 16px; font-size: 15px; line-height: 1.9; color: var(--ink-2); }
.retention-stat {
  background: #fff; border-radius: 12px;
  padding: 22px 26px; margin-top: 8px;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 10px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.02em;
}
.retention-stat mark {
  background: transparent; color: var(--rose-500); font-weight: 700;
  padding: 0;
}
.retention-stat .huge {
  color: var(--rose-500);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 60px; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1; margin: 0 4px;
}

/* 採用実績*/
.hiring-achievements {
  margin-bottom: 56px;
}

.hiring-achievements__ttl {
  font-size: 26px;
  font-weight: bold;
  color: var(--rose-500);
  border-left: 4px solid var(--rose-500);
  padding-left: 12px;
  margin-bottom: 24px;
}

.hiring-achievements__list {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.hiring-achievements__note {
  font-size: 13px;
  margin-bottom: 32px;
  line-height: 1.6;
  padding-left: 4px;
}

.hiring-achievements__desc {
  font-size: 16px;
  color: #333;
}

.hiring-achievements__desc strong {
  color: var(--rose-500);
  font-weight: 700;
}

.hiring-achievements__desc > p + p {
  margin-top: 16px;
}

.hiring-achievements-item {
  flex: 1;
  background: var(--rose-50);
  padding: 25px 15px 30px;
  border-radius: 8px;
  text-align: center;
}

.hiring-achievements-item__ttl {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold;
}

.hiring-achievements-item__val {
  font-size: 45px;
  line-height: 1;
  font-weight: 700;
  color: var(--rose-500);
}

.hiring-achievements-item__val span {
  font-size: 19px;
  font-weight: normal;
  margin-left: 2px;
  color: #333;
}

@media (max-width: 960px) {
  .hiring-achievements__ttl {
    font-size: 22px;
  }
  
  .hiring-achievements__list {
    gap: 10px;
  }

  .hiring-achievements-item {
    padding: 17px 10px 21px;
  }
  .hiring-achievements-item__ttl {
    font-size: 16px;
  }

  .hiring-achievements-item__val {
    font-size: 33px;
  }

  .hiring-achievements-item__val span {
    font-size: 16px;
  }
}

/* 01-04 ブロック共通 */
.msg-block {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line-2);
}
.msg-block:first-of-type { border-top: 0; padding-top: 0; }
.msg-block.reverse { grid-template-columns: 1fr 1.4fr; }
.msg-block.reverse .msg-visual { order: -1; }

.msg-block .msg-header {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 22px;
}
.msg-block .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 80px; font-weight: 900;
  color: var(--rose-500); letter-spacing: -0.01em;
  line-height: 1;
}
.msg-block h3 {
  margin: 0;
  font-size: 30px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.04em; line-height: 1.5;
}
.msg-block .msg-body p {
  margin: 0 0 16px;
  font-size: 14.5px; line-height: 2.0; color: var(--ink-2);
}
.msg-block .msg-body p:last-child { margin-bottom: 0; }
.msg-block .msg-body strong { color: var(--rose-500); font-weight: 700; }

/* msg-visual 共通：サイズ統一 */
.msg-visual { display: flex; justify-content: center; align-items: center; }
.msg-visual .photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 360px;
  max-height: 360px;
  border-radius: 12px;
  background: repeating-linear-gradient(135deg, #E4F1F9 0 14px, #D0E6F2 14px 28px);
  margin: 0;
}
.msg-visual .photo.round { aspect-ratio: 1; border-radius: 50%; max-width: 320px; max-height: 320px; }
.msg-visual .photo.tinted {
  background: repeating-linear-gradient(135deg, #FFE3EC 0 14px, #FFD2DF 14px 28px);
}
.msg-visual .photo .label { color: var(--pink-600); }
.msg-visual .photo.tinted .label { color: var(--rose-600); }

/* 02: キャリアパス3カード */
.path-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 22px 0;
}
.path-card {
  background: var(--rose-50);
  border-radius: 12px;
  padding: 22px 12px 18px;
  text-align: center;
}
.path-card .ic {
  width: 88px; height: 88px; margin: 0 auto 16px;
  border-radius: 50%; background: #fff;
  display: grid; place-items: center;
  color: var(--rose-500);
}
.path-card .ic svg { width: 44px; height: 44px; }
.path-card .label {
  display: inline-block;
  background: var(--rose-500); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* 03: Compare 2列 + 中央の矢印 */
.compare-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  margin: 22px 0 18px;
  align-items: stretch;
}
.compare-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-500);
  min-width: 64px;
}
.compare-arrow svg { width: 56px; height: 56px; filter: drop-shadow(0 4px 8px rgba(242,108,139,0.25)); }
.compare-card {
  background: var(--rose-50);
  border-radius: 12px;
  padding: 22px 22px 20px;
}
.compare-card h4 {
  margin: 0 0 12px;
  font-size: 13.5px; font-weight: 700; color: var(--rose-600);
  letter-spacing: 0.02em; line-height: 1.7;
}
.compare-card ul {
  list-style: none; margin: 0 0 10px; padding: 0;
}
.compare-card li {
  position: relative; padding-left: 22px;
  font-size: 13.5px; line-height: 1.9; color: var(--ink-2);
  font-weight: 600;
}
.compare-card li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 12px; height: 12px;
  background: var(--rose-500);
  clip-path: polygon(20% 50%, 0 70%, 40% 100%, 100% 20%, 80% 0);
}
.compare-card p {
  margin: 8px 0 0; font-size: 12.5px; color: var(--ink-2); line-height: 1.85;
}
.compare-card.before { background: #F4F9FC; }
.compare-card.before h4 { color: var(--pink-600); }
.compare-card.before li::before { background: var(--pink-500); }

/* 04: 5本柱アイコン */
.pillars {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin: 24px 0 18px;
}
.pillar { text-align: center; }
.pillar .ic {
  width: 128px; height: 128px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--rose-50);
  display: grid; place-items: center;
  color: var(--rose-500);
}
.pillar .ic svg { width: 60px; height: 60px; }
.pillar .label {
  display: inline-block;
  background: var(--rose-100); color: var(--rose-600);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  letter-spacing: 0.04em;
}

/* メッセージ末尾の強調 */
.msg-outro {
  margin-top: 72px;
  text-align: center;
  padding: 56px 24px 16px;
}
.msg-outro p {
  margin: 0 0 18px;
  font-size: 28px; font-weight: 700; color: var(--ink);
  line-height: 1.7; letter-spacing: 0.04em;
}
.msg-outro p.lead-emph {
  font-size: 38px;
}
.msg-outro p .pink { color: var(--rose-500); }
.msg-outro p.signature {
  margin-top: 26px; font-size: 18px; color: var(--ink-3); font-weight: 500;
  letter-spacing: 0.06em;
}

@media (max-width: 960px) {
  .retention-card { grid-template-columns: 1fr; padding: 28px; margin-bottom: 64px; }
  .retention-card .photo { aspect-ratio: auto; }
  .retention-stat .huge { font-size: 44px; }
  .msg-block { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .msg-block.reverse { grid-template-columns: 1fr; }
  .msg-block .num { font-size: 36px; }
  .msg-block h3 { font-size: 19px; }
  .path-cards { grid-template-columns: 1fr 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-arrow svg { transform: rotate(90deg); width: 44px; height: 44px; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 18px 10px; }
  .msg-outro p { font-size: 15px; }
}

@media (max-width: 750px) {
  .msg-outro { margin-top: 30px; padding: 0; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 56px; align-items: start;
}
.director-card {
  text-align: center;
}
.director-card .photo {
  aspect-ratio: 1/1; border-radius: 8px; margin-bottom: 18px;
  max-width: 240px; max-height: 240px;
  margin-left: auto; margin-right: auto;
}
.director-card .role { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; }
.director-card .name { font-size: 16px; font-weight: 700; margin-top: 6px; }
.director-card .qual { font-size: 12px; color: var(--ink-3); margin-top: 8px; line-height: 1.7; }

.message-card {
  background: var(--pink-50);
  border-radius: 16px;
  padding: 48px 56px 56px;
  position: relative;
}
.message-card h3 {
  margin: 0 0 28px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px; font-weight: 800; letter-spacing: 0.12em;
  color: var(--pink-500);
}
.message-card p {
  margin: 0 0 18px;
  font-size: 17px; line-height: 2.1; color: var(--ink-2);
}
.message-card .quote {
  position: absolute; right: 28px; bottom: 14px;
  font-family: "Zen Maru Gothic", sans-serif; font-size: 64px; color: var(--pink-200);
  line-height: 1;
}

/* ABOUT — ここケアセンターのご紹介 */
.about-catch {
  margin-bottom: 80px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-align: center;
}

.about-catch span {
  color: var(--rose-500);
}

.about-intro {
  text-align: center;
  margin-bottom: 24px;
}

.about-intro__txt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--pink-600);
  letter-spacing: 0.16em;
  margin: 0;
  padding: 8px 24px;
  background: var(--pink-50);
  border-radius: 999px;
}

.about-intro__txt::before,
.about-intro__txt::after {
  content: "—";
}

.about-intro__txt span {
  padding-inline: .5em;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content__detail {
  font-size: 17px;
  line-height: 2.0;
  color: var(--ink);
  margin: 0 0 24px;
}

.about-content__detail strong {
  font-weight:700;
}

.about-content__detail .blue {
  color:var(--pink-600);
}

.about-content__detail .rose {
  color:var(--rose-500);
}

.about-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 36px;
}

.about-item {
  background:#fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
}

.about-item__ttl {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--pink-500);
  line-height: 1;
  margin-bottom: 8px;
}

.about-item__ttl span {
  font-size: 18px;
}

.about-item__txt {
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 600;
}

.about-photo {
  aspect-ratio: 4/3;
  max-height: none;
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-catch {
    margin-bottom: 40px;
    font-size: 26px;
  }

  .about-intro__txt {
    font-size: 14px;
  }

  .about-content {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-content__detail {
    font-size: 16px;
    margin-bottom: 1em;
  }

  .about-list {
    grid-template-columns: 100%;
  }

  .about-item {
    padding: 10px 9px;
  }

  .about-item__ttl {
    margin-bottom: 2px;
    font-size: 26px;
  }

  .about-item__ttl span {
    font-size: 16px;
  }
}

/* ---------- Feature ---------- */
.feature {
  background: var(--bg-soft);
}
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 36px 32px;
  display: grid; grid-template-columns: 120px 1fr; gap: 28px;
  align-items: start;
}
.feature-card .ic {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--pink-50);
  color: var(--pink-500);
  display: grid; place-items: center;
}
.feature-card .ic svg { width: 60px; height: 60px; }
.feature-card h4 {
  margin: 0 0 16px;
  font-size: 22px; font-weight: 700; color: var(--pink-600);
  line-height: 1.55;
  letter-spacing: 0.03em;
}
.feature-card h4 .num-prefix {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--rose-500);
  font-size: 34px; font-weight: 900;
  display: inline-block;
  margin-right: 12px;
  vertical-align: -3px;
  line-height: 1;
}
.feature-card p {
  margin: 0; font-size: 14px; line-height: 1.9; color: var(--ink-2);
}

.feature-subsec {
  padding: 0;
  margin-top: 20px;
}
.feature-subsec__ttl {
  font-size: 17px;
  margin: 0 0 10px;
  background: var(--pink-50);
  color: var(--pink-600);
  padding: 5px 15px;
}

/* ---------- Education ---------- */
.edu-lead { font-size: 14px; color: var(--ink-2); line-height: 2.0; margin: -8px 0 36px; }
.edu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 36px;
}
.edu-card {
  background: var(--pink-50);
  border-radius: 12px;
  padding: 24px 26px;
}
.edu-card .head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.edu-card .head .ic {
  width: 80px; height: 80px; border-radius: 14px;
  background: #fff; color: var(--pink-500);
  display: grid; place-items: center;
}
.edu-card .head .ic svg { width: 44px; height: 44px; }
.edu-card h5 { margin: 0; font-size: 18px; font-weight: 700; color: var(--pink-500); }
.edu-card p { margin: 0; font-size: 13.5px; line-height: 1.9; color: var(--ink-2); }

.record {
  background: var(--pink-50);
  border-radius: 12px;
  padding: 28px 32px;
}
.record h5 {
  margin: 0 0 18px;
  font-size: 14px; font-weight: 700; color: var(--pink-500);
  letter-spacing: 0.08em;
}
.record-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 56px;
}
.record-grid .col h6 {
  margin: 0 0 8px; font-size: 13px; color: var(--ink); font-weight: 700;
  padding-left: 10px; border-left: 3px solid var(--pink-400);
}
.record-grid .col p { margin: 0; font-size: 12.5px; line-height: 1.9; color: var(--ink-2); }

/* ---------- Schedule (vertical timeline) ---------- */
.schedule { background: var(--bg-soft); }
.timeline-v {
  list-style: none; padding: 0; margin: 0 auto;
  position: relative;
  max-width: 1100px;
}
.timeline-v::before {
  content: ""; position: absolute;
  left: 116px; top: 22px; bottom: 22px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--pink-200), var(--pink-400));
}
.tl-item {
  display: grid; grid-template-columns: 130px 1fr;
  align-items: center; gap: 30px;
  padding: 18px 0;
  position: relative;
}
.tl-time {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--pink-500); letter-spacing: -0.01em;
  text-align: right;
  padding-right: 30px;
  position: relative;
  line-height: 1;
}
.tl-time::after {
  content: ""; position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--pink-400);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--pink-200);
  box-sizing: content-box;
  z-index: 1;
}
.tl-card {
  display: grid;
  grid-template-columns: 112px 1fr 230px;
  align-items: center; gap: 28px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px 28px;
  box-shadow: 0 2px 0 rgba(180, 210, 230, 0.25);
}
.tl-card .ic {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--pink-50);
  display: grid; place-items: center;
  color: var(--pink-500);
  flex-shrink: 0;
}
.tl-card .ic svg { width: 54px; height: 54px; }
.tl-body h6 {
  margin: 0 0 8px;
  font-size: 20px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.02em;
}
.tl-body p {
  margin: 0; font-size: 14px; line-height: 1.85; color: var(--ink-2);
}
.tl-photo {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #D0E6F2 0 12px, #B7D7E8 12px 24px);
  max-height: 160px;
}

/* ---------- Career & Entry ---------- */
.career p.lead { font-size: 14.5px; line-height: 2.0; color: var(--ink-2); margin: 0 0 32px; max-width: 760px; }

#career .resident-steps {
  grid-template-columns:repeat(5,1fr);
}

/* salary table */
.salary-table {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(180, 210, 230, 0.18);
  width: 100%;
}
.salary-table .row {
  display: grid; grid-template-columns: 130px 220px 1fr;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line-2);
  gap: 16px;
}
.salary-table .row:last-child { border-bottom: 0; }
.salary-table .row:nth-child(even) { background: var(--bg-soft); }
.salary-table .row.head {
  background: var(--pink-500); color: #fff;
  padding: 16px 32px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
}
.salary-table .row.head > div { color: #fff; }
.salary-table .stage {
  font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.salary-table .stage .yr {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px; font-weight: 700; color: var(--pink-500);
  letter-spacing: -0.01em; min-width: 60px;
}
.salary-table .role {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose-100); color: var(--rose-600);
  font-size: 15px; font-weight: 700;
  padding: 8px 18px; border-radius: 999px;
  letter-spacing: 0.06em;
  width: fit-content;
  min-width: 80px;
}
.salary-table .role.empty { background: transparent; }
.salary-table .amount {
  text-align: right;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px; font-weight: 700; color: var(--rose-500);
  letter-spacing: -0.01em;
}
.salary-table .amount .unit {
  font-size: 14px; color: var(--ink-2); margin-left: 4px;
  font-weight: 500; font-family: inherit;
}
.career .note { font-size: 12.5px; color: var(--ink-3); margin-top: 14px; text-align: center; }

.entry-card {
  background: var(--pink-50); border-radius: 12px;
  padding: 32px 32px 28px;
  position: relative;
}
.entry-card__inner {
  padding:36px 40px;
}
.entry-card .illu {
  position: absolute; right: 12px; top: 12px;
  width: 96px; height: 110px;
  background:
    repeating-linear-gradient(135deg, #C9DFEF 0 8px, #B0CFE3 8px 16px);
  border-radius: 10px;
  opacity: 0.6;
}
.entry-card .recruit-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 10px;
}
.entry-card .recruit-head .en {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px; font-weight: 700; color: var(--pink-500);
  letter-spacing: 0.04em;
}
.entry-card .recruit-head h3 {
  margin: 0; font-size: 20px; font-weight: 700;
}
.entry-card p.intro {
  font-size: 14.5px; line-height: 2.0; color: var(--ink-2);
  margin: 0 0 26px;
  position: relative; z-index: 1;
}

.entry-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: 8px;
  overflow: hidden;
  font-size: 14.5px;
}
.entry-table tr + tr { border-top: 1px solid var(--line-2); }
.entry-table th, .entry-table td {
  padding: 16px 18px; text-align: left; vertical-align: top;
  line-height: 1.85;
}
.entry-table th {
  background: var(--pink-75); color: var(--pink-600);
  font-weight: 700; width: 130px;
  letter-spacing: 0.06em;
  font-size: 13.5px;
}
.entry-table td { color: var(--ink-2); }

.btn-entry, .btn-entry span { font-size: 16px !important; }

/* ---------- Button 統一 ---------- */
.btn-pill, .btn-entry {
  display: inline-flex !important;
  align-items: center; justify-content: center;
  gap: 12px;
  background: var(--pink-500) !important;
  color: #fff !important;
  padding: 22px 56px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  min-width: 320px;
  width: auto !important;
  box-shadow: 0 14px 30px -14px rgba(45,133,179,0.55);
  transition: transform .15s ease, box-shadow .2s;
  text-decoration: none;
}
.btn-pill:hover, .btn-entry:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -14px rgba(45,133,179,0.75);
}
.btn-pill .arrow, .btn-entry .arrow, .btn-entry > span {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  font-size: 13px !important;
}
.entry-card .btn-entry { margin-top: 28px; }
.entry-card .btn-entry, .entry-card a.btn-entry { display: flex !important; margin-left: auto; margin-right: auto; }
/* entry card inner block centers the button */
.entry-card > div { text-align: center; }
.entry-card > div > p, .entry-card > div > table { text-align: left; }

/* ---------- Closing CTA ---------- */
.closing {
  position: relative;
  background:
    radial-gradient(50% 80% at 0% 50%, var(--pink-75), transparent 60%),
    radial-gradient(40% 70% at 100% 50%, var(--pink-75), transparent 60%),
    var(--pink-50);
  padding: 96px 0 96px;
  text-align: center;
  overflow: hidden;
}
.closing::before, .closing::after {
  content: ""; position: absolute; pointer-events: none;
  background-image: radial-gradient(circle, var(--pink-200) 1.2px, transparent 1.6px);
  background-size: 14px 14px; opacity: .55;
}
.closing::before { width: 160px; height: 110px; left: 4%; bottom: 14%; }
.closing::after  { width: 160px; height: 110px; right: 5%; top: 18%; }

.closing .deco {
  position: absolute; right: 8%; bottom: 40px;
  width: 130px; height: 160px; opacity: 0.85;
  color: var(--pink-300);
}
.closing h2 {
  margin: 0 0 14px;
  font-size: 30px; font-weight: 700; letter-spacing: 0.04em;
  line-height: 1.5;
}
.closing h2 .pink { color: var(--rose-500); }
.closing p.tag {
  margin: 0 0 36px; font-size: 16px; color: var(--ink-2);
  line-height: 1.8; letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */
@media (min-width: 1101px) {
  .nav--sp { display: none; }
  .header-hb { display: none; }
}

@media (max-width: 960px) {
  .hero { padding: 32px 0 56px !important; }
  .hero-grid { display: flex; flex-direction: column-reverse; grid-template-columns: 1fr; gap: 32px; }
  .hero .photo { max-width: 577px; }
  h1.hero-title { font-size: 28px; }
  .hero-cards { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .director-card { display: grid; grid-template-columns: 140px 1fr; gap: 18px; text-align: left; align-items: center; }
  .director-card .photo { margin: 0; }
  .feature-grid, .edu-grid { grid-template-columns: 1fr; }
  .record-grid { grid-template-columns: 1fr; gap: 22px; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .timeline-v::before { left: 68px; }
  .tl-time { font-size: 20px; padding-right: 16px; }
  .tl-card { grid-template-columns: 64px 1fr; gap: 16px; padding: 16px; }
  .tl-card .ic { width: 64px; height: 64px; }
  .tl-card .ic svg { width: 32px; height: 32px; }
  .tl-photo { display: none; }
  .salary-table .row { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
  .salary-table .row.head { display: none; }
  .salary-table .amount { text-align: left; }
  .closing h2 { font-size: 22px; }
  .closing p.tag { font-size: 14px; }
  .entry-card__inner {
    padding:36px 20px;
  }
  .entry-card .recruit-head {
    flex-direction: column;
  }
}

/* ---------- \u672c\u6587 16px\u4ee5\u4e0a\u306b\u7d71\u4e00\uff08PC/\u30b9\u30de\u30db\u5171\u901a\uff09---------- */
.hero-body { font-size: 18px !important; line-height: 2.0; max-width: 600px; }
.hero-card .t { font-size: 17px !important; }
.retention-card .copy p { font-size: 18px !important; line-height: 1.95; }
.msg-block .msg-body p { font-size: 17px !important; line-height: 2.0; }
.msg-block .msg-body p strong { font-size: 17px !important; }
.message-card p { line-height: 2.1; }
.feature-card p { font-size: 17px !important; line-height: 1.95; }
.edu-lead { font-size: 17px !important; }
.edu-card p { font-size: 16px !important; line-height: 1.95; }
.record h5 { font-size: 17px !important; }
.record-grid .col h6 { font-size: 16px !important; }
.record-grid .col p { font-size: 16px !important; line-height: 1.95; }
.tl-body p { font-size: 17px !important; line-height: 1.95; }
.career p.lead { font-size: 17px !important; }
.salary-table .row.head { font-size: 15px; padding: 18px 32px; }
.entry-card p.intro { font-size: 17px !important; line-height: 2.0; }
.entry-table { font-size: 17px !important; }
.entry-table th { font-size: 16px !important; }
.entry-table th, .entry-table td { padding: 18px 20px; }
.entry-table td { font-size: 17px !important; }
.compare-card h4, .compare-card h4 strong { font-size: 17px !important; }
.compare-card li, .compare-card li strong { font-size: 17px !important; }
.compare-card p, .compare-card p strong { font-size: 17px !important; }
.path-card .label { font-size: 16px !important; padding: 8px 14px; }
.pillar .label { font-size: 16px !important; padding: 7px 16px; }

/* スマホも本文 16px を維持 */
@media (max-width: 960px) {
  .hero-body, .retention-card .copy p, .msg-block .msg-body p,
  .message-card p, .feature-card p, .edu-lead, .edu-card p,
  .tl-body p, .career p.lead, .entry-card p.intro, .entry-table,
  .compare-card li, .compare-card p, .compare-card h4 { font-size: 16px !important; }
}

/* ---------- スマホ用 全体レイアウト調整 ---------- */
@media (max-width: 768px) {
  /* ヒーロー */
  h1.hero-title { font-size: 28px !important; line-height: 1.4 !important; }
  .hero-body { font-size: 15px !important; line-height: 1.9 !important; }

  /* STATEMENT 大型コピー */
  section#message p[style*="font-size: 64px"] { font-size: 36px !important; line-height: 1.5 !important; }
  section#message p[style*="font-size: 19px"] { font-size: 15px !important; line-height: 2 !important; }

  /* Hero copy moved here */
  .statement-intro { margin-bottom: 0 !important; padding-inline: 0 !important; }

  /* 「心理師として、長く成長できる環境を。」独立セクション */
  section[style*="padding: 32px 0 80px"] p { font-size: 26px !important; line-height: 1.5 !important; }

  /* STATEMENT 01-04 */
  .msg-block { display: flex; flex-direction: column; gap: 24px !important; padding: 32px 0 !important; }
  .msg-block .num { font-size: 48px !important; }
  .msg-block h3 { font-size: 22px !important; }
  .msg-block .msg-content {
    display: contents;
  }
  .msg-block .msg-header {
    order: 1;
    margin-bottom: 0;
  }
  .msg-block .msg-body {
    order: 3;
  }
  .msg-block.reverse .msg-visual,
  .msg-block .msg-visual {
    order: 2;
  }

  /* 離職率カード */
  .retention-card { grid-template-columns: 1fr !important; padding: 24px !important; margin-bottom: 56px !important; }
  .retention-stat { padding: 18px 22px; align-items: flex-start; justify-content: center; }
  .retention-stat .huge { font-size: 40px !important; }

  /* FEATURE 4カード */
  #feature .feature-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .feature .message-card { padding: 0 0 30px !important; }
  .feature .message-card .quote { bottom: -10px; }
  .feature-card { grid-template-columns: 100% !important; gap: 16px !important; padding: 24px 20px !important; position: relative; }
  .feature-card .ic { width: 80px !important; height: 80px !important; position: absolute; top: 24px; left: 20px; }
  .feature-card .ic svg { width: 42px !important; height: 42px !important; }
  .feature-card__txt { display: contents; }
  .feature-card h4 { display: flex; align-items: center; min-height: 80px; margin-bottom: 0; padding-left: 100px; font-size: 17px !important; line-height: 1.5 !important; }
  .feature-card h4 .num-prefix { font-size: 24px !important; margin-right: 8px !important; }
  .curriculum-chips li { font-size: 12px !important; padding: 6px 12px !important; }

  /* RESIDENT / CAREER ステップ */
  .resident-steps,
  section#career .resident-steps {
    grid-template-columns: 100%;
    gap: 36px 14px !important;
  }
  .resident-step { padding: 28px 16px 20px !important; }
  .resident-step .stepnum { font-size: 14px !important; padding: 2px 12px !important; top: -14px !important; left: 12px !important; }
  .resident-step h4 { min-height: 35px; display: flex; align-items: center; font-size: 20px !important; margin: 0 !important; }
  .resident-step .yrs { font-size: 18px !important; padding: 0 10px !important; margin-bottom: 0 !important; }
  .resident-step p { font-size: 16px !important; line-height: 1.7 !important; }

  /* SCHEDULE timeline */
  .timeline-v::before { left: 3px; }
  .tl-item { grid-template-columns: 100%; gap: 16px; padding-left: 20px; }
  .tl-time { font-size: 16px; padding-right: 16px; text-align: left; padding-left: 6px; }
  .tl-time::after {
    width: 10px;
    height: 10px;
    right: auto;
    left: -24px;
  }
  .tl-card { align-items: flex-start; grid-template-columns: 64px 1fr; gap: 16px; padding: 16px; }
  .tl-card .ic { width: 64px; height: 64px; }
  .tl-card .ic svg { width: 32px; height: 32px; }
  .tl-body h6 { font-size: 18px; }
  .tl-photo { display: none; }

  /* VOICES */
  .voices { grid-template-columns: 1fr !important; gap: 18px !important; }
  .voice { padding: 24px 24px 24px 92px !important; }
  .voice .avatar { width: 60px !important; height: 60px !important; left: 18px !important; top: 24px !important; }
  .voice .avatar svg { width: 32px !important; height: 32px !important; }
  .voice::before { font-size: 64px !important; }

  /* SALARY table */
  .salary-table .row { display: flex; flex-wrap: wrap; gap: 8px !important; padding: 18px 18px !important; }
  .salary-table .row.head { display: none !important; }
  .salary-table .stage { font-size: 14px !important; gap: 8px !important; }
  .salary-table .stage .yr { font-size: 20px !important; min-width: auto !important; }
  .salary-table .role { padding: 0 6px !important; font-size: 14px !important; }
  .salary-table .amount { display: flex; align-items: baseline; font-size: 22px !important; text-align: left !important; }
  .salary-table .amount .unit { display: block; font-size: 14px !important;}

  /* 各種手当 */
  .allowance-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .allowance-card { padding: 22px 22px !important; }
  .allowance-card h6 { font-size: 17px !important; }
  .allowance-card li { font-size: 14.5px !important; }
  .allowance-card li b { font-size: 15px !important; }

  /* HIRES */
  .univ-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .univ-col { padding: 22px 20px !important; }
  .univ-col h6 { width: 100%; padding: 8px 16px !important; font-size: 15px !important; text-align: center; }
  .univ-col ul { grid-template-columns: 1fr !important; gap: 0 !important; }
  .univ-col li { font-size: 13.5px !important; padding: 8px 0 8px 18px !important; }
  .univ-cont02 {
    font-size: 16px;
  }

  /* WANT */
  .needs-list li { font-size: 15px !important; padding: 18px 22px 18px 70px !important; }
  .needs-list li::before { width: 30px !important; height: 30px !important; left: 20px !important; background-size: 20px 20px !important; }

  /* PATH cards (02) */
  .path-cards { grid-template-columns: 1fr !important; gap: 12px !important; }
  .path-card { padding: 18px 14px 16px !important; }
  .path-card .ic { margin-bottom: 10px !important; }
  .path-card .label { font-size: 14px !important; padding: 6px 12px !important; }

  /* PILLARS (04) */
  .pillars { grid-template-columns: repeat(3, 1fr) !important; gap: 14px 8px !important; }
  .pillar .ic { width: 100px !important; height: 100px !important; }
  .pillar .ic svg { width: 40px !important; height: 40px !important; }
  .pillar .label { font-size: 16px !important; padding: 0 18px !important; }

  /* Compare (03) */
  .compare-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .compare-arrow svg { transform: rotate(90deg) !important; width: 40px !important; height: 40px !important; }
  .compare-card { padding: 18px 20px !important; }
  .compare-card h4 { font-size: 16px !important; }
  .compare-card li, .compare-card p { font-size: 14.5px !important; }

  /* ABOUT */
  section#about > .container > div[style*="grid-template-columns:1.1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  section#about div[style*="grid-template-columns:repeat(3,1fr)"] { gap: 8px !important; }

  /* DIRECTOR's MESSAGE */
  .about-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .director-card { display: grid !important; grid-template-columns: 100% !important; text-align: left !important; align-items: center !important; gap: 0 14px !important; }
  .director-card .photo { margin: 0 auto 14px; max-width: 480px; max-height: 480px; }
  .director-card .photo img { width: 100%; height: 100%; object-fit: cover; }
  .director-card .role { font-size: 16px !important; }
  .director-card .name { margin-top: 0 !important; font-size: 24px !important; }
  .director-card .qual { margin-top: 0; font-size: 16px !important; }
  .message-card { padding: 28px 22px 32px !important; }
  .message-card h3 { font-size: 20px !important; margin-bottom: 18px !important; }
  .message-card p { font-size: 14.5px !important; line-height: 1.95 !important; margin-bottom: 14px !important; }

  /* ENTRY card */
  #entry > div { padding: 22px 20px !important; }
  .entry-card { padding: 0; }
  .entry-table { font-size: 13.5px !important; }
  .entry-table tbody { display: flex; flex-direction: column; row-gap: 10px; }
  .entry-table tr { display: flex; flex-direction: column; }
  .entry-table tr + tr { border-top: none; }
  .entry-table th { width: 100%; display: block; background: var(--pink-100) !important; border-radius: 6px; }
  .entry-table th, .entry-table td { padding: 12px 14px !important; font-size: 13.5px !important; }
  .entry-card .btn-entry-big { padding: 18px 24px !important; }

  /* Buttons */
  .btn-entry-big { min-width: 0 !important; width: 100% !important; max-width: 360px; padding: 18px 24px !important; font-size: 17px !important; }
  .btn-entry-big .arrow { width: 28px !important; height: 28px !important; }
  .btn-pill { padding: 16px 28px !important; }

  /* CLOSING */
  .msg-outro p { font-size: 18px !important; }
  .msg-outro p.lead-emph { font-size: 24px !important; }
  .msg-outro p.signature { font-size: 14px !important; }
  .closing { padding: 64px 0 !important; }
  .closing::before { width: 160px; height: 110px; left: 18px; bottom: 7%; z-index: -1; }
  .closing::after  { width: 160px; height: 110px; right: 18px; top: 9%; }

  /* 背景装飾 縮小 */
  .bg-decor .pos { width: 70px !important; height: 70px !important; }
  .bg-decor .pos.lg { width: 100px !important; height: 100px !important; }
  .bg-decor .pos.sm { width: 50px !important; height: 50px !important; }
  .bg-decor .pos.xs { width: 36px !important; height: 36px !important; }

  /* 理事長メッセージ */
  #director-message .message-card h3 {
    text-align: center;
  }

  /* CAREER */
  #career .resident-steps {
    grid-template-columns: 100%;
  }
}

/* \u30b9\u30de\u30db\u3082\u672c\u6587 16px \u3092\u7dad\u6301 */
@media (max-width: 960px) {
  .hero-body, .retention-card .copy p, .msg-block .msg-body p,
  .message-card p, .feature-card p, .edu-lead, .edu-card p,
  .tl-body p, .career p.lead, .entry-card p.intro, .entry-table,
  .compare-card li, .compare-card p, .compare-card h4 { font-size: 16px; }
}

/* ---------- デザインシステム統一 ---------- */
/* 英文・数字を丸ゴシックで揃える（インライン編集にも勝つ） */
.section-title .en,
.entry-card .recruit-head .en,
.brand-text .en,
.footer-copy,
.msg-block .num,
.retention-stat .huge,
.salary-table .stage .yr,
.salary-table .amount,
.salary-table .amount .unit,
.tl-time {
  font-family: "Zen Maru Gothic", sans-serif !important;
}

/* カード類の角丸を統一 */
.feature-card, .edu-card, .retention-card, .entry-card,
.salary-table, .tl-card, .hero-card, .path-card, .compare-card,
.message-card { border-radius: 16px; }

/* ---------- 追加：新規セクション用スタイル ---------- */
/* キャッチ／リード */
.catch {
  font-size: 26px; line-height: 1.8; color: var(--ink);
  margin: 0 0 48px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 28px;
  border-left: 6px solid var(--rose-500);
}
.catch strong { color: var(--rose-500); font-weight: 800; }
.catch.normal { font-size: 18px; font-weight: 500; line-height: 2.0; color: var(--ink-2); padding-left: 0; border-left: 0; }

/* Resident step + arrow */
.resident-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin: 56px 0 0;
  position: relative;
}
.resident-step {
  background: #fff; border: 1px solid var(--line-2); border-radius: 16px;
  padding: 40px 18px 32px;
  position: relative;
}
.resident-step + .resident-step::before {
  content: "";
  position: absolute; left: -28px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--pink-500);
  clip-path: polygon(0 25%, 60% 25%, 60% 0, 100% 50%, 60% 100%, 60% 75%, 0 75%);
  z-index: 2;
}
.resident-step .stepnum {
  position: absolute; top: -18px; left: 24px;
  background: var(--pink-500); color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px; font-weight: 800;
  padding: 8px 22px; border-radius: 999px;
  letter-spacing: 0.08em;
}
.resident-step h4 {
  margin: 16px 0 12px;
  font-size: 24px; font-weight: 700; color: var(--ink);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.resident-step .yrs {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px; color: var(--rose-500); font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding: 4px 14px;
  background: var(--rose-50);
  border-radius: 8px;
}
.resident-step p { margin: 0; font-size: 16px; color: var(--ink-2); line-height: 1.85; }

/* 先輩の声 */
.voices { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.voice {
  background: var(--pink-50);
  border-radius: 16px;
  padding: 32px 36px 32px 130px;
  position: relative;
}
.voice .avatar {
  position: absolute; left: 28px; top: 32px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--pink-500); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px rgba(45,133,179,0.35);
}
.voice .avatar svg { width: 44px; height: 44px; }
.voice .role {
  display: inline-block;
  background: var(--pink-500); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.voice p { margin: 0; font-size: 16px; line-height: 1.95; color: var(--ink-2); }
.voice::before {
  content: "“"; position: absolute; top: -14px; right: 24px;
  font-family: Georgia, serif;
  font-size: 96px; color: var(--pink-200);
  line-height: 1;
}

/* 求める人物像 チェックリスト */
.needs-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
}
.needs-list li {
  background: #fff;
  border: 2px solid var(--pink-200);
  border-radius: 14px;
  padding: 22px 28px 22px 80px;
  position: relative;
  font-size: 18px; line-height: 1.7; color: var(--ink);
  font-weight: 700;
}
.needs-list li::before {
  content: ""; position: absolute; left: 24px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--pink-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-size: 24px 24px;
  background-position: center; background-repeat: no-repeat;
}

/* 大学院 2列 カード枚 */
.univ-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 22px;
}
.univ-col {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 2px 0 rgba(180, 210, 230, 0.18);
}
.univ-col h6 {
  margin: 0 0 18px;
  font-size: 18px; font-weight: 700; color: #fff;
  background: var(--pink-500);
  padding: 10px 22px; border-radius: 8px;
  letter-spacing: 0.06em;
  display: inline-block;
}
.univ-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px;
}
.univ-col li {
  font-size: 15px; color: var(--ink); line-height: 1.85;
  padding: 10px 0; border-bottom: 1px dashed var(--line-2);
  position: relative; padding-left: 18px;
}
.univ-col li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink-400);
}
.univ-cont02 {
  margin-top: 30px;
}
.univ-cont02__item::marker {
  color: var(--pink-400);
}

/* 研修カリキュラム チップス */
.curriculum-chips {
  display: flex; flex-wrap: wrap; gap: 10px 12px;
  margin: 16px 0 0;
  padding: 0; list-style: none;
}
.curriculum-chips li {
  background: #fff;
  border: 1px solid var(--pink-200);
  color: var(--pink-600);
  font-size: 14px; font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* 手当ブロック */
.allowance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 24px;
}
.allowance-card {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 32px 32px;
  box-shadow: 0 2px 0 rgba(180, 210, 230, 0.18);
}
.allowance-card h6 {
  margin: 0 0 16px;
  font-size: 20px; font-weight: 700; color: var(--pink-600);
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--pink-200);
  padding-bottom: 12px;
}
.allowance-card ul { list-style: none; margin: 0; padding: 0; }
.allowance-card li {
  font-size: 17px; color: var(--ink); line-height: 2.0;
  display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-2);
  font-weight: 500;
}
.allowance-card li:last-child { border-bottom: 0; }
.allowance-card li b {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--pink-600); font-weight: 800; white-space: nowrap;
  font-size: 18px;
}

/* エントリー CTA 拡大 */
.entry-cta-wrap {
  text-align: center;
  margin: 0 auto 64px;
}
.btn-entry-big {
  display: inline-flex !important;
  align-items: center; justify-content: center;
  gap: 16px;
  background: var(--pink-500) !important;
  color: #fff !important;
  padding: 28px 80px !important;
  border-radius: 999px !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em;
  min-width: 420px;
  box-shadow: 0 18px 38px -16px rgba(45,133,179,0.65);
  transition: transform .15s ease, box-shadow .2s;
  text-decoration: none;
}
.btn-entry-big:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -18px rgba(45,133,179,0.8); color: #fff !important; }
.btn-entry-big .arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center; font-size: 18px !important;
  position: relative;
}
.btn-entry-big .arrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  font-size: 1em;
  position: absolute;
  top: 50%;
  right: 0;
  left: 46%;
  bottom: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.entry-cta-wrap .sub {
  margin-top: 14px; font-size: 14px; color: var(--ink-3); letter-spacing: 0.08em;
}

/* @media tweak: smaller heading on mobile */
@media (max-width: 960px) {
  .catch { font-size: 18px; padding-left: 18px; border-left-width: 4px; }
  .resident-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .resident-step + .resident-step::before { top: -5px; left: 50%; transform: rotate(90deg) translate(-100%,50%); }
  .btn-entry-big { min-width: auto; width: 100%; padding: 18px 24px !important; font-size: 18px !important; }
}

@media (max-width: 768px) {
  .resident-steps {
    grid-template-columns: 100% !important;
  }
  .resident-step {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-subsec {
    padding: 0 !important;
    margin-top: 5px;
  }
}


.lp-recruit-content__list {
  text-align: left;
  margin: 20px auto;
  padding: 0 20px;
}

@media (min-width: 769px) {
  /*
  .supervisor .container--center {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
  }
  */
}

@media (max-width: 768px) {
  .supervisor .container {
    font-size: 16px;
  }
}