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

:root {
  --red: #d42020;
  --navy: #0d1f4e;
  --ink: #111;
  --muted: #6b7280;
  --line: rgba(0, 0, 0, .12);
  --bg: #f3f4f6;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

#cursor {
  position: fixed;
  z-index: 9999;
  width: 0;
  height: 0;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--navy);
  border-left: 7px solid transparent;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: border-bottom-color .2s;
}

#cursor-ring {
  position: fixed;
  z-index: 9998;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(13, 31, 78, .4);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, border-color .2s;
}

body:has(a:hover) #cursor {
  border-right-width: 10px;
  border-bottom-width: 17px;
  border-left-width: 10px;
}

body:has(a:hover) #cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--red);
}

nav#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 56px;
  transition: background .4s, color .4s, box-shadow .4s;
}

nav#nav.scrolled,
nav#nav.nav-open {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 18px rgba(0, 0, 0, .08);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-logo-img {
  display: block;
  height: 40px;
}

.nav-logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: 2px;
}

.nav-logo-word-main,
.nav-logo-word-sub,
.nav-logo-sub,
.hero-kicker,
.section-kicker,
.flow-num,
.next-label,
.rf-copyright {
  font-family: "Schibsted Grotesk", sans-serif;
}

.nav-logo-word-main {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  transition: color .4s;
}

.nav-logo-word-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #fff;
  transition: color .4s;
}

.nav-logo-sub {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .6);
  transition: color .4s;
}

nav#nav.scrolled .nav-logo-word-main,
nav#nav.nav-open .nav-logo-word-main,
nav#nav.scrolled .nav-logo-word-sub,
nav#nav.nav-open .nav-logo-word-sub {
  color: #1a1a1a;
}

nav#nav.scrolled .nav-logo-sub,
nav#nav.nav-open .nav-logo-sub {
  color: #666;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.nav-trigger {
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: color .4s, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.nav-links a:hover {
  color: var(--red);
  transform: scale(1.04);
}

nav#nav.scrolled .nav-links a:not(.nav-entry),
nav#nav.nav-open .nav-links a:not(.nav-entry),
nav#nav.scrolled .nav-trigger,
nav#nav.nav-open .nav-trigger {
  color: #111;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  cursor: none;
}

.nav-trigger::after {
  content: "∨";
  font-size: 9px;
  transition: transform .2s;
}

.nav-item {
  position: relative;
}

.nav-item:hover .nav-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 230px;
  padding: 24px 0 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity .2s;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 16px;
}

.nav-dropdown a::after {
  content: "→";
  margin-left: 16px;
  color: #aaa;
  font-size: 12px;
}

.nav-dropdown a:hover {
  background: #f5f5f5;
}

.nav-entry {
  padding: 11px 28px !important;
  background: var(--red);
  color: #fff !important;
  border-radius: 2px;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
}

.nav-burger,
.nav-scrim {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 68vh;
  padding: 136px 56px 76px;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: url("uploads/bg-career.jpg") center / cover no-repeat;
  opacity: .82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .38) 55%, rgba(0, 0, 0, .16));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
}

.hero-kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .28em;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  margin-top: 24px;
  color: #fff;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: clamp(50px, 9vw, 132px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
}

.hero h1 span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, .8);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: .32em;
  letter-spacing: .04em;
}

.lead {
  background: #fff;
  padding: 96px 56px;
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lead .section-kicker {
  justify-content: center;
}

.lead h2 {
  margin-top: 24px;
  font-family: "Schibsted Grotesk", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -.01em;
}

.lead-copy {
  color: #444;
  font-size: 20px;
  line-height: 2;
}

.content {
  background: var(--bg) url("uploads/body-bg.png") center / cover fixed no-repeat;
  padding: 100px 56px 120px;
}

.content-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 58px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section:first-child {
  padding-top: 0;
  border-top: 0;
}

.section-side {
  position: sticky;
  top: 112px;
  align-self: start;
}

.section-kicker {
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: .2em;
}

.section-side h2 {
  font-family: "Schibsted Grotesk", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.req-table {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
}

.req-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.req-row:last-child {
  border-bottom: 0;
}

.req-term {
  padding: 22px 26px;
  background: #111;
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
}

.req-desc {
  padding: 22px 28px;
  color: #333;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: .03em;
}

.req-desc ul {
  padding-left: 1.2em;
}

.req-desc li + li {
  margin-top: 4px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(var(--flow-cols, 4), 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .12);
  border: 1px solid rgba(0, 0, 0, .12);
}

.flow-item {
  min-height: 154px;
  padding: 28px 22px;
  background: #fff;
}

.flow-num {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.flow-item strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.flow-item p {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 80px 64px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.cta-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}

.cta-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--red);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .3em;
}

.cta-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--red);
}

.cta-title {
  position: relative;
  z-index: 1;
  width: 80vw;
  margin-bottom: 48px;
  color: #000;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: clamp(52px, 9.5vw, 150px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.03em;
  text-align: center;
}

.cta-title .r {
  color: var(--red);
}

.cta-btn-main {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 18px 56px;
  background: #111;
  color: #fff;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  transition: background .2s;
}

.cta-btn-main:hover {
  background: var(--red);
}

.cta-sns-row {
  position: absolute;
  right: 64px;
  bottom: 40px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-sns-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  border: 1px solid rgba(0, 0, 0, .2);
  color: #000;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: border-color .2s, color .2s;
}

.cta-sns-row a:hover {
  color: var(--red);
  border-color: var(--red);
  transform: none;
}

.other-contents {
  background: #ebebeb;
  padding: 80px 80px;
}

.next-label {
  margin-bottom: 48px;
  color: #111;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}

.other-list {
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.other-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.other-meta {
  display: block;
  margin-bottom: 8px;
  color: #888;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}

.other-name {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
}

.other-more {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.other-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--red);
  color: #fff;
  font-size: 22px;
}

.rf {
  position: relative;
  overflow: hidden;
  padding: 80px 56px 0;
  background: #fff;
}

.rf-wm {
  position: absolute;
  right: 0;
  bottom: 60px;
  left: 0;
  color: rgba(0, 0, 0, .04);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.rf-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.rf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.rf-brand-logo {
  display: block;
  height: 30px;
}

.rf-brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rf-brand-word-main,
.rf-brand-word-sub,
.rf-brand-label,
.rf-col-head,
.rf-bottom-links a {
  font-family: "Schibsted Grotesk", sans-serif;
}

.rf-brand-word-main {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
}

.rf-brand-word-sub {
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.rf-brand-label {
  color: #4b5563;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
  margin-left: 2px;
}

.rf-addr-block {
  margin-bottom: 22px;
}

.rf-addr-name {
  margin-bottom: 4px;
  color: #1a1a1a;
  font-size: 21px;
  font-weight: 700;
}

.rf-addr-text {
  color: #4b5563;
  font-size: 19px;
  line-height: 1.7;
}

.rf-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.rf-col-head {
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2em;
}

.rf-col a {
  display: block;
  padding: 5px 0;
  color: #374151;
  font-size: 21px;
  letter-spacing: .04em;
  transition: color .2s, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.rf-col a:hover {
  color: var(--red);
  transform: translateX(4px);
}

.rf-divider {
  position: relative;
  z-index: 1;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.rf-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 32px;
  flex-wrap: wrap;
}

.rf-bottom-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.rf-bottom-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4b5563;
  font-size: 19px;
  letter-spacing: .06em;
}

.rf-bottom-links a::after {
  content: "→";
  font-size: 10px;
}

.rf-copyright {
  color: #6b7280;
  font-size: 16px;
  letter-spacing: .1em;
}

@media (max-width: 1024px) {
  nav#nav {
    padding: 16px 28px;
  }

  .lead-inner,
  .section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-side {
    position: static;
  }

  .flow-list {
    grid-template-columns: 1fr 1fr;
  }

  .rf-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none !important;
  }

  nav#nav {
    padding: 14px 20px;
  }

  .nav-logo-sub {
    display: none;
  }

  .nav-burger {
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    cursor: none;
  }

  .nav-burger span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 0 auto;
    background: #111;
    transition: transform .3s, opacity .3s;
  }

  nav#nav.nav-open .nav-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav#nav.nav-open .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  nav#nav.nav-open .nav-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
  }

  nav#nav.nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    padding: 88px 28px 32px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  }

  nav#nav.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links > * {
    width: 100%;
  }

  .nav-links a,
  .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    color: #111 !important;
    font-size: 16px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 4px 0 8px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 11px 0;
    border-bottom: 0;
    color: #444 !important;
    font-size: 14px;
  }

  .nav-entry {
    justify-content: center !important;
    margin-top: 20px;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 56vh;
    padding: 104px 20px 54px;
  }

  .hero-kicker {
    font-size: 15px;
    letter-spacing: .2em;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 70px);
  }

  .hero h1 span {
    margin-top: 16px;
    font-size: .34em;
  }

  .lead,
  .content,
  .cta,
  .other-contents,
  .rf {
    padding-right: 20px;
    padding-left: 20px;
  }

  .lead {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .lead h2 {
    font-size: 35px;
  }

  .lead-copy {
    font-size: 17px;
  }

  .content {
    padding-top: 72px;
    padding-bottom: 84px;
    background-attachment: scroll;
  }

  .section {
    padding: 58px 0;
  }

  .req-row {
    grid-template-columns: 1fr;
  }

  .req-term {
    padding: 15px 18px;
  }

  .req-desc {
    padding: 18px;
    font-size: 15px;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .cta-title {
    width: 95vw;
    margin-bottom: 32px;
    font-size: clamp(36px, 10vw, 72px);
  }

  .cta-sns-row {
    position: static;
    justify-content: center;
    margin-top: 32px;
  }

  .cta-sns-row a {
    padding: 14px 20px;
    font-size: 12px;
  }

  .other-contents {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .other-link {
    gap: 20px;
  }

  .other-arrow {
    width: 52px;
    height: 52px;
  }

  .rf {
    padding-top: 48px;
  }

  .rf-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .rf-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .nav-logo-word {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .lead h2,
  .cta-title {
    font-size: 32px;
  }

  .next-label {
    font-size: 42px;
  }
}
