@charset "UTF-8";

:root {
  --paper: #fffaf0;
  --paper-2: #fffdf8;
  --ink: #12233c;
  --ink-soft: #34445a;
  --blue: #0067c8;
  --blue-deep: #002c66;
  --sky: #70d9f4;
  --sun: #ffd43b;
  --coral: #ff6b6b;
  --mint: #7ce3bf;
  --pink: #ff94c8;
  --plum: #4d2b68;
  --line: rgba(18, 35, 60, 0.18);
  --white: #fff;
  --radius: 30px;
  --shadow: 0 28px 80px rgba(17, 37, 68, 0.18);
  --content: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--sun);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.mobile-only {
  display: none;
}

.section-shell {
  width: var(--content);
  margin-inline: auto;
}

.overline {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-index {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.section-index span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-index b {
  font-size: 1.9rem;
  line-height: 1;
}

.section-index--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 30px rgba(12, 30, 55, 0.1);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.12rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.brand-mark__logo {
  display: block;
  width: auto;
  height: 40px;
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand-mark__logo {
  filter: none;
}

body.menu-open .site-header .brand-mark__logo {
  filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
  .brand-mark__logo {
    height: 35px;
  }
}

.brand-mark__dot {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--sun);
  border: 5px solid currentColor;
  border-radius: 50%;
}

.brand-mark__dot::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav a span {
  opacity: 0.58;
  font-size: 0.58rem;
}

.global-nav .global-nav__contact {
  padding: 11px 17px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}

.global-nav .global-nav__contact::after {
  display: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  color: var(--white);
  background: var(--blue-deep);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 701px) {
  .hero__video {
    right: auto;
    left: 22%;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 23, 58, 0.78) 0%, rgba(2, 27, 67, 0.34) 54%, rgba(0, 44, 102, 0.25) 100%),
    linear-gradient(0deg, rgba(0, 18, 44, 0.45) 0%, transparent 45%);
}

.hero__orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.hero__orbit--one {
  top: -35vw;
  right: -23vw;
  width: 85vw;
  height: 85vw;
}

.hero__orbit--two {
  right: 6vw;
  bottom: -43vw;
  width: 70vw;
  height: 70vw;
  border-width: 18px;
  border-color: rgba(255, 212, 59, 0.12);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--content);
  height: 100%;
  margin-inline: auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 clamp(78px, 11vh, 120px);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
  font-weight: 1000;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-shadow: 0 8px 40px rgba(0, 22, 64, 0.25);
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  padding-left: 0.04em;
  color: var(--sun);
  font-size: 0.43em;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.hero__lead {
  margin: 30px 0 0 8px;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 13px;
  margin: 30px 0 0 8px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 22px;
  border: 2px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--static {
  cursor: default;
  letter-spacing: 0.14em;
}

.button--static:hover {
  transform: none;
}

.button--sun {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.button--sun:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--ink {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.65);
}

.hero__release {
  position: absolute;
  z-index: 3;
  right: 4.5vw;
  bottom: 8vh;
  display: flex;
  width: 175px;
  height: 175px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(6deg);
}

.hero__release::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px dashed var(--ink);
  border-radius: inherit;
}

.hero__release span,
.hero__release small {
  z-index: 1;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero__release strong {
  z-index: 1;
  margin: 2px 0;
  font-size: 1.38rem;
  line-height: 1.2;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: max(12px, calc((100vw - var(--content)) / 2 - 36px));
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 55px;
  background: var(--white);
}

.ticker {
  padding: 13px 0;
  color: var(--ink);
  background: var(--sun);
  border-block: 2px solid var(--ink);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 25px;
  animation: ticker 26s linear infinite;
}

.ticker span {
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
}

.ticker i {
  color: var(--coral);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.intro {
  display: grid;
  grid-template-columns: 1fr 2fr 0.75fr;
  gap: 65px;
  align-items: start;
  padding-block: 135px;
}

.intro__copy h2,
.brands__heading h2,
.works__heading h2,
.studio__heading h2,
.recruit__copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.7rem);
  font-weight: 1000;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.intro__copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.intro__copy h2 > span {
  display: block;
  white-space: nowrap;
}

.intro__copy > p:last-child {
  max-width: 650px;
  margin: 35px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 2.15;
}

.intro__stamp {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  align-self: end;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--sky);
  transform: rotate(-8deg);
}

.intro__stamp span {
  font-size: 0.65rem;
  font-weight: 1000;
  letter-spacing: 0.25em;
}

.intro__stamp strong {
  font-size: 4rem;
  line-height: 0.5;
}

.saga {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 0;
  margin-bottom: 140px;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--sun);
  overflow: hidden;
}

.saga__art {
  position: relative;
  min-height: 430px;
}

.saga__art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(18, 35, 60, 0.9) 100%);
}

.saga__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.saga__art--game {
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(145deg, #f4fbff 0%, #dbeaff 52%, #b9d5f4 100%);
  overflow: hidden;
}

.saga__art--game::after {
  display: none;
}

.saga__art--game img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(16, 38, 72, 0.22));
}

.saga__art--new {
  isolation: isolate;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 28%, rgba(112, 217, 244, 0.95) 0 8%, transparent 8.5%),
    radial-gradient(circle at 78% 74%, rgba(255, 212, 59, 0.9) 0 6%, transparent 6.5%),
    linear-gradient(135deg, #0067c8 0%, #002c66 58%, #4d2b68 100%);
  overflow: hidden;
}

.saga__art--new::before {
  position: absolute;
  width: 520px;
  height: 520px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.06),
    0 0 0 110px rgba(255, 212, 59, 0.07);
  transform: rotate(-12deg);
}

.saga__signal {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  color: var(--white);
  text-align: center;
  transform: rotate(-3deg);
}

.saga__signal span {
  padding: 5px 12px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.63rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.saga__signal strong {
  margin: 16px 0 8px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 1000;
  letter-spacing: -0.07em;
  line-height: 1;
  text-shadow: 6px 7px 0 rgba(0, 24, 65, 0.48);
}

.saga__signal small {
  font-size: 0.62rem;
  font-weight: 1000;
  letter-spacing: 0.22em;
}

.saga__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 55px 55px 60px 25px;
  color: var(--white);
}

.saga__copy .overline {
  color: var(--sun);
}

.saga__copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.saga__copy p:not(.overline) {
  margin: 25px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.saga__banner {
  position: absolute;
  z-index: 4;
  right: 33px;
  bottom: 25px;
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.25);
  transform: rotate(3deg);
}

.saga__banner img {
  max-width: 140px;
}

.brands {
  padding: 120px 0 140px;
  color: var(--white);
  background: var(--blue-deep);
}

.brands__heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
  margin-bottom: 70px;
}

.brands__heading .overline {
  color: var(--sun);
}

.brands__heading h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.65rem);
}

.brands__heading h2 > span {
  display: block;
  white-space: nowrap;
}

.label-card {
  display: grid;
  width: var(--content);
  min-height: 620px;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto 45px;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 38px;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.label-card--maneki {
  background: #ecfff2;
}

.label-card--meguri {
  background: #fff0f8;
}

.label-card__media {
  position: relative;
  min-height: 620px;
  background: var(--ink);
  overflow: hidden;
}

.label-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label-card__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 26, 49, 0.5), transparent 55%);
}

.label-card__launch {
  position: absolute;
  bottom: 35px;
  left: 35px;
  display: flex;
  width: 145px;
  height: 145px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-6deg);
}

.label-card--meguri .label-card__launch {
  background: var(--pink);
}

.label-card__launch span,
.label-card__launch small {
  font-size: 0.52rem;
  font-weight: 1000;
  letter-spacing: 0.11em;
}

.label-card__launch strong {
  margin-block: -1px;
  font-size: 2rem;
  line-height: 1.2;
}

.label-card__body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 50px;
}

.label-card__topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(18, 35, 60, 0.25);
  font-size: 0.6rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.label-card h3 {
  margin: 28px 0 15px;
  font-size: clamp(3.5rem, 6.2vw, 6rem);
  font-weight: 1000;
  letter-spacing: -0.09em;
  line-height: 0.8;
  white-space: nowrap;
}

.label-card h3 span {
  color: var(--coral);
}

.label-card--meguri h3 span {
  color: #c3488d;
}

.label-card__tagline {
  margin: 22px 0;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.label-card__description {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 2;
}

.label-card__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-pill {
  max-width: 180px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.5;
}

.works {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
  padding-block: 140px;
}

.works__heading > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
}

.works-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  display: grid;
  min-height: 330px;
  grid-template-columns: 1fr;
  grid-template-rows: 190px auto;
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
  box-shadow: 7px 7px 0 var(--sun);
  transform: translate(-3px, -3px);
}

.work-card > i {
  position: absolute;
  top: 17px;
  right: 18px;
  font-size: 1.1rem;
  font-style: normal;
}

.work-card__image {
  display: grid;
  height: auto;
  min-height: 190px;
  place-items: center;
  padding: 18px;
  background: #eef4f7;
  border-radius: 0;
  overflow: hidden;
}

.work-card__image img {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 190 / 94;
  object-fit: contain;
}

.work-card__image--sand {
  background: #ebd9c0;
}

.work-card__image--hayarigami {
  background: #f7f7f7;
}

.work-card__image--brigandine {
  background: #304c33;
}

.work-card__image--museum {
  background: #e6f6f3;
}

.work-card__copy {
  padding: 22px 26px 26px;
}

.work-card__copy span {
  color: var(--blue);
  font-size: 0.57rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.work-card__copy h3 {
  margin: 9px 24px 6px 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.45;
}

.work-card__copy p {
  margin: 0 0 8px;
  font-size: 0.82rem;
}

.work-card__copy small {
  display: block;
  color: #6c7786;
  font-size: 0.52rem;
  font-weight: 500;
  line-height: 1.5;
}

.related-sites {
  grid-column: 1 / -1;
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.related-sites__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 10px 42px;
  align-items: end;
  margin-bottom: 28px;
}

.related-sites__heading .overline {
  grid-column: 1 / -1;
}

.related-sites__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.related-sites__heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.8;
}

.related-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-site-banner {
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(122px, 1fr) auto;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 7px 7px 0 rgba(18, 35, 60, 0.14);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-site-banner:hover {
  box-shadow: 10px 10px 0 var(--sun);
  transform: translate(-3px, -3px);
}

.related-site-banner__visual {
  display: grid;
  min-height: 122px;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.38), transparent 30%),
    #e9edf5;
}

.related-site-banner--akudaikan .related-site-banner__visual {
  background-color: #872334;
}

.related-site-banner--comic .related-site-banner__visual {
  background-color: #fff2d9;
}

.related-site-banner--legacy .related-site-banner__visual {
  background-color: #68d4e5;
}

.related-site-banner__visual img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(18, 35, 60, 0.2));
  transition: transform 0.25s ease;
}

.related-site-banner:hover .related-site-banner__visual img {
  transform: scale(1.035);
}

.related-site-banner__copy {
  display: grid;
  min-height: 116px;
  align-content: center;
  padding: 18px 20px 20px;
}

.related-site-banner__copy small {
  color: var(--sun);
  font-size: 0.52rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
}

.related-site-banner__copy strong {
  margin-top: 5px;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  letter-spacing: -0.035em;
}

.related-site-banner__copy > span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 800;
}

.related-site-banner__copy b {
  color: var(--sun);
}

.studio {
  position: relative;
  padding-block: 135px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.studio::after {
  position: absolute;
  top: -250px;
  right: -250px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(112, 217, 244, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(112, 217, 244, 0.03), 0 0 0 160px rgba(112, 217, 244, 0.03);
}

.studio__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
}

.studio__heading .overline {
  color: var(--sun);
}

.studio__heading > p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
}

.service-list {
  grid-column: 1 / -1;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-list li {
  display: grid;
  min-height: 130px;
  grid-template-columns: 80px 1fr auto;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.service-list li > span {
  color: var(--sun);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.service-list h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.service-list b {
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.studio__cta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  padding: 28px 32px;
  color: var(--ink);
  background: var(--sky);
  border: 2px solid var(--white);
  border-radius: 22px;
}

.studio__cta p {
  margin: 0;
  font-weight: 900;
}

.mail-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}

.studio__cta .mail-actions {
  align-items: center;
}

.studio__cta .mail-fallback {
  justify-content: center;
}

.mail-fallback {
  display: grid;
  min-height: 26px;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  gap: 4px 8px;
  font-size: 0.62rem;
  line-height: 1.4;
}

.mail-fallback > span {
  opacity: 0.7;
  font-weight: 800;
}

.mail-fallback code {
  font-family: inherit;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mail-fallback button {
  padding: 4px 9px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mail-fallback button:hover {
  background: rgba(255, 255, 255, 0.35);
}

.mail-fallback small {
  grid-column: 1 / -1;
  font-size: inherit;
  font-weight: 900;
  text-align: center;
}

.mail-fallback small:empty {
  display: none;
}

.news {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
  padding-block: 130px;
}

.news__heading h2,
.company__heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.news-list {
  grid-column: 1 / -1;
  margin-top: 15px;
  border-top: 2px solid var(--ink);
}

.news-list article {
  position: relative;
  display: grid;
  min-height: 95px;
  grid-template-columns: 130px 95px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.news-list__label {
  width: fit-content;
  padding: 5px 9px;
  color: var(--blue);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.54rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
}

.news-list h3 {
  margin: 0;
  font-size: 0.9rem;
}

.news-list article > i {
  position: absolute;
  right: 12px;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 0.5rem;
  font-style: normal;
  transform: rotate(5deg);
}

.recruit {
  position: relative;
  padding-block: 120px;
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.recruit__shape {
  display: none;
}

.recruit__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
}

.recruit__copy .overline {
  color: var(--blue);
}

.recruit__copy > p:not(.overline) {
  max-width: 650px;
  margin: 30px 0;
}

.recruit__jobs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.recruit__jobs span {
  padding: 7px 13px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.recruit__requirements {
  max-width: 850px;
  margin: 0 0 34px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.recruit__requirements h3 {
  margin: 0 0 18px;
  font-size: 1.28rem;
  letter-spacing: 0.03em;
}

.recruit__requirements dl {
  margin: 0;
  border-top: 1px solid rgba(18, 35, 60, 0.2);
}

.recruit__requirements dl > div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(18, 35, 60, 0.16);
}

.recruit__requirements dt {
  font-size: 0.74rem;
  font-weight: 1000;
}

.recruit__requirements dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.75;
}

.recruit__privacy {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.recruit .button--ink {
  border-radius: 6px;
  box-shadow: none;
}

.company {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
  padding-block: 130px;
}

.company__heading p:last-child {
  color: var(--ink-soft);
}

.company-table {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  border-top: 2px solid var(--ink);
}

.company-table div {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  font-size: 0.75rem;
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.access-guide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.7fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 9px 9px 0 var(--sun);
}

.access-guide__heading .overline {
  color: var(--sun);
}

.access-guide__heading h3 {
  margin: 8px 0 20px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.access-guide__heading > p:last-of-type {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.9;
}

.access-guide__building {
  white-space: nowrap;
}

.access-guide .button--ink {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.65);
}

.access-map {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 18px;
}

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

.contact {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: initial;
  padding: 120px 0;
  color: var(--white);
  text-align: left;
  background: var(--blue-deep);
  overflow: hidden;
}

.contact__inner {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin-inline: auto;
}

.contact .overline {
  color: var(--sun);
}

.contact h2 {
  max-width: 850px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.contact__inner > p:not(.overline) {
  max-width: 700px;
  margin: 25px 0 35px;
  color: rgba(255, 255, 255, 0.72);
}

.contact__mail {
  display: grid;
  width: min(720px, 100%);
  min-width: 0;
  grid-template-columns: 1fr auto;
  padding: 24px 29px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: none;
  transition: background 0.2s ease;
}

.contact__mail:hover {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
  transform: none;
}

.contact__mail span {
  grid-column: 1;
  color: var(--sky);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact__mail strong {
  grid-column: 1;
  color: var(--white);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  letter-spacing: 0.04em;
}

.contact__mail i {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--sky);
  font-size: 2rem;
  font-style: normal;
}

.contact__notes {
  display: grid;
  width: min(720px, 100%);
  gap: 4px;
  margin-top: 20px;
}

.contact__notes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact__burst {
  display: none;
}

.site-footer {
  padding: 60px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand {
  display: grid;
  width: fit-content;
  gap: 8px;
}

.site-footer__logo {
  display: block;
  width: fit-content;
}

.site-footer__logo img {
  display: block;
  width: auto;
  height: 42px;
  filter: brightness(0) invert(1);
}

.site-footer__brand small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.48rem;
  letter-spacing: 0.18em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 50px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__bottom small,
.site-footer__bottom a {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.akudaikan-page {
  background: #fbf3e7;
}

.akudaikan-page-hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: end;
  padding: 150px 0 92px;
  color: var(--white);
  background-color: #32131a;
  background-image:
    linear-gradient(90deg, rgba(37, 9, 16, 0.97) 0%, rgba(37, 9, 16, 0.74) 49%, rgba(37, 9, 16, 0.25) 100%),
    linear-gradient(0deg, rgba(37, 9, 16, 0.9), transparent 48%),
    url("../images/akudaikan-key-visual.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.akudaikan-page-hero::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 640px;
  height: 640px;
  content: "";
  border: 2px solid rgba(255, 212, 59, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 212, 59, 0.04), 0 0 0 150px rgba(255, 212, 59, 0.035);
}

.akudaikan-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
  margin-inline: auto;
}

.akudaikan-page__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  font-size: 0.66rem;
  font-weight: 1000;
  letter-spacing: 0.15em;
}

.akudaikan-page-hero .overline {
  color: var(--sun);
}

.akudaikan-page-hero h1 {
  margin: 0;
  font-size: clamp(4.7rem, 9vw, 9rem);
  font-weight: 1000;
  letter-spacing: -0.09em;
  line-height: 0.86;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
}

.akudaikan-page-hero__copy > p:not(.overline) {
  max-width: 650px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.akudaikan-page-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.akudaikan-page-hero__facts li {
  display: grid;
  min-width: 130px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.akudaikan-page-hero__facts span {
  color: var(--sun);
  font-size: 0.5rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
}

.akudaikan-page-hero__facts strong {
  font-size: 0.78rem;
}

.akudaikan-page-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.akudaikan-page-hero__actions small {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  line-height: 1.6;
}

.akudaikan-page-hero__seal {
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 9px 9px 0 #8d1f32;
  text-align: center;
  transform: rotate(5deg);
}

.akudaikan-page-hero__seal span,
.akudaikan-page-hero__seal small {
  max-width: 130px;
  font-size: 0.52rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.akudaikan-page-hero__seal strong {
  margin: 4px 0;
  font-size: 1.18rem;
  line-height: 1.1;
}

.akudaikan-status {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
  padding-block: 130px;
}

.akudaikan-status__copy h2,
.akudaikan-flow__heading h2,
.akudaikan-hold h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.akudaikan-status__copy > p:last-child {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--ink-soft);
}

.akudaikan-beta-notice {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: #32131a;
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 9px 9px 0 var(--sun);
}

.akudaikan-beta-notice h3 {
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.akudaikan-beta-notice ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.akudaikan-beta-notice li {
  display: grid;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
}

.akudaikan-beta-notice strong {
  color: var(--sun);
  font-size: 0.82rem;
}

.akudaikan-beta-notice span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.75;
}

.akudaikan-status__checks {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.akudaikan-status__checks li {
  display: grid;
  min-height: 150px;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
  padding: 23px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--sun);
}

.akudaikan-status__checks li > span {
  color: #8d1f32;
  font-size: 1.5rem;
  font-weight: 1000;
  line-height: 1;
}

.akudaikan-status__checks li div {
  display: grid;
}

.akudaikan-status__checks strong {
  font-size: 0.95rem;
}

.akudaikan-status__checks small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.7;
}

.akudaikan-flow {
  padding-block: 125px;
  color: var(--white);
  background: #32131a;
}

.akudaikan-flow .overline {
  color: var(--sun);
}

.akudaikan-flow__heading {
  margin-bottom: 55px;
}

.akudaikan-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.akudaikan-flow__steps li {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--white);
  border-radius: 23px;
  box-shadow: 7px 7px 0 #8d1f32;
}

.akudaikan-flow__steps li.is-current {
  background: var(--sun);
  border-color: var(--sun);
  box-shadow: 7px 7px 0 var(--white);
}

.akudaikan-flow__steps span {
  width: fit-content;
  padding: 4px 9px;
  color: var(--white);
  background: #8d1f32;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.akudaikan-flow__steps strong {
  margin: auto 0 12px;
  font-size: 1.35rem;
}

.akudaikan-flow__steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.akudaikan-hold {
  display: grid;
  min-height: 600px;
  place-items: center;
  padding: 100px 24px;
  text-align: center;
  background: var(--sun);
  border-block: 2px solid var(--ink);
}

.akudaikan-hold__inner > p:not(.overline) {
  margin: 28px 0 35px;
}

.akudaikan-hold .overline {
  color: var(--ink);
}

@media (max-width: 980px) {
  .akudaikan-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .akudaikan-page-hero__seal {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 145px;
    height: 145px;
  }

  .akudaikan-status {
    grid-template-columns: 1fr 2fr;
    gap: 35px;
  }

  .akudaikan-status__checks,
  .akudaikan-beta-notice ul,
  .akudaikan-flow__steps {
    grid-template-columns: 1fr;
  }

  .akudaikan-flow__steps li {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .akudaikan-page-hero {
    min-height: 760px;
    padding: 125px 0 55px;
    background-position: 58% center;
  }

  .akudaikan-page__back {
    margin-bottom: 40px;
  }

  .akudaikan-page-hero h1 {
    font-size: clamp(3.5rem, 19vw, 5.4rem);
  }

  .akudaikan-page-hero__copy > p:not(.overline) {
    max-width: calc(100% - 10px);
    font-size: 0.84rem;
  }

  .akudaikan-page-hero__facts {
    max-width: calc(100% - 90px);
  }

  .akudaikan-page-hero__facts li {
    min-width: 106px;
    padding: 8px 10px;
  }

  .akudaikan-page-hero__actions {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .akudaikan-beta-notice {
    padding: 23px 18px;
    box-shadow: 6px 6px 0 var(--sun);
  }

  .akudaikan-beta-notice li {
    padding: 17px;
  }

  .akudaikan-page-hero__seal {
    right: -4px;
    bottom: 5px;
    width: 108px;
    height: 108px;
    box-shadow: 5px 5px 0 #8d1f32;
  }

  .akudaikan-page-hero__seal strong {
    font-size: 0.85rem;
  }

  .akudaikan-page-hero__seal span,
  .akudaikan-page-hero__seal small {
    max-width: 85px;
    font-size: 0.39rem;
  }

  .akudaikan-status {
    display: block;
    padding-block: 90px;
  }

  .akudaikan-status__copy {
    margin-bottom: 40px;
  }

  .akudaikan-status__copy h2,
  .akudaikan-flow__heading h2,
  .akudaikan-hold h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .akudaikan-status__checks {
    display: grid;
  }

  .akudaikan-status__checks li {
    min-height: 0;
  }

  .akudaikan-flow {
    padding-block: 90px;
  }

  .akudaikan-flow__steps li {
    min-height: 210px;
    padding: 23px;
  }

  .akudaikan-hold {
    min-height: 520px;
    padding-inline: 15px;
  }
}

.teaser-dialog {
  width: min(960px, calc(100vw - 32px));
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.teaser-dialog::backdrop {
  background: rgba(2, 14, 32, 0.87);
  backdrop-filter: blur(10px);
}

.teaser-dialog__head {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
}

.teaser-dialog h2 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.teaser-dialog button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
}

.teaser-dialog video {
  width: 100%;
  max-height: calc(100vh - 130px);
  background: #000;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 36px, 760px);
  }

  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .brand-mark {
    position: relative;
    z-index: 2;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-button__label {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.15em;
  }

  .menu-button__lines {
    display: grid;
    gap: 6px;
  }

  .menu-button__lines i {
    display: block;
    width: 23px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] .menu-button__lines i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__lines i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex-direction: column;
    padding: 80px 24px 30px;
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
    -webkit-overflow-scrolling: touch;
  }

  .global-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .global-nav > a:first-child {
    margin-top: auto;
  }

  .global-nav > a:last-child {
    margin-bottom: auto;
  }

  .global-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 1.25rem;
  }

  .global-nav .global-nav__contact {
    width: fit-content;
    margin-top: 25px;
    padding-inline: 25px;
    font-size: 0.9rem;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    color: var(--white);
    background: var(--ink);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 12vw, 6.4rem);
  }

  .hero__release {
    right: 25px;
    bottom: 55px;
    width: 130px;
    height: 130px;
  }

  .hero__release strong {
    font-size: 1.05rem;
  }

  .hero__scroll {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr 2fr;
  }

  .intro__stamp {
    grid-column: 2;
  }

  .saga {
    grid-template-columns: 1fr;
  }

  .saga__art {
    min-height: 340px;
  }

  .saga__art::after {
    background: linear-gradient(0deg, rgba(18, 35, 60, 0.8), transparent 55%);
  }

  .saga__copy {
    padding: 35px 35px 65px;
  }

  .brands__heading,
  .works,
  .studio__inner,
  .news,
  .recruit__inner,
  .company {
    grid-template-columns: 1fr 2fr;
    gap: 35px;
  }

  .label-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .label-card__media {
    min-height: 450px;
  }

  .label-card__body {
    padding: 45px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .access-guide {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {
  :root {
    --content: calc(100vw - 30px);
    --radius: 23px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .mobile-only {
    display: initial;
  }

  .hero__content {
    padding: 105px 0 58px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    gap: 9px;
    flex-direction: column;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    gap: 18px;
    padding: 11px 18px;
    font-size: 0.7rem;
  }

  .hero__release {
    right: 18px;
    bottom: 25px;
    width: 112px;
    height: 112px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hero__release span,
  .hero__release small {
    font-size: 0.43rem;
  }

  .hero__release strong {
    font-size: 0.91rem;
  }

  .section-index {
    margin-bottom: 30px;
  }

  .intro,
  .brands__heading,
  .works,
  .studio__inner,
  .news,
  .recruit__inner,
  .company {
    display: block;
  }

  .intro,
  .works,
  .news,
  .company {
    padding-block: 90px;
  }

  .intro__copy h2,
  .brands__heading h2,
  .works__heading h2,
  .studio__heading h2,
  .recruit__copy h2,
  .contact h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .intro__copy h2 {
    font-size: clamp(2.25rem, 10.8vw, 4rem);
  }

  .brands__heading h2 {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
  }

  .intro__copy > p:last-child {
    margin-top: 25px;
    font-size: 0.9rem;
  }

  .intro__stamp {
    width: 130px;
    height: 130px;
    margin: 45px 15px 0 auto;
  }

  .intro__stamp strong {
    font-size: 2.8rem;
  }

  .saga {
    margin-bottom: 90px;
    box-shadow: 7px 7px 0 var(--sun);
  }

  .saga__art {
    min-height: 250px;
  }

  .saga__copy {
    padding: 30px 24px 75px;
  }

  .saga__copy h2 {
    font-size: 2.7rem;
  }

  .saga__banner {
    right: 20px;
    bottom: 18px;
  }

  .saga__banner img {
    max-width: 105px;
  }

  .saga__art--game {
    padding: 8px;
  }

  .brands {
    padding: 85px 0 95px;
  }

  .brands__heading {
    margin-bottom: 45px;
  }

  .label-card {
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.35);
  }

  .label-card__media {
    min-height: 475px;
  }

  .label-card__launch {
    bottom: 22px;
    left: 22px;
    width: 118px;
    height: 118px;
  }

  .label-card__launch strong {
    font-size: 1.55rem;
  }

  .label-card__body {
    padding: 34px 23px 40px;
  }

  .label-card h3 {
    margin-top: 28px;
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .label-card__tagline {
    font-size: 1.45rem;
  }

  .label-card__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-pill {
    max-width: none;
  }

  .works__heading,
  .news__heading,
  .company__heading {
    margin-bottom: 38px;
  }

  .works-grid {
    display: grid;
  }

  .work-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 190px auto;
  }

  .work-card__image {
    height: auto;
  }

  .related-sites {
    margin-top: 38px;
    padding-top: 34px;
  }

  .related-sites__heading {
    display: block;
    margin-bottom: 22px;
  }

  .related-sites__heading h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }

  .related-sites__heading > p:last-child {
    margin-top: 16px;
  }

  .related-sites-grid {
    grid-template-columns: 1fr;
  }

  .related-site-banner {
    grid-template-rows: minmax(132px, 1fr) auto;
  }

  .studio {
    padding-block: 90px;
  }

  .studio__heading {
    margin-bottom: 35px;
  }

  .service-list {
    margin-top: 0;
  }

  .service-list li {
    min-height: 145px;
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .service-list b {
    display: none;
  }

  .service-list h3 {
    font-size: 1.08rem;
  }

  .studio__cta {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    padding: 24px;
  }

  .studio__cta .mail-actions {
    align-items: flex-start;
  }

  .mail-fallback {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .studio__cta .mail-fallback {
    justify-content: flex-start;
  }

  .mail-fallback small {
    text-align: left;
  }

  .news-list article {
    min-height: 115px;
    grid-template-columns: 1fr auto;
    gap: 3px 10px;
    align-content: center;
    padding-right: 10px;
  }

  .news-list h3 {
    grid-column: 1 / -1;
    font-size: 0.83rem;
  }

  .news-list article > i {
    top: 13px;
    right: 5px;
  }

  .recruit {
    padding-block: 90px;
  }

  .recruit__copy > p:not(.overline) {
    font-size: 0.9rem;
  }

  .recruit__requirements {
    padding: 22px 18px;
    box-shadow: none;
  }

  .recruit__requirements dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .recruit__requirements dd {
    font-size: 0.74rem;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .company-table dd {
    font-size: 0.8rem;
  }

  .access-guide {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 22px;
    border-radius: 19px;
    box-shadow: 6px 6px 0 var(--sun);
  }

  .access-map iframe {
    height: 320px;
  }

  .contact {
    min-height: 0;
    padding: 80px 15px;
  }

  .contact__inner,
  .contact__mail {
    width: 100%;
  }

  .contact__mail {
    min-width: 0;
    padding: 20px;
  }

  .contact__mail strong {
    font-size: 0.87rem;
  }

  .site-footer {
    padding: 48px 20px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
    margin-top: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Bokusaga official game-system gallery */
.saga__visuals {
  min-width: 0;
  background: #e6f0fb;
}

.saga__visuals .saga__art {
  margin: 0;
}
