/* ==========================================================================
   ハートフルケア堺 採用サイト  /  Global Stylesheet
   コーラル × クリーム × 白 ／ 働く人の表情が主役
   ========================================================================== */

:root {
  /* Colors */
  --c-coral:        #f0726b;
  --c-coral-dark:   #e25750;
  --c-coral-deep:   #c94640;
  --c-coral-soft:   #fde9e7;
  --c-cream:        #fdf6ec;
  --c-cream-deep:   #f9ecda;
  --c-white:        #ffffff;
  --c-teal:         #4ba596;
  --c-teal-soft:    #e3f2ef;
  --c-yellow:       #f5b94f;
  --c-yellow-soft:  #fdf1da;
  --c-text:         #4a3c38;
  --c-text-soft:    #75635d;
  --c-text-mute:    #9b8a84;
  --c-border:       #f0e2d6;
  --c-line:         #06c755;
  --c-line-dark:    #05a847;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(122, 71, 56, 0.07);
  --shadow-md: 0 6px 20px rgba(122, 71, 56, 0.1);
  --shadow-lg: 0 16px 44px rgba(122, 71, 56, 0.15);
  --shadow-coral: 0 8px 24px rgba(240, 114, 107, 0.32);

  /* Layout */
  --container: 1160px;
  --gap: 24px;
  --header-h: 78px;

  /* Fonts */
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-round: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --font-en: "Quicksand", "M PLUS Rounded 1c", sans-serif;
}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-coral); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-round);
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  letter-spacing: .03em;
}
p { margin: 0 0 1em; }
table { border-collapse: collapse; }

/* Layout helpers ---------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-cream { background: var(--c-cream); }
.section-coral { background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-coral-dark) 100%); color: #fff; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--c-coral);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-coral .section-head .en { color: #fff; opacity: .85; }
.section-head h2 {
  font-size: clamp(25px, 3.3vw, 36px);
  color: var(--c-text);
}
.section-coral .section-head h2 { color: #fff; }
.section-head h2 .dot { color: var(--c-coral); }
.section-head p {
  margin-top: 16px;
  color: var(--c-text-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-coral .section-head p { color: rgba(255,255,255,.88); }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  border-radius: var(--radius-pill);
  transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--c-coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover { background: var(--c-coral-dark); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--c-coral-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--c-cream); color: var(--c-coral-deep); }
.btn-outline {
  background: transparent;
  color: var(--c-coral-dark);
  border: 2px solid var(--c-coral);
}
.btn-outline:hover { background: var(--c-coral); color: #fff; }
.btn-line {
  background: var(--c-line);
  color: #fff;
  box-shadow: 0 6px 20px rgba(6, 199, 85, .3);
}
.btn-line:hover { background: var(--c-line-dark); color: #fff; }
.btn-line svg { width: 20px; height: 20px; }
.btn-lg { padding: 19px 46px; font-size: 17px; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn svg { flex-shrink: 0; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
}
.brand:hover { color: var(--c-text); }
.brand-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--c-coral);
  border-radius: 14px;
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { line-height: 1.25; }
.brand-text .name {
  display: block;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-text);
}
.brand-text .sub {
  display: block;
  font-family: var(--font-en);
  font-size: 10.5px;
  color: var(--c-coral);
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  padding: 9px 15px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-round);
  color: var(--c-text);
  border-radius: var(--radius-pill);
}
.nav a:hover, .nav a.active {
  color: var(--c-coral-dark);
  background: var(--c-coral-soft);
}
.nav .btn {
  margin-left: 10px;
  padding: 11px 24px;
  font-size: 14px;
}
.nav .btn:hover { background: var(--c-coral-dark); color: #fff; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-pill);
  background: #fff;
}
.nav-toggle::after {
  content: "メニュー";
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap;
}
.nav-toggle.is-open::after { content: "閉じる"; }
.nav-toggle span {
  position: relative;
  display: block;
  width: 20px; height: 2px;
  margin: 7px 0;
  background: var(--c-coral);
  border-radius: 2px;
  transition: .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 20px; height: 2px;
  background: var(--c-coral);
  border-radius: 2px;
  transition: .2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-cream);
  padding: 96px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -140px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--c-coral-soft);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--c-cream-deep);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-round);
  letter-spacing: .12em;
  color: var(--c-coral-deep);
  background: #fff;
  border: 1.5px solid var(--c-coral-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero .eyebrow svg { width: 15px; height: 15px; color: var(--c-coral); }
.hero h1 {
  font-size: clamp(31px, 4.6vw, 52px);
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--c-text);
}
.hero h1 em {
  font-style: normal;
  color: var(--c-coral-dark);
  background: linear-gradient(transparent 68%, rgba(245, 185, 79, .45) 68%);
  padding: 0 2px;
}
.hero p {
  font-size: 16.5px;
  color: var(--c-text-soft);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual { position: relative; }
.hero-visual .photo {
  position: relative;
  border-radius: 36% 64% 58% 42% / 48% 42% 58% 52%;
  overflow: hidden;
  aspect-ratio: 5 / 5.4;
  box-shadow: var(--shadow-lg);
}
.hero-visual .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual .badge-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--c-text);
  z-index: 2;
}
.hero-visual .badge-float svg { width: 18px; height: 18px; color: var(--c-coral); flex-shrink: 0; }
.hero-visual .badge-float.b1 { top: 6%; left: -12px; }
.hero-visual .badge-float.b2 { bottom: 10%; right: -8px; }

/* Stats ------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.stat-card {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 20px 30px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-coral-soft);
}
.stat-card .icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-coral-soft);
  color: var(--c-coral-dark);
}
.stat-card:nth-child(2) .icon { background: var(--c-teal-soft); color: var(--c-teal); }
.stat-card:nth-child(3) .icon { background: var(--c-yellow-soft); color: #d99a2b; }
.stat-card:nth-child(4) .icon { background: var(--c-teal-soft); color: var(--c-teal); }
.stat-card .icon svg { width: 27px; height: 27px; }
.stat-card .num {
  font-family: var(--font-en);
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--c-coral-dark);
  line-height: 1.1;
}
.stat-card .num .unit {
  font-size: 17px;
  font-family: var(--font-round);
  font-weight: 800;
  margin-left: 2px;
  color: var(--c-text-soft);
}
.stat-card .label {
  margin-top: 8px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--c-text);
}
.stat-card .note {
  font-size: 11.5px;
  color: var(--c-text-mute);
  margin-top: 4px;
}
.stats-foot {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-mute);
  margin-top: 24px;
}

/* Job cards --------------------------------------------------------------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.job-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--c-border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-coral-soft);
}
.job-card .photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.job-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.job-card:hover .photo img { transform: scale(1.05); }
.job-card .body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.job-card .tagline {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--c-coral);
  text-transform: uppercase;
}
.job-card h3 {
  font-size: 21px;
  color: var(--c-text);
  margin: 6px 0 12px;
}
.job-card p {
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.85;
  flex: 1;
}
.job-card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-coral-dark);
}
.job-card .more .arrow { transition: transform .2s; }
.job-card:hover .more .arrow { transform: translateX(4px); }

/* Feature cards ------------------------------------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-coral-soft);
}
.card .icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--c-coral-soft);
  color: var(--c-coral-dark);
  margin-bottom: 20px;
}
.card .icon svg { width: 27px; height: 27px; }
.card h3 {
  font-size: 18px;
  color: var(--c-text);
  margin-bottom: 12px;
}
.card p {
  font-size: 14px;
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.85;
}

/* Voice (interview) -------------------------------------------------------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.voice-card {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-coral-soft);
}
.voice-card .avatar {
  width: 118px; height: 118px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--c-coral-soft);
  box-shadow: var(--shadow-md);
}
.voice-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-card .role {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--c-coral);
  font-weight: 700;
  text-transform: uppercase;
}
.voice-card .name {
  font-size: 20px;
  color: var(--c-text);
  margin: 6px 0 2px;
}
.voice-card .tenure { font-size: 12.5px; color: var(--c-text-mute); }
.voice-card .quote {
  margin-top: 20px;
  padding: 20px 18px;
  background: var(--c-cream);
  border-radius: var(--radius-md);
  text-align: left;
  position: relative;
}
.voice-card .quote::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px;
  background: var(--c-cream);
}
.voice-card .quote p {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.85;
  margin: 0;
}

/* Interview (voice.html full) ---------------------------------------------- */
.interview {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto 88px;
}
.interview:last-child { margin-bottom: 0; }
.interview.reverse { grid-template-columns: 1fr 340px; }
.interview.reverse .interview-profile { order: 2; }
.interview-profile {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  text-align: center;
}
.interview-profile .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
.interview-profile .photo img { width: 100%; height: 100%; object-fit: cover; }
.interview-profile .role {
  display: inline-block;
  padding: 5px 16px;
  background: var(--c-coral-soft);
  color: var(--c-coral-deep);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 12.5px;
  border-radius: var(--radius-pill);
}
.interview-profile h3 {
  font-size: 23px;
  color: var(--c-text);
  margin: 12px 0 4px;
}
.interview-profile .meta { font-size: 13px; color: var(--c-text-mute); }
.interview-qa .qa { margin-bottom: 28px; }
.interview-qa .q {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-text);
  margin-bottom: 12px;
}
.interview-qa .q::before {
  content: "Q";
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: var(--c-coral);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  margin-top: 1px;
}
.interview-qa .a {
  margin-left: 48px;
  padding: 20px 24px;
  background: var(--c-cream);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--c-text);
  line-height: 2;
}
.interview-qa .a p { margin: 0; }
.interview-qa .a p + p { margin-top: 12px; }

/* Timeline (1日の流れ) ----------------------------------------------------- */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: repeating-linear-gradient(180deg, var(--c-coral-soft) 0 12px, transparent 12px 20px);
}
.timeline-item {
  position: relative;
  padding: 0 0 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 7px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--c-coral);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--c-coral-soft);
}
.timeline-item .time {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--c-coral);
  padding: 3px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: .05em;
}
.timeline-item h4 {
  font-size: 17.5px;
  color: var(--c-text);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.85;
}

/* Work detail blocks ------------------------------------------------------- */
.work-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 88px;
}
.work-block:last-child { margin-bottom: 0; }
.work-block.reverse .work-photo { order: 2; }
.work-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.work-photo img { width: 100%; height: 100%; object-fit: cover; }
.work-text .num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--c-coral);
  text-transform: uppercase;
}
.work-text h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--c-text);
  margin: 8px 0 18px;
}
.work-text p {
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 2;
}
.work-text ul.points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.work-text ul.points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-cream);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-weight: 500;
}
.work-text ul.points li svg {
  width: 18px; height: 18px;
  color: var(--c-teal);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Requirements table -------------------------------------------------------- */
.req-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.req-tabs a {
  padding: 12px 30px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  color: var(--c-text-soft);
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-pill);
  transition: .2s;
}
.req-tabs a:hover, .req-tabs a.active {
  color: #fff;
  background: var(--c-coral);
  border-color: var(--c-coral);
  box-shadow: var(--shadow-coral);
}
.req-table-wrap { margin-bottom: 72px; }
.req-table-wrap:last-child { margin-bottom: 0; }
.req-table-wrap > h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  color: var(--c-text);
  margin-bottom: 24px;
}
.req-table-wrap > h3 .chip {
  font-size: 12.5px;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: var(--c-coral);
  color: #fff;
  letter-spacing: .08em;
}
.req-table-wrap > h3 .chip.part { background: var(--c-teal); }
.info-table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-border);
}
.info-table th, .info-table td {
  padding: 19px 26px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  line-height: 1.9;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  width: 190px;
  background: var(--c-cream);
  color: var(--c-text);
  font-family: var(--font-round);
  font-weight: 800;
}
.info-table td { color: var(--c-text); }
.info-table td .em {
  color: var(--c-coral-deep);
  font-weight: 700;
}
.info-table td small { color: var(--c-text-mute); }

/* Benefit tags -------------------------------------------------------------- */
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.benefits .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--c-text);
  font-weight: 600;
}
.benefits .tag svg {
  width: 16px; height: 16px;
  color: var(--c-coral);
  flex-shrink: 0;
}

/* Flow steps (selection) ----------------------------------------------------- */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.flow-step {
  background: #fff;
  padding: 34px 22px 30px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-border);
  text-align: center;
  position: relative;
}
.flow-step .num {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  background: var(--c-coral);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 19px;
  box-shadow: var(--shadow-coral);
}
.flow-step h4 { color: var(--c-text); margin-bottom: 8px; font-size: 16.5px; }
.flow-step p { font-size: 13px; color: var(--c-text-soft); margin: 0; line-height: 1.8; }
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 11px; height: 11px;
  border-top: 3px solid var(--c-coral);
  border-right: 3px solid var(--c-coral);
  border-radius: 2px;
}

/* FAQ ------------------------------------------------------------------------ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: .2s;
}
.faq details[open] { border-color: var(--c-coral-soft); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 20px 24px;
  font-family: var(--font-round);
  font-weight: 800;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q";
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--c-coral);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  color: var(--c-coral);
  transition: .2s;
  font-family: var(--font-en);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer {
  padding: 0 24px 24px 70px;
  color: var(--c-text-soft);
  line-height: 1.95;
  font-size: 14.5px;
}

/* Page hero (inner pages) ----------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--c-cream);
  padding: 70px 0 62px;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -150px; right: -130px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--c-coral-soft);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -170px; left: -110px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--c-cream-deep);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .32em;
  color: var(--c-coral);
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(27px, 3.9vw, 40px);
  color: var(--c-text);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--c-text-soft);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  padding: 13px 0;
  color: var(--c-text-mute);
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb .container { display: flex; gap: 8px; }
.breadcrumb a:hover { color: var(--c-coral); }
.breadcrumb .sep { color: var(--c-border); }

/* Photo banner ----------------------------------------------------------------- */
.photo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px auto 0;
  max-width: 980px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 21 / 9;
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }

/* Message (philosophy) ----------------------------------------------------------- */
.message-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.message-layout .photo {
  border-radius: 58% 42% 45% 55% / 52% 48% 52% 48%;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  box-shadow: var(--shadow-lg);
}
.message-layout .photo img { width: 100%; height: 100%; object-fit: cover; }
.message-layout h3 {
  font-size: clamp(21px, 2.6vw, 27px);
  color: var(--c-text);
  margin-bottom: 18px;
  line-height: 1.6;
}
.message-layout h3 em {
  font-style: normal;
  color: var(--c-coral-dark);
}
.message-layout .text p {
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 2.1;
}

/* Entry form --------------------------------------------------------------------- */
.entry-lead {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--c-text-soft);
  font-size: 15px;
}
.entry-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  max-width: 860px;
  margin: 0 auto 72px;
}
.channel-card {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: .2s;
}
.channel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.channel-card.line-card { border-color: rgba(6, 199, 85, .3); }
.channel-card .icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--c-coral-soft);
  color: var(--c-coral-dark);
}
.channel-card.line-card .icon { background: rgba(6, 199, 85, .12); color: var(--c-line); }
.channel-card .icon svg { width: 28px; height: 28px; }
.channel-card h3 { font-size: 18px; color: var(--c-text); margin-bottom: 8px; }
.channel-card p { font-size: 13.5px; color: var(--c-text-soft); margin-bottom: 20px; }
.channel-card .value {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-coral-dark);
  margin-bottom: 6px;
}
.channel-card .note { font-size: 12px; color: var(--c-text-mute); }

.form {
  display: grid;
  gap: 26px;
  max-width: 720px;
  margin: 0 auto;
}
.form .row { display: grid; gap: 8px; }
.form label {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form label .req {
  padding: 2.5px 10px;
  font-size: 11px;
  background: var(--c-coral);
  color: #fff;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
  font-family: var(--font-jp);
  font-weight: 700;
}
.form label .opt {
  padding: 2.5px 10px;
  font-size: 11px;
  background: var(--c-border);
  color: var(--c-text-mute);
  border-radius: var(--radius-pill);
  font-family: var(--font-jp);
  font-weight: 700;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text);
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.form select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0726b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--c-coral);
  box-shadow: 0 0 0 4px rgba(240, 114, 107, .14);
}
.form textarea { min-height: 160px; resize: vertical; }
.form .row-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form .radio-pill {
  position: relative;
  display: inline-flex;
}
.form .radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer;
}
.form .radio-pill span {
  padding: 10px 22px;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-soft);
  background: #fff;
  transition: .15s;
}
.form .radio-pill input:checked + span {
  background: var(--c-coral);
  border-color: var(--c-coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--c-cream);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.form .checkbox input {
  width: 18px; height: 18px;
  margin: 5px 0 0;
  accent-color: var(--c-coral);
}
.form .checkbox span { font-size: 14px; color: var(--c-text-soft); font-weight: 500; }
.form-submit { text-align: center; margin-top: 12px; }
.form-status {
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
  min-height: 1.5em;
}

.privacy-box {
  background: var(--c-cream);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.9;
  max-width: 720px;
  margin: 48px auto 0;
}
.privacy-box h3 { color: var(--c-text); font-size: 16px; margin-bottom: 12px; }
.privacy-box ul { padding-left: 20px; margin: 0; }
.privacy-box li { margin-bottom: 6px; }

/* CTA banner --------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -120px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -140px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 18px;
  color: #fff;
}
.cta-banner p {
  color: rgba(255,255,255,.92);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-banner .ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer --------------------------------------------------------------------------- */
.site-footer {
  background: #463733;
  color: rgba(255,255,255,.78);
  padding: 72px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-grid h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .22em;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--c-coral); }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand .brand-text .sub { color: var(--c-coral); }
.footer-brand p {
  margin-top: 20px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.85;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 26px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}
.demo-note {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 14px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  border: 1px dashed rgba(255,255,255,.3);
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
}

/* LINE float ------------------------------------------------------------------------ */
.line-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--c-line);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(6, 199, 85, .35), 0 2px 8px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
}
.line-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6, 199, 85, .45), 0 2px 8px rgba(0,0,0,.15);
}
.line-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.line-float .label { white-space: nowrap; }

/* Animations -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 88px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid, .cards, .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .interview, .interview.reverse { grid-template-columns: 1fr; gap: 32px; }
  .interview.reverse .interview-profile { order: 0; }
  .interview-profile { position: static; max-width: 420px; margin: 0 auto; }
  .work-block, .work-block.reverse { grid-template-columns: 1fr; gap: 28px; }
  .work-block.reverse .work-photo { order: 0; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
  .message-layout { grid-template-columns: 1fr; gap: 32px; }
  .message-layout .photo { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .container { padding: 0 20px; }

  .brand-text .name { font-size: 15px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    display: block;
    padding: 20px;
    background: #fff;
    box-shadow: -12px 0 40px rgba(122, 71, 56, .18);
    transform: translateX(100%);
    transition: transform .25s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    display: block;
    padding: 18px 8px;
    font-size: 16px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
    position: relative;
  }
  .nav a::after {
    content: "›";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-text-mute);
    font-size: 22px;
    font-weight: 400;
  }
  .nav a:hover, .nav a.active { color: var(--c-coral-dark); background: var(--c-coral-soft); }
  .nav .btn {
    display: block;
    width: 100%;
    margin: 24px 0 0;
    padding: 16px;
    text-align: center;
    border: 0;
    border-radius: var(--radius-pill);
  }
  .nav .btn::after { display: none; }

  .hero h1 { font-size: clamp(27px, 8vw, 34px); }
  .hero-visual .badge-float { font-size: 12px; padding: 10px 16px; }
  .hero-visual .badge-float.b1 { left: 0; }
  .hero-visual .badge-float.b2 { right: 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 26px 12px 22px; }
  .jobs-grid, .cards, .voice-grid, .flow-steps, .entry-channels { grid-template-columns: 1fr; }

  .interview-qa .q { font-size: 15.5px; }
  .interview-qa .a { margin-left: 0; }

  .info-table th { width: 110px; font-size: 13px; }
  .info-table th, .info-table td { padding: 14px 16px; font-size: 14px; }

  .photo-banner { aspect-ratio: 4 / 3; margin-top: 32px; }
  .form .row-inline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .line-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px 12px 14px;
    font-size: 13px;
  }
  .line-float svg { width: 22px; height: 22px; }
}
