/* ===== SANKOELEC 採用LP ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Archivo+Black&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-soft:     #F4F2EE;
  --accent:      #F2611C;
  --accent-dark: #C24A0E;
  --accent-tint: #FEF1E9;
  --text:        #0E0E10;
  --text-soft:   #6B6660;
  --text-mute:   #9A9590;
  --border:      #E9E5DF;
  --gutter:      24px;
}

/* ── Reset ─────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
}
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
::selection { background: var(--accent); color: #fff; }

/* ── Typography ────────────────────────────────── */
.display {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.num-display {
  font-family: "Archivo Black", "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
}
.eng-label {
  font-family: "Archivo Black", "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.18em;
  font-size: 10px;
  text-transform: uppercase;
}

/* ── Layout ────────────────────────────────────── */
.container       { width: 100%; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 640px; }
.container-base  { max-width: 880px; }
.container-wide  { max-width: 1180px; }

.section       { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.lead { font-size: 15px; line-height: 1.85; color: var(--text-soft); }

/* ── Section tag ───────────────────────────────── */
.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.section-tag__line {
  height: 1px;
  width: 28px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── CTA Button ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 4px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(242,97,28,0.28), inset 0 -2px 0 rgba(0,0,0,0.12);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 14px 18px; font-size: 14px; }
.btn--full { width: 100%; }
.btn__arrow { flex-shrink: 0; }

/* ── Photo placeholder ─────────────────────────── */
.ph {
  background: #D8D3CB;
  position: relative;
  overflow: hidden;
}
.ph__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9A9590;
  text-align: center;
  padding: 12px;
}

/* ══════════════════════════════════════════════════
   PC STICKY HEADER
══════════════════════════════════════════════════ */
.page-header {
  display: none;
}
@media (min-width: 900px) {
  .page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 16px 48px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-110%);
    transition: transform .35s ease;
  }
  .page-header.is-visible { transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   01 HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: min(760px, 100svh);
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media (min-width: 900px) { .hero { min-height: 100svh; } }

.hero__bg {
  position: absolute;
  inset: 0;
  background: #1C1814;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 9s infinite;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 3s; }
.hero-slide:nth-child(3) { animation-delay: 6s; }
@keyframes heroFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}

.hero__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--gutter);
}
.hero__logo { font-size: 17px; letter-spacing: -0.01em; line-height: 1; }
.hero__logo-sub { color: rgba(255,255,255,0.6); font-size: 9px; margin-top: 4px; letter-spacing: 0.18em; text-transform: uppercase; font-family: "Archivo Black", sans-serif; }
.hero__tag { text-align: right; color: rgba(255,255,255,0.7); }

.hero__spacer { flex: 1; }

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(36px, 8vh, 96px);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero__h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 9vw, 50px);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
@media (min-width: 900px) {
  .hero__h1 { font-size: clamp(64px, 7vw, 104px); line-height: 1.02; }
}
.hero__sub {
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin: 20px 0 0;
  max-width: 480px;
}
@media (min-width: 900px) { .hero__sub { font-size: 18px; max-width: 560px; } }
.hero__cta { margin-top: 30px; }
@media (min-width: 900px) { .hero__cta { margin-top: 40px; display: flex; gap: 24px; align-items: center; } }
@media (min-width: 900px) { .hero__cta .btn--full { width: auto; min-width: 280px; } }

.hero__scroll {
  position: absolute;
  bottom: 12px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.hero__scroll-line { width: 1px; height: 26px; background: currentColor; }

@media (min-width: 900px) { .hero__topbar { display: none; } }

/* ══════════════════════════════════════════════════
   02 NUMBERS
══════════════════════════════════════════════════ */
.nums-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .nums-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 48px; }
  .nums-head h2 { margin-bottom: 0 !important; }
  .nums-head p  { margin: 0 !important; }
  .nums-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.num-card {
  background: var(--accent);
  color: #fff;
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
}
.num-card__label { font-size: 12px; font-weight: 700; opacity: 0.85; margin-bottom: 6px; }
.num-card__val { display: flex; align-items: flex-end; gap: 6px; flex-wrap: nowrap; }
.num-card__big { font-size: clamp(64px, 22vw, 96px); }
.num-card__unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 5vw, 22px);
  font-weight: 900;
  padding-bottom: clamp(6px, 2vw, 10px);
  white-space: nowrap;
}
.num-card__note {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 14px;
  padding-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.92;
}
@media (min-width: 900px) {
  .num-card { padding: 36px 32px 32px; }
  .num-card__big { font-size: clamp(72px, 8.5vw, 108px); }
}
.nums-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--bg-soft);
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ══════════════════════════════════════════════════
   03 REASSURANCE
══════════════════════════════════════════════════ */
.reassure-row {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.reassure-row:last-child { border-bottom: 1px solid var(--border); }
.reassure-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.reassure-num { font-size: 36px; color: var(--accent); }
.reassure-body h3 { margin: 0 0 10px; font-size: 22px; }
.reassure-body p  { margin: 0; font-size: 14px; line-height: 1.85; color: var(--text-soft); }
@media (min-width: 900px) {
  .reassure-row { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding: 36px 0; align-items: start; }
  .reassure-meta { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 0; }
  .reassure-num { font-size: 72px; }
  .reassure-body h3 { font-size: 28px; }
  .reassure-body p  { font-size: 15px; max-width: 560px; }
}

/* ══════════════════════════════════════════════════
   04 VOICE
══════════════════════════════════════════════════ */
.voice-list { display: flex; flex-direction: column; gap: 0; padding-top: 40px; padding-bottom: 80px; }
.voice-card { padding: 24px var(--gutter); }
.voice-portrait {
  aspect-ratio: 4 / 5;
  position: relative;
  min-height: 240px;
}
.voice-badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 5px 9px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  z-index: 1;
}
.voice-body { padding: 26px 0 0; }
.voice-quote {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 24px;
}
.voice-quote::before {
  content: '"';
  color: var(--accent);
  font-family: "Archivo Black", sans-serif;
  font-size: 38px;
  line-height: 0;
  position: relative;
  top: 14px;
  margin-right: 4px;
}
.voice-name-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.voice-name-row .display { font-size: 22px; }
.voice-name-row span { font-size: 12px; color: var(--text-soft); }
.voice-panel {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: #fff;
}
.voice-panel__before,
.voice-panel__now { flex: 1; padding: 12px 14px; }
.voice-panel__before .label,
.voice-panel__now .label  { font-size: 10px; color: var(--text-mute); letter-spacing: 0.1em; margin-bottom: 4px; }
.voice-panel__before .val { font-size: 13px; font-weight: 700; }
.voice-panel__now  .val  { font-size: 13px; font-weight: 700; color: var(--accent-dark); }
.voice-panel__now { background: var(--accent-tint); }
.voice-panel__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 36px;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
}
.voice-detail { margin: 0; font-size: 14px; line-height: 1.9; color: var(--text-soft); }

@media (min-width: 900px) {
  .voice-list { gap: 80px; padding-top: 80px; padding-bottom: 120px; }
  .voice-card {
    display: grid;
    grid-template-columns: minmax(0, 32%) 1fr;
    gap: 64px;
    align-items: center;
    padding: 0 var(--gutter);
    max-width: 1180px;
    margin: 0 auto;
  }
  .voice-card.flip { grid-template-columns: 1fr minmax(0, 32%); }
  .voice-card.flip .voice-portrait { order: 2; }
  .voice-body { padding: 0; }
  .voice-quote { font-size: 32px; line-height: 1.4; }
}

/* ══════════════════════════════════════════════════
   MID CTA BAND
══════════════════════════════════════════════════ */
.mid-cta {
  display: none;
  background: #1C1814;
  padding: 64px 0;
}
@media (min-width: 900px) { .mid-cta { display: block; } }
.mid-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mid-cta p { margin: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; font-weight: 500; }
.mid-cta .btn { min-width: 340px; }

/* ══════════════════════════════════════════════════
   05 WORK
══════════════════════════════════════════════════ */
.work-split { display: grid; grid-template-columns: 1fr; }
.work-photo {
  position: relative;
  min-height: 56vw;
}
.work-overlay {
  position: absolute;
  left: 24px; bottom: 28px; right: 24px;
  color: #fff;
  z-index: 1;
}
.work-overlay .eng-label { color: rgba(255,255,255,0.7); }
.work-overlay h2 { margin: 6px 0 0; font-size: 34px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.work-body { padding: 36px var(--gutter) 56px; }
.work-spec {
  display: grid;
  grid-template-columns: 88px 1fr;
  row-gap: 14px;
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.work-spec .key { color: var(--text-mute); }
.work-lead { font-size: 15px; line-height: 2; margin: 0 0 24px; }

@media (min-width: 700px) { .work-photo { min-height: 42vw; } }
@media (min-width: 900px) {
  .work-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .work-photo { min-height: 0; }
  .work-photo .work-overlay { display: none; }
  .work-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
  }
  .work-lead { font-size: 17px; }
  .work-head-pc { display: block !important; }
}
.work-head-pc { display: none; }

/* ══════════════════════════════════════════════════
   06 DAY TIMELINE
══════════════════════════════════════════════════ */
.day-grid { }
.day-head p { margin-bottom: 36px; }
.day-timeline { position: relative; padding-left: 4px; }
.day-line {
  position: absolute;
  left: 56px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.day-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-bottom: 24px;
  position: relative;
}
.day-item__time {
  font-size: 16px;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.day-item__dot {
  position: absolute;
  left: 52px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}
.day-item__body { padding-left: 14px; }
.day-item__title { margin: 0 0 4px; font-size: 16px; }
.day-item__desc  { margin: 0; font-size: 13px; line-height: 1.75; color: var(--text-soft); }

@media (min-width: 900px) {
  .day-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: start;
  }
  .day-head p { margin-bottom: 0; }
}

/* ══════════════════════════════════════════════════
   07 CAREER
══════════════════════════════════════════════════ */
.career-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.career-row:last-child { border-bottom: 1px solid var(--border); }
.career-row--hl {
  background: var(--accent-tint);
  padding-left: 14px;
  padding-right: 14px;
  margin-left: -14px;
  margin-right: -14px;
}
.career-yr { font-size: 20px; color: var(--text-mute); padding-top: 4px; white-space: nowrap; min-width: 56px; }
.career-row--hl .career-yr { color: var(--accent); }
.career-body h3 { margin: 0 0 4px; font-size: 18px; }
.career-row--hl .career-body h3 { color: var(--accent-dark); }
.career-body p { margin: 0; font-size: 13px; line-height: 1.75; color: var(--text-soft); }

@media (max-width: 899px) {
  .career-row { display: block; }
  .career-yr { display: inline; padding-top: 0; margin-right: 8px; }
  .career-body { display: inline; }
  .career-body h3 { display: inline; }
  .career-body p { display: block; margin-top: 6px; }
}
.career-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--bg);
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ══════════════════════════════════════════════════
   08 COMPANY
══════════════════════════════════════════════════ */
.company-wrap { overflow: hidden; }
.company-photo { position: relative; width: 100%; max-width: 100%; overflow: hidden; }
.company-overlay {
  position: absolute;
  bottom: 22px; left: 24px;
  color: #fff;
  z-index: 1;
}
.company-overlay .eng-label { color: rgba(255,255,255,0.7); }
.company-overlay h2 { margin: 6px 0 0; font-size: 30px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.company-info { padding: 36px var(--gutter) 64px; }
@media (max-width: 899px) {
  .company-info { padding-right: 12px; }
}
.company-head-pc { display: none; }
.company-spec {
  display: grid;
  grid-template-columns: 64px 1fr;
  row-gap: 0;
  margin-top: 28px;
}
.company-spec__key {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 700;
}
.company-spec__val {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .company-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 80px;
    align-items: center;
    padding: 120px var(--gutter);
  }
  .company-photo { order: 2; }
  .company-overlay { display: none; }
  .company-info { padding: 0; }
  .company-head-pc { display: block; }
}

/* ══════════════════════════════════════════════════
   09 FLOW
══════════════════════════════════════════════════ */
.flow-head { margin-bottom: 36px; }
.flow-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.flow-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 18px 18px 18px 0;
}
.flow-card__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--border);
  padding: 0 8px;
}
.flow-card__step-label { color: var(--text-mute); }
.flow-card__n { font-size: 32px; color: var(--accent); margin-top: 4px; }
.flow-card__body { padding-left: 18px; }
.flow-card__en { color: var(--text-mute); margin-bottom: 6px; display: block; }
.flow-card__title { margin: 0 0 4px; font-size: 18px; }
.flow-card__desc { margin: 0; font-size: 12.5px; line-height: 1.75; color: var(--text-soft); }

@media (min-width: 900px) {
  .flow-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
  .flow-head h2 { margin-bottom: 0 !important; }
  .flow-head p  { margin: 0 !important; }
  .flow-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .flow-card { grid-template-columns: 1fr; padding: 32px 28px; min-height: 240px; align-content: start; }
  .flow-card__num {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 0 0 16px;
    gap: 12px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .flow-card__n { font-size: 56px; margin-top: 0; }
  .flow-card__body { padding-left: 0; }
  .flow-card__title { font-size: 22px; }
}

/* ══════════════════════════════════════════════════
   10 FAQ
══════════════════════════════════════════════════ */
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}
.faq-q__num { font-size: 16px; color: var(--accent); font-family: "Archivo Black", sans-serif; padding-top: 3px; flex-shrink: 0; width: 36px; }
.faq-q__text { flex: 1; font-size: 15px; line-height: 1.55; font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-weight: 900; letter-spacing: -0.02em; }
.faq-q__icon { flex-shrink: 0; font-size: 22px; line-height: 1; padding-top: 2px; color: var(--text-mute); transition: transform .2s; }
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a__inner { padding: 0 0 22px 50px; font-size: 13px; line-height: 1.85; color: var(--text-soft); }

/* ══════════════════════════════════════════════════
   11 FORM / APPLY
══════════════════════════════════════════════════ */
.form-section { }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: #0E0E10;
  color: rgba(255,255,255,0.6);
  padding: 40px 0 110px;
  font-size: 12px;
}
.footer-grid { }
.footer-brand { }
.footer-logo { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.footer-logo__name { font-size: 18px; color: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900; letter-spacing: -0.02em; }
.footer-logo__est { color: rgba(255,255,255,0.4); }
.footer-address { margin: 0 0 18px; line-height: 1.8; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.footer-cta { display: none; }
.btn-ghost-site {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.btn-ghost-site:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

@media (min-width: 900px) {
  .footer { padding-bottom: 48px; }
  .footer-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; }
  .footer-cta { display: block; }
}

/* ══════════════════════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 30;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(110%);
  transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__info { flex: 1; min-width: 0; }
.sticky-cta__label { font-size: 10px; color: var(--text-mute); letter-spacing: 0.1em; }
.sticky-cta__copy  { font-size: 14px; line-height: 1.3; margin-top: 2px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
