@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap");

:root {
  --ink: #171425;
  --ink-2: #282239;
  --paper: #f8f5f2;
  --white: #fff;
  --muted: #716b78;
  --line: rgba(23, 20, 37, .12);
  --plum: #5b1648;
  --plum-2: #8c2868;
  --gold: #e7b769;
  --gold-2: #f7d9a2;
  --rose: #f4dce9;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(34, 20, 45, .12);
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: .025em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.menu-open .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
[hidden] { display: none !important; }

.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { max-width: 880px; }
.section { padding-block: 112px; }
.section-tint { background: #eee8ed; }
.center { margin-top: 48px; text-align: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--plum-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.35; letter-spacing: .01em; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  background: rgba(23, 20, 37, .94);
  backdrop-filter: blur(18px);
}
.header-inner { width: var(--wrap); height: 84px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand > img { width: 210px; height: 48px; object-fit: contain; object-position: left center; }
.brand-mark {
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
}
.brand b { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; letter-spacing: .08em; }
.brand small { display: block; opacity: .55; font-size: .54rem; letter-spacing: .2em; }
.global-nav { display: flex; align-items: center; gap: 28px; font-size: .86rem; font-weight: 700; }
.global-nav > a { position: relative; padding-block: 12px; }
.global-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transition: transform .25s; }
.global-nav > a:hover::after, .global-nav > a.is-active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 20px !important; border: 1px solid var(--gold); border-radius: 999px; color: var(--gold-2); }
.menu-button { display: none; color: #fff; border: 0; background: transparent; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 73% 44%, rgba(142, 39, 104, .48), transparent 28%),
    linear-gradient(135deg, #171425 0%, #241528 48%, #4d163f 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent);
}
.hero-inner { position: relative; z-index: 2; width: var(--wrap); min-height: 720px; margin: auto; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 60px; padding-block: 70px; }
.hero-copy .eyebrow { color: var(--gold); }
.hero h1 { max-width: 650px; margin-bottom: 26px; font-size: clamp(3.4rem, 6.5vw, 6.5rem); font-weight: 500; line-height: 1.08; letter-spacing: -.04em; }
.hero h1 em { color: var(--gold-2); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 620px; color: rgba(255,255,255,.74); font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.button-gold { color: #2c1b27; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.button-dark { color: #fff; background: var(--ink); }
.age-note { margin-top: 20px; color: rgba(255,255,255,.5); font-size: .78rem; }
.hero-visual { position: relative; min-height: 490px; }
.image-stack { position: absolute; inset: 0; }
.image-stack img { position: absolute; width: 62%; height: 58%; object-fit: cover; border: 8px solid rgba(255,255,255,.82); border-radius: 7px; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.image-stack img:nth-child(1) { top: 5%; right: 2%; transform: rotate(5deg); }
.image-stack img:nth-child(2) { bottom: 3%; left: 4%; transform: rotate(-7deg); }
.image-stack img:nth-child(3) { top: 24%; left: 23%; z-index: 2; transform: rotate(1deg); }
.hero-badge { position: absolute; z-index: 3; right: -12px; bottom: 20px; display: flex; width: 150px; aspect-ratio: 1; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #251c2a; background: var(--gold-2); box-shadow: var(--shadow); transform: rotate(5deg); }
.hero-badge b { font-family: Georgia, serif; font-size: 2.8rem; font-weight: 400; line-height: 1; }
.hero-badge span { font-size: .64rem; font-weight: 800; line-height: 1.45; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-a { top: -120px; right: -80px; width: 360px; height: 360px; border: 1px solid rgba(231,183,105,.26); }
.hero-orb-b { bottom: -180px; left: 28%; width: 430px; height: 430px; background: rgba(91,22,72,.25); filter: blur(80px); }

.trust-strip { position: relative; z-index: 4; width: min(1080px, calc(100% - 48px)); margin: -38px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); padding: 25px 36px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.trust-strip > div { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; padding: 8px 28px; }
.trust-strip > div + div { border-left: 1px solid var(--line); }
.trust-strip span { grid-row: 1 / 3; color: var(--plum-2); font-family: Georgia, serif; font-size: 1.65rem; }
.trust-strip b { font-size: .92rem; }
.trust-strip small { color: var(--muted); font-size: .72rem; }

.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 540px; margin: 0; color: var(--muted); }
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.job-card { min-width: 0; opacity: 0; transform: translateY(18px); transition: opacity .5s, transform .5s, box-shadow .25s; }
.job-card.is-visible { opacity: 1; transform: none; }
.job-card > a { display: block; height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.job-card > a:hover { box-shadow: var(--shadow); }
.job-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #ece8ec; }
.job-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(23,20,37,.38), transparent 45%); }
.job-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.job-card a:hover .job-image img { transform: scale(1.045); }
.job-image > span { position: absolute; z-index: 2; bottom: 16px; left: 16px; padding: 7px 12px; border-radius: 999px; color: #fff; background: rgba(23,20,37,.86); font-size: .68rem; font-weight: 800; }
.job-card-body { padding: 24px; }
.job-card h3 { min-height: 3.1em; margin-bottom: 20px; font-size: 1.08rem; }
.job-meta, .job-pay { margin-bottom: 8px; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.job-meta span, .job-pay span { display: inline-block; width: 48px; color: var(--plum-2); font-size: .6rem; font-weight: 900; letter-spacing: .16em; }
.text-link { display: inline-flex; align-items: center; gap: 16px; margin-top: 18px; color: var(--plum); font-size: .82rem; font-weight: 900; }
.text-link i { font-family: serif; font-size: 1.25rem; font-style: normal; transition: transform .2s; }
.text-link:hover i { transform: translateX(5px); }
.text-link.large { margin-top: 30px; font-size: 1rem; }

.category-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.category-layout > div:first-child { position: sticky; top: 125px; }
.category-layout p { color: var(--muted); }
.category-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.category-links a { display: flex; align-items: center; justify-content: space-between; padding: 19px 8px; border-bottom: 1px solid var(--line); font-weight: 800; }
.category-links a:nth-child(odd) { margin-right: 24px; }
.category-links span { color: var(--plum-2); }
.steps-mini { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 30px; align-items: center; }
.steps-mini > div { min-height: 190px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.steps-mini span { display: block; margin-bottom: 24px; color: var(--plum-2); font-family: Georgia, serif; font-size: 2rem; }
.steps-mini b { font-size: 1.08rem; }
.steps-mini p { margin: 8px 0 0; color: var(--muted); font-size: .84rem; }
.steps-mini > i { color: var(--gold); font-family: serif; font-size: 2rem; font-style: normal; }
.cta-panel { width: min(1180px, calc(100% - 48px)); margin: 0 auto 112px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 58px 64px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, var(--plum), #2a172b); box-shadow: var(--shadow); }
.cta-panel .eyebrow { color: var(--gold); }
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p:last-child { margin: 0; color: rgba(255,255,255,.67); }

.page-hero { padding: 90px 0 74px; color: #fff; background: linear-gradient(135deg, #171425, #451638); }
.page-hero h1 { margin-bottom: 14px; font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 500; }
.page-hero p:last-child { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.68); }
.page-hero .eyebrow { color: var(--gold); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; padding-block: 28px; color: var(--muted); font-size: .74rem; }
.breadcrumbs i { color: #bbb3bb; font-style: normal; }

.search-panel { display: grid; grid-template-columns: 1.3fr .9fr auto; gap: 16px; align-items: end; margin: 30px 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 40px rgba(34,20,45,.06); }
.search-panel label, .field label { display: block; margin-bottom: 8px; font-size: .75rem; font-weight: 900; }
.search-panel input, .search-panel select, .field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(23,20,37,.18);
  border-radius: 12px;
  color: var(--ink);
  outline: 0;
  background: #fff;
}
.field textarea { resize: vertical; }
.search-panel input:focus, .search-panel select:focus, .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--plum-2); box-shadow: 0 0 0 3px rgba(140,40,104,.1); }
.result-bar { display: flex; align-items: center; justify-content: space-between; margin: 32px 0 20px; }
.result-bar p { margin: 0; }
.result-bar b { color: var(--plum-2); font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.result-bar button { border: 0; color: var(--muted); background: transparent; text-decoration: underline; }
.job-grid-all { padding-bottom: 112px; }
.empty-state { padding: 60px; text-align: center; border-radius: var(--radius); background: #fff; }

.job-detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 50px; padding: 10px 0 112px; align-items: start; }
.job-detail-main { min-width: 0; }
.detail-image { overflow: hidden; aspect-ratio: 16 / 8.7; border-radius: var(--radius); background: #e9e5e8; }
.detail-image img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.detail-intro { padding: 35px 4px; border-bottom: 1px solid var(--line); }
.detail-intro h2 { margin: 14px 0; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.detail-intro p { color: var(--muted); }
.tag { display: inline-block; padding: 6px 12px; border-radius: 999px; color: var(--plum); background: var(--rose); font-size: .7rem; font-weight: 900; }
.detail-table { margin: 0; }
.detail-row { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--line); }
.detail-row dt, .detail-row dd { margin: 0; padding: 26px 14px; }
.detail-row dt { font-size: .82rem; font-weight: 900; }
.detail-row dd { color: #504958; }
.apply-card { position: sticky; top: 120px; padding: 34px; border-radius: var(--radius); color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.apply-card .eyebrow { color: var(--gold); }
.apply-card h2 { font-size: 1.55rem; }
.apply-card p { color: rgba(255,255,255,.66); font-size: .85rem; }
.apply-card .button { width: 100%; margin-top: 14px; }
.apply-card small { display: block; margin-top: 16px; text-align: center; color: rgba(255,255,255,.45); font-size: .67rem; }

.flow-list { max-width: 900px; margin: 30px auto 80px; }
.flow-step { position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 36px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(18px); transition: .5s; }
.flow-step.is-visible { opacity: 1; transform: none; }
.flow-step > span { color: var(--plum-2); font-family: Georgia, serif; font-size: 3.5rem; line-height: 1; }
.flow-step h2 { margin-bottom: 10px; font-size: 1.55rem; }
.flow-step p { margin: 0; color: var(--muted); }
.notice-box { margin-bottom: 112px; padding: 38px 42px; border: 1px solid rgba(140,40,104,.18); border-radius: var(--radius); background: #f3e8ef; }
.notice-box h2 { font-size: 1.35rem; }
.notice-box li + li { margin-top: 8px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; padding: 32px 0 10px; }
.intro-grid h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.intro-grid > div:last-child { color: var(--muted); font-size: 1rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 8px; cursor: pointer; list-style: none; font-weight: 900; }
.faq-list summary::after { position: absolute; top: 20px; right: 10px; content: "＋"; color: var(--plum-2); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details div { padding: 0 50px 24px 8px; color: var(--muted); }

.prose { margin: 25px 0 112px; padding: 48px 54px; border-radius: var(--radius); background: #fff; box-shadow: 0 14px 40px rgba(34,20,45,.05); }
.prose section + section { margin-top: 42px; padding-top: 34px; border-top: 1px solid var(--line); }
.prose h2 { font-size: 1.35rem; }
.prose p { margin-bottom: 0; color: #514a57; }
.company-table { margin: 25px 0 112px; border-top: 1px solid var(--line); }
.company-table > div { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--line); }
.company-table dt, .company-table dd { margin: 0; padding: 26px 14px; }
.company-table dt { font-weight: 900; }
.column-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 30px 0 112px; }
.column-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; opacity: 0; transform: translateY(18px); transition: .5s; }
.column-card.is-visible { opacity: 1; transform: none; }
.column-card h2 { font-size: 1.45rem; }
.column-card > p:not(.eyebrow) { color: var(--muted); }
.column-prose > p { font-size: .96rem; }
.column-prose > p + p { margin-top: 1.4em; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 40px; padding: 20px 0 112px; align-items: start; }
.form-card { padding: 42px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field-wide { grid-column: 1 / -1; }
.field label em { margin-left: 8px; color: var(--plum-2); font-size: .62rem; font-style: normal; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 28px 0; font-size: .82rem; }
.consent input { margin-top: 7px; }
.consent a { color: var(--plum-2); text-decoration: underline; }
.submit-button { min-width: 260px; border: 0; }
.submit-button:disabled { opacity: .65; }
.hp-field { position: absolute !important; left: -10000px !important; }
.contact-notes { position: sticky; top: 120px; padding: 34px; border-radius: var(--radius); color: #fff; background: var(--ink); }
.contact-notes .eyebrow { color: var(--gold); }
.contact-notes h2 { font-size: 1.45rem; }
.contact-notes ul { padding-left: 1.2em; color: rgba(255,255,255,.68); font-size: .82rem; }
.contact-notes li + li { margin-top: 12px; }
.message-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 24px; text-align: center; }
.message-page > div { max-width: 680px; }
.message-icon { display: grid; width: 84px; aspect-ratio: 1; margin: 0 auto 28px; place-items: center; border-radius: 50%; color: var(--plum); background: var(--gold-2); font-family: Georgia, serif; font-size: 2.5rem; }
.message-page h1 { font-size: clamp(2rem, 5vw, 4rem); }
.message-page p { color: var(--muted); }
.message-page .button { margin-top: 20px; }

.site-footer { padding: 72px 0 24px; color: #fff; background: #11101a; }
.footer-grid { width: var(--wrap); margin: auto; display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 70px; }
.brand-footer { margin-bottom: 24px; }
.brand-footer > img { width: 210px; height: 48px; }
.footer-grid p { color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid > div:not(:first-child) b { margin-bottom: 8px; color: var(--gold); font-size: .72rem; letter-spacing: .14em; }
.footer-grid > div:not(:first-child) a { color: rgba(255,255,255,.64); font-size: .8rem; }
.footer-grid a:hover { color: #fff !important; }
.footer-bottom { width: var(--wrap); margin: 55px auto 0; display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: .68rem; }
.floating-cta { display: none; }

@media (max-width: 980px) {
  :root { --wrap: min(100% - 36px, 760px); }
  .menu-button { display: grid; width: 48px; height: 48px; place-content: center; gap: 5px; }
  .menu-button span { display: block; width: 24px; height: 1px; background: #fff; transition: .2s; }
  .menu-button b { margin-top: 2px; font-size: .45rem; letter-spacing: .14em; }
  .global-nav { position: fixed; inset: 84px 0 auto; min-height: calc(100vh - 84px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 36px 24px; background: rgba(23,20,37,.98); transform: translateX(100%); transition: transform .3s; }
  .global-nav.is-open { transform: none; }
  .global-nav > a { padding: 17px 6px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
  .nav-cta { margin-top: 24px; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-visual { min-height: 420px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .job-grid { grid-template-columns: repeat(2, 1fr); }
  .category-layout, .intro-grid { grid-template-columns: 1fr; gap: 42px; }
  .category-layout > div:first-child { position: static; }
  .job-detail, .contact-layout { grid-template-columns: 1fr; }
  .apply-card, .contact-notes { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 680px) {
  :root { --wrap: calc(100% - 28px); --radius: 18px; }
  .header-inner { height: 72px; }
  .global-nav { inset-top: 72px; min-height: calc(100vh - 72px); }
  .brand-mark { width: 38px; }
  .brand > img { width: 176px; height: 40px; }
  .brand b { font-size: 1rem; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { padding: 70px 0 100px; gap: 36px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 300px; }
  .image-stack img { border-width: 5px; }
  .hero-badge { width: 110px; right: 0; }
  .hero-badge b { font-size: 2rem; }
  .trust-strip { margin-top: -50px; padding: 16px 20px; }
  .trust-strip > div { padding: 15px 4px; }
  .section { padding-block: 78px; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
  .job-grid, .column-grid { grid-template-columns: 1fr; }
  .category-links { grid-template-columns: 1fr; }
  .category-links a:nth-child(odd) { margin-right: 0; }
  .steps-mini { grid-template-columns: 1fr; gap: 12px; }
  .steps-mini > i { text-align: center; transform: rotate(90deg); }
  .cta-panel { margin-bottom: 78px; flex-direction: column; align-items: flex-start; padding: 38px 28px; }
  .page-hero { padding: 68px 0 56px; }
  .search-panel { grid-template-columns: 1fr; padding: 20px; }
  .detail-row { grid-template-columns: 1fr; padding: 18px 0; }
  .detail-row dt, .detail-row dd { padding: 5px 3px; }
  .flow-step { grid-template-columns: 65px 1fr; gap: 18px; }
  .flow-step > span { font-size: 2.7rem; }
  .notice-box, .prose, .form-card { padding: 28px 22px; }
  .company-table > div { grid-template-columns: 1fr; padding: 18px 0; }
  .company-table dt, .company-table dd { padding: 4px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .submit-button { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .floating-cta { position: fixed; z-index: 80; right: 14px; bottom: 14px; display: flex; flex-direction: column; padding: 12px 20px; border-radius: 999px; color: #241923; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 10px 35px rgba(0,0,0,.25); line-height: 1.25; }
  .floating-cta span { font-size: .82rem; font-weight: 900; }
  .floating-cta small { font-size: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .job-card, .flow-step, .column-card { opacity: 1; transform: none; }
}

/* 2026 pop redesign */
:root {
  --ink: #493b40;
  --ink-2: #6a555d;
  --paper: #fffaf6;
  --white: #fff;
  --muted: #846f76;
  --line: rgba(122, 76, 91, .14);
  --plum: #f03f85;
  --plum-2: #d92f73;
  --gold: #ffd34f;
  --gold-2: #ffe99d;
  --rose: #ffe3ef;
  --coral: #ff765f;
  --lavender: #a88aee;
  --cream: #fff3cf;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 18px 50px rgba(189, 83, 119, .13);
  --shadow-pop: 0 8px 0 rgba(217, 47, 115, .11), 0 18px 44px rgba(189, 83, 119, .14);
  --space-section: 104px;
}

html { overflow-x: clip; }
body {
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 9%, rgba(255, 211, 79, .11) 0 3px, transparent 4px),
    var(--paper);
  background-size: 32px 32px;
  font-family: "M PLUS Rounded 1c", ui-rounded, "Hiragino Maru Gothic ProN", "BIZ UDPGothic", "Meiryo", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}
::selection { color: #fff; background: var(--plum); }
.section { padding-block: var(--space-section); }
.section-tint {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.9) 0 5px, transparent 6px) 0 0 / 34px 34px,
    linear-gradient(135deg, #fff0f6 0%, #fff8df 100%);
}
.section-tint::after {
  position: absolute;
  right: -52px;
  bottom: 24px;
  width: 150px;
  height: 150px;
  content: "★";
  color: rgba(255, 118, 95, .10);
  font-size: 150px;
  line-height: 1;
  transform: rotate(14deg);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum-2);
  font-size: .7rem;
  letter-spacing: .18em;
}
.eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 8px -5px 0 -2px var(--coral);
}
h1, h2, h3 {
  color: var(--ink);
  font-family: "M PLUS Rounded 1c", ui-rounded, "Hiragino Maru Gothic ProN", "BIZ UDPGothic", "Meiryo", sans-serif;
  font-weight: 800;
  letter-spacing: -.025em;
}
h2 { font-size: clamp(1.85rem, 3.5vw, 3.15rem); }

.site-header {
  border-bottom: 1px solid rgba(240, 63, 133, .11);
  color: var(--ink);
  background: rgba(255, 250, 246, .92);
  box-shadow: 0 6px 24px rgba(113, 66, 82, .05);
}
.header-inner { height: 80px; }
.brand > img { width: 205px; }
.global-nav { gap: 24px; font-size: .82rem; }
.global-nav > a:not(.nav-cta)::after {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--plum), var(--coral));
}
.nav-cta {
  padding: 11px 22px !important;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--coral));
  box-shadow: 0 6px 0 #c82566, 0 12px 24px rgba(240, 63, 133, .20);
}
.nav-cta:hover { transform: translateY(-2px); }
.menu-button { color: var(--ink); }
.menu-button {
  position: relative;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  overflow: hidden;
  border: 1px solid rgba(240,63,133,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  box-shadow: 0 7px 20px rgba(189,83,119,.12);
  transition: border-color .25s, background .25s, box-shadow .25s, transform .25s;
}
.menu-button::before {
  position: absolute;
  inset: 4px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--cream));
  transform: scale(0);
  transition: transform .25s;
}
.menu-button span {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .28s, opacity .2s, width .28s, background .25s;
}
.menu-button:hover { border-color: rgba(240,63,133,.38); transform: translateY(-1px); }
.menu-button[aria-expanded="true"] {
  border-color: rgba(240,63,133,.32);
  box-shadow: 0 8px 24px rgba(240,63,133,.18);
}
.menu-button[aria-expanded="true"]::before { transform: scale(1); }
.menu-button[aria-expanded="true"] span { background: var(--plum-2); }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { width: 0; opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-button b { display: none; }

.hero {
  min-height: 660px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.85) 0 4px, transparent 5px) 0 0 / 38px 38px,
    radial-gradient(circle at 85% 18%, rgba(255, 211, 79, .48), transparent 25%),
    linear-gradient(135deg, #fff8e8 0%, #ffe7f1 53%, #eee8ff 100%);
}
.hero::before {
  opacity: 1;
  background:
    radial-gradient(circle, rgba(240,63,133,.16) 0 3px, transparent 4px) 80% 18% / 28px 28px no-repeat,
    radial-gradient(circle, rgba(255,118,95,.13) 0 4px, transparent 5px) 22% 82% / 38px 38px no-repeat;
  mask-image: none;
}
.hero::after {
  position: absolute;
  top: 52px;
  left: max(18px, calc(50% - 590px));
  padding: 7px 14px;
  content: "HELLO, SAPPORO! ♥";
  border: 2px solid rgba(240,63,133,.25);
  border-radius: 999px;
  color: var(--plum-2);
  background: rgba(255,255,255,.72);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
  transform: rotate(-3deg);
}
.hero-inner { min-height: 660px; grid-template-columns: .9fr 1.1fr; gap: 72px; padding-block: 92px 72px; }
.hero-copy .eyebrow { color: var(--plum-2); }
.hero-copy .eyebrow {
  gap: 9px;
  margin-bottom: 14px;
  line-height: 1.4;
  white-space: nowrap;
}
.hero-copy .eyebrow::before {
  width: 22px;
  height: 3px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--plum));
  box-shadow: none;
}
.hero h1 {
  max-width: 570px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  font-weight: 900;
  line-height: 1.08;
}
.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--plum);
  font-family: inherit;
  font-style: normal;
  font-weight: 900;
}
.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: .02em;
  left: -.08em;
  height: .28em;
  content: "";
  border-radius: 999px;
  background: var(--gold-2);
  transform: rotate(-2deg);
}
.hero-lead { max-width: 540px; color: var(--ink-2); font-size: 1rem; }
.hero-actions { margin-top: 32px; }
.button {
  min-height: 58px;
  padding: 14px 30px;
  border-radius: 18px;
  font-size: .9rem;
  box-shadow: 0 6px 0 rgba(107, 60, 73, .10);
}
.button:hover { box-shadow: 0 4px 0 rgba(107,60,73,.1), 0 15px 28px rgba(240,63,133,.16); }
.button-gold {
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--coral));
}
.button-ghost {
  color: var(--plum-2);
  border: 2px solid rgba(240,63,133,.24);
  background: rgba(255,255,255,.72);
}
.button-dark { color: #fff; background: linear-gradient(135deg, #684b59, #493b40); }
.age-note { color: var(--muted); }
.hero-visual { min-height: 430px; }
.image-stack {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 36px;
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.image-stack::before {
  position: absolute;
  z-index: 4;
  top: -19px;
  left: 42%;
  padding: 7px 15px;
  content: "SUSUKINO JOB GUIDE";
  border-radius: 7px;
  color: #735a33;
  background: #ffe67e;
  box-shadow: 0 5px 12px rgba(118,88,23,.12);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  transform: rotate(-3deg);
}
.image-stack img {
  position: static;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  box-shadow: none;
  transform: none !important;
}
.image-stack img:nth-child(1) { grid-row: 1 / 3; }
.hero-badge {
  right: -16px;
  bottom: -20px;
  flex-direction: column;
  width: 132px;
  gap: 3px;
  border: 4px solid #fff;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(181, 118, 40, .22);
  text-align: center;
  transform: rotate(7deg);
}
.hero-badge b { color: var(--plum-2); font-family: inherit; font-size: 2.6rem; font-weight: 900; }
.hero-badge span { font-size: .72rem; line-height: 1.35; }
.hero-orb-a { border: 24px solid rgba(255,255,255,.25); }
.hero-orb-b { background: rgba(240,63,133,.12); }

.trust-strip {
  margin-top: -30px;
  padding: 22px 28px;
  border: 2px solid #fff;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-pop);
}
.trust-strip > div { padding: 8px 24px; }
.trust-strip span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  color: var(--plum-2);
  background: var(--rose);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 900;
}

.section-heading > p, .category-layout p { color: var(--muted); }
.job-grid { gap: 28px; }
.job-card > a {
  border: 1px solid rgba(240,63,133,.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(167, 94, 117, .08);
  transition: transform .25s, box-shadow .25s;
}
.job-card > a:hover { transform: translateY(-5px) rotate(-.25deg); box-shadow: var(--shadow-pop); }
.job-image { background: #fff2f7; }
.job-image::after { background: linear-gradient(to top, rgba(73,59,64,.25), transparent 45%); }
.job-image > span {
  color: var(--plum-2);
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 16px rgba(73,59,64,.12);
}
.job-card-body { padding: 25px; }
.job-card h3 { color: var(--ink); font-size: 1.06rem; }
.job-meta span, .job-pay span { color: var(--coral); }
.text-link { color: var(--plum-2); }

.category-layout { gap: 72px; }
.category-links { gap: 12px; border-top: 0; }
.category-links a {
  padding: 17px 18px;
  border: 1px solid rgba(240,63,133,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 5px 16px rgba(167,94,117,.06);
  transition: transform .2s, border-color .2s;
}
.category-links a:nth-child(odd) { margin-right: 0; }
.category-links a:hover { border-color: rgba(240,63,133,.38); transform: translateY(-2px); }
.steps-mini > div {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border: 1px solid rgba(240,63,133,.13);
  box-shadow: 0 9px 28px rgba(167,94,117,.08);
}
.steps-mini > div::after {
  position: absolute;
  right: -12px;
  bottom: -22px;
  content: "♥";
  color: rgba(240,63,133,.08);
  font-size: 86px;
}
.steps-mini span { color: var(--plum); font-family: inherit; font-weight: 900; }
.steps-mini > i { color: var(--coral); }
.cta-panel {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 22%, rgba(255,255,255,.82) 0 4px, transparent 5px) 0 0 / 30px 30px,
    linear-gradient(135deg, #ffe2ef, #fff0bd);
  box-shadow: var(--shadow-pop);
}
.cta-panel::after {
  position: absolute;
  right: 18%;
  bottom: -40px;
  content: "✦";
  color: rgba(240,63,133,.16);
  font-size: 130px;
}
.cta-panel .eyebrow { color: var(--plum-2); }
.cta-panel p:last-child { color: var(--ink-2); }
.cta-panel .button { position: relative; z-index: 1; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 68px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 26%, rgba(255,255,255,.75) 0 4px, transparent 5px) 0 0 / 34px 34px,
    linear-gradient(135deg, #fff0d1, #ffe2ee 58%, #eee8ff);
}
.page-hero::after {
  position: absolute;
  right: max(20px, calc(50% - 570px));
  bottom: -55px;
  content: "★";
  color: rgba(240,63,133,.11);
  font-size: 170px;
  transform: rotate(12deg);
}
.page-hero h1 { position: relative; z-index: 1; font-size: clamp(2.25rem, 5vw, 4.25rem); font-weight: 900; }
.page-hero p:last-child { position: relative; z-index: 1; color: var(--ink-2); }
.page-hero .eyebrow { color: var(--plum-2); }
.breadcrumbs { color: var(--muted); }

.search-panel, .form-card, .prose {
  border: 1px solid rgba(240,63,133,.12);
  box-shadow: var(--shadow);
}
.search-panel input, .search-panel select, .field input, .field select, .field textarea {
  border: 2px solid #f0e2e7;
  border-radius: 15px;
  background: #fffcfa;
}
.search-panel input:focus, .search-panel select:focus, .field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(240,63,133,.11);
}
.result-bar b { color: var(--plum); font-family: inherit; font-weight: 900; }
.detail-image { border: 8px solid #fff; box-shadow: var(--shadow); }
.tag { color: var(--plum-2); background: var(--rose); }
.apply-card, .contact-notes {
  color: var(--ink);
  border: 2px solid #fff;
  background: linear-gradient(145deg, #ffe3ee, #fff2c9);
  box-shadow: var(--shadow-pop);
}
.apply-card .eyebrow, .contact-notes .eyebrow { color: var(--plum-2); }
.apply-card p, .contact-notes ul { color: var(--ink-2); }
.apply-card small { color: var(--muted); }
.flow-list { max-width: 960px; }
.flow-step {
  grid-template-columns: 86px 1fr;
  gap: 24px;
  margin-bottom: 16px;
  padding: 30px;
  border: 1px solid rgba(240,63,133,.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(167,94,117,.07);
}
.flow-step > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  color: var(--plum);
  background: var(--rose);
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 900;
}
.notice-box { border-color: rgba(240,63,133,.16); background: #fff0f6; }
.faq-list details, .company-table > div, .detail-row { border-color: rgba(240,63,133,.12); }
.faq-list details {
  margin-bottom: 12px;
  padding-inline: 18px;
  border: 1px solid rgba(240,63,133,.12);
  border-radius: 18px;
  background: #fff;
}
.column-card { border-color: rgba(240,63,133,.12); box-shadow: 0 8px 28px rgba(167,94,117,.07); }
.message-icon { color: var(--plum-2); background: var(--gold-2); }

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff0f6, #fff8df);
}
.site-footer::before {
  position: absolute;
  top: 26px;
  right: 7%;
  content: "SAPPORO ♥ SUSUKINO";
  color: rgba(240,63,133,.16);
  font-size: clamp(1.6rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: .05em;
  transform: rotate(-2deg);
}
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-grid p, .footer-grid > div:not(:first-child) a { color: var(--muted); }
.footer-grid > div:not(:first-child) b { color: var(--plum-2); }
.footer-grid a:hover { color: var(--plum-2) !important; }
.footer-bottom { border-color: rgba(240,63,133,.14); color: var(--muted); }

@media (max-width: 980px) {
  .header-inner { position: relative; z-index: 2; }
  .global-nav {
    inset: 0;
    min-height: 100dvh;
    justify-content: center;
    padding: 104px max(28px, calc((100vw - 620px) / 2)) 52px;
    color: var(--ink);
    background:
      radial-gradient(circle at 15% 18%, rgba(255,255,255,.86) 0 4px, transparent 5px) 0 0 / 34px 34px,
      linear-gradient(145deg, rgba(255,244,225,.99), rgba(255,225,239,.99) 58%, rgba(237,232,255,.99));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity .28s, visibility .28s, transform .32s;
  }
  .global-nav::before {
    display: block;
    margin-bottom: 22px;
    content: "SAPPORO JOB GUIDE";
    color: var(--plum-2);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-align: center;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .global-nav > a {
    width: min(100%, 520px);
    margin-inline: auto;
    padding: 19px 20px;
    border: 0;
    border-bottom: 1px dashed rgba(240,63,133,.2);
    font-size: 1.08rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s, color .2s;
  }
  .global-nav.is-open > a { opacity: 1; transform: none; }
  .global-nav.is-open > a:nth-of-type(2) { transition-delay: .04s; }
  .global-nav.is-open > a:nth-of-type(3) { transition-delay: .08s; }
  .global-nav.is-open > a:nth-of-type(4) { transition-delay: .12s; }
  .global-nav.is-open > a:nth-of-type(5) { transition-delay: .16s; }
  .global-nav > a:not(.nav-cta)::after { display: none; }
  .global-nav > a.is-active { color: var(--plum-2); }
  .nav-cta {
    margin-top: 22px !important;
    border-bottom: 0 !important;
  }
  .hero-inner { grid-template-columns: minmax(0, 1fr); padding-top: 100px; }
  .hero-visual { min-height: 390px; }
}

@media (max-width: 680px) {
  :root {
    --wrap: calc(100% - 28px);
    --radius: 22px;
    --space-section: 72px;
  }
  body { font-size: 16px; line-height: 1.82; }
  .header-inner { height: 68px; }
  .global-nav { inset: 68px 0 auto; min-height: calc(100vh - 68px); }
  .brand > img { width: 158px; height: 38px; }
  .menu-button { width: 44px; height: 44px; }
  .hero::after { top: 82px; left: 15px; font-size: .56rem; }
  .hero-copy .eyebrow { margin-bottom: 15px; font-size: .66rem; letter-spacing: .15em; }
  .hero-inner { padding: 112px 0 82px; gap: 32px; }
  .hero-copy { width: 100%; }
  .hero h1 {
    width: 100%;
    max-width: none;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 10.8vw, 2.8rem);
    line-height: 1.16;
    letter-spacing: -.055em;
  }
  .hero-lead { max-width: 34em; font-size: 1rem; }
  .hero-actions { gap: 12px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .button { min-height: 56px; border-radius: 16px; }
  .hero-visual { min-height: 268px; margin-top: 4px; }
  .image-stack { gap: 8px; padding: 10px; border-radius: 25px; }
  .image-stack img { border-radius: 15px; }
  .image-stack::before { top: -15px; left: 20px; }
  .hero-badge {
    right: 8px;
    bottom: -16px;
    flex-direction: row;
    width: 126px;
    min-height: 68px;
    aspect-ratio: auto;
    gap: 7px;
    padding: 9px 12px;
    border-width: 3px;
    border-radius: 22px;
    text-align: left;
    transform: rotate(3deg);
  }
  .hero-badge b { font-size: 1.8rem; }
  .hero-badge span {
    font-size: .56rem;
    line-height: 1.4;
    white-space: nowrap;
  }
  .trust-strip { margin-top: -28px; padding: 14px 18px; border-radius: 22px; }
  .trust-strip > div { padding: 14px 2px; }
  .trust-strip span { width: 39px; height: 39px; }
  .section-heading { gap: 12px; }
  .job-grid { gap: 20px; }
  .category-layout { gap: 34px; }
  .category-links { gap: 9px; }
  .category-links a { padding: 15px 16px; }
  .steps-mini > div { min-height: 0; padding: 24px; }
  .steps-mini span { margin-bottom: 12px; }
  .cta-panel { gap: 22px; padding: 34px 24px; border-radius: 24px; }
  .cta-panel .button { width: 100%; }
  .page-hero { padding: 62px 0 52px; }
  .page-hero h1 { font-size: clamp(2rem, 10.5vw, 2.8rem); overflow-wrap: anywhere; }
  .search-panel, .form-card { padding: 22px 18px; }
  .flow-step { grid-template-columns: 54px 1fr; gap: 14px; padding: 22px 18px; }
  .flow-step > span { width: 50px; height: 50px; border-radius: 16px; font-size: 1rem; }
  .flow-step h2 { font-size: 1.2rem; }
  .notice-box, .prose { padding: 26px 20px; }
  .footer-grid { gap: 34px 22px; }
  .site-footer::before { right: -6%; font-size: 1.45rem; }
  .floating-cta {
    right: 14px;
    bottom: 14px;
    left: auto;
    width: 168px;
    align-items: center;
    padding: 11px 18px;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--plum), var(--coral));
    box-shadow: 0 8px 0 rgba(180,35,91,.22), 0 16px 34px rgba(189,83,119,.24);
  }
  .floating-cta span { font-size: .84rem; }
  .floating-cta small { margin-top: 2px; }
}
