:root {
  /* "きらり" = a glint of light. White base with a coral / gold accent —
     the panels use a barely-there off-white so sections still separate. */
  --paper: #ffffff;
  --paper-deep: #faf8f6;
  --panel: #fbf9f7;
  --panel-deep: #ece6df;
  --ink: #3d2e28;
  --ink-soft: #8f7a70;
  --coral: #f0a684;
  --coral-deep: #e8735a;
  --coral-soft: #fbe4d8;
  --pill-border: #f3c4ac;
  --gold: #c99a3e;
  --gold-soft: #f1e2bb;
  --moss: #55694a;
  --moss-soft: #e6e8d6;
  --line-green: #06c755;
  --line-green-deep: #05b64c;
  --white: #ffffff;
  --font-display: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --max-width: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
}

/* subtle paper-fiber grain over everything — the material this whole design is built on */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.16  0 0 0 0 0.14  0 0 0 0 0.11  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.sp-only { display: none; }

/* ---------- Signature spark mark (the "きらり" glint) ---------- */
.spark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 38%);
  flex-shrink: 0;
  animation: sparkTwinkle 2.6s ease-in-out infinite;
}
.spark-lg { width: 30px; height: 30px; }
.spark-sm { width: 9px; height: 9px; margin: 0 1px; vertical-align: 0.14em; }
.spark-hero {
  display: inline-block;
  vertical-align: -0.05em;
  margin-right: 6px;
  animation: sparkCatch 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}
.about-visual-spark-b,
.lp-left-visual-spark-b { animation-delay: 0.6s; }
.lp-left-visual-spark-c { animation-delay: 1.2s; }
@keyframes sparkCatch {
  0% { transform: scale(0) rotate(-25deg); opacity: 0; }
  55% { transform: scale(1.25) rotate(8deg); opacity: 1; }
  75% { transform: scale(0.92) rotate(-4deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes sparkTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) {
  .spark, .spark-hero { animation: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  position: relative;
}
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  border-radius: 3px;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
  padding: 14px 28px 14px 32px;
}
.btn-outline:hover { background: var(--white); }
.btn.btn-line {
  background: var(--line-green);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.12);
}
.btn.btn-line:hover { background: var(--line-green-deep); transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,0.12); }
.btn-line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 6px;
  color: var(--line-green);
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
}
.btn-lg { padding: 17px 36px; font-size: 1.02rem; }
.btn-lg.btn-outline { padding: 17px 34px 17px 38px; }
.header-cta { padding: 9px 20px; font-size: 0.82rem; }

/* ---------- Tag chip (section eyebrow / labels) — a torn ticket-tag corner, not a generic pill ---------- */
.pill-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--pill-border);
  color: var(--coral-deep);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 18px 7px 14px;
  border-radius: 3px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
  margin-bottom: 18px;
}
.pill-chip::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 38%);
  flex-shrink: 0;
}
.pill-chip-light { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,246,236,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-deep);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(251,246,236,0.98);
  box-shadow: 0 6px 20px -10px rgba(43,36,32,0.18);
}
.site-header.is-scrolled .header-inner { height: 60px; }
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--coral-deep);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-sub { font-size: 0.6rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.02em; }
.main-nav { display: flex; gap: 24px; font-size: 0.86rem; font-weight: 700; }
.main-nav a {
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

@media (max-width: 999.98px) {
  .main-nav { display: none; }
}

@media (max-width: 480px) {
  .header-inner { height: 64px; }
  .site-header.is-scrolled .header-inner { height: 56px; }
  .logo { font-size: 1.02rem; gap: 0; }
  .logo-sub { display: none; }
  .header-cta { padding: 8px 14px; font-size: 0.72rem; gap: 5px; }
  .header-cta .btn-line-icon { width: 16px; height: 16px; font-size: 0.5rem; }
}

/* ---------- 3-panel desktop frame (unchanged mechanics: fixed side panels, phone-width scrolling center, no extra PC breakpoints, no dead space) ---------- */
@media (min-width: 1000px) {
  .site-header { display: none; }
  .lp-frame { display: flex; align-items: flex-start; }
  .lp-side {
    min-width: 0;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
  }
  .lp-side-left { flex: 3 1 0%; background: var(--panel); border-right: 2px solid rgba(61,46,40,0.16); }
  .lp-side-right { flex: 2 1 0%; background: var(--white); border-left: 2px solid rgba(61,46,40,0.16); }
  .lp-center { flex: 0 0 600px; width: 600px; background: var(--paper); box-shadow: 0 0 60px rgba(43,36,32,0.06); min-height: 100vh; }
  .lp-center .container { max-width: 100%; padding: 0 32px; }
  .lp-side-inner {
    width: 100%;
    max-width: 340px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .lp-side-left .lp-side-inner { justify-content: space-between; }
}
@media (max-width: 999.98px) {
  .lp-side { display: none; }
}

.lp-side-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-side-deco::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  top: -140px;
  right: -140px;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 72%);
}
.lp-side-deco::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  bottom: -110px;
  left: -90px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 72%);
  opacity: 0.7;
}

.lp-logo-block {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--coral-deep);
  line-height: 1.3;
}
.lp-logo-sub { display: block; font-size: 0.62rem; font-weight: 700; color: var(--ink-soft); margin-top: 4px; }
.lp-left-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.lp-left-tagline {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.7;
}
.lp-left-desc { margin-top: 16px; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.85; }
.lp-left-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px dashed var(--pill-border);
  border-bottom: 1px dashed var(--pill-border);
}
.lp-left-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}
.lp-left-visual { position: relative; text-align: center; }
.lp-left-visual img { width: 100%; max-width: 220px; margin: 0 auto; }
.lp-left-visual-spark-a { position: absolute; top: -4px; left: calc(50% - 92px); }
.lp-left-visual-spark-b { position: absolute; top: 30%; right: calc(50% - 100px); }
.lp-left-visual-spark-c { position: absolute; bottom: 12%; left: calc(50% - 104px); }

.lp-right-eyebrow { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--ink-soft); font-weight: 700; margin-bottom: 16px; }
.lp-right-desc { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.85; }
.lp-right-cta { width: 100%; justify-content: center; }
.lp-right-subnote { font-size: 0.72rem; color: var(--ink-soft); margin-top: 10px; text-align: center; }
.lp-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 10px; margin-top: 30px; }
.lp-nav-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.lp-nav-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--panel-deep);
}
.lp-nav-icon svg { width: 20px; height: 20px; }
.lp-nav-label { font-size: 0.64rem; font-weight: 700; color: var(--ink); line-height: 1.4; }
.lp-right-footer-note {
  margin-top: auto;
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.8;
  padding-top: 20px;
  border-top: 1px solid var(--panel-deep);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--panel);
  padding: 36px 0 52px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.accent {
  color: var(--ink);
  background-image: linear-gradient(180deg, transparent 62%, var(--gold-soft) 62%, var(--gold-soft) 84%, transparent 84%);
  padding: 0 2px;
}
.hero-sub {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--coral-deep);
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 480px;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--pill-border);
  color: var(--coral-deep);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 3px;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.badge-moss { color: var(--moss); border-color: #c9d1b8; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-cta-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 14px; }

.hero-visual { position: relative; z-index: 1; order: -1; max-width: 420px; margin: 0 auto 8px; }
.hero-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(43,36,32,0.3);
  border: 6px solid var(--white);
}
.hero-frame img { width: 100%; height: auto; display: block; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; z-index: 1; overflow: hidden; }
.section-alt { background: var(--panel); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.55;
}
.title-light { color: #fff; }
.section-desc {
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 44px;
}

/* ---------- Checklist (anxiety) section ---------- */
.checklist-chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 640px;
  margin-bottom: 40px;
}
.checklist-chip {
  background: var(--white);
  border: 1.5px solid var(--panel-deep);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.checklist-visual { display: flex; flex-direction: column; align-items: center; gap: 32px; flex-wrap: wrap; text-align: center; }
.checklist-visual img { width: 150px; height: auto; flex-shrink: 0; }
.checklist-note-box {
  background: var(--white);
  border-radius: 4px;
  padding: 26px 30px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--coral-deep);
  font-size: 1.1rem;
  line-height: 1.7;
  flex: 1;
  min-width: 240px;
  box-shadow: 0 14px 32px -20px rgba(43,36,32,0.22);
  position: relative;
}

/* ---------- About (きらりワークとは) ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

.about-visual {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.about-visual img { width: 150px; height: auto; margin: 0 auto; }
.about-visual-spark-a { position: absolute; top: 6px; left: calc(50% - 110px); }
.about-visual-spark-b { position: absolute; bottom: 18px; right: calc(50% - 96px); }

.icon-highlight-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-video-box {
  position: relative;
  max-width: 860px;
  margin: 72px auto 0;
  padding: 44px 32px 32px;
  border: 1.5px solid var(--pill-border);
  border-radius: 4px;
  background: var(--panel);
  box-shadow: 0 14px 32px -20px rgba(43,36,32,0.22);
}
.about-video-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-deep);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 18px 7px 16px;
  border-radius: 3px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
  white-space: nowrap;
}
.about-video-tag-sub {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.5);
}
.about-video-spark-a { position: absolute; top: -15px; right: 28px; }
.about-video-spark-b { position: absolute; top: 18px; right: 66px; }
@media (max-width: 600px) {
  .about-video-box { padding: 36px 16px 16px; }
  .about-video-spark-a { right: 14px; }
  .about-video-spark-b { right: 48px; }
}

.about-video-lead {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}
.about-video-lead h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.about-video-lead h3 span { display: inline-block; }
.about-video-lead p {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.about-video {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 32px -20px rgba(43,36,32,0.22);
}
.about-video iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-highlight {
  background: var(--white);
  border: 1.5px solid var(--panel-deep);
  border-radius: 4px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.icon-highlight-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--panel-deep);
}
.icon-highlight-icon svg { width: 26px; height: 26px; }
.icon-highlight h3 { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1rem; margin-bottom: 4px; }
.icon-highlight p { font-size: 0.84rem; color: var(--ink-soft); }

/* ---------- Skill cards (身につくこと — real 4-card material, colors are client-specified: keep as-is) ---------- */
.skill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 28px;
}
.skill-card { display: flex; gap: 18px; align-items: flex-start; }
.skill-icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.skill-icon svg { width: 34px; height: 34px; }
.skill-icon-comm { background: #6bb56a; }
.skill-icon-pc { background: #f0983c; }
.skill-icon-self { background: #e85267; }
.skill-icon-voice { background: #5b93d6; }
.skill-card h3 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.skill-card p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.75; }

/* ---------- Job examples (お仕事の一例) — styled as pinned job-posting cards ---------- */
.job-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 20px;
  padding-top: 6px;
}
.job-case-card {
  background: var(--white);
  border: 1.5px solid var(--panel-deep);
  border-radius: 3px;
  padding: 26px 24px 22px;
  position: relative;
  transform: rotate(var(--tilt, 0deg));
  box-shadow: 0 10px 22px -16px rgba(43,36,32,0.35);
}
.job-case-card:nth-child(odd) { --tilt: -0.5deg; }
.job-case-card:nth-child(even) { --tilt: 0.5deg; }
.job-case-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 26px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 2px 5px rgba(43,36,32,0.35), inset 0 -2px 2px rgba(0,0,0,0.15);
}
.job-case-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.job-case-badge {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--coral-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.job-case-head h3 { font-size: 0.98rem; font-weight: 800; color: var(--ink); }
.job-case-section { margin-bottom: 14px; }
.job-case-section:last-child { margin-bottom: 0; }
.job-case-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--coral-deep);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.job-case-list { list-style: none; }
.job-case-list li {
  font-size: 0.85rem;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.job-case-list li::before {
  content: "";
  position: absolute; left: 2px; top: 10px;
  width: 6px; height: 6px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 38%);
}
.job-case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.job-case-tag {
  background: var(--moss-soft);
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
}
.job-case-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ---------- Voices / testimonials — auto-scrolling carousel (unchanged mechanics) ---------- */
.voice-carousel-wrap { position: relative; }
.voice-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  cursor: grab;
}
.voice-carousel:active { cursor: grabbing; }
.voice-carousel::-webkit-scrollbar { height: 6px; }
.voice-carousel::-webkit-scrollbar-thumb { background: var(--pill-border); border-radius: 999px; }
.voice-card {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 28px 26px;
  border: 1.5px solid var(--panel-deep);
  border-top: 3px solid var(--gold);
  flex: 0 0 300px;
  width: 300px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
}
.voice-card .voice-body { overflow-y: auto; flex: 1; padding-right: 6px; }
.voice-carousel-hint {
  text-align: center;
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.voice-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--coral-deep);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.voice-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.voice-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--coral-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.voice-meta-name { font-weight: 800; color: var(--ink); font-size: 0.94rem; }
.voice-meta-sub { font-size: 0.78rem; color: var(--ink-soft); }
.voice-body { display: flex; flex-direction: column; gap: 16px; }
.voice-block-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--moss);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.voice-block-label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--moss);
  clip-path: polygon(50% 0%, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 38%);
}
.voice-block p { font-size: 0.88rem; color: var(--ink); line-height: 1.85; }
.voice-tentative-flag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-soft);
  border: 1px dashed var(--pill-border);
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

/* ---------- Flow (スタートまでの流れ) — vertical numbered list ---------- */
.flow-list {
  position: relative;
  max-width: 640px;
  padding-left: 4px;
  margin-bottom: 36px;
}
.flow-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: -4px;
  width: 2px;
  background: var(--panel-deep);
}
.flow-item:last-child::before { display: none; }
.flow-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral-deep);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--paper);
}
.flow-body { background: var(--white); border: 1.5px solid var(--panel-deep); border-radius: 4px; padding: 16px 22px; flex: 1; }
.flow-body h3 { font-family: var(--font-display); color: var(--ink); font-size: 1rem; margin-bottom: 4px; font-weight: 800; }
.flow-body p { font-size: 0.85rem; color: var(--ink-soft); }

.flow-reassure { display: flex; flex-direction: column; gap: 12px; max-width: 640px; }
.flow-reassure-item {
  background: var(--coral-soft);
  border-radius: 4px;
  padding: 16px 22px;
  font-size: 0.86rem;
  color: var(--ink);
}
.flow-reassure-item strong { color: var(--coral-deep); }

.flow-celebrate {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  max-width: 640px;
  background: var(--coral-soft);
  border-radius: 4px;
  padding: 18px 24px;
}
.flow-celebrate img { width: 96px; height: auto; flex-shrink: 0; }
.flow-celebrate p { font-family: var(--font-display); font-weight: 800; color: var(--coral-deep); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 480px) {
  .flow-celebrate { flex-direction: column; text-align: center; }
}

/* ---------- Decorative side illustration accents (skills section) ---------- */
.skills-deco-illustration {
  position: absolute;
  top: 30px;
  right: -6px;
  width: 108px;
  height: auto;
  transform: rotate(5deg);
  z-index: 0;
  filter: drop-shadow(0 10px 14px rgba(43,36,32,0.14));
}
@media (max-width: 560px) {
  .skills-deco-illustration { width: 78px; top: 22px; right: -4px; opacity: 0.92; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--panel-deep);
  border-radius: 4px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-left: 34px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -3px;
  color: #fff;
  background: var(--coral-deep);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.75rem;
  box-shadow: 0 0 0 3px var(--paper);
}
.faq-item p {
  margin-top: 14px;
  padding-left: 34px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Final apply ---------- */
.section-apply {
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.apply-desc { font-size: 1rem; color: rgba(255,255,255,0.95); margin-bottom: 8px; max-width: 560px; }
.apply-desc-sub { font-size: 0.84rem; color: rgba(255,255,255,0.72); margin-bottom: 30px; }
.apply-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.apply-actions .btn-line { background: var(--line-green); color: #fff; }
.apply-actions .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.apply-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }
.apply-note { font-size: 0.76rem; color: rgba(255,255,255,0.62); margin-bottom: 34px; }
.apply-org {
  background: var(--paper);
  border-radius: 4px;
  padding: 28px 36px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.9;
  box-shadow: 0 20px 44px -20px rgba(0,0,0,0.4);
}
.apply-org-title { font-family: var(--font-display); font-weight: 800; color: var(--coral-deep); font-size: 0.92rem; margin-bottom: 14px; }
.apply-org-columns { display: flex; align-items: center; justify-content: center; gap: 24px; text-align: left; }
.apply-org-logo-col img { height: 28px; width: auto; }
.apply-org-name { color: var(--ink); font-weight: 700; }
.apply-org a { color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 560px) {
  .apply-org { padding: 24px 20px; }
  .apply-org-columns { flex-direction: column; text-align: center; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 36px 0; }
.footer-inner { text-align: center; }
.footer-logo { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.footer-desc { font-size: 0.82rem; margin-bottom: 12px; }
.footer-copy { font-size: 0.76rem; opacity: 0.65; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; }

.reveal-rise {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-rise.is-visible { opacity: 1; transform: translateY(0); }

.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-fade.is-visible { opacity: 1; transform: translateY(0); }
.hero-fade-1 { transition-delay: 0.1s; }
.hero-fade-2 { transition-delay: 0.22s; }
.hero-fade-3 { transition-delay: 0.34s; }
.hero-fade-4 { transition-delay: 0.46s; }
.hero-fade-5 { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-rise, .hero-fade { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
