:root {
  --blue: #1a5fb4;
  --blue-dark: #0c3568;
  --blue-deep: #07274b;
  --blue-light: #eaf3ff;
  --accent: #f4a13c;
  --accent-dark: #d67c10;
  --ink: #172433;
  --sub: #576574;
  --line: #d8e1ea;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --placeholder: #fff4d6;
  --placeholder-line: #d7a42d;
  --shadow: 0 16px 42px rgba(7, 39, 75, .11);
  --radius: 20px;
  --max: 1120px;
  --font-display: "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --font-body: "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "palt";
  line-height: 1.75;
  padding-bottom: 72px;
}

body::selection {
  background: #cfe4ff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.35;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
}

h3,
h4 {
  font-family: var(--font-body);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  border-radius: 8px;
  background: var(--blue-deep);
  color: #fff;
  padding: 10px 14px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.is-placeholder,
.inline-placeholder {
  border-color: var(--placeholder-line) !important;
  background: var(--placeholder) !important;
  color: #59410d !important;
}

.inline-placeholder {
  display: inline-block;
  border: 1px solid var(--placeholder-line);
  border-radius: 5px;
  font-weight: 800;
  padding: 2px 7px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(26, 95, 180, .09);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
}

.brand,
.logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  margin-right: auto;
}

.brand img,
.logo img {
  width: 148px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.header-apply,
.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(214, 124, 16, .23);
  color: #31200b;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  padding: 8px 13px;
}

.header-link {
  display: none;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

/* Shared buttons */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  padding: 13px 20px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(214, 124, 16, .28);
  color: #2e1d08;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .68);
  background: rgba(7, 39, 75, .48);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-large {
  min-height: 60px;
  padding-inline: 28px;
}

.button:hover {
  box-shadow: 0 16px 32px rgba(7, 39, 75, .2);
  transform: translateY(-2px);
}

/* ② Hero */
.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 180, 226, .38), transparent 28%),
    linear-gradient(145deg, #041c37 0%, #073f72 52%, #0e79aa 100%);
}

.hero-abstract,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-abstract {
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-abstract::before {
  position: absolute;
  top: -22%;
  right: -34%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(255, 255, 255, .025),
    0 0 0 128px rgba(255, 255, 255, .018);
  content: "";
  animation: abstractRotate 28s linear infinite;
}

.abstract-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.abstract-orb-one {
  top: 8%;
  right: 6%;
  width: min(58vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 36% 34%, rgba(109, 218, 239, .78), rgba(20, 124, 174, .22) 58%, transparent 72%);
  animation: abstractFloat 10s ease-in-out infinite alternate;
}

.abstract-orb-two {
  right: 32%;
  bottom: -32%;
  width: min(48vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(72, 207, 181, .28), transparent 69%);
  animation: abstractFloatTwo 13s ease-in-out infinite alternate;
}

.abstract-route {
  position: absolute;
  top: 9%;
  right: 18%;
  width: 33%;
  height: 70%;
  border: 2px solid rgba(255, 255, 255, .2);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(22deg);
  animation: abstractPulse 5s ease-in-out infinite;
}

.abstract-route::before,
.abstract-route::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(244, 161, 60, .13);
  content: "";
}

.abstract-route::before {
  top: 14%;
  left: 1%;
}

.abstract-route::after {
  right: 1%;
  bottom: 15%;
}

.abstract-box {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .055));
  box-shadow: inset 0 1px rgba(255, 255, 255, .28), 0 18px 46px rgba(1, 25, 47, .18);
  backdrop-filter: blur(5px);
}

.abstract-box::after {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 22%;
  height: 18%;
  background: rgba(244, 161, 60, .7);
  content: "";
  transform: translateX(-50%);
}

.abstract-box-one {
  top: 19%;
  right: 12%;
  width: clamp(90px, 15vw, 190px);
  aspect-ratio: 1.08;
  animation: abstractBoxOne 9s ease-in-out infinite alternate;
}

.abstract-box-two {
  top: 45%;
  right: 27%;
  width: clamp(72px, 11vw, 142px);
  aspect-ratio: 1.08;
  animation: abstractBoxTwo 11s ease-in-out infinite alternate;
}

.abstract-box-three {
  right: 5%;
  bottom: 10%;
  width: clamp(112px, 18vw, 230px);
  aspect-ratio: 1.08;
  animation: abstractBoxThree 12s ease-in-out infinite alternate;
}

.abstract-word {
  position: absolute;
  right: -1.5%;
  bottom: -1.5%;
  color: rgba(255, 255, 255, .07);
  font-family: Arial, sans-serif;
  font-size: clamp(70px, 17vw, 235px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  white-space: nowrap;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 20, 39, .02) 0%, rgba(3, 20, 39, .28) 56%, rgba(3, 20, 39, .58) 100%),
    linear-gradient(90deg, rgba(3, 20, 39, .62), rgba(3, 20, 39, .12) 72%);
}

.hero-content {
  position: relative;
  color: #fff;
  padding-block: 72px 42px;
  animation: heroContentIn .8s ease-out both;
}

.hero-area,
.section-kicker {
  margin-bottom: 10px;
  color: #9dc8fb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(37px, 11vw, 54px);
  font-weight: 900;
  letter-spacing: -.05em;
}

.hero h1 span {
  color: #fff;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 18px;
  color: #e8f2fb;
  font-size: 15px;
  font-weight: 700;
}

.condition-badges {
  display: flex;
  overflow-x: auto;
  gap: 7px;
  margin: 0 -16px 22px;
  padding: 0 16px 5px;
  scrollbar-width: none;
}

.condition-badges::-webkit-scrollbar {
  display: none;
}

.condition-badge {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 7px 12px;
  backdrop-filter: blur(8px);
}

.condition-badge.is-placeholder {
  border-color: #f3cf76 !important;
  background: rgba(255, 235, 176, .94) !important;
}

.hero-actions {
  display: grid;
  gap: 9px;
  max-width: 420px;
}

.hero-note {
  max-width: 460px;
  margin: 13px 0 0;
  color: #bcd0e2;
  font-size: 10px;
}

.hero-freepen {
  position: absolute;
  right: -6px;
  bottom: 32px;
  width: 76px;
  aspect-ratio: 1;
  border: 3px solid #fff;
  border-radius: 50%;
  background-color: #172433;
  background-image: url("images/freepen-sheet.webp");
  background-position: 7% 9%;
  background-repeat: no-repeat;
  background-size: 220% auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .26);
}

/* ③ Trust */
.trust-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 18px;
}

.trust-stat {
  min-width: 0;
  border-right: 1px solid var(--line);
  text-align: center;
  padding: 3px 7px;
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  display: block;
  color: var(--blue);
  font-size: clamp(19px, 6vw, 28px);
  line-height: 1.25;
}

.trust-stat strong small {
  font-size: .5em;
}

.trust-stat span {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
}

.trust-stat > small {
  display: block;
  margin-top: 2px;
  color: var(--sub);
  font-size: 7px;
  line-height: 1.3;
}

/* Shared sections */
.section {
  padding-block: 72px;
}

.section-kicker {
  color: var(--blue);
}

.section h2,
.final-cta h2,
.page-hero h1 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: clamp(31px, 9vw, 48px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  padding-bottom: .08em;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading p,
.section > .container > p:not(.section-kicker) {
  color: var(--sub);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.section-cta {
  margin-top: 28px;
}

.section-cta .button {
  width: 100%;
}

/* ④ Jobs */
.jobs-section {
  background: var(--soft);
}

.job-scroller {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  margin-right: -16px;
  padding: 4px 16px 18px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.job-scroller::-webkit-scrollbar {
  display: none;
}

.job-card {
  flex: 0 0 min(82vw, 330px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 39, 75, .07);
  scroll-snap-align: start;
}

.job-image {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: #dce6ee;
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-image .crop-left {
  object-position: 0 center;
}

.job-image .crop-center {
  object-position: 50% center;
}

.job-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(26, 95, 180, .06), rgba(26, 95, 180, .17)),
    repeating-linear-gradient(45deg, #eef3f7 0 15px, #e5ecf2 15px 30px);
  color: var(--sub);
  font-size: 12px;
  font-weight: 900;
}

.job-copy {
  padding: 20px;
}

.job-copy > span {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.job-copy h3 {
  margin: 7px 0 8px;
  color: var(--blue-deep);
  font-size: 20px;
}

.job-copy p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

/* ⑤ Fit */
.fit-section {
  background:
    radial-gradient(circle at 96% 8%, rgba(244, 161, 60, .14), transparent 26%),
    #fff9ef;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.fit-item {
  display: grid;
  min-height: 132px;
  place-items: center;
  border: 1px solid #cfddeb;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue-deep);
  padding: 17px 10px;
  text-align: center;
}

.fit-item > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.fit-item strong {
  font-size: 13px;
  line-height: 1.55;
}

.fit-item small {
  font-size: 9px;
}

.fit-item.is-placeholder > span {
  background: var(--placeholder-line);
}

/* ⑥ Reassurance */
.reassurance-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 8%, rgba(244, 161, 60, .16), transparent 25%),
    var(--blue-deep);
  color: #fff;
}

.reassurance-section .section-kicker {
  color: #9dc8fb;
}

.reassurance-section h2 {
  color: #fff;
}

.support-intro > p:not(.section-kicker) {
  color: #c8d9e8;
  font-size: 14px;
}

.support-intro {
  position: relative;
  padding-bottom: 158px;
}

.support-freepen {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 138px;
  aspect-ratio: 1;
  background-image: url("images/freepen-sheet.webp");
  background-position: 93% 90%;
  background-repeat: no-repeat;
  background-size: 220% auto;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .22));
}

.support-freepen::before {
  position: absolute;
  top: 2px;
  left: -100px;
  display: grid;
  width: 108px;
  min-height: 62px;
  place-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 86% 78%, 94% 100%, 69% 78%, 0 78%);
  background: #fff;
  color: var(--blue-deep);
  content: "未経験OK！";
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 0 8px 13px;
}

.support-freepen::after {
  position: absolute;
  right: 3px;
  bottom: 7px;
  color: #fff;
  content: "フリペンくん";
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .85),
    0 0 5px rgba(0, 0, 0, .6);
}

.support-cards {
  display: grid;
  gap: 12px;
}

.support-card {
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  padding: 20px;
}

.support-card.is-placeholder {
  color: #59410d !important;
}

.support-number {
  color: #99c9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.support-card h3 {
  margin: 8px 0;
  font-size: 18px;
}

.support-card p {
  margin: 0;
  color: #c8d9e8;
  font-size: 12px;
}

.support-card.is-placeholder p {
  color: #59410d;
}

.support-portal-card {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  padding: 25px;
}

.support-portal-card > span {
  color: #9dc8fb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.support-portal-card h3 {
  margin: 8px 0 16px;
  color: #fff;
  font-size: 20px;
}

.support-portal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  color: #dbe8f3;
  font-size: 13px;
  padding-left: 20px;
}

.support-portal-card .button {
  border-color: rgba(255, 255, 255, .54);
  color: #fff;
}

/* ⑦ Work style */
.workstyle-section {
  background: #fff;
}

.workstyle-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.workstyle-photo,
.day-flow {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.workstyle-photo img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.workstyle-photo figcaption {
  display: grid;
  padding: 17px 18px 20px;
}

.workstyle-photo figcaption strong {
  color: var(--blue-deep);
  font-size: 16px;
}

.workstyle-photo figcaption span {
  color: var(--sub);
  font-size: 11px;
}

.day-flow {
  padding: 22px;
}

.workstyle-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.day-flow ol {
  display: grid;
  gap: 13px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.day-flow li {
  position: relative;
  border-left: 2px solid #bcd3ea;
  padding-left: 17px;
}

.day-flow li::before {
  position: absolute;
  top: 7px;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.day-flow strong,
.day-flow span {
  display: block;
}

.day-flow strong {
  color: var(--blue-deep);
  font-size: 13px;
}

.day-flow span {
  color: var(--sub);
  font-size: 10px;
}

/* ⑧ Entry flow */
.flow-section {
  background: var(--soft);
}

.entry-flow {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.entry-flow li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  padding: 18px;
}

.entry-flow li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.entry-flow strong {
  color: var(--blue-deep);
  font-size: 16px;
}

.entry-flow p {
  margin: 4px 0 0;
  color: var(--sub);
  font-size: 12px;
}

/* ⑨ Company & compliance */
.company-section {
  background: #fff;
}

.message-card {
  display: grid;
  gap: 17px;
  margin: 28px 0;
  border-left: 5px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: var(--soft);
  padding: 23px;
}

.message-card span,
.message-card strong {
  display: block;
}

.message-card span {
  color: var(--sub);
  font-size: 11px;
}

.message-card strong {
  color: var(--blue-deep);
  font-size: 20px;
}

.message-card p {
  margin: 0;
  border: 1px solid var(--placeholder-line);
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
}

.company-table {
  margin: 0;
  border-top: 2px solid var(--blue-deep);
}

.company-table > div {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
  padding: 15px 5px;
}

.company-table dt {
  color: var(--sub);
  font-size: 11px;
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
}

.access-section {
  background:
    linear-gradient(135deg, rgba(235, 246, 253, .98), rgba(246, 251, 248, .98));
}

.access-card {
  display: grid;
  gap: 24px;
}

.access-copy h2 {
  margin-bottom: 18px;
}

.access-copy address {
  color: var(--blue-deep);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.8;
}

.access-copy > p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--sub);
  font-size: 13px;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.access-map {
  overflow: hidden;
  min-height: 310px;
  border: 1px solid #c9dbe8;
  border-radius: 20px;
  background: #e7f4fa;
  box-shadow: 0 18px 42px rgba(7, 39, 75, .11);
}

.access-map iframe {
  display: block;
  width: 100%;
  min-height: 310px;
  height: 100%;
  border: 0;
}

.access-route-panel {
  display: grid;
  min-height: 310px;
  align-content: center;
  gap: 18px;
  border: 1px solid #c9dbe8;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 16%, rgba(244, 161, 60, .22), transparent 25%),
    linear-gradient(145deg, #fff 0%, #e7f4fa 100%);
  box-shadow: 0 18px 42px rgba(7, 39, 75, .11);
  padding: 28px;
}

.access-route-panel > div {
  display: grid;
  gap: 3px;
  border-left: 4px solid var(--blue);
  padding-left: 17px;
}

.access-route-panel > div:last-child {
  border-left-color: var(--accent);
}

.access-route-panel span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.access-route-panel strong {
  color: var(--blue-deep);
  font-size: 21px;
}

.access-route-panel small {
  color: var(--sub);
  font-size: 12px;
  font-weight: 700;
}

.access-route-panel > p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 0 2px;
  color: var(--blue-deep);
  font-size: 13px;
}

.access-route-panel > p i {
  width: 2px;
  height: 45px;
  margin-left: 14px;
  background:
    repeating-linear-gradient(to bottom, var(--blue) 0 6px, transparent 6px 12px);
}

.compliance {
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid #b8cee4;
  border-radius: 18px;
  background: #fff;
}

.compliance-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: var(--blue-deep);
  color: #fff;
  padding: 20px;
}

.compliance-head span {
  color: #a7c9ec;
  font-size: 9px;
  font-weight: 900;
}

.compliance-head h3 {
  margin: 3px 0 0;
  font-size: 18px;
}

.permit-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: #fff !important;
  padding: 6px 9px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.compliance-grid > div {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 12px;
  text-align: center;
}

.compliance-grid > div:nth-child(2n) {
  border-right: 0;
}

.compliance-grid strong,
.compliance-grid span {
  display: block;
}

.compliance-grid strong {
  color: var(--blue);
  font-size: 19px;
}

.compliance-grid span {
  color: var(--sub);
  font-size: 9px;
}

.training-info {
  padding: 20px;
}

.training-info h4 {
  margin-bottom: 9px;
  color: var(--blue-deep);
  font-size: 15px;
}

.training-info ul {
  margin: 0;
  color: var(--sub);
  font-size: 11px;
  padding-left: 1.2em;
}

.data-note {
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--sub);
  font-size: 9px;
  padding: 13px 20px;
}

/* ⑩ Final CTA */
.final-cta {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 10%, rgba(244, 161, 60, .3), transparent 26%),
    linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: #fff;
  padding-block: 72px;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner > p {
  margin-bottom: 8px;
  color: #a9d0fb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(38px, 11vw, 60px);
}

.final-cta .button {
  width: 100%;
  max-width: 420px;
}

.line-pending {
  display: block;
  margin-top: 13px;
  color: #c2d8eb;
  font-size: 11px;
}

/* ⑪ Footer */
.site-footer {
  background: #051d37;
  color: #fff;
  padding-block: 46px 94px;
}

.footer-layout {
  display: grid;
  gap: 25px;
}

.footer-brand,
.footer-logo {
  display: inline-flex;
  border-radius: 8px;
  background: #fff;
  padding: 4px 8px;
}

.footer-brand img,
.footer-logo img {
  width: 178px;
  height: 46px;
  object-fit: contain;
}

.site-footer p {
  margin: 14px 0 0;
  color: #b8cbdb;
  font-size: 11px;
}

.footer-nav {
  display: grid;
  gap: 4px;
}

.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #e8f1f7;
  font-size: 12px;
}

.footer-permit,
.copyright {
  margin: 0 !important;
  font-size: 10px !important;
}

.mobile-fixed-cta {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(7, 39, 75, .12);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 -9px 25px rgba(7, 39, 75, .13);
  padding: 9px 12px;
}

.mobile-fixed-cta a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: #2e1d08;
  font-size: 14px;
  font-weight: 900;
}

/* Privacy and blog pages share this one stylesheet */
.page-hero {
  background: linear-gradient(145deg, var(--blue-light), #fff);
  padding-block: 62px 48px;
}

.page-hero .eyebrow,
.article-meta {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.page-hero p {
  max-width: 720px;
  color: var(--sub);
  font-size: 13px;
}

.breadcrumbs {
  border-block: 1px solid var(--line);
  background: #fff;
  color: var(--sub);
  font-size: 10px;
  padding-block: 10px;
}

.listing,
.policy-main {
  padding-block: 56px 76px;
}

.article-grid,
.policy {
  display: grid;
  gap: 14px;
}

.article-card,
.policy section {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 22px;
}

.article-card time {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.article-card h2,
.policy h2 {
  margin: 8px 0 10px;
  color: var(--blue-deep);
  font-size: 19px;
}

.article-card p,
.policy p,
.policy li {
  color: var(--sub);
  font-size: 12px;
}

.article-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.contact-box {
  border-left: 4px solid var(--blue);
  background: var(--soft);
  padding: 18px;
}

.contact-box strong {
  display: block;
  color: var(--blue-deep);
  font-size: 16px;
}

.contact-box a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.contact-box p {
  margin-bottom: 8px;
}

.policy-dates {
  color: var(--sub);
  font-size: 11px;
  text-align: right;
}

.article-wrap {
  display: grid;
  gap: 22px;
  padding-block: 48px 76px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 42px 0 13px;
  border-left: 5px solid var(--accent);
  color: var(--blue-deep);
  font-size: 24px;
  padding-left: 13px;
}

.article-body h3 {
  margin: 26px 0 9px;
  color: var(--blue-deep);
  font-size: 17px;
}

.article-body p,
.article-body li {
  color: var(--sub);
  font-size: 13px;
}

.article-lead,
.note {
  border-radius: 13px;
  background: var(--blue-light);
  padding: 18px;
}

.article-cta {
  margin-top: 42px;
  border-radius: 18px;
  background: var(--blue-deep);
  color: #fff;
  padding: 25px;
}

.article-cta h2 {
  margin-top: 0;
  border: 0;
  color: #fff;
  padding: 0;
}

.article-cta p {
  color: #c8d9e8;
}

.article-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #2e1d08;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 16px;
}

.article-side {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  padding: 18px;
}

.article-side nav {
  display: grid;
  margin-top: 8px;
}

.article-side a {
  display: flex;
  min-height: 40px;
  align-items: center;
  color: var(--sub);
  font-size: 11px;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

/* Tablet */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: min(calc(100% - 56px), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img,
  .logo img {
    width: 195px;
    height: 50px;
  }

  .header-apply,
  .header-cta {
    min-height: 48px;
    font-size: 13px;
    padding-inline: 20px;
  }

  .header-link {
    display: inline-flex;
  }

  .hero {
    min-height: 690px;
    align-items: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 28, 55, .94) 0%, rgba(5, 28, 55, .7) 47%, rgba(5, 28, 55, .08) 78%),
      linear-gradient(0deg, rgba(5, 28, 55, .3), transparent 65%);
  }

  .hero-content {
    padding-block: 80px;
  }

  .hero h1 {
    font-size: clamp(52px, 7.1vw, 76px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .condition-badges {
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .hero-actions {
    grid-template-columns: 1.2fr .8fr;
    max-width: 610px;
  }

  .hero-freepen {
    right: auto;
    left: 550px;
    bottom: 73px;
    width: 105px;
  }

  .trust-stats {
    padding-block: 24px;
  }

  .trust-stat span {
    font-size: 11px;
  }

  .trust-stat > small {
    font-size: 9px;
  }

  .section {
    padding-block: 96px;
  }

  .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
  }

  .job-scroller {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(2, 1fr);
    margin-right: 0;
    padding-right: 0;
  }

  .job-card {
    min-width: 0;
  }

  .section-cta .button {
    width: auto;
  }

  .fit-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .fit-item {
    min-height: 164px;
  }

  .support-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: start;
  }

  .access-card {
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 52px;
  }

  .company-portal-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .access-route-panel {
    min-height: 390px;
  }

  .access-map,
  .access-map iframe {
    min-height: 390px;
  }

  .support-cards {
    gap: 15px;
  }

  .workstyle-grid {
    grid-template-columns: 1.15fr .85fr;
  }

  .workstyle-grid > :last-child {
    grid-column: 1 / -1;
  }

  .entry-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .entry-flow li {
    position: relative;
    display: block;
    border: 0;
    border-top: 2px solid #b8cee4;
    border-radius: 0;
    background: transparent;
    padding: 30px 22px 0 0;
  }

  .entry-flow li > span {
    position: absolute;
    top: -22px;
    left: 0;
  }

  .entry-flow li > div {
    margin-top: 12px;
  }

  .message-card {
    grid-template-columns: 180px 1fr;
    align-items: start;
    padding: 30px;
  }

  .company-table > div {
    grid-template-columns: 190px 1fr;
    gap: 22px;
    padding: 18px 10px;
  }

  .compliance-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .compliance-grid > div,
  .compliance-grid > div:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .compliance-grid > div:last-child {
    border-right: 0;
  }

  .final-cta {
    padding-block: 96px;
  }

  .footer-layout,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-permit,
  .copyright {
    grid-column: 1 / -1;
  }

  .mobile-fixed-cta {
    display: none;
  }

  .page-hero {
    padding-block: 84px 64px;
  }

  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-wrap {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 54px;
  }

  .article-side {
    position: sticky;
    top: 96px;
    align-self: start;
  }
}

/* Desktop */
@media (min-width: 1080px) {
  .job-scroller {
    grid-template-columns: repeat(4, 1fr);
  }

  .job-image {
    height: 180px;
  }

  .workstyle-grid {
    grid-template-columns: 1.05fr .9fr 1.05fr;
  }

  .workstyle-grid > :last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-abstract,
  .abstract-orb,
  .abstract-route,
  .abstract-box,
  .hero-content {
    animation: none;
  }
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes abstractRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes abstractFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 5%, 0) scale(1.07); }
}

@keyframes abstractFloatTwo {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(6%, -5%, 0); }
}

@keyframes abstractPulse {
  0%, 100% { opacity: .55; transform: rotate(22deg) scale(1); }
  50% { opacity: 1; transform: rotate(22deg) scale(1.025); }
}

@keyframes abstractBoxOne {
  from { transform: translate3d(0, 0, 0) rotate(-4deg); }
  to { transform: translate3d(-12px, 15px, 0) rotate(2deg); }
}

@keyframes abstractBoxTwo {
  from { transform: translate3d(0, 0, 0) rotate(4deg); }
  to { transform: translate3d(9px, -14px, 0) rotate(-2deg); }
}

@keyframes abstractBoxThree {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(-14px, -10px, 0) rotate(3deg); }
}

/* Global menu */
.menu-button {
  position: relative;
  z-index: 112;
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-deep);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 100% 0, rgba(64, 174, 224, .2), transparent 34%),
    var(--blue-deep);
  padding: calc(88px + env(safe-area-inset-top)) 20px calc(56px + env(safe-area-inset-bottom));
  animation: menuFadeIn .2s ease both;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel nav {
  display: flex;
  width: min(100%, 720px);
  min-height: calc(100svh - 144px);
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  animation: menuSlideIn .26s ease both;
}

.menu-panel a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.menu-panel a span {
  color: #83b6df;
  font-size: 9px;
  letter-spacing: .14em;
}

.menu-open {
  overflow: hidden;
}

@keyframes menuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Compact route guide on the landing page */
.site-guide {
  background: #061f3c;
  color: #fff;
  padding-block: 30px;
}

.site-guide-inner {
  display: grid;
  gap: 18px;
}

.site-guide p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.site-guide p span {
  display: block;
  margin-bottom: 3px;
  color: #83b6df;
  font-size: 9px;
  letter-spacing: .18em;
}

.site-guide-inner > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.site-guide a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  background: #061f3c;
  color: #eef7ff;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 12px;
}

.site-guide a::after {
  color: #65b4e8;
  content: "→";
}

/* SEO detail pages */
.detail-page {
  background: #fff;
}

.detail-header {
  position: sticky;
}

.breadcrumb {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  color: var(--sub);
  font-size: 10px;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 16%, rgba(50, 152, 220, .17), transparent 28%),
    linear-gradient(145deg, #edf6ff, #fff 62%);
  padding-block: 46px 58px;
}

.detail-hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.detail-hero h1,
.detail-title-only h1 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(38px, 11vw, 66px);
  font-weight: 900;
  letter-spacing: -.055em;
}

.detail-hero p:not(.section-kicker),
.detail-title-only p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--sub);
  font-size: 14px;
}

.detail-hero-grid > img,
.beginner-visual {
  width: 100%;
  min-height: 280px;
  overflow: hidden;
  border-radius: 12px 54px 12px 12px;
  box-shadow: var(--shadow);
}

.detail-hero-grid > img {
  height: 100%;
  max-height: 470px;
  object-fit: cover;
}

.beginner-visual {
  position: relative;
}

.beginner-visual > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.beginner-mascot {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 88px;
  aspect-ratio: 1;
  border: 3px solid #fff;
  border-radius: 50%;
  background-color: #172433;
  background-image: url("images/freepen-sheet.webp");
  background-position: 100% 100%;
  background-size: 200% 200%;
  box-shadow: 0 12px 28px rgba(7, 39, 75, .22);
}

.detail-title-only {
  background:
    linear-gradient(120deg, rgba(5, 42, 78, .97), rgba(13, 91, 147, .93)),
    url("images/factory-wide.webp") center / cover;
  color: #fff;
  padding-block: 64px;
}

.detail-title-only h1 {
  color: #fff;
}

.detail-title-only p:not(.section-kicker) {
  color: #d9e9f5;
}

.detail-section,
.detail-faq,
.detail-link-section {
  padding-block: 72px;
}

.detail-section h2,
.detail-faq h2,
.detail-link-section h2,
.detail-photo-band h2,
.detail-final-cta h2,
.disclosure-explain h2 {
  margin-bottom: 30px;
  color: var(--blue-deep);
  font-size: clamp(30px, 8.2vw, 48px);
  font-weight: 900;
  letter-spacing: -.045em;
}

.detail-card-grid {
  display: grid;
  gap: 14px;
}

.detail-card-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f7fbff);
  padding: 24px;
}

.detail-card-no {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.detail-card-grid h3 {
  margin: 32px 0 10px;
  color: var(--blue-deep);
  font-size: 20px;
}

.detail-card-grid p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

.detail-photo-band {
  background: var(--soft);
  padding-block: 72px;
}

.detail-photo-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.detail-photo-grid > img {
  width: 100%;
  min-height: 280px;
  border-radius: 12px 44px 12px 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 8px 8px 32px;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  content: "✓";
  font-size: 12px;
}

.detail-note,
.data-source {
  margin: 22px 0 0;
  border-left: 3px solid var(--accent);
  background: #fffaf2;
  color: var(--sub);
  font-size: 11px;
  padding: 12px 14px;
}

.detail-flow {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.detail-flow li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
}

.detail-flow li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.detail-flow h3 {
  margin: 0 0 4px;
  color: var(--blue-deep);
  font-size: 17px;
}

.detail-flow p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.detail-faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  cursor: pointer;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
  padding: 17px 52px 17px 18px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 15px;
  right: 17px;
  color: var(--blue);
  content: "＋";
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--sub);
  font-size: 12px;
  padding: 16px 18px 20px;
}

.detail-link-section {
  background: #fff;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-links a {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 39, 75, .06);
  padding: 14px 46px 14px 18px;
}

.related-links strong {
  color: var(--blue-deep);
  font-size: 14px;
}

.related-links span {
  color: var(--sub);
  font-size: 10px;
}

.detail-final-cta {
  background:
    radial-gradient(circle at 78% 18%, rgba(77, 173, 230, .3), transparent 25%),
    var(--blue-deep);
  color: #fff;
  padding-block: 72px;
  text-align: center;
}

.detail-final-cta p {
  margin-bottom: 8px;
  color: #a9cbe4;
  font-size: 11px;
  font-weight: 800;
}

.detail-final-cta h2 {
  margin-bottom: 28px;
  color: #fff;
}

.company-detail-layout {
  display: grid;
  gap: 32px;
}

.detail-company-table {
  margin: 0;
}

.pending-panel {
  border: 1px solid #e3c163;
  border-radius: 16px;
  background: #fff8dc;
  padding: 22px;
}

.pending-panel strong {
  color: #654b0a;
}

.pending-panel p {
  margin: 6px 0 0;
  color: #6e6654;
  font-size: 12px;
}

.disclosure-detail {
  background: var(--soft);
}

.disclosure-key,
.disclosure-money {
  display: grid;
  gap: 10px;
}

.disclosure-key article,
.disclosure-money article {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}

.disclosure-key article.is-accent {
  background: var(--blue-deep);
}

.disclosure-key span,
.disclosure-money span {
  color: var(--sub);
  font-size: 11px;
  font-weight: 800;
}

.disclosure-key strong,
.disclosure-money strong {
  color: var(--blue-deep);
  font-size: 30px;
  line-height: 1.1;
}

.disclosure-key strong small,
.disclosure-money strong small {
  margin-left: 3px;
  font-size: 12px;
}

.disclosure-key article > small,
.disclosure-money article > small {
  color: #8091a0;
  font-size: 9px;
}

.disclosure-key .is-accent span,
.disclosure-key .is-accent strong {
  color: #fff;
}

.disclosure-money {
  margin-top: 10px;
}

.disclosure-explain {
  margin-top: 28px;
  border-radius: 18px;
  background: #fff;
  padding: 24px;
}

.disclosure-explain h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.disclosure-explain > p {
  color: var(--sub);
  font-size: 13px;
}

@media (max-width: 767px) {
  .header-apply,
  .header-cta {
    display: none;
  }
}

@media (min-width: 768px) {
  .site-guide-inner {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }

  .site-guide-inner > div {
    grid-template-columns: repeat(5, 1fr);
  }

  .detail-hero {
    padding-block: 76px 88px;
  }

  .detail-hero-grid,
  .detail-photo-grid {
    grid-template-columns: .92fr 1.08fr;
    gap: 64px;
  }

  .detail-section,
  .detail-faq,
  .detail-link-section {
    padding-block: 100px;
  }

  .detail-photo-band {
    padding-block: 100px;
  }

  .detail-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .detail-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .detail-flow li {
    grid-template-columns: 1fr;
    border-bottom: 0;
    border-top: 2px solid var(--line);
    padding: 28px 22px 0 0;
  }

  .detail-flow li > span {
    margin-top: -52px;
  }

  .faq-list {
    grid-template-columns: 1fr 1fr;
  }

  .related-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .company-detail-layout {
    grid-template-columns: .65fr 1.35fr;
    gap: 70px;
  }

  .disclosure-key {
    grid-template-columns: repeat(4, 1fr);
  }

  .disclosure-money {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-panel,
  .menu-panel nav,
  .menu-button span {
    animation: none;
    transition: none;
  }
}

/* Live job listing and Google Job Search detail pages */
.jobs-list-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(76, 187, 225, .32), transparent 26%),
    linear-gradient(120deg, #051f3d, #0b5b8e);
}

.live-jobs-section {
  background: var(--soft);
}

.live-jobs-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.live-jobs-head h2 {
  margin-bottom: 0;
}

.live-jobs-head > p {
  margin: 0;
  color: var(--sub);
  font-size: 10px;
}

.live-jobs-grid {
  display: grid;
  gap: 16px;
}

.live-job-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(7, 39, 75, .07);
  padding: 22px;
}

.live-job-card-head,
.job-detail-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.live-job-card-head > span:not(.job-status),
.job-detail-labels > span:not(.job-status) {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
}

.job-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #daf6ea;
  color: #09673f;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
}

.live-job-card h2 {
  margin: 22px 0 10px;
  color: var(--blue-deep);
  font-size: 21px;
}

.live-job-card > p {
  color: var(--sub);
  font-size: 12px;
}

.live-job-card dl {
  margin: auto 0 18px;
  border-top: 1px solid var(--line);
}

.live-job-card dl > div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}

.live-job-card dt {
  color: var(--sub);
  font-size: 10px;
  font-weight: 800;
}

.live-job-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.job-card-actions {
  display: grid;
  gap: 8px;
}

.job-card-actions a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  padding: 9px 12px;
}

.job-card-actions a.is-apply {
  border-color: var(--accent);
  background: var(--accent);
  color: #2e1d08;
}

.jobs-sync-note {
  margin-top: 24px;
  border-left: 3px solid var(--blue);
  background: #fff;
  padding: 16px 18px;
}

.jobs-sync-note strong {
  color: var(--blue-deep);
  font-size: 13px;
}

.jobs-sync-note p {
  margin: 4px 0 0;
  color: var(--sub);
  font-size: 11px;
}

.job-detail-hero {
  background:
    radial-gradient(circle at 84% 20%, rgba(71, 186, 224, .34), transparent 25%),
    linear-gradient(135deg, #061f3d, #0d6598);
  color: #fff;
  padding-block: 58px 68px;
}

.job-detail-hero h1 {
  max-width: 780px;
  margin: 12px 0 16px;
  font-size: clamp(38px, 10vw, 68px);
  font-weight: 900;
  letter-spacing: -.055em;
}

.job-detail-hero > .container > p:not(.section-kicker) {
  max-width: 620px;
  color: #dcecf6;
  font-size: 14px;
}

.job-detail-hero .button {
  margin-top: 12px;
}

.job-detail-layout {
  display: grid;
  gap: 24px;
}

.job-detail-main {
  display: grid;
  gap: 18px;
}

.job-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
}

.job-section h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 24px;
}

.job-section > p {
  color: var(--sub);
  font-size: 13px;
}

.job-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.job-facts > div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.job-facts dt {
  color: var(--sub);
  font-size: 11px;
  font-weight: 800;
}

.job-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
}

.job-facts dd strong {
  color: var(--blue);
  font-size: 16px;
}

.job-side-apply {
  align-self: start;
  border-radius: 20px;
  background: var(--blue-deep);
  box-shadow: var(--shadow);
  color: #fff;
  padding: 24px;
}

.job-side-apply > span {
  color: #8bc9ed;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.job-side-apply > strong {
  display: block;
  margin: 8px 0;
  font-size: 21px;
}

.job-side-apply > p {
  color: #c8dce9;
  font-size: 11px;
}

.job-side-apply > a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent);
  color: #2e1d08;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  padding: 10px;
}

.job-side-apply > a.job-tel {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: #fff;
}

@media (min-width: 768px) {
  .live-jobs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .job-detail-hero {
    padding-block: 86px 96px;
  }

  .job-detail-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 34px;
  }

  .job-side-apply {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 600px) {
  .live-jobs-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-facts > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* 2026 public finish: typography, urban hero, and layout rhythm */
.hero-area,
.section-kicker,
.job-copy > span,
.support-number,
.workstyle-label,
.final-cta-inner > p,
.hero-scroll,
.live-job-card .job-no,
.job-side-apply > span {
  font-family: var(--font-display);
}

.hero {
  min-height: 690px;
  align-items: center;
  background: var(--blue-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  z-index: -3;
}

.hero-photo {
  position: absolute;
  inset: -2%;
  background-position: center;
  background-size: cover;
  filter: saturate(.82) contrast(1.03);
  will-change: opacity, transform;
}

.hero-photo-rack {
  background-image: url("images/hero-photo-rack-dark.webp");
  animation: heroPhotoRack 16s ease-in-out infinite;
}

.hero-photo-aisle {
  background-image: url("images/hero-photo-aisle-bright.webp");
  opacity: 0;
  animation: heroPhotoAisle 16s ease-in-out infinite;
}

.hero-photo-label {
  position: absolute;
  right: 18px;
  bottom: 58px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-photo-label span {
  margin-right: 6px;
  color: #fff;
  font-weight: 700;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 18, 37, .97) 0%, rgba(3, 28, 52, .90) 58%, rgba(3, 28, 52, .40) 100%),
    linear-gradient(0deg, rgba(2, 19, 37, .82), transparent 62%);
}

.hero-content {
  z-index: 1;
  padding-block: 76px 134px;
}

.hero-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #86d6e7;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.hero-area > span {
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(39px, 10.2vw, 57px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.24;
  text-shadow: 0 8px 32px rgba(0, 0, 0, .22);
}

.hero h1 .hero-line {
  display: block;
  color: #d6eef3;
  opacity: 0;
  transform: translateY(26px);
  animation: heroLineIn .85s cubic-bezier(.2, .75, .25, 1) forwards;
}

.hero h1 .hero-line:first-child {
  color: #fff;
}

.hero-line-accent {
  animation-delay: .16s;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 24px;
  color: #eef7fb;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(18px);
  animation: heroLineIn .75s .32s cubic-bezier(.2, .75, .25, 1) forwards;
}

.condition-badges {
  flex-wrap: wrap;
  overflow: visible;
  margin: 0 0 26px;
  padding: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: heroLineIn .75s .46s cubic-bezier(.2, .75, .25, 1) forwards;
}

.condition-badge {
  border-color: rgba(204, 235, 244, .32);
  background: rgba(4, 38, 67, .44);
  font-size: 10px;
}

.hero-actions {
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroLineIn .75s .60s cubic-bezier(.2, .75, .25, 1) forwards;
}

.hero-phone > span {
  display: grid;
  gap: 1px;
}

.hero-phone small {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
}

.hero-note {
  color: #a8c3d2;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: rgba(3, 28, 52, .58);
  backdrop-filter: blur(8px);
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  gap: 20px;
  padding-inline: 20px;
  color: rgba(255, 255, 255, .76);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  white-space: nowrap;
  animation: heroTicker 25s linear infinite;
  will-change: transform;
}

.hero-ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.trust-bar {
  position: relative;
  z-index: 2;
  box-shadow: 0 -16px 46px rgba(1, 22, 41, .18);
}

.trust-stat strong {
  font-family: var(--font-display);
  letter-spacing: -.02em;
}

.job-scroller {
  display: grid;
  overflow: visible;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-right: 0;
  padding: 4px 0 18px;
  scroll-snap-type: none;
}

.job-card {
  width: 100%;
  min-width: 0;
  flex: none;
  scroll-snap-align: none;
}

.job-card:nth-child(even) {
  transform: translateY(0);
}

.company-intro-card {
  border-left: 5px solid var(--blue);
}

.company-intro-card > div span {
  font-family: var(--font-display);
  letter-spacing: .12em;
}

.company-portal-links {
  display: grid;
  gap: 12px;
}

.company-portal-links a {
  display: grid;
  min-height: 128px;
  align-content: center;
  gap: 4px;
  border: 1px solid #d4e1ea;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 247, 251, .94));
  box-shadow: 0 12px 30px rgba(7, 39, 75, .07);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.company-portal-links a:hover {
  box-shadow: 0 18px 36px rgba(7, 39, 75, .12);
  transform: translateY(-3px);
}

.company-portal-links span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.company-portal-links strong {
  color: var(--blue-deep);
  font-size: 18px;
}

.company-portal-links small {
  color: var(--sub);
  font-size: 11px;
}

.compliance-summary {
  display: grid;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(26, 95, 180, .08), transparent 55%),
    #fff;
  padding: 26px;
}

.compliance-summary h3 {
  margin: 14px 0 8px;
  color: var(--blue-deep);
  font-size: 24px;
}

.compliance-summary p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

.button-outline {
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
}

.history-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.history-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.history-list time {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
}

.history-list strong {
  color: var(--blue-deep);
}

.history-list p {
  margin: 5px 0 0;
  color: var(--sub);
}

.company-philosophy-copy p:not(.section-kicker) {
  margin: 0 0 15px;
  color: #4d6374;
  font-size: 13px;
  line-height: 2;
}

.company-philosophy-copy .company-philosophy-lead {
  margin-top: -12px;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
}

.company-history-lead {
  max-width: 54em;
  margin: -14px 0 0;
  color: var(--sub);
}

.mobile-fixed-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-fixed-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 600px) {
  .job-scroller {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 720px;
  }

  .hero-media {
    left: 43%;
  }

  .hero-media::before {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 22%;
    background: linear-gradient(90deg, var(--blue-deep), transparent);
    content: "";
    pointer-events: none;
  }

  .hero-photo {
    background-position: center 45%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 18, 37, 1) 0%, rgba(3, 28, 52, .98) 40%, rgba(3, 28, 52, .72) 56%, rgba(3, 28, 52, .08) 78%),
      linear-gradient(0deg, rgba(2, 19, 37, .48), transparent 60%);
  }

  .hero-content {
    padding-block: 92px 142px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(58px, 6vw, 78px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    grid-template-columns: 1.18fr .82fr;
  }

  .compliance-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 36px;
  }
}

@media (min-width: 1080px) {
  .job-scroller {
    grid-template-columns: repeat(4, 1fr);
  }

  .job-card:nth-child(even) {
    transform: translateY(20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .hero-line,
  .hero-lead,
  .condition-badges,
  .hero-actions,
  .hero-ticker-track {
    animation: none;
  }

  .hero-photo-aisle {
    display: none;
  }

  .hero-line,
  .hero-lead,
  .condition-badges,
  .hero-actions {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroPhotoRack {
  0%, 42% { opacity: 1; transform: scale(1.02) translate3d(0, 0, 0); }
  55%, 88% { opacity: 0; transform: scale(1.075) translate3d(-1.1%, -.5%, 0); }
  100% { opacity: 1; transform: scale(1.02) translate3d(0, 0, 0); }
}

@keyframes heroPhotoAisle {
  0%, 42% { opacity: 0; transform: scale(1.07) translate3d(1%, .5%, 0); }
  55%, 88% { opacity: 1; transform: scale(1.02) translate3d(0, 0, 0); }
  100% { opacity: 0; transform: scale(1.07) translate3d(1%, .5%, 0); }
}

@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Human editorial typography: restrained, readable, less template-like */
.section-kicker,
.hero-area,
.final-cta-inner > p,
.hero-scroll {
  font-weight: 600;
  letter-spacing: .12em;
}

.page-hero h1,
.detail-hero h1,
.detail-title-only h1,
.job-detail-hero h1,
.final-cta h2 {
  font-weight: 700;
  letter-spacing: -.02em;
}

.section h2,
.detail-section h2,
.jobs-list-hero h1 {
  letter-spacing: -.015em;
}

.button,
.header-apply,
.header-cta,
.condition-badge,
.text-link,
.menu-panel a,
.mobile-fixed-cta a {
  font-weight: 700;
}

/* Brand slider: a corporate face with the utility of a recruitment site */
.hero {
  display: block;
  min-height: 530px;
  background: #fff8ed;
}

.brand-slider,
.brand-slide {
  position: absolute;
  inset: 0;
}

.brand-slider {
  overflow: hidden;
}

.brand-slide {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease, visibility .9s;
}

.brand-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.brand-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 251, 244, .98) 0%, rgba(248, 252, 255, .95) 51%, rgba(248, 252, 255, .22) 80%),
    linear-gradient(0deg, rgba(5, 31, 57, .34), transparent 42%);
  content: "";
}

.brand-slide-photo {
  position: absolute;
  inset: -3% -2% -3% 36%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(.88) contrast(1.02);
  transform: scale(1.06);
  transition: transform 7s ease;
}

.brand-slide.is-active .brand-slide-photo {
  transform: scale(1.015);
}

.brand-slide-one .brand-slide-photo {
  background-image: url("images/hero-photo-rack-dark.webp");
}

.brand-slide-two .brand-slide-photo {
  background-image: url("images/hero-photo-aisle-bright.webp");
}

.brand-slide-three .brand-slide-photo {
  background-image: url("images/factory-wide.webp");
  background-position: 60% center;
}

.brand-shape {
  display: none;
}

.brand-shape-large {
  top: -12%;
  left: -8%;
  width: min(47vw, 610px);
  aspect-ratio: 1;
  border-radius: 58% 42% 49% 51% / 46% 64% 36% 54%;
  background: #16a6bc;
  animation: brandBlobLarge 12s ease-in-out infinite alternate;
}

.brand-shape-small {
  left: 31%;
  bottom: -16%;
  width: min(30vw, 360px);
  aspect-ratio: 1;
  border-radius: 41% 59% 63% 37% / 58% 43% 57% 42%;
  background: #f0a133;
  animation: brandBlobSmall 10s ease-in-out infinite alternate;
}

.brand-slide-one .brand-shape-large {
  background: #2ab2bd;
}

.brand-slide-one .brand-shape-small {
  background: #f5a13d;
}

.brand-slide-two .brand-shape-large {
  background: #78c8ba;
}

.brand-slide-two .brand-shape-small {
  background: #f0bf4a;
}

.brand-slide-three .brand-shape-large {
  background: #4c83c5;
}

.brand-slide-three .brand-shape-small {
  background: #6fc3a5;
}

.brand-slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: center;
  color: var(--blue-deep);
  padding-block: 56px 84px;
}

.brand-slide-content .hero-area {
  margin-bottom: 17px;
  color: var(--blue);
}

.brand-slide-content h1,
.brand-slide-content h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-family: var(--font-heading);
  font-size: clamp(39px, 10vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.24;
  text-shadow: none;
  opacity: 0;
  transform: translateY(24px);
}

.brand-slide-content h1 span,
.brand-slide-content h2 span {
  color: #0b718f;
}

.brand-slide-content .hero-lead,
.brand-slide-content .condition-badges,
.brand-slide-content .hero-actions {
  opacity: 0;
  transform: translateY(18px);
}

.brand-slide-content .hero-lead {
  max-width: 520px;
  margin-bottom: 19px;
  color: #344e62;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.brand-slide-content .condition-badges {
  margin-bottom: 22px;
}

.brand-slide-content .condition-badge {
  border-color: rgba(7, 39, 75, .18);
  background: rgba(255, 255, 255, .76);
  color: var(--blue-deep);
  backdrop-filter: blur(10px);
}

.brand-slide-content .hero-actions {
  grid-template-columns: repeat(2, minmax(0, 292px));
  width: min(100%, 596px);
  max-width: 596px;
}

.brand-slide-content .button-secondary {
  border-color: rgba(7, 39, 75, .28);
  background: rgba(255, 255, 255, .72);
  color: var(--blue-deep);
}

.brand-slide.is-active .brand-slide-content h1,
.brand-slide.is-active .brand-slide-content h2 {
  animation: brandCopyIn .8s .12s cubic-bezier(.2, .75, .25, 1) forwards;
}

.brand-slide.is-active .brand-slide-content .hero-lead {
  animation: brandCopyIn .7s .28s cubic-bezier(.2, .75, .25, 1) forwards;
}

.brand-slide.is-active .brand-slide-content .condition-badges {
  animation: brandCopyIn .7s .40s cubic-bezier(.2, .75, .25, 1) forwards;
}

.brand-slide.is-active .brand-slide-content .hero-actions {
  animation: brandCopyIn .7s .52s cubic-bezier(.2, .75, .25, 1) forwards;
}

.brand-slider-arrow {
  position: absolute;
  z-index: 5;
  top: 47%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 39, 75, .58);
  color: #fff;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 33px;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}

.brand-slider-arrow:hover,
.brand-slider-arrow:focus-visible {
  background: var(--blue-deep);
  transform: scale(1.06);
}

.brand-slider-prev {
  left: 12px;
}

.brand-slider-next {
  right: 12px;
}

.brand-slider-dots {
  position: absolute;
  z-index: 6;
  bottom: 72px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.brand-slider-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(7, 39, 75, .38);
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.brand-slider-dots button.is-active {
  width: 28px;
  border-color: var(--accent);
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 767px) {
  .brand-slide::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 240, .3) 0%, rgba(255, 251, 245, .8) 31%, rgba(248, 252, 255, .97) 50%, rgba(248, 252, 255, 1) 100%);
  }

  .brand-slide-photo {
    inset: -3% -3% 43%;
    background-position: center 38%;
  }

  .brand-slide-three .brand-slide-photo {
    background-position: 65% center;
  }

  .brand-slide-content {
    min-height: 530px;
    justify-content: flex-end;
    padding-block: 138px 50px;
  }

  .brand-slide-content h1,
  .brand-slide-content h2 {
    margin-bottom: 10px;
    font-size: clamp(37px, 10.4vw, 46px);
    line-height: 1.12;
  }

  .brand-slide-content .hero-area {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .brand-slide-content .hero-lead {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.55;
  }

  .brand-slide-content .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 310px;
    gap: 8px;
  }

  .brand-slide-content .hero-actions .button {
    min-height: 48px;
    font-size: 12px;
    padding-block: 9px;
  }

  .brand-slider-arrow {
    top: 27%;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .brand-slider-dots {
    bottom: 61px;
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 720px;
  }

  .brand-slide-content {
    min-height: 720px;
    padding-block: 88px 130px;
  }

  .brand-slide-content h1,
  .brand-slide-content h2 {
    font-size: clamp(58px, 6vw, 78px);
  }

  .brand-slide-content .hero-lead {
    font-size: 17px;
  }

  .brand-slider-prev {
    left: 24px;
  }

  .brand-slider-next {
    right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-slide,
  .brand-slide-photo,
  .brand-slider-arrow,
  .brand-slider-dots button {
    transition: none;
  }

  .brand-shape,
  .brand-slide.is-active .brand-slide-content h1,
  .brand-slide.is-active .brand-slide-content h2,
  .brand-slide.is-active .brand-slide-content .hero-lead,
  .brand-slide.is-active .brand-slide-content .condition-badges,
  .brand-slide.is-active .brand-slide-content .hero-actions {
    animation: none;
  }

  .brand-slide-content h1,
  .brand-slide-content h2,
  .brand-slide-content .hero-lead,
  .brand-slide-content .condition-badges,
  .brand-slide-content .hero-actions {
    opacity: 1;
    transform: none;
  }
}

@keyframes brandCopyIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandBlobLarge {
  from { transform: translate3d(-2%, -1%, 0) rotate(-4deg) scale(.98); }
  to { transform: translate3d(5%, 3%, 0) rotate(7deg) scale(1.07); }
}

@keyframes brandBlobSmall {
  from { transform: translate3d(0, 2%, 0) rotate(2deg) scale(1); }
  to { transform: translate3d(-7%, -4%, 0) rotate(-9deg) scale(1.08); }
}

.desktop-nav {
  display: none;
}

.brand-slide-content::before {
  position: absolute;
  top: 26%;
  left: -78px;
  z-index: -1;
  width: 250px;
  height: 12px;
  border-radius: 999px;
  background: rgba(31, 173, 201, .20);
  box-shadow:
    0 24px 0 rgba(23, 136, 197, .16),
    0 48px 0 rgba(79, 190, 150, .16);
  content: "";
  transform: rotate(-9deg);
}

.quick-job-nav {
  position: relative;
  z-index: 7;
  background: var(--blue-deep);
  color: #fff;
}

.quick-job-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.quick-job-inner > p {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.quick-job-inner > p span,
.quick-job-inner > p strong {
  display: block;
}

.quick-job-inner > p span {
  color: #7fc4df;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .16em;
}

.quick-job-inner > p strong {
  font-size: 16px;
}

.quick-job-inner > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, padding-left .2s ease;
}

.quick-job-inner > a::after {
  margin-left: auto;
  color: var(--accent);
  content: "→";
}

.quick-job-inner > a span {
  color: #7fc4df;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .1em;
}

.quick-job-inner > a:hover,
.quick-job-inner > a:focus-visible {
  background: rgba(255, 255, 255, .07);
  padding-left: 10px;
}

@media (min-width: 768px) {
  .quick-job-inner {
    grid-template-columns: 1.15fr repeat(3, 1fr);
  }

  .quick-job-inner > p,
  .quick-job-inner > a {
    min-height: 82px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 0;
    padding-inline: 18px;
  }

  .quick-job-inner > p {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1040px) {
  .desktop-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 4px;
    margin-right: 8px;
  }

  .desktop-nav a {
    position: relative;
    display: flex;
    min-height: 64px;
    align-items: center;
    color: #2c4051;
    font-size: 11px;
    font-weight: 700;
    padding-inline: 12px;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 12px;
    bottom: 8px;
    left: 12px;
    height: 2px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    transform: scaleX(1);
  }

  .menu-button {
    display: none;
  }
}

/* 資料請求・自社採用 */
.request-hero,
.company-recruit-hero {
  background:
    linear-gradient(120deg, rgba(5, 42, 78, .97), rgba(13, 91, 147, .91)),
    url("images/factory-wide.webp") center / cover;
}

.request-options {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.request-options article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 22px;
}

.request-options article > span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.request-options h3 {
  margin: 7px 0 8px;
  color: var(--blue-deep);
  font-size: 19px;
}

.request-options p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.request-case-studies {
  margin-top: 58px;
  scroll-margin-top: 96px;
}

.request-case-studies > h2 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: clamp(28px, 8vw, 44px);
}

.request-case-lead {
  max-width: 58em;
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

.request-case-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.request-case-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid #d9e5ee;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(67, 197, 177, .16), transparent 31%),
    #fff;
  padding: 24px;
}

.request-case-number {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.request-case-industry {
  margin: 0 0 5px;
  color: #168493;
  font-size: 12px;
  font-weight: 800;
}

.request-case-grid h3 {
  margin: 0 0 17px;
  color: var(--blue-deep);
  font-size: 21px;
  line-height: 1.5;
}

.request-case-grid dl {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.request-case-grid dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  border-top: 1px solid #e3ebf1;
  padding-top: 8px;
}

.request-case-grid dt,
.request-case-grid dd {
  margin: 0;
  font-size: 12px;
}

.request-case-grid dt {
  color: #6d7f8e;
  font-weight: 700;
}

.request-case-grid dd {
  color: var(--blue-deep);
  font-weight: 800;
}

.request-case-grid article > p:last-child {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.request-contact-card {
  display: grid;
  gap: 26px;
  margin-top: 34px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 94% 8%, rgba(67, 197, 177, .27), transparent 29%),
    var(--blue-deep);
  color: #fff;
  padding: 28px;
}

.request-contact-card p {
  margin-bottom: 8px;
  color: #99c9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.request-contact-card h2 {
  margin-bottom: 11px;
  color: #fff;
  font-size: clamp(28px, 8vw, 44px);
}

.request-contact-card span {
  color: #c8d9e8;
  font-size: 11px;
}

.request-contact-actions {
  display: grid;
  gap: 12px;
}

.request-phone {
  display: grid;
  min-height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 12px;
  color: #fff;
  padding: 8px 14px;
}

.request-phone small {
  font-size: 9px;
}

.request-phone strong {
  font-size: 20px;
  letter-spacing: .04em;
}

.internal-recruit-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  border-left: 5px solid var(--accent);
  background: #eef5fb;
  padding: 16px;
}

.internal-recruit-note strong {
  flex: 0 0 auto;
  color: var(--blue);
}

.internal-recruit-note p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.internal-job-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.internal-job-heading {
  border-bottom: 1px solid var(--line);
  padding: 28px 22px;
}

.internal-job-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 8vw, 48px);
}

.internal-job-heading > p:not(.section-kicker) {
  max-width: 46em;
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

.internal-job-table {
  margin: 0;
}

.internal-job-table > div {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 17px 22px;
}

.internal-job-table dt {
  color: var(--sub);
  font-size: 11px;
  font-weight: 900;
}

.internal-job-table dd {
  margin: 0;
  font-size: 13px;
}

.internal-job-actions {
  display: grid;
  gap: 13px;
  background: var(--soft);
  padding: 24px 22px;
}

.internal-job-actions p {
  margin: 0;
  color: var(--sub);
  font-size: 11px;
}

.internal-job-actions .request-phone {
  border-color: #b8cee4;
  color: var(--blue-deep);
}

.company-career-band {
  background: #eaf3f9;
  padding-block: 48px;
}

.company-career-inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

.company-career-inner h2 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: clamp(27px, 7vw, 42px);
}

.company-career-inner p:not(.section-kicker) {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.audience-gateway {
  position: relative;
  overflow: hidden;
  background: #edf5f8;
  padding-block: 68px;
}

.audience-gateway::before {
  position: absolute;
  top: -190px;
  right: -130px;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 180, 186, .28), rgba(31, 136, 205, .12) 48%, transparent 70%);
  content: "";
  animation: audienceColorDrift 11s ease-in-out infinite alternate;
}

.audience-gateway > .container {
  position: relative;
}

.audience-gateway h2 {
  margin-bottom: 26px;
  color: var(--blue-deep);
  font-size: clamp(30px, 8vw, 48px);
}

.audience-gateway-grid {
  display: grid;
  gap: 12px;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: 190px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 18px;
  padding: 24px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.audience-card::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  content: "→";
  font-size: 22px;
}

.audience-card:hover {
  box-shadow: 0 18px 38px rgba(7, 39, 75, .18);
  transform: translateY(-4px);
}

.audience-card > span {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 900;
}

.audience-card > strong {
  font-size: clamp(24px, 7vw, 38px);
  line-height: 1.32;
}

.audience-card > small {
  margin-top: 10px;
  font-size: 10px;
}

.audience-card-job {
  background:
    radial-gradient(circle at 90% 10%, rgba(77, 205, 182, .32), transparent 30%),
    linear-gradient(145deg, #073563, #0c6795);
  color: #fff;
}

.audience-card-company,
.audience-card-career {
  border: 1px solid #c9dbe6;
  background: rgba(255, 255, 255, .91);
  color: var(--blue-deep);
}

.audience-card-company {
  border-top: 5px solid #1f9eaa;
}

.audience-card-career {
  border-top: 5px solid var(--accent);
}

@keyframes audienceColorDrift {
  from { transform: translate3d(-5%, -3%, 0) scale(.94); }
  to { transform: translate3d(7%, 9%, 0) scale(1.08); }
}

@media (min-width: 768px) {
  .request-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .request-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-case-grid article {
    padding: 30px;
  }

  .request-contact-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    align-items: center;
    padding: 42px;
  }

  .internal-job-heading,
  .internal-job-table > div,
  .internal-job-actions {
    padding-inline: 38px;
  }

  .internal-job-table > div {
    grid-template-columns: 150px 1fr;
    align-items: center;
  }

  .internal-job-actions {
    grid-template-columns: minmax(0, 1fr) minmax(240px, auto) minmax(220px, auto);
    align-items: center;
  }

  .company-career-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .audience-gateway-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  }

  .audience-card-job {
    grid-row: span 2;
    min-height: 394px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-gateway::before {
    animation: none;
  }
}

/* Verified case studies */
.request-case-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.request-case-grid .request-case-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #062848;
  box-shadow: 0 22px 50px rgba(5, 31, 61, .16);
  color: #fff;
  padding: 0;
}

.request-case-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 53, .98) 0%, rgba(4, 36, 67, .88) 48%, rgba(4, 36, 67, .45) 100%),
    linear-gradient(0deg, rgba(3, 22, 41, .7), transparent 55%);
  content: "";
}

.request-case-card.request-case-laundry::after {
  background:
    linear-gradient(270deg, rgba(9, 43, 67, .98) 0%, rgba(11, 58, 87, .9) 50%, rgba(10, 55, 82, .48) 100%),
    linear-gradient(0deg, rgba(3, 22, 41, .66), transparent 55%);
}

.request-case-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.request-case-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(64%, 700px);
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.request-case-laundry .request-case-content {
  margin-left: auto;
}

.request-case-card .request-case-number {
  color: #9ed1f5;
}

.request-case-card .request-case-industry {
  color: #8fe0d5;
}

.request-case-growth {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 14px;
  color: #fff;
  font-family: var(--font-display);
}

.request-case-growth span {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
}

.request-case-growth i {
  color: #99c9e9;
  font-size: 24px;
  font-style: normal;
}

.request-case-growth strong {
  color: #fff;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
}

.request-case-card .request-case-content h3 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.4;
}

.request-case-card .request-case-content dl {
  margin-bottom: 20px;
}

.request-case-card .request-case-content dl div {
  grid-template-columns: 92px 1fr;
  border-color: rgba(255, 255, 255, .22);
}

.request-case-card .request-case-content dt {
  color: #a9c7dc;
}

.request-case-card .request-case-content dd {
  color: #fff;
}

.request-case-card .request-case-content > p:last-child {
  margin: 0;
  color: #d5e4ef;
  font-size: 13px;
  line-height: 1.9;
}

/* Keep the complete helmet and head inside the Freepen sprite viewport. */
.support-freepen {
  background-position: 93% 60%;
}

@media (max-width: 767px) {
  .request-case-grid .request-case-card,
  .request-case-content {
    min-height: 620px;
  }

  .request-case-content {
    width: 100%;
    justify-content: flex-end;
    padding: 26px 22px 30px;
  }

  .request-case-card::after,
  .request-case-card.request-case-laundry::after {
    background:
      linear-gradient(0deg, rgba(4, 28, 53, .99) 0%, rgba(4, 36, 67, .92) 62%, rgba(4, 36, 67, .38) 100%);
  }

  .request-case-background {
    object-position: 62% center;
  }

  .request-case-laundry .request-case-background {
    object-position: 32% center;
  }

  .request-case-card .request-case-content dl div {
    grid-template-columns: 78px 1fr;
  }
}

/* Hierarchical global navigation */
.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-utility-bar,
.site-search-form-desktop {
  display: none;
}

.mobile-menu-shell {
  width: min(100%, 720px);
  margin-inline: auto;
}

.menu-panel .mobile-primary-nav,
.menu-panel .mobile-utility-nav {
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  animation: none;
}

.menu-panel .mobile-primary-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: visible;
  background: rgba(255, 255, 255, .14);
}

.menu-panel .mobile-primary-nav > a {
  min-height: 54px;
  border: 0;
  background: rgba(7, 39, 75, .94);
  font-size: 12px;
  padding: 8px 13px;
}

.mobile-menu-accordion {
  position: relative;
  border: 0;
  background: rgba(7, 39, 75, .94);
}

.mobile-menu-accordion > button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 13px;
  text-align: left;
}

.mobile-menu-accordion > button span {
  color: #83b6df;
  font-size: 23px;
  font-weight: 500;
}

.mobile-submenu {
  display: grid;
  width: calc(200% + 1px);
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, .08);
  padding: 1px;
  transform: translateX(calc(-50% - .5px));
}

.mobile-submenu[hidden] {
  display: none;
}

.menu-panel .mobile-submenu a {
  min-height: 48px;
  border: 0;
  background: rgba(7, 39, 75, .7);
  font-size: 11px;
  padding: 10px 12px;
}

.mobile-menu-tools {
  margin-top: 14px;
}

.site-search-form {
  position: relative;
  align-items: stretch;
}

.site-search-form label {
  display: block;
  flex: 1 1 auto;
}

.site-search-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd9e4;
  border-radius: 10px 0 0 10px;
  background: #fff;
  color: var(--blue-deep);
  font: inherit;
  font-size: 12px;
  padding: 9px 12px;
}

.site-search-form > button {
  min-width: 54px;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  padding-inline: 10px;
}

.site-search-form-mobile {
  display: flex;
}

.site-search-results {
  position: absolute;
  z-index: 140;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid #c8d8e4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(5, 31, 61, .18);
}

.site-search-results[hidden] {
  display: none;
}

.menu-panel .site-search-results a,
.site-search-results a {
  min-height: 42px;
  border-bottom: 1px solid #e2ebf1;
  background: #fff;
  color: var(--blue-deep);
  font-size: 11px;
  padding: 10px 12px;
}

.site-search-results p {
  margin: 0;
  color: var(--sub);
  font-size: 11px;
  padding: 13px;
}

.menu-panel .mobile-utility-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 14px;
  background: rgba(255, 255, 255, .1);
}

.menu-panel .mobile-utility-nav a,
.menu-panel .mobile-utility-nav strong {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 0;
  background: rgba(7, 39, 75, .84);
  color: #c7dded;
  font-size: 10px;
  font-weight: 800;
}

.menu-panel .mobile-utility-nav strong {
  color: #fff;
}

.mobile-menu-close {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 20px;
}

.mobile-language-switch {
  display: flex;
  min-height: 34px;
  align-items: center;
  margin-left: auto;
  border: 1px solid #cedce6;
  border-radius: 999px;
  background: #fff;
  padding: 2px;
}

.mobile-language-switch a,
.mobile-language-switch strong {
  display: grid;
  min-width: 31px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  color: #536b7d;
  font-size: 9px;
  font-weight: 900;
}

.mobile-language-switch strong {
  background: var(--blue-deep);
  color: #fff;
}

/* Keep the beginner entry compact on the portal-style homepage */
.reassurance-section {
  padding-block: 48px;
}

.reassurance-section .support-layout {
  align-items: center;
}

.reassurance-section .support-intro {
  min-height: 148px;
  padding: 0 145px 0 0;
}

.reassurance-section .support-intro h2 {
  max-width: 570px;
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 1.3;
}

.reassurance-section .support-intro > p:not(.section-kicker) {
  max-width: 580px;
}

.reassurance-section .support-freepen {
  right: 6px;
  width: 112px;
}

.reassurance-section .support-freepen::before {
  left: -82px;
  width: 92px;
  min-height: 52px;
  font-size: 13px;
}

.reassurance-section .support-portal-card {
  padding: 22px;
}

@media (max-width: 767px) {
  .reassurance-section .support-intro {
    min-height: 0;
    padding: 0 0 132px;
  }
}

@media (min-width: 1040px) {
  .mobile-language-switch {
    display: none;
  }

  .site-utility-bar {
    display: block;
    border-bottom: 1px solid #e4ebf0;
    background: #f6f8fa;
  }

  .site-utility-inner {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
  }

  .site-utility-inner nav,
  .language-switch {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .site-utility-inner a,
  .site-utility-inner strong {
    color: #5e7180;
    font-size: 9px;
    font-weight: 800;
  }

  .language-switch {
    gap: 0;
    border-left: 1px solid #d7e0e7;
  }

  .language-switch a,
  .language-switch strong {
    display: grid;
    min-width: 34px;
    min-height: 30px;
    place-items: center;
  }

  .language-switch strong {
    background: var(--blue-deep);
    color: #fff;
  }

  .site-header .header-inner {
    width: min(calc(100% - 36px), 1380px);
    min-height: 72px;
    gap: 8px;
  }

  .site-header .brand img,
  .site-header .logo img {
    width: 136px;
  }

  .site-primary-nav {
    align-items: stretch;
    align-self: stretch;
    gap: 0;
    margin-right: 4px;
  }

  .site-primary-nav > a,
  .site-primary-nav > details > summary {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    color: #263d4f;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    list-style: none;
    padding-inline: 9px;
    white-space: nowrap;
  }

  .site-primary-nav > details > summary::-webkit-details-marker {
    display: none;
  }

  .site-primary-nav > a::after,
  .site-primary-nav > details > summary::after {
    position: absolute;
    right: 9px;
    bottom: 8px;
    left: 9px;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
  }

  .site-primary-nav > a:hover::after,
  .site-primary-nav > a:focus-visible::after,
  .site-primary-nav > details[open] > summary::after,
  .site-primary-nav > details > summary:focus-visible::after {
    transform: scaleX(1);
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-menu {
    position: absolute;
    z-index: 125;
    top: calc(100% - 2px);
    left: 50%;
    display: grid;
    width: 440px;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid #d6e1e9;
    border-radius: 0 0 14px 14px;
    background: #d6e1e9;
    box-shadow: 0 22px 48px rgba(6, 31, 58, .17);
    padding: 1px;
    transform: translateX(-28%);
  }

  .site-primary-nav .nav-dropdown-menu a {
    min-height: 52px;
    align-items: center;
    background: #fff;
    color: var(--blue-deep);
    font-size: 11px;
    padding: 12px 16px;
  }

  .site-primary-nav .nav-dropdown-menu a::after {
    display: none;
  }

  .site-primary-nav .nav-dropdown-index {
    grid-column: 1 / -1;
    background: #edf5fa;
    font-weight: 900;
  }

  .site-search-form-desktop {
    display: flex;
    width: 142px;
    flex: 0 0 142px;
  }

  .site-search-form-desktop input {
    min-height: 38px;
    border-radius: 8px 0 0 8px;
    font-size: 10px;
  }

  .site-search-form-desktop > button {
    min-width: 42px;
    border-radius: 0 8px 8px 0;
    font-size: 0;
  }

  .site-search-form-desktop > button::before {
    content: "⌕";
    font-size: 18px;
  }

  .site-header .header-apply {
    min-width: 126px;
    font-size: 10px;
    padding-inline: 11px;
  }
}

/* 404 */
.not-found-page {
  min-height: 100vh;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 180, 186, .18), transparent 26%),
    linear-gradient(145deg, #edf6ff, #fff 62%);
}

.not-found-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding-block: 48px;
}

.not-found-card {
  max-width: 720px;
  border: 1px solid #cbddea;
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  padding-block: clamp(36px, 8vw, 72px);
  text-align: center;
}

.not-found-logo {
  display: inline-flex;
  margin-bottom: 36px;
}

.not-found-logo img {
  width: 190px;
  height: auto;
}

.not-found-card h1 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: clamp(30px, 8vw, 54px);
}

.not-found-card > p:not(.section-kicker) {
  margin-bottom: 28px;
  color: var(--sub);
  font-size: 13px;
}

.not-found-actions {
  display: grid;
  gap: 10px;
  width: min(100%, 430px);
  margin-inline: auto;
}

@media (min-width: 600px) {
  .not-found-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* 2026 brand polish: 明るさ・相談導線・下層モーション */
.top-contact-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(90deg, #062a50 0%, #0b4f7d 54%, #087d87 100%);
  color: #fff;
}

.top-contact-inner {
  display: flex;
  min-height: 38px;
  align-items: stretch;
  justify-content: flex-end;
}

.top-contact-inner > p {
  display: none;
  margin: 0 auto 0 0;
  align-items: center;
  gap: 12px;
  font-size: 10px;
}

.top-contact-inner > p strong {
  letter-spacing: .04em;
}

.top-contact-inner > p span {
  color: #b9d8eb;
}

.top-contact-phone,
.top-contact-line {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  font-size: 10px;
  font-weight: 700;
  padding-inline: 12px;
  transition: background .2s ease;
}

.top-contact-phone:hover,
.top-contact-phone:focus-visible,
.top-contact-line:hover,
.top-contact-line:focus-visible {
  background: rgba(255, 255, 255, .12);
}

.top-contact-phone strong {
  font-size: 13px;
  letter-spacing: .04em;
}

.top-contact-line {
  background: #278a64;
}

.top-contact-line > span {
  display: grid;
  min-width: 30px;
  min-height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #19764f;
  font-size: 9px;
  font-weight: 900;
}

.top-contact-line small {
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 8px;
  padding: 1px 5px;
}

.top-contact-line.is-pending {
  background: #477969;
}

[data-line-contact][hidden] {
  display: none;
}

.hero-area {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-ticker-track {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: .11em;
}

.fit-section,
.flow-section,
.company-section,
.case-study-section,
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.fit-section::before,
.flow-section::before,
.company-section::before {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.fit-section::before {
  top: 8%;
  right: -120px;
  width: 270px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(64, 190, 186, .13), transparent 68%);
  animation: sectionColorFloat 12s ease-in-out infinite alternate;
}

.flow-section::before {
  top: -110px;
  left: -120px;
  width: 310px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(26, 95, 180, .14), transparent 69%);
  animation: sectionColorFloat 14s ease-in-out infinite alternate-reverse;
}

.company-section::before {
  right: -160px;
  bottom: 4%;
  width: 360px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(31, 158, 170, .12), transparent 68%);
  animation: sectionColorFloat 16s ease-in-out infinite alternate;
}

.support-freepen {
  animation: freepenFloat 3.8s ease-in-out infinite;
}

.support-freepen::before {
  animation: freepenBubble 3.8s .25s ease-in-out infinite;
}

.trust-transition {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -10px 0 42px;
  border: 1px solid #d6e4ee;
  border-radius: 999px;
  background: rgba(244, 249, 252, .9);
  color: #607485;
  font-size: 9px;
  font-weight: 800;
  padding: 10px 12px;
}

.trust-transition i {
  width: 16px;
  height: 1px;
  background: #a9bdcc;
}

.trust-transition strong {
  color: var(--blue);
}

.case-study-section {
  background:
    linear-gradient(135deg, rgba(234, 246, 255, .94), rgba(242, 251, 247, .98));
}

.case-study-section::before {
  position: absolute;
  top: -120px;
  right: -90px;
  z-index: -1;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 42% 58% 55% 45% / 60% 42% 58% 40%;
  background: rgba(38, 172, 181, .12);
  content: "";
  animation: caseStudyShape 13s ease-in-out infinite alternate;
}

.case-study-intro {
  max-width: 58em;
  margin: 12px 0 0;
  color: var(--sub);
  font-size: 12px;
}

.case-study-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.case-study-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 95, 180, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 42px rgba(7, 39, 75, .07);
  padding: 24px;
}

.case-study-card::after {
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(38, 172, 181, .08);
  content: "";
}

.case-study-card > span {
  display: block;
  margin-bottom: 15px;
  color: #168493;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.case-study-card h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 22px;
}

.case-study-card .case-study-role {
  margin: 6px 0 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.case-study-card > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.case-study-actions {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.case-study-actions .button {
  width: 100%;
}

.case-study-actions .text-link {
  justify-self: center;
}

.case-study-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid rgba(26, 95, 180, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(7, 39, 75, .08);
  padding: 26px;
}

.case-study-panel span,
.case-study-panel strong {
  display: block;
}

.case-study-panel span {
  margin-bottom: 7px;
  color: #168493;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.case-study-panel strong {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: clamp(22px, 6vw, 34px);
  line-height: 1.45;
}

.case-study-panel p {
  max-width: 48em;
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.case-study-panel .button {
  width: 100%;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  top: -180px;
  left: -130px;
  width: 390px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, .025),
    0 0 0 108px rgba(255, 255, 255, .018);
  animation: finalOrbit 15s ease-in-out infinite alternate;
}

.final-cta::after {
  right: -120px;
  bottom: -190px;
  width: 360px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(75, 205, 180, .30), transparent 68%);
  animation: sectionColorFloat 12s ease-in-out infinite alternate-reverse;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity .68s cubic-bezier(.2, .75, .25, 1) var(--motion-delay, 0ms),
    transform .68s cubic-bezier(.2, .75, .25, 1) var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal.motion-left {
  transform: translate3d(-26px, 16px, 0);
}

.motion-delay-0 {
  --motion-delay: 0ms;
}

.motion-delay-1 {
  --motion-delay: 70ms;
}

.motion-delay-2 {
  --motion-delay: 140ms;
}

.motion-delay-3 {
  --motion-delay: 210ms;
}

.motion-reveal.is-visible,
.motion-reveal.motion-left.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@keyframes sectionColorFloat {
  from { transform: translate3d(-4%, -3%, 0) scale(.95); }
  to { transform: translate3d(7%, 8%, 0) scale(1.08); }
}

@keyframes caseStudyShape {
  from { transform: translate3d(-5%, -3%, 0) rotate(-5deg) scale(.94); }
  to { transform: translate3d(8%, 7%, 0) rotate(7deg) scale(1.08); }
}

@keyframes finalOrbit {
  from { transform: translate3d(-4%, -3%, 0) rotate(-4deg); }
  to { transform: translate3d(8%, 6%, 0) rotate(8deg); }
}

@keyframes freepenFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(1deg); }
}

@keyframes freepenBubble {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-3px, -3px, 0); }
}

@media (min-width: 768px) {
  .top-contact-inner > p {
    display: flex;
  }

  .top-contact-phone,
  .top-contact-line {
    padding-inline: 16px;
  }

  .trust-transition {
    width: max-content;
    gap: 14px;
    margin-inline: auto;
    font-size: 11px;
    padding-inline: 22px;
  }

  .trust-transition i {
    width: 34px;
  }

  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-card {
    padding: 30px;
  }

  .case-study-actions {
    grid-template-columns: auto 1fr;
    justify-content: start;
  }

  .case-study-actions .button {
    width: auto;
  }

  .case-study-actions .text-link {
    justify-self: start;
  }

  .case-study-panel {
    grid-template-columns: minmax(0, 1fr) minmax(250px, auto);
    padding: 40px;
  }

  .case-study-panel .button {
    width: auto;
  }
}

@media (max-width: 520px) {
  .top-contact-inner {
    width: 100%;
  }

  .top-contact-phone,
  .top-contact-line {
    flex: 1 1 50%;
    padding-inline: 8px;
  }

  .top-contact-phone > span {
    display: none;
  }

  .top-contact-line strong {
    font-size: 9px;
  }

  .site-header .header-apply {
    display: none;
  }

  .header-inner {
    min-height: 62px;
  }

  .brand img,
  .logo img {
    width: 158px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fit-section::before,
  .flow-section::before,
  .company-section::before,
  .case-study-section::before,
  .final-cta::before,
  .final-cta::after,
  .support-freepen,
  .support-freepen::before {
    animation: none;
  }

  .motion-reveal,
  .motion-reveal.motion-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 2026 brand hero: logo-derived colour, editorial type, abstract logistics motion */
:root {
  --free-brand-navy: #0d2440;
  --free-brand-blue: #0090d0;
  --free-brand-teal: #00a08f;
  --free-brand-cream: #fffdf8;
  --free-brand-amber: #f59e0b;
  --free-brand-slate: #5d6c84;
  --free-brand-line: #d9e1ea;
  --free-brand-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}

.free-hero {
  position: relative;
  display: flex;
  min-height: clamp(680px, calc(100svh - 104px), 820px);
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--free-brand-cream);
  color: var(--free-brand-navy);
}

.free-hero-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .9;
  pointer-events: none;
}

.free-hero-decoration {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.free-hero-ring {
  position: absolute;
  display: block;
  border: 1px solid rgba(13, 36, 64, .09);
  border-radius: 50%;
}

.free-hero-ring-large {
  top: -138px;
  right: -105px;
  width: 390px;
  height: 390px;
}

.free-hero-ring-small {
  top: -82px;
  right: -48px;
  width: 276px;
  height: 276px;
  border-color: rgba(0, 144, 208, .12);
}

.free-hero-particle {
  position: absolute;
  left: -18px;
  display: block;
  border-radius: 1px;
  opacity: .38;
  animation: freeHeroParticle 38s linear infinite;
}

.free-hero-particle-blue {
  top: 18%;
  width: 8px;
  height: 8px;
  background: var(--free-brand-blue);
}

.free-hero-particle-green {
  top: 48%;
  width: 6px;
  height: 6px;
  background: var(--free-brand-teal);
  animation-duration: 54s;
  animation-delay: -12s;
}

.free-hero-particle-amber {
  top: 70%;
  width: 9px;
  height: 9px;
  background: var(--free-brand-amber);
  animation-duration: 46s;
  animation-delay: -25s;
}

.free-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 40px), 1180px);
  min-height: 0;
  flex: 1;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  margin-inline: auto;
  padding-block: clamp(54px, 7vh, 82px);
}

.free-hero-copy {
  min-width: 0;
}

.free-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(17px, 2.4vh, 28px);
  color: var(--free-brand-teal);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.5;
  animation: freeHeroRise .72s .05s both;
}

.free-hero-eyebrow i {
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.free-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--free-brand-navy);
  font-family: var(--free-brand-serif);
  font-size: clamp(70px, 7.65vw, 114px);
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.08;
  text-shadow: none;
  text-wrap: nowrap;
  animation: freeHeroTitle .92s .14s cubic-bezier(.2, .75, .25, 1) both;
}

.free-hero h1 > span {
  color: inherit;
}

.free-hero h1 .free-hero-period {
  color: var(--free-brand-blue);
}

.free-hero-rule {
  width: min(100%, 720px);
  height: 3px;
  margin-block: clamp(22px, 3.2vh, 34px) clamp(19px, 2.8vh, 29px);
  background: linear-gradient(90deg, var(--free-brand-blue), var(--free-brand-teal));
  transform-origin: left;
  animation: freeHeroRule 1.15s .7s cubic-bezier(.22, .7, .2, 1) both;
}

.free-hero .hero-lead {
  max-width: 610px;
  margin-bottom: 7px;
  color: #10294a;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.75;
  animation: freeHeroRise .78s .88s both;
}

.free-hero-note {
  max-width: 37em;
  margin: 0;
  color: var(--free-brand-slate);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.9;
  animation: freeHeroRise .78s .98s both;
}

.free-hero-entry {
  position: relative;
  border: 1px solid var(--free-brand-line);
  border-top: 3px solid var(--free-brand-blue);
  border-radius: 2px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 18px 54px rgba(13, 36, 64, .1);
  padding: clamp(23px, 2.6vw, 34px);
  backdrop-filter: blur(10px);
  animation: freeHeroRise .84s .62s both;
}

.free-hero-entry::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 32%;
  height: 3px;
  background: var(--free-brand-teal);
  content: "";
}

.free-hero-entry-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--free-brand-slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

.free-hero-entry-label i {
  width: 17px;
  height: 2px;
  background: var(--free-brand-amber);
}

.free-hero-entry h2 {
  margin-bottom: 12px;
  color: var(--free-brand-navy);
  font-family: var(--font-heading);
  font-size: clamp(23px, 2.15vw, 31px);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.45;
}

.free-hero-entry-copy {
  margin-bottom: 17px;
  color: var(--free-brand-slate);
  font-size: 13px;
  line-height: 1.75;
}

.free-hero-role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.free-hero-role-list li {
  border: 1px solid #dce4ec;
  background: #f8fafb;
  color: #344e62;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 9px;
}

.free-hero-primary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  background: var(--free-brand-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .045em;
  padding: 13px 20px;
  transition: background .2s ease, transform .2s ease;
}

.free-hero-primary i {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.free-hero-primary:hover,
.free-hero-primary:focus-visible {
  background: #07567a;
  color: #fff;
  transform: translateY(-1px);
}

.free-hero-sub-actions {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8px;
  margin-top: 8px;
}

.free-hero-sub-actions a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cad4df;
  color: var(--free-brand-navy);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.free-hero-sub-actions a:hover,
.free-hero-sub-actions a:focus-visible {
  border-color: var(--free-brand-blue);
  background: #f5fbfe;
  color: #006fa4;
}

.free-hero-trust {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  background: #10294a;
  color: #fff;
}

.free-hero-trust .container {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 18px 28px;
  justify-content: space-between;
}

.free-hero-trust p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .045em;
}

.free-hero-trust p i {
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--free-brand-amber);
}

.free-hero-trust span {
  flex: 0 0 auto;
  color: #a9bfd8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

@media (max-width: 899px) {
  .free-hero {
    min-height: auto;
  }

  .free-hero-inner {
    width: min(calc(100% - 32px), 680px);
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 44px 28px;
  }

  .free-hero h1 {
    font-size: clamp(53px, 14.8vw, 78px);
    line-height: 1.08;
  }

  .free-hero-rule {
    margin-block: 19px 17px;
  }

  .free-hero .hero-lead {
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.65;
  }

  .free-hero-note {
    font-size: 12px;
    line-height: 1.75;
  }

  .free-hero-entry {
    padding: 19px 18px 17px;
  }

  .free-hero-entry h2 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.45;
  }

  .free-hero-entry-copy,
  .free-hero-role-list {
    display: none;
  }

  .free-hero-trust .container {
    min-height: 56px;
  }

  .free-hero-trust span {
    display: none;
  }
}

@media (max-width: 520px) {
  .free-hero-inner {
    gap: 21px;
    padding-block: 34px 22px;
  }

  .free-hero-eyebrow {
    gap: 9px;
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: .11em;
  }

  .free-hero-eyebrow i {
    width: 24px;
  }

  .free-hero h1 {
    font-size: clamp(48px, 14.1vw, 66px);
  }

  .free-hero-rule {
    height: 2px;
    margin-block: 16px 14px;
  }

  .free-hero .hero-lead {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .free-hero-entry-label {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .free-hero-entry h2 {
    margin-bottom: 11px;
    font-size: 18px;
  }

  .free-hero-primary {
    min-height: 52px;
    font-size: 14px;
    padding-inline: 16px;
  }

  .free-hero-sub-actions {
    grid-template-columns: .75fr 1.25fr;
  }

  .free-hero-sub-actions a {
    min-height: 44px;
    font-size: 11px;
    padding-inline: 7px;
  }

  .free-hero-trust p {
    gap: 8px;
    font-size: 10px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .free-hero-particle,
  .free-hero-eyebrow,
  .free-hero h1,
  .free-hero-rule,
  .free-hero .hero-lead,
  .free-hero-note,
  .free-hero-entry {
    animation: none;
  }
}

@keyframes freeHeroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes freeHeroTitle {
  from {
    opacity: 0;
    transform: translateY(.16em) scale(.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes freeHeroRule {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes freeHeroParticle {
  from { transform: translateX(-30px); }
  to { transform: translateX(calc(100vw + 50px)); }
}

/* Simplified hero: typography and motion lead, with one clear application path. */
.free-hero-inner {
  grid-template-columns: minmax(0, 820px) minmax(240px, 1fr);
  gap: 0;
}

.free-hero-copy {
  max-width: 820px;
}

.free-hero h1 .free-hero-comma {
  color: var(--free-brand-blue);
}

.free-hero h1 > .free-hero-work {
  color: #057f9b;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .free-hero h1 > .free-hero-work {
    background: linear-gradient(90deg, var(--free-brand-navy) 0%, var(--free-brand-blue) 52%, var(--free-brand-teal) 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .free-hero h1 .free-hero-period {
    color: inherit;
    -webkit-text-fill-color: transparent;
  }
}

.free-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  margin-top: 27px;
  animation: freeHeroRise .78s 1.08s both;
}

.free-hero-actions .free-hero-primary {
  width: min(100%, 310px);
  flex: 0 0 auto;
}

.free-hero-company-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--free-brand-slate);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: color .2s ease;
}

.free-hero-company-link span {
  color: var(--free-brand-teal);
  font-size: 17px;
  transition: transform .2s ease;
}

.free-hero-company-link:hover,
.free-hero-company-link:focus-visible {
  color: var(--free-brand-blue);
}

.free-hero-company-link:hover span,
.free-hero-company-link:focus-visible span {
  transform: translateX(3px);
}

@media (max-width: 899px) {
  .free-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .free-hero-actions {
    display: grid;
    gap: 5px;
    margin-top: 19px;
  }

  .free-hero-actions .free-hero-primary {
    width: 100%;
  }

  .free-hero-company-link {
    justify-content: center;
    min-height: 39px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .free-hero-actions {
    animation: none;
  }
}

/* Keep the hero category label horizontal despite the legacy decorative span rule. */
.free-hero-eyebrow {
  width: max-content;
  max-width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.free-hero-eyebrow > span {
  width: auto;
  height: auto;
  flex: 0 1 auto;
  background: none;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}
