:root {
  --oz-ink: #1b1116;
  --oz-ink-soft: #2b1b22;
  --oz-plum: #40252f;
  --oz-rose: #c16f79;
  --oz-rose-bright: #e29aa2;
  --oz-cream: #f4efeb;
  --oz-paper: #ebe3de;
  --oz-white: #fffaf7;
  --oz-muted: #766c70;
  --oz-line: rgb(44 27 35 / 16%);
  --oz-line-dark: rgb(255 250 247 / 20%);
  --oz-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --oz-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --oz-ease: cubic-bezier(.22, 1, .36, 1);
  --oz-max: 1320px;
  --oz-gutter: clamp(20px, 4vw, 64px);
  --oz-header-height: 78px;
  --oz-preview-height: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--oz-header-height) + var(--oz-preview-height));
}

body {
  margin: 0;
  color: var(--oz-ink);
  background: var(--oz-cream);
  font-family: var(--oz-sans);
  line-height: 1.85;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  font: inherit;
}

address {
  font-style: normal;
}

::selection {
  color: var(--oz-white);
  background: var(--oz-rose);
}

:focus-visible {
  outline: 2px solid var(--oz-rose-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--oz-white);
  background: var(--oz-ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.layout {
  width: min(100%, calc(var(--oz-max) + var(--oz-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--oz-gutter);
}

.section {
  padding-block: clamp(96px, 11vw, 180px);
}

.opening {
  display: none;
}

.has-js .opening {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff500;
  background: #ff302f;
  opacity: 1;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity;
  transition: opacity .55s var(--oz-ease), visibility .55s;
}

.has-js .opening::before,
.has-js .opening::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 245 0 / 42%);
  content: "";
  transform: scaleX(0);
  animation: opening-line .7s .1s var(--oz-ease) forwards;
}

.has-js .opening::after {
  inset: 26px;
  opacity: .45;
  animation-delay: .16s;
}

.opening__mark {
  width: min(68vw, 620px);
  animation: opening-mark .8s var(--oz-ease) both;
}

.opening p {
  position: absolute;
  right: 0;
  bottom: clamp(34px, 5vw, 70px);
  left: 0;
  margin: 0;
  text-align: center;
  font: 10px/1 Georgia, serif;
  letter-spacing: .48em;
  opacity: 0;
  animation: opening-copy .5s .34s ease forwards;
}

.opening.is-leaving {
  visibility: hidden;
  opacity: 0;
}

body.is-opening {
  overflow: hidden;
}

body.is-opening .site-header,
body.is-opening .mobile-actions {
  visibility: hidden;
  opacity: 0;
}

@keyframes opening-mark {
  from { opacity: 0; transform: scale(.78); }
  to { opacity: 1; transform: none; }
}

@keyframes opening-line {
  to { transform: none; }
}

@keyframes opening-copy {
  to { opacity: .78; }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: var(--oz-preview-height);
  left: 0;
  width: 100%;
  height: var(--oz-header-height);
  display: flex;
  align-items: center;
  padding-inline: clamp(20px, 3vw, 48px);
  color: var(--oz-white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, color .35s ease, height .35s ease, border-color .35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 68px;
  color: var(--oz-ink);
  background: rgb(244 239 235 / 93%);
  border-bottom-color: var(--oz-line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  line-height: 1;
}

.brand__mark {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.brand__mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.brand__mark path:nth-child(2) {
  opacity: .44;
}

.brand__mark text {
  fill: currentColor;
  font: 15px Georgia, serif;
  text-anchor: middle;
}

.brand > span {
  display: grid;
  gap: 4px;
}

.brand b {
  font: 25px/1 Georgia, serif;
  letter-spacing: .12em;
}

.brand small {
  font-size: 8px;
  letter-spacing: .48em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.2vw, 36px);
  margin-left: auto;
}

.global-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.global-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--oz-ease);
}

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

.nav-cta {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 0 22px;
  color: var(--oz-white);
  background: var(--oz-plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: grid;
  overflow: hidden;
  align-items: end;
  color: var(--oz-white);
  background: var(--oz-ink);
}

.hero__picture,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  animation: hero-image 1.4s var(--oz-ease) both;
}

.hp-progress {
  position: fixed;
  z-index: 400;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: var(--oz-rose-bright);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgb(20 12 16 / 82%) 0%, rgb(20 12 16 / 45%) 48%, rgb(20 12 16 / 14%) 78%),
    linear-gradient(0deg, rgb(20 12 16 / 78%) 0%, transparent 46%);
}

.hero__rail {
  position: absolute;
  z-index: 1;
  top: calc(var(--oz-preview-height) + var(--oz-header-height) + 18px);
  right: 31px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: .32em;
  opacity: .7;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(150px, 16vh, 210px);
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  animation: hero-rise .9s .2s var(--oz-ease) both;
}

.hero__label::before {
  width: 48px;
  height: 1px;
  content: "";
  background: var(--oz-rose-bright);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font: 400 clamp(46px, 6.1vw, 90px)/1.32 var(--oz-serif);
  letter-spacing: .04em;
  text-wrap: balance;
}

.hero h1 em {
  color: #f3b0b7;
  font-style: normal;
}

.hero__lead {
  margin: 26px 0 0;
  font: 400 clamp(14px, 1.3vw, 17px)/2 var(--oz-sans);
  letter-spacing: .08em;
  animation: hero-rise 1s .46s var(--oz-ease) both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  animation: hero-rise 1s .58s var(--oz-ease) both;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .3s ease, background .3s ease, border .3s ease, transform .3s var(--oz-ease);
}

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

.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button--line {
  color: var(--oz-ink);
  border-color: var(--oz-white);
  background: var(--oz-white);
}

.button--line:hover {
  color: var(--oz-white);
  background: var(--oz-rose);
  border-color: var(--oz-rose);
}

.button--ghost {
  color: var(--oz-white);
  border-color: rgb(255 255 255 / 50%);
  background: rgb(12 8 10 / 16%);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--oz-white);
  background: rgb(12 8 10 / 48%);
}

.button--large {
  min-width: min(100%, 300px);
  min-height: 66px;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 4vw, 70px);
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: .12em;
}

.hero__scroll i {
  position: relative;
  width: 62px;
  height: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 40%);
}

.hero__scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--oz-white);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.fact-strip {
  position: relative;
  z-index: 3;
  color: var(--oz-white);
  background: var(--oz-ink-soft);
}

.fact-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 29px 23px;
}

.fact-strip article {
  min-height: 74px;
  display: grid;
  align-content: center;
  padding-inline: clamp(18px, 3vw, 48px);
  border-left: 1px solid var(--oz-line-dark);
}

.fact-strip article:last-child {
  border-right: 1px solid var(--oz-line-dark);
}

.fact-strip p {
  margin: 0;
}

.fact-strip strong {
  font: 400 clamp(29px, 3vw, 46px)/1 Georgia, serif;
  letter-spacing: -.02em;
}

.fact-strip article span {
  margin-left: 5px;
  font-size: 11px;
}

.fact-strip small {
  margin-top: 11px;
  color: rgb(255 250 247 / 62%);
  font-size: 11px;
  letter-spacing: .1em;
}

.fact-strip__note {
  padding: 0 20px 13px;
  color: rgb(255 250 247 / 65%);
  font-size: 10px;
  text-align: center;
}

.contents-menu {
  background: var(--oz-cream);
  border-bottom: 1px solid var(--oz-line);
}

.contents-menu__inner {
  padding-block: clamp(30px, 4vw, 52px);
}

.contents-menu__inner > p {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0 0 18px;
  color: #6f6569;
  font-size: 11px;
  letter-spacing: .08em;
}

.contents-menu__inner > p span {
  color: #93434f;
  font: 700 10px/1 var(--oz-sans);
  letter-spacing: .24em;
}

.contents-menu__links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--oz-line);
  border-left: 1px solid var(--oz-line);
}

.contents-menu__links a {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
  border-right: 1px solid var(--oz-line);
  border-bottom: 1px solid var(--oz-line);
  background: rgb(255 255 255 / 8%);
  transition: color .35s ease, background .35s ease;
}

.contents-menu__links a:hover,
.contents-menu__links a:focus-visible {
  color: var(--oz-white);
  background: var(--oz-plum);
}

.contents-menu__links small {
  color: #93434f;
  font: 10px/1 Georgia, serif;
}

.contents-menu__links a:hover small,
.contents-menu__links a:focus-visible small {
  color: #f4b9c1;
}

.contents-menu__links span {
  font: 400 13px/1.5 var(--oz-serif);
}

.section-heading .kicker,
.kicker {
  margin: 0 0 22px;
  color: var(--oz-rose);
  font: 700 11px/1.2 var(--oz-sans);
  letter-spacing: .25em;
}

.section-heading .kicker span {
  display: inline-block;
  margin-right: 13px;
  color: var(--oz-muted);
}

.section-heading h2 {
  margin: 0;
  font: 400 clamp(36px, 4.8vw, 68px)/1.42 var(--oz-serif);
  letter-spacing: .055em;
}

.section-heading--light h2 {
  color: var(--oz-white);
}

.section-heading--light .kicker span {
  color: rgb(255 250 247 / 48%);
}

.about {
  background: var(--oz-cream);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(18px, 2.3vw, 36px);
}

.about .section-heading {
  grid-column: 1 / span 5;
}

.about__copy {
  grid-column: 7 / -1;
  padding-top: 52px;
}

.about__copy p {
  max-width: 650px;
  margin: 0;
  color: #5c5256;
  font-size: 15px;
  line-height: 2.15;
}

.about__copy .about__lead {
  margin-bottom: 25px;
  color: var(--oz-ink);
  font: 400 clamp(20px, 2vw, 29px)/1.9 var(--oz-serif);
}

.media-frame {
  position: relative;
  margin: 96px 0 0;
}

.media-frame::before {
  position: absolute;
  z-index: 0;
  top: -23px;
  right: -23px;
  width: 42%;
  height: 40%;
  content: "";
  border-top: 1px solid var(--oz-rose);
  border-right: 1px solid var(--oz-rose);
}

.media-frame picture {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-frame figcaption {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  color: rgb(255 250 247 / 88%);
  background: rgb(20 12 16 / 74%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 10px;
  letter-spacing: .08em;
}

.media-frame figcaption span {
  color: var(--oz-rose-bright);
  font: 10px/1 Georgia, serif;
  letter-spacing: .18em;
}

.about__portrait {
  grid-column: 1 / span 7;
}

.about__reasons {
  grid-column: 8 / -1;
  align-self: center;
  margin-top: 96px;
  border-top: 1px solid var(--oz-line);
}

.about__reasons article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(170px, .85fr) 1.4fr;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--oz-line);
}

.about__reasons article > span {
  color: var(--oz-rose);
  font: 15px/1.4 Georgia, serif;
}

.about__reasons h3,
.about__reasons p {
  margin: 0;
}

.about__reasons h3 {
  font: 400 19px/1.65 var(--oz-serif);
}

.about__reasons p {
  color: var(--oz-muted);
  font-size: 13px;
  line-height: 1.9;
}

.space {
  overflow: hidden;
  color: var(--oz-white);
  background: var(--oz-ink);
}

.space__heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 110px);
}

.space__heading > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: rgb(255 250 247 / 64%);
  font-size: 14px;
  line-height: 2.15;
}

.photo-grid {
  width: min(100%, 1680px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, 16vw);
  gap: 9px;
  margin-inline: auto;
  padding-inline: clamp(9px, 1vw, 18px);
}

.photo-card,
.photo-film button {
  position: relative;
  overflow: hidden;
  color: var(--oz-white);
  background: #281a21;
  cursor: zoom-in;
}

.photo-card {
  grid-column: span 4;
}

.photo-card--hero {
  grid-column: span 7;
  grid-row: span 2;
}

.photo-card--tall {
  grid-column: span 5;
  grid-row: span 2;
}

.photo-card--wide {
  grid-column: span 8;
}

.photo-card picture,
.photo-card img {
  width: 100%;
  height: 100%;
}

.photo-card img,
.photo-film img {
  object-fit: cover;
  transition: transform .9s var(--oz-ease), filter .5s ease;
}

.photo-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  content: "";
  background: linear-gradient(transparent, rgb(16 9 13 / 70%));
}

.photo-card > span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 16px;
  left: 20px;
  display: flex;
  gap: 12px;
  font-size: 9px;
  letter-spacing: .2em;
  text-align: left;
}

.photo-card > span b {
  color: var(--oz-rose-bright);
  font-weight: 400;
}

.photo-card:hover img,
.photo-film button:hover img {
  transform: scale(1.035);
  filter: brightness(1.05);
}

.photo-film {
  width: min(100%, 1680px);
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 9px;
  margin: 9px auto 0;
  padding-inline: clamp(9px, 1vw, 18px);
}

.photo-film button {
  aspect-ratio: 4 / 3;
}

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

.visit {
  background: var(--oz-paper);
}

.visit__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(18px, 2.3vw, 36px);
}

.visit .section-heading {
  grid-column: 1 / span 5;
}

.visit__intro {
  grid-column: 7 / -1;
  align-self: end;
  max-width: 560px;
  margin: 0 0 11px;
  color: var(--oz-muted);
  font-size: 14px;
  line-height: 2;
}

.visit-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 90px 0 0;
  padding: 0;
  border-top: 1px solid var(--oz-line);
  list-style: none;
}

.visit-steps li {
  min-height: 300px;
  padding: 34px clamp(18px, 2.5vw, 38px) 34px 0;
  border-right: 1px solid var(--oz-line);
}

.visit-steps li + li {
  padding-left: clamp(18px, 2.5vw, 38px);
}

.visit-steps span {
  color: var(--oz-rose);
  font: 700 9px/1 var(--oz-sans);
  letter-spacing: .18em;
}

.visit-steps h3 {
  margin: 64px 0 15px;
  font: 400 22px/1.6 var(--oz-serif);
}

.visit-steps p {
  margin: 0;
  color: var(--oz-muted);
  font-size: 12px;
  line-height: 2;
}

.guest-coupon {
  position: relative;
  padding-block: clamp(76px, 9vw, 128px);
  overflow: hidden;
  color: var(--oz-white);
  background:
    radial-gradient(circle at 84% 12%, rgb(255 229 217 / 18%), transparent 25%),
    linear-gradient(135deg, #8f1f29, #bf3036 51%, #6d1521);
}

.guest-coupon::before,
.guest-coupon::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.guest-coupon::before {
  inset: 0;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.guest-coupon::after {
  right: -8vw;
  bottom: -33vw;
  width: min(55vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 250 247 / 18%);
  transform: rotate(45deg);
}

.guest-coupon__ticket {
  position: relative;
  z-index: 1;
  border: 1px solid rgb(255 250 247 / 42%);
  box-shadow: 0 34px 90px rgb(51 5 13 / 30%);
}

.guest-coupon__ticket::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgb(255 250 247 / 15%);
  content: "";
  pointer-events: none;
}

.guest-coupon__header,
.guest-coupon__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 21px clamp(26px, 4vw, 58px);
}

.guest-coupon__header {
  border-bottom: 1px solid rgb(255 250 247 / 25%);
}

.guest-coupon__header p,
.guest-coupon__header span,
.guest-coupon__footer p {
  margin: 0;
}

.guest-coupon__header p {
  font: 700 10px/1 var(--oz-sans);
  letter-spacing: .28em;
}

.guest-coupon__header span {
  color: rgb(255 250 247 / 68%);
  font: 9px/1 Georgia, serif;
  letter-spacing: .18em;
}

.guest-coupon__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  min-height: 390px;
}

.guest-coupon__price,
.guest-coupon__benefits {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: clamp(48px, 4.25vw, 68px);
}

.guest-coupon__price {
  border-right: 1px dashed rgb(255 250 247 / 34%);
}

.guest-coupon__price > p {
  margin: 0 0 23px;
  font: 700 12px/1.4 var(--oz-sans);
  letter-spacing: .17em;
}

.guest-coupon__price h2 {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 32px);
  margin: 0;
  white-space: nowrap;
}

.guest-coupon__price h2 strong {
  font: 400 clamp(34px, 4.1vw, 60px)/1 var(--oz-serif);
}

.guest-coupon__price h2 strong b {
  margin-right: .05em;
  font: 400 clamp(78px, 9.7vw, 144px)/.75 Georgia, serif;
  letter-spacing: -.05em;
}

.guest-coupon__price h2 > span {
  font: 400 clamp(56px, 7.6vw, 112px)/.8 Georgia, serif;
  letter-spacing: -.045em;
}

.guest-coupon__price h2 small {
  margin-right: .06em;
  font-size: .45em;
}

.guest-coupon__benefits {
  gap: clamp(35px, 5vw, 62px);
  background: rgb(50 4 12 / 13%);
}

.guest-coupon__benefits p {
  margin: 0;
}

.guest-coupon__bottle {
  font: 400 clamp(23px, 2.7vw, 39px)/1.55 var(--oz-serif);
  letter-spacing: .04em;
  word-break: keep-all;
}

.guest-coupon__bottle small {
  display: block;
  margin-bottom: 13px;
  color: #ffd0cf;
  font: 700 8px/1 var(--oz-sans);
  letter-spacing: .22em;
}

.guest-coupon__no-extra {
  color: rgb(255 250 247 / 76%);
  font-size: 12px;
  line-height: 1.7;
}

.guest-coupon__no-extra strong {
  color: var(--oz-white);
  font: 400 clamp(22px, 2.2vw, 32px)/1.65 var(--oz-serif);
  word-break: keep-all;
}

.guest-coupon__footer {
  border-top: 1px solid rgb(255 250 247 / 25%);
}

.guest-coupon__footer p {
  color: rgb(255 250 247 / 74%);
  font-size: 10px;
}

.guest-coupon__footer a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 19px;
  color: #7e1720;
  background: var(--oz-white);
  font-size: 10px;
  font-weight: 700;
  transition: color .3s ease, background .3s ease, transform .3s var(--oz-ease);
}

.guest-coupon__footer a:hover,
.guest-coupon__footer a:focus-visible {
  color: var(--oz-ink);
  background: #fff;
  transform: translateY(-2px);
}

.system {
  color: var(--oz-white);
  background: var(--oz-ink-soft);
}

.system__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(18px, 2.3vw, 36px);
}

.system .section-heading {
  grid-column: 1 / span 5;
}

.verification {
  max-width: 330px;
  margin: 34px 0 0;
  padding-left: 15px;
  border-left: 1px solid var(--oz-rose);
  color: rgb(255 250 247 / 53%);
  font-size: 11px;
  line-height: 1.9;
}

.price-panels {
  grid-column: 6 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--oz-line-dark);
}

.price-panel {
  padding: clamp(28px, 4vw, 58px);
  color: var(--oz-white);
  background: #25181e;
}

.price-panel--accent {
  background: #4a2b36;
}

.price-panel__label {
  margin: 0;
  color: var(--oz-rose-bright);
  font: 700 9px/1 var(--oz-sans);
  letter-spacing: .2em;
}

.price-panel h3 {
  margin: 13px 0 40px;
  font: 400 24px/1.5 var(--oz-serif);
}

.price-panel__main {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--oz-line-dark);
}

.price-panel__main span {
  display: block;
  margin-bottom: 13px;
  color: rgb(255 250 247 / 48%);
  font-size: 8px;
  letter-spacing: .18em;
}

.price-panel__main strong {
  font: 400 clamp(38px, 4vw, 55px)/1 Georgia, serif;
}

.price-panel__main strong small {
  margin-right: 5px;
  font-size: .48em;
}

.price-panel dl {
  margin: 18px 0 0;
}

.price-panel dl div {
  display: flex;
  justify-content: space-between;
  padding-block: 11px;
  font-size: 11px;
}

.price-panel dt {
  color: rgb(255 250 247 / 56%);
}

.price-panel dd {
  margin: 0;
  font-family: Georgia, serif;
}

.system-details {
  grid-column: 6 / -1;
  margin-top: 38px;
}

.system-details dl {
  margin: 0;
  border-top: 1px solid var(--oz-line-dark);
}

.system-details dl div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--oz-line-dark);
  font-size: 11px;
}

.system-details dt {
  color: rgb(255 250 247 / 54%);
}

.system-details dd {
  margin: 0;
  text-align: right;
}

.system-details > p {
  margin: 20px 0 0;
  color: rgb(255 250 247 / 45%);
  font-size: 11px;
  text-align: right;
}

.voice {
  background: var(--oz-cream);
}

.voice__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(18px, 2.3vw, 36px);
}

.voice .section-heading {
  grid-column: 1 / span 6;
}

.voice .section-heading h2 b {
  color: var(--oz-rose);
  font-weight: 400;
}

.voice__score {
  grid-column: 9 / -1;
  align-self: end;
  padding-left: 30px;
  border-left: 1px solid var(--oz-line);
}

.voice__score > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.voice__score strong {
  font: 400 clamp(62px, 7vw, 98px)/.9 Georgia, serif;
}

.voice__score > div span {
  color: var(--oz-muted);
  font: 14px Georgia, serif;
}

.voice__score > p {
  margin: 17px 0 8px;
  color: var(--oz-rose);
  font-size: 17px;
  letter-spacing: .2em;
}

.voice__score small {
  display: block;
  color: var(--oz-muted);
  font-size: 9px;
  line-height: 1.65;
  letter-spacing: .08em;
}

.voice__analysis {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--oz-line);
}

.voice__analysis article {
  min-height: 285px;
  padding: 32px clamp(18px, 2.4vw, 34px) 30px 0;
  border-right: 1px solid var(--oz-line);
}

.voice__analysis article + article {
  padding-left: clamp(18px, 2.4vw, 34px);
}

.voice__analysis span {
  color: var(--oz-rose);
  font: 11px Georgia, serif;
  letter-spacing: .1em;
}

.voice__analysis h3 {
  margin: 57px 0 14px;
  font: 400 20px/1.6 var(--oz-serif);
}

.voice__analysis p {
  margin: 0;
  color: var(--oz-muted);
  font-size: 12px;
  line-height: 2;
}

.voice__source {
  grid-column: 6 / -1;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-top: 42px;
}

.voice__source p {
  max-width: 500px;
  margin: 0;
  color: var(--oz-muted);
  font-size: 11px;
  line-height: 1.9;
}

.voice__source a,
.text-link {
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.today {
  position: relative;
  min-height: clamp(620px, 78vw, 900px);
  display: grid;
  overflow: hidden;
  align-items: center;
  color: var(--oz-white);
  background: var(--oz-ink);
}

.today__picture,
.today__veil {
  position: absolute;
  inset: 0;
}

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

.today__veil {
  background: linear-gradient(90deg, rgb(20 12 16 / 88%) 0%, rgb(20 12 16 / 62%) 42%, rgb(20 12 16 / 16%) 78%);
}

.today__content {
  position: relative;
  z-index: 1;
}

.today__content h2 {
  margin: 0;
  font: 400 clamp(38px, 5vw, 70px)/1.45 var(--oz-serif);
  letter-spacing: .055em;
}

.today__content > p:not(.kicker) {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgb(255 250 247 / 70%);
  font-size: 13px;
  line-height: 2;
}

.today__content > div {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 39px;
}

.cast-home {
  color: var(--oz-white);
  background: #180f13;
}

.cast-home__head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.cast-home__head h2 {
  margin: 0;
  font: 400 clamp(40px, 5.5vw, 76px)/1.42 var(--oz-serif);
  letter-spacing: .05em;
}

.recruit-campaign-title {
  display: grid;
  justify-items: start;
  margin: 0;
  font-weight: 400;
  text-wrap: balance;
}

.recruit-campaign-title span,
.recruit-campaign-title b,
.recruit-campaign-title em,
.recruit-campaign-title i {
  font: inherit;
}

.recruit-campaign-title b,
.recruit-campaign-title em,
.recruit-campaign-title i {
  font-style: normal;
}

.recruit-campaign-title__open {
  display: flex;
  align-items: center;
  gap: .26em;
  color: var(--oz-rose-bright);
  font-family: Georgia, serif;
  letter-spacing: .12em;
}

.recruit-campaign-title__open::after {
  width: clamp(34px, 5vw, 72px);
  height: 1px;
  margin-left: .7em;
  content: "";
  background: currentColor;
  opacity: .55;
}

.recruit-campaign-title__open i {
  color: var(--oz-white);
}

.recruit-campaign-title__count {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.recruit-campaign-title__count b {
  color: var(--oz-white);
  font-family: Georgia, serif;
  line-height: .9;
  letter-spacing: -.045em;
}

.recruit-campaign-title__count > span {
  color: var(--oz-white);
  font-family: var(--oz-serif);
  letter-spacing: .035em;
}

.recruit-campaign-title__count em {
  margin-left: .45em;
  color: var(--oz-rose-bright);
  font-family: var(--oz-sans);
  font-weight: 700;
  letter-spacing: -.22em;
}

.recruit-campaign-title__sync {
  display: flex;
  align-items: center;
  color: var(--oz-white);
  font-family: var(--oz-serif);
  letter-spacing: .05em;
  white-space: nowrap;
}

.recruit-campaign-title__sync i {
  margin-left: .24em;
  color: var(--oz-rose-bright);
  font-family: Georgia, serif;
}

.recruit-campaign-title--home {
  gap: clamp(8px, 1.1vw, 15px);
}

.recruit-campaign-title--home .recruit-campaign-title__open i,
.recruit-campaign-title--home .recruit-campaign-title__count b,
.recruit-campaign-title--home .recruit-campaign-title__count > span,
.recruit-campaign-title--home .recruit-campaign-title__sync {
  color: var(--oz-ink);
}

.recruit-campaign-title--home .recruit-campaign-title__open {
  font-size: clamp(13px, 1.15vw, 16px);
}

.recruit-campaign-title--home .recruit-campaign-title__count b {
  font-size: clamp(70px, 7.2vw, 104px);
}

.recruit-campaign-title--home .recruit-campaign-title__count > span {
  margin-left: .22em;
  font-size: clamp(30px, 3.4vw, 47px);
}

.recruit-campaign-title--home .recruit-campaign-title__count em {
  font-size: clamp(13px, 1.2vw, 16px);
}

.recruit-campaign-title--home .recruit-campaign-title__sync {
  font-size: clamp(25px, 2.8vw, 40px);
}

.cast-home__head > div:last-child p {
  margin: 0 0 28px;
  color: rgb(255 250 247 / 65%);
  font-size: 13px;
  line-height: 2;
}

.cast-home__rail {
  display: grid;
  grid-auto-columns: clamp(250px, 25vw, 348px);
  grid-auto-flow: column;
  gap: clamp(8px, 1.2vw, 16px);
  margin-top: clamp(54px, 7vw, 92px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--oz-gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--oz-rose) rgb(255 255 255 / 10%);
  scrollbar-width: thin;
}

.cast-home-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #2b1b22;
  scroll-snap-align: start;
}

.cast-home-card picture {
  aspect-ratio: 1;
  overflow: hidden;
}

.cast-home-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(.84) contrast(1.03);
  transition: transform .8s var(--oz-ease), filter .5s ease;
}

.cast-home-card:hover img,
.cast-home-card:focus-visible img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.035);
}

.cast-home-card p {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 58px 18px 16px;
  background: linear-gradient(transparent, rgb(15 8 12 / 90%));
}

.cast-home-card p small,
.cast-home-card p span {
  display: block;
}

.cast-home-card p small {
  margin-bottom: 4px;
  color: rgb(255 250 247 / 62%);
  font: 9px/1.2 Georgia, serif;
  letter-spacing: .14em;
}

.cast-home-card p span {
  font: 400 19px/1.4 var(--oz-serif);
}

.cast-home__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  color: rgb(255 250 247 / 58%);
  font-size: 10px;
  letter-spacing: .12em;
}

.cast-home__footer p {
  margin: 0;
}

.cast-home__footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--oz-white);
  border-bottom: 1px solid rgb(255 250 247 / 36%);
}

.recruit-home {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--oz-ink);
  background: var(--oz-paper);
}

.recruit-home__picture {
  min-height: 760px;
  overflow: hidden;
}

.recruit-home__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

.recruit-home__content {
  display: grid;
  align-content: center;
  padding: clamp(70px, 8vw, 130px);
}

.recruit-home__content > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--oz-muted);
  font-size: 13px;
  line-height: 2;
}

.recruit-home dl {
  margin: 38px 0;
  border-top: 1px solid var(--oz-line);
}

.recruit-home dl div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 0;
  border-bottom: 1px solid var(--oz-line);
}

.recruit-home dt {
  color: var(--oz-muted);
  font-size: 11px;
}

.recruit-home dd {
  margin: 0;
  font: 18px Georgia, serif;
}

.recruit-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button--recruit-line {
  color: var(--oz-white);
  border-color: var(--oz-ink);
  background: var(--oz-ink);
}

.button--recruit-line:hover {
  color: var(--oz-white);
  border-color: var(--oz-rose);
  background: var(--oz-rose);
}

.recruit-home .button {
  width: fit-content;
}

.inner-page {
  background: var(--oz-cream);
}

.inner-page .site-header {
  color: var(--oz-ink);
  background: rgb(244 239 235 / 94%);
  border-bottom-color: var(--oz-line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.page-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: calc(var(--oz-header-height) + var(--oz-preview-height) + 90px) 0 90px;
  color: var(--oz-white);
  background: #1b1116;
  overflow: hidden;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero .kicker {
  color: var(--oz-rose-bright);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font: 400 clamp(48px, 8vw, 112px)/1.18 var(--oz-serif);
  letter-spacing: .05em;
}

.page-hero p:last-child {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgb(255 250 247 / 65%);
  font-size: 13px;
}

.cast-page-hero {
  position: relative;
  isolation: isolate;
}

.cast-page-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #1b1116 0%, rgb(27 17 22 / 96%) 44%, rgb(27 17 22 / 38%) 72%, rgb(27 17 22 / 70%) 100%);
  pointer-events: none;
}

.cast-page-hero__art {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 auto;
  width: 58%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  overflow: hidden;
  background: #1b1116;
}

.cast-page-hero__art picture,
.cast-page-hero__art img {
  width: 100%;
  height: 100%;
}

.cast-page-hero__art picture {
  overflow: hidden;
}

.cast-page-hero__art img {
  object-fit: cover;
  filter: saturate(.72) contrast(1.04) brightness(.78);
  transform: scale(1.04);
}

.cast-page-hero__art picture:nth-child(1) img {
  object-position: 52% center;
}

.cast-page-hero__art picture:nth-child(2) img {
  object-position: 50% 30%;
}

.cast-page-hero__art picture:nth-child(3) img {
  object-position: 50% 24%;
}

.cast-page-hero .page-hero__inner {
  z-index: 2;
}

.cast-page-hero h1,
.cast-page-hero p:last-child {
  max-width: 650px;
}

.subpage-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-block: 28px;
}

.subpage-index a {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 16px clamp(16px, 2.4vw, 34px);
  border: 1px solid var(--oz-line);
  background: rgb(255 255 255 / 14%);
  transition: color .3s ease, background .3s ease;
}

.subpage-index a + a {
  margin-left: -1px;
}

.subpage-index small {
  color: #9d4b57;
  font: 10px/1 Georgia, serif;
  letter-spacing: .12em;
}

.subpage-index span {
  font: 400 clamp(14px, 1.35vw, 17px)/1.5 var(--oz-serif);
}

.subpage-index a:hover,
.subpage-index a:focus-visible {
  color: var(--oz-white);
  background: var(--oz-plum);
}

.subpage-index a:hover small,
.subpage-index a:focus-visible small {
  color: var(--oz-rose-bright);
}

.cast-list-section {
  background: var(--oz-cream);
}

.cast-list-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 62px;
}

.cast-list-head h2 {
  margin: 0;
  font: 400 clamp(36px, 5vw, 65px)/1.35 var(--oz-serif);
}

.cast-list-head p {
  max-width: 510px;
  margin: 0;
  color: #675b60;
  font-size: 12px;
}

.cast-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px) clamp(8px, 1.4vw, 20px);
}

.cast-list-card {
  margin: 0;
  scroll-margin-top: calc(var(--oz-header-height) + var(--oz-preview-height) + 18px);
}

.cast-list-card picture {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--oz-paper);
}

.cast-list-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--oz-paper);
  filter: saturate(.88) contrast(1.02);
}

.cast-list-card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 3px 0;
  border-top: 1px solid var(--oz-line);
}

.cast-list-card b {
  font: 400 18px var(--oz-serif);
}

.cast-list-card small {
  color: #675b60;
  font: 12px Georgia, serif;
  letter-spacing: .08em;
}

.cast-list-card__index {
  color: var(--oz-rose);
  font: 10px/1 Georgia, serif;
  letter-spacing: .08em;
}

.cast-list-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page-cta {
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--oz-white);
  text-align: center;
  background: #26161d;
}

.page-cta h2 {
  margin: 0;
  font: 400 clamp(38px, 6vw, 76px)/1.4 var(--oz-serif);
}

.page-cta p {
  margin: 22px 0 36px;
  color: rgb(255 250 247 / 65%);
  font-size: 12px;
}

.page-cta .button {
  margin-inline: auto;
}

.recruit-page-hero {
  position: relative;
  min-height: max(720px, 92svh);
}

.recruit-page-hero .page-hero__inner {
  max-width: 1280px;
}

.recruit-page-hero .kicker {
  margin-bottom: clamp(26px, 3.2vw, 46px);
}

.recruit-campaign-title--hero {
  gap: clamp(9px, 1vw, 16px);
}

.recruit-campaign-title--hero .recruit-campaign-title__open {
  font-size: clamp(13px, 1.2vw, 17px);
}

.recruit-campaign-title--hero .recruit-campaign-title__count b {
  font-size: clamp(92px, 10vw, 150px);
}

.recruit-campaign-title--hero .recruit-campaign-title__count > span {
  margin-left: .18em;
  font-size: clamp(45px, 5vw, 72px);
}

.recruit-campaign-title--hero .recruit-campaign-title__count em {
  font-size: clamp(15px, 1.4vw, 21px);
}

.recruit-campaign-title--hero .recruit-campaign-title__sync {
  font-size: clamp(38px, 4.3vw, 62px);
}

.recruit-page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(20 12 16 / 94%) 0%, rgb(20 12 16 / 70%) 45%, rgb(20 12 16 / 24%) 78%, rgb(20 12 16 / 8%)),
    image-set(
      url("assets/img/oz-gallery-05-1440.avif") type("image/avif"),
      url("assets/img/oz-gallery-05-1440.webp") type("image/webp"),
      url("assets/img/oz-gallery-05-1440.jpg") type("image/jpeg")
    ) center 48% / cover;
}

.recruit-summary {
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.recruit-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--oz-white);
  border: 1px solid rgb(255 250 247 / 14%);
  background: #2c1820;
  box-shadow: 0 24px 65px rgb(19 8 13 / 20%);
}

.recruit-summary article {
  min-height: 180px;
  display: grid;
  align-content: center;
  padding: 30px clamp(22px, 3vw, 46px);
  border-right: 1px solid rgb(255 250 247 / 12%);
}

.recruit-summary article:last-child {
  border-right: 0;
}

.recruit-summary small {
  color: rgb(255 250 247 / 55%);
  font-size: 9px;
  letter-spacing: .15em;
}

.recruit-summary strong {
  margin-top: 11px;
  font: 400 clamp(22px, 2.4vw, 34px)/1.25 Georgia, serif;
}

.recruit-summary__bonus {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #643644, #3b2029);
}

.recruit-summary__bonus::after {
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgb(255 250 247 / 13%);
  content: "";
  transform: rotate(45deg);
}

.recruit-summary__bonus small {
  color: #f2b9c0;
}

.recruit-bonus {
  padding-block: clamp(58px, 7vw, 100px) 0;
}

.recruit-bonus__inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px);
  color: var(--oz-white);
  background:
    radial-gradient(circle at 88% 20%, rgb(214 121 135 / 24%), transparent 31%),
    linear-gradient(135deg, #241218, #522b38 68%, #321923);
}

.recruit-bonus__inner::before,
.recruit-bonus__inner::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.recruit-bonus__inner::before {
  inset: 16px;
  border: 1px solid rgb(255 250 247 / 18%);
}

.recruit-bonus__inner::after {
  width: 340px;
  aspect-ratio: 1;
  right: -105px;
  bottom: -170px;
  border: 1px solid rgb(255 250 247 / 13%);
  transform: rotate(45deg);
}

.recruit-bonus__kicker {
  margin: 0 0 34px;
  color: #f2b9c0;
  font: 700 10px/1.4 var(--oz-sans);
  letter-spacing: .24em;
}

.recruit-bonus__lead {
  margin: 0 0 10px;
  font: 400 clamp(18px, 2vw, 25px)/1.6 var(--oz-serif);
  letter-spacing: .08em;
}

.recruit-bonus h2 {
  margin: 0;
  font: 400 clamp(45px, 7vw, 94px)/1.12 var(--oz-serif);
  letter-spacing: .04em;
}

.recruit-bonus h2 strong {
  color: #ffd7dc;
  font: inherit;
}

.recruit-bonus__amount {
  display: block;
}

.recruit-bonus__copy {
  max-width: 660px;
  margin: 32px 0 38px;
  color: rgb(255 250 247 / 76%);
  font-size: 13px;
  line-height: 2;
}

.recruit-bonus__copy p {
  margin: 0;
}

.recruit-bonus__note {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  color: rgb(255 250 247 / 58%);
  font-size: 10px;
  line-height: 1.7;
}

.recruit-block {
  padding-block: clamp(92px, 10vw, 150px);
}

.recruit-block--paper {
  background: var(--oz-paper);
}

.recruit-block__head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  margin-bottom: 62px;
}

.recruit-block h2 {
  margin: 0;
  font: 400 clamp(37px, 5vw, 68px)/1.38 var(--oz-serif);
}

.recruit-block__head > p {
  max-width: 580px;
  margin: 12px 0 0;
  color: var(--oz-muted);
  font-size: 13px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--oz-line);
  border: 1px solid var(--oz-line);
}

.benefit-grid article {
  min-height: 260px;
  padding: clamp(27px, 3vw, 44px);
  background: var(--oz-cream);
}

.benefit-grid span {
  color: var(--oz-rose);
  font: 11px Georgia, serif;
}

.benefit-grid h3 {
  margin: 47px 0 15px;
  font: 400 22px var(--oz-serif);
}

.benefit-grid p {
  margin: 0;
  color: var(--oz-muted);
  font-size: 12px;
}

.recruit-scene {
  padding-block: clamp(72px, 8vw, 118px);
  color: var(--oz-white);
  background: #181014;
}

.recruit-scene__grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: stretch;
}

.recruit-scene__picture {
  min-height: 620px;
  overflow: hidden;
  background: #25171e;
}

.recruit-scene__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
}

.recruit-scene__copy {
  display: grid;
  align-content: center;
  padding: clamp(46px, 6vw, 88px);
  background: #2a1820;
}

.recruit-scene__copy h2 {
  margin: 0;
  font: 400 clamp(38px, 4.8vw, 66px)/1.42 var(--oz-serif);
}

.recruit-scene__copy > p:not(.kicker) {
  margin: 27px 0 36px;
  color: rgb(255 250 247 / 68%);
  font-size: 12px;
}

.recruit-scene__copy dl {
  margin: 0;
  border-top: 1px solid var(--oz-line-dark);
}

.recruit-scene__copy dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--oz-line-dark);
}

.recruit-scene__copy dt {
  color: rgb(255 250 247 / 48%);
  font-size: 10px;
}

.recruit-scene__copy dd {
  margin: 0;
  font-size: 12px;
}

.job-table {
  border-top: 1px solid var(--oz-line);
}

.job-table dl {
  margin: 0;
}

.job-table dl > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 35px;
  padding: 22px 0;
  border-bottom: 1px solid var(--oz-line);
}

.job-table dt {
  color: var(--oz-muted);
  font-size: 11px;
}

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

.entry-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  color: var(--oz-white);
  background: #25151c;
}

.entry-panel__copy {
  padding: clamp(56px, 7vw, 100px);
}

.entry-panel h2 {
  margin: 0;
  font: 400 clamp(38px, 5vw, 67px)/1.38 var(--oz-serif);
}

.entry-panel p {
  max-width: 560px;
  margin: 24px 0 34px;
  color: rgb(255 250 247 / 64%);
  font-size: 12px;
}

.entry-panel__steps {
  display: grid;
  align-content: center;
  gap: 1px;
  padding: clamp(40px, 5vw, 72px);
  background: rgb(255 255 255 / 3%);
}

.entry-panel__steps div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--oz-line-dark);
}

.entry-panel__steps span {
  color: var(--oz-rose-bright);
  font: 11px Georgia, serif;
}

.entry-panel__steps p {
  margin: 0;
  color: var(--oz-white);
  font: 400 15px var(--oz-serif);
}

.faq {
  background: var(--oz-paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(18px, 2.3vw, 36px);
}

.faq .section-heading {
  grid-column: 1 / span 5;
}

.faq__list {
  grid-column: 6 / -1;
  border-top: 1px solid var(--oz-line);
}

.faq details {
  border-bottom: 1px solid var(--oz-line);
}

.faq summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0;
  cursor: pointer;
  font: 400 17px/1.6 var(--oz-serif);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  content: "";
  background: var(--oz-rose);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
  max-width: 660px;
  margin: -3px 0 0;
  padding: 0 52px 29px 0;
  color: var(--oz-muted);
  font-size: 12px;
  line-height: 2;
}

.access {
  color: var(--oz-white);
  background: var(--oz-ink);
}

.access__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(18px, 2.3vw, 36px);
}

.access .section-heading {
  grid-column: 1 / span 5;
}

.access__info {
  grid-column: 7 / -1;
}

.access__name {
  margin: 10px 0 26px;
  font: 400 28px/1 Georgia, serif;
  letter-spacing: .1em;
}

.access__name small {
  margin-left: 12px;
  color: rgb(255 250 247 / 45%);
  font: 9px var(--oz-sans);
}

.access address {
  color: rgb(255 250 247 / 72%);
  font-size: 13px;
  line-height: 2;
}

.access dl {
  margin: 35px 0 0;
  border-top: 1px solid var(--oz-line-dark);
}

.access dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--oz-line-dark);
  font-size: 12px;
}

.access dt {
  color: rgb(255 250 247 / 44%);
}

.access dd {
  margin: 0;
}

.access__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.access__actions p {
  max-width: 350px;
  margin: 0;
  color: rgb(255 250 247 / 42%);
  font-size: 11px;
  line-height: 1.8;
}

.access__map {
  grid-column: 1 / -1;
  height: clamp(390px, 42vw, 590px);
  margin-top: 80px;
  overflow: hidden;
  filter: grayscale(1) contrast(.9) sepia(.12);
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 14vw, 210px);
  color: var(--oz-white);
  background: #4c2a35;
}

.contact__glow {
  position: absolute;
  top: -45%;
  right: -8%;
  width: min(60vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 12%);
  transform: rotate(45deg);
}

.contact__glow::before,
.contact__glow::after {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px solid rgb(255 255 255 / 10%);
}

.contact__glow::after {
  inset: 17%;
}

.contact__inner {
  position: relative;
  z-index: 1;
}

.contact h2 {
  margin: 0;
  font: 400 clamp(43px, 6vw, 82px)/1.4 var(--oz-serif);
  letter-spacing: .055em;
}

.contact__inner > p:not(.kicker) {
  margin: 28px 0 0;
  color: rgb(255 250 247 / 67%);
  font-size: 13px;
}

.contact__inner > div {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}

.contact__phone {
  display: grid;
  gap: 5px;
  font: 27px/1 Georgia, serif;
  letter-spacing: .06em;
}

.contact__phone small {
  color: rgb(255 250 247 / 49%);
  font: 8px var(--oz-sans);
  letter-spacing: .2em;
}

.site-footer {
  padding: 68px 0 26px;
  color: var(--oz-white);
  background: #140c10;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr .7fr;
  gap: 60px;
  align-items: start;
}

.brand--footer {
  width: fit-content;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.brand--footer img {
  pointer-events: none;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 25px;
}

.site-footer nav a,
.site-footer__external a {
  color: rgb(255 250 247 / 64%);
  font-size: 11px;
  transition: color .25s ease;
}

.site-footer a:hover {
  color: var(--oz-white);
}

.site-footer__external {
  display: grid;
  gap: 13px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  padding-top: 22px;
  border-top: 1px solid var(--oz-line-dark);
  color: rgb(255 250 247 / 58%);
  font-size: 10px;
  letter-spacing: .14em;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(92vw, 1260px);
  height: min(90svh, 900px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  color: var(--oz-white);
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgb(10 6 8 / 92%);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 13px;
  margin: 0;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  font-size: 10px;
  letter-spacing: .12em;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: -3px;
  right: -42px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 50%;
  background: rgb(0 0 0 / 20%);
  cursor: pointer;
}

.lightbox__close span::before,
.lightbox__close span::after {
  position: absolute;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--oz-white);
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--oz-ease), transform .75s var(--oz-ease);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-image {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@keyframes hero-rise {
  from { transform: translateY(26px); }
  to { transform: none; }
}

@keyframes scroll-line {
  0% { transform: translateX(-110%); }
  65%, 100% { transform: translateX(110%); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__rail {
    animation: hero-rail-in 1s .72s var(--oz-ease) both;
  }

  @supports (animation-timeline: scroll()) {
    .hp-progress {
      animation: page-progress linear both;
      animation-timeline: scroll(root block);
    }
  }

  @supports (animation-timeline: view()) {
    .hero__picture {
      animation: hero-parallax linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
  }
}

@keyframes hero-rail-in {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: .7; transform: none; }
}

@keyframes page-progress {
  to { transform: scaleX(1); }
}

@keyframes hero-parallax {
  from { transform: scale(1.015); }
  to { transform: scale(1.075); }
}

.brand__emblem {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand--footer .brand__emblem {
  width: 94px;
  height: 94px;
}

@media (max-width: 1050px) {
  .global-nav {
    gap: 18px;
  }

  .global-nav > a:not(.nav-cta) {
    display: none;
  }

  .cast-home__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cast-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__reasons article {
    grid-template-columns: 35px 1fr;
  }

  .about__reasons p {
    grid-column: 2;
  }

  .visit-steps {
    grid-column: 1 / -1;
  }

  .photo-film {
    overflow-x: auto;
    grid-template-columns: repeat(7, 240px);
    scroll-snap-type: x proximity;
  }

  .photo-film button {
    scroll-snap-align: start;
  }
}

@media (max-width: 980px) {
  .guest-coupon__body {
    grid-template-columns: 1fr;
  }

  .guest-coupon__price {
    border-right: 0;
    border-bottom: 1px dashed rgb(255 250 247 / 34%);
  }

  .guest-coupon__benefits {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 44px;
  }
}

@media (max-width: 767px) {
  :root {
    --oz-gutter: 20px;
    --oz-header-height: 66px;
    --oz-preview-height: 0px;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding-block: 92px;
  }

  .guest-coupon {
    padding-block: 52px;
  }

  .guest-coupon .layout {
    padding-inline: 12px;
  }

  .guest-coupon__header,
  .guest-coupon__footer {
    padding: 18px 17px;
  }

  .guest-coupon__header {
    display: grid;
    gap: 7px;
  }

  .guest-coupon__header p {
    font-size: 9px;
  }

  .guest-coupon__header span {
    font-size: 8px;
  }

  .guest-coupon__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .guest-coupon__price,
  .guest-coupon__benefits {
    padding: 42px 18px;
  }

  .guest-coupon__price {
    border-right: 0;
    border-bottom: 1px dashed rgb(255 250 247 / 34%);
  }

  .guest-coupon__price > p {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .guest-coupon__price h2 {
    justify-content: space-between;
    gap: 12px;
  }

  .guest-coupon__price h2 strong {
    font-size: clamp(26px, 8.3vw, 34px);
  }

  .guest-coupon__price h2 strong b {
    font-size: clamp(64px, 20vw, 84px);
  }

  .guest-coupon__price h2 > span {
    font-size: clamp(50px, 16vw, 67px);
  }

  .guest-coupon__benefits {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-block: 36px 40px;
  }

  .guest-coupon__bottle {
    font-size: clamp(25px, 7.6vw, 30px);
  }

  .guest-coupon__no-extra strong {
    font-size: clamp(22px, 6.5vw, 26px);
  }

  .guest-coupon__footer {
    display: grid;
    gap: 17px;
  }

  .guest-coupon__footer p {
    line-height: 1.8;
  }

  .guest-coupon__footer a {
    width: 100%;
    justify-content: space-between;
  }

  .opening__mark {
    width: 88vw;
  }

  .has-js .opening::before {
    inset: 12px;
  }

  .has-js .opening::after {
    inset: 18px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    height: var(--oz-header-height);
    padding-inline: 17px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand b {
    font-size: 21px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    min-width: 46px;
    min-height: 46px;
    display: grid;
    align-content: center;
    gap: 6px;
    margin-left: auto;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle i {
    width: 25px;
    height: 1px;
    display: block;
    margin-left: auto;
    content: "";
    background: currentColor;
    transition: transform .3s ease, opacity .3s ease;
  }

  .menu-toggle i {
    width: 17px;
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] i {
    opacity: 0;
  }

  .global-nav {
    position: fixed;
    z-index: 1;
    inset: var(--oz-header-height) 0 auto;
    height: calc(100svh - var(--oz-preview-height) - var(--oz-header-height));
    display: grid;
    align-content: center;
    gap: 0;
    padding: 25px 28px 82px;
    color: var(--oz-white);
    background: rgb(27 17 22 / 98%);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .global-nav > a:not(.nav-cta) {
    min-height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--oz-line-dark);
    font: 400 17px var(--oz-serif);
  }

  .hero {
    min-height: max(690px, 100svh);
  }

  .hero__picture img {
    object-position: 59% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgb(20 12 16 / 63%), rgb(20 12 16 / 14%)),
      linear-gradient(0deg, rgb(20 12 16 / 93%) 0%, rgb(20 12 16 / 38%) 62%, rgb(20 12 16 / 25%));
  }

  .hero__rail {
    display: none;
  }

  .hero__content {
    padding-bottom: 124px;
  }

  .hero__label {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 56px);
    line-height: 1.36;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 12px;
  }

  .hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 27px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .fact-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 0;
  }

  .fact-strip article {
    min-height: 95px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--oz-line-dark);
  }

  .fact-strip article:nth-child(even) {
    border-right: 0;
  }

  .fact-strip strong {
    font-size: 32px;
  }

  .contents-menu__inner {
    padding-block: 28px 34px;
  }

  .contents-menu__inner > p {
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .contents-menu__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .contents-menu__links a {
    min-height: 78px;
    padding: 13px 14px;
  }

  .contents-menu__links span {
    font-size: 12px;
  }

  .section-heading h2,
  .today__content h2,
  .contact h2 {
    font-size: clamp(35px, 10.8vw, 48px);
  }

  .about__grid,
  .visit__grid,
  .system__grid,
  .voice__grid,
  .faq__grid,
  .access__grid {
    display: block;
  }

  .about__copy {
    padding-top: 46px;
  }

  .about__copy .about__lead {
    font-size: 20px;
  }

  .about__portrait {
    width: 100%;
    margin: 60px 0 0;
  }

  .media-frame::before {
    top: -15px;
    right: -15px;
  }

  .media-frame figcaption {
    bottom: 10px;
    left: 10px;
    gap: 9px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .about__reasons {
    margin-top: 74px;
  }

  .about__reasons article {
    grid-template-columns: 38px 1fr;
    gap: 8px 10px;
    padding: 25px 0;
  }

  .space__heading {
    display: block;
    margin-bottom: 54px;
  }

  .space__heading > p {
    margin-top: 35px;
    font-size: 12px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
    gap: 5px;
    padding-inline: 5px;
  }

  .photo-card,
  .photo-card--hero,
  .photo-card--tall,
  .photo-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-card--hero,
  .photo-card--wide {
    grid-column: span 2;
  }

  .photo-card--hero {
    grid-row: span 2;
  }

  .photo-card--tall {
    grid-row: span 2;
  }

  .photo-card > span {
    right: 12px;
    bottom: 11px;
    left: 12px;
    font-size: 9px;
  }

  .photo-film {
    grid-template-columns: repeat(7, 69vw);
    gap: 5px;
    padding-inline: 5px;
    scrollbar-width: none;
  }

  .photo-film::-webkit-scrollbar {
    display: none;
  }

  .visit__intro {
    margin-top: 34px;
  }

  .visit-steps {
    display: block;
    margin-top: 58px;
  }

  .visit-steps li,
  .visit-steps li + li {
    min-height: 0;
    padding: 25px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--oz-line);
  }

  .visit-steps h3 {
    margin-top: 24px;
  }

  .system .section-heading {
    margin-bottom: 55px;
  }

  .price-panels {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 31px 26px;
  }

  .price-panel h3 {
    margin-bottom: 30px;
  }

  .system-details {
    margin-top: 32px;
  }

  .system-details dl div {
    grid-template-columns: .8fr 1.2fr;
  }

  .voice__score {
    margin-top: 52px;
  }

  .voice__analysis {
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
  }

  .voice__analysis article,
  .voice__analysis article + article {
    min-height: 285px;
    padding: 25px 18px 26px 0;
    border-bottom: 1px solid var(--oz-line);
  }

  .voice__analysis article:nth-child(even) {
    padding-right: 0;
    padding-left: 18px;
    border-right: 0;
  }

  .voice__analysis h3 {
    margin-top: 38px;
    font-size: 17px;
  }

  .voice__source {
    display: block;
    margin-top: 35px;
  }

  .voice__source a {
    display: inline-block;
    margin-top: 22px;
  }

  .today {
    min-height: 720px;
    align-items: end;
  }

  .today__picture img {
    object-position: 58% center;
  }

  .today__veil {
    background: linear-gradient(0deg, rgb(20 12 16 / 94%) 0%, rgb(20 12 16 / 35%) 76%, rgb(20 12 16 / 10%));
  }

  .today__content {
    padding-bottom: 84px;
  }

  .today__content > div {
    display: grid;
    gap: 20px;
  }

  .today__content .button {
    width: 100%;
  }

  .cast-home__head,
  .recruit-home,
  .recruit-block__head,
  .entry-panel {
    grid-template-columns: 1fr;
  }

  .cast-home__head > div:last-child {
    margin-top: 34px;
  }

  .cast-home__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: auto;
    grid-auto-flow: row;
    gap: 12px;
    padding-right: var(--oz-gutter);
    overflow-x: visible;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  .cast-home-card p {
    padding: 58px 16px 15px;
  }

  .cast-home-card p span {
    font-size: 18px;
  }

  .cast-home__footer {
    align-items: flex-end;
    margin-top: 28px;
  }

  .cast-home__footer p {
    max-width: 112px;
    line-height: 1.7;
  }

  .cast-home__footer a {
    font-size: 11px;
  }

  .recruit-home__picture {
    min-height: 520px;
  }

  .recruit-home__content {
    padding: 78px 20px 88px;
  }

  .recruit-home .button {
    width: 100%;
  }

  .recruit-home__actions {
    display: grid;
  }

  .recruit-campaign-title--home {
    gap: 8px;
  }

  .recruit-campaign-title--home .recruit-campaign-title__open {
    font-size: 11px;
  }

  .recruit-campaign-title--home .recruit-campaign-title__count b {
    font-size: clamp(67px, 21vw, 82px);
  }

  .recruit-campaign-title--home .recruit-campaign-title__count > span {
    font-size: clamp(27px, 8.2vw, 34px);
  }

  .recruit-campaign-title--home .recruit-campaign-title__count em {
    font-size: 11px;
  }

  .recruit-campaign-title--home .recruit-campaign-title__sync {
    font-size: clamp(25px, 7.7vw, 31px);
  }

  .page-hero {
    min-height: 560px;
    padding-bottom: 68px;
  }

  .page-hero h1 {
    font-size: clamp(43px, 14vw, 65px);
  }

  .cast-page-hero {
    min-height: 720px;
    align-items: start;
    padding-top: calc(var(--oz-header-height) + var(--oz-preview-height) + 66px);
    padding-bottom: 310px;
  }

  .cast-page-hero::after {
    background: linear-gradient(180deg, #1b1116 0%, #1b1116 54%, rgb(27 17 22 / 72%) 68%, rgb(27 17 22 / 20%) 100%);
  }

  .cast-page-hero__art {
    inset: auto 0 0;
    width: 100%;
    height: 300px;
    gap: 2px;
  }

  .cast-page-hero__art img {
    transform: none;
  }

  .cast-page-hero h1 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .subpage-index {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 18px;
  }

  .subpage-index a {
    min-height: 78px;
    padding: 13px 14px;
  }

  .subpage-index a + a {
    margin-left: 0;
  }

  .subpage-index a:nth-child(even) {
    margin-left: -1px;
  }

  .subpage-index a:nth-child(n + 3) {
    margin-top: -1px;
  }

  .cast-list-head {
    display: block;
  }

  .cast-list-head p {
    margin-top: 24px;
  }

  .cast-list-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cast-list-card {
    min-height: 158px;
    display: grid;
    grid-template-columns: minmax(0, 45%) 1fr;
    overflow: hidden;
    border-top: 1px solid var(--oz-line);
    background: rgb(235 227 222 / 66%);
  }

  .cast-list-card:nth-child(even) picture {
    order: 2;
  }

  .cast-list-card:nth-child(even) figcaption {
    order: 1;
    align-items: flex-end;
    text-align: right;
  }

  .cast-list-card picture,
  .cast-list-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
  }

  .cast-list-card figcaption {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 17px 16px;
    border-top: 0;
  }

  .cast-list-card__meta {
    display: grid;
    gap: 5px;
    align-items: end;
  }

  .cast-list-card b {
    font-size: 19px;
  }

  .cast-list-card small {
    font-size: 12px;
  }

  .recruit-summary {
    margin-top: 0;
    padding-inline: 0;
  }

  .recruit-summary__grid {
    grid-template-columns: 1fr;
  }

  .recruit-summary article {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--oz-line-dark);
  }

  .recruit-summary article:last-child {
    border-bottom: 0;
  }

  .recruit-bonus {
    padding: 36px 0 0;
  }

  .recruit-bonus__inner {
    padding: 58px 20px 62px;
  }

  .recruit-bonus__inner::before {
    inset: 10px;
  }

  .recruit-bonus__lead {
    font-size: 17px;
  }

  .recruit-bonus h2 {
    font-size: clamp(43px, 13.2vw, 58px);
  }

  .recruit-bonus__amount {
    margin-top: 5px;
    font-size: clamp(35px, 10.1vw, 42px);
    white-space: nowrap;
  }

  .recruit-bonus .button {
    width: 100%;
  }

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

  .benefit-grid article {
    min-height: 230px;
  }

  .recruit-page-hero {
    min-height: 680px;
    align-items: end;
    padding-bottom: 72px;
  }

  .recruit-page-hero .kicker {
    margin-bottom: 27px;
  }

  .recruit-campaign-title--hero {
    gap: 9px;
  }

  .recruit-campaign-title--hero .recruit-campaign-title__open {
    font-size: 11px;
    letter-spacing: .1em;
  }

  .recruit-campaign-title--hero .recruit-campaign-title__open::after {
    width: 30px;
    margin-left: .35em;
  }

  .recruit-campaign-title--hero .recruit-campaign-title__count b {
    font-size: clamp(72px, 22.5vw, 88px);
  }

  .recruit-campaign-title--hero .recruit-campaign-title__count > span {
    margin-left: .17em;
    font-size: clamp(29px, 8.9vw, 36px);
  }

  .recruit-campaign-title--hero .recruit-campaign-title__count em {
    margin-left: .32em;
    font-size: 11px;
  }

  .recruit-campaign-title--hero .recruit-campaign-title__sync {
    font-size: clamp(27px, 8.25vw, 34px);
    letter-spacing: .025em;
  }

  .recruit-page-hero::before {
    background:
      linear-gradient(0deg, rgb(20 12 16 / 97%) 0%, rgb(20 12 16 / 72%) 60%, rgb(20 12 16 / 36%)),
      image-set(
        url("assets/img/oz-gallery-05-900.avif") type("image/avif"),
        url("assets/img/oz-gallery-05-900.webp") type("image/webp"),
        url("assets/img/oz-gallery-05-900.jpg") type("image/jpeg")
      ) 58% center / cover;
  }

  .subpage-index--recruit {
    margin-top: 18px;
  }

  .recruit-scene {
    padding-block: 0;
  }

  .recruit-scene__grid {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .recruit-scene__picture {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .recruit-scene__copy {
    padding: 68px 20px 76px;
  }

  .job-table dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .entry-panel__copy,
  .entry-panel__steps {
    padding: 55px 20px;
  }

  .faq .section-heading {
    margin-bottom: 54px;
  }

  .faq summary {
    min-height: 75px;
    font-size: 15px;
  }

  .access__info {
    margin-top: 52px;
  }

  .access dl div {
    grid-template-columns: 100px 1fr;
  }

  .access__actions {
    display: block;
  }

  .access__actions .button {
    width: 100%;
  }

  .access__actions p {
    margin-top: 18px;
  }

  .access__map {
    height: 390px;
    margin: 58px calc(var(--oz-gutter) * -1) 0;
  }

  .contact__inner > div {
    display: grid;
    gap: 27px;
  }

  .contact__phone {
    font-size: 25px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .brand--footer {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
    margin-top: 50px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 95;
    inset: auto 0 0;
    height: calc(64px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    color: var(--oz-white);
    background: #120b0f;
    box-shadow: 0 -8px 30px rgb(15 8 12 / 18%);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-actions a {
    display: grid;
    place-content: center;
    text-align: center;
  }

  .mobile-actions a + a {
    background: var(--oz-plum);
  }

  .mobile-actions span {
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-actions small {
    margin-top: 2px;
    color: rgb(255 250 247 / 58%);
    font-size: 8px;
  }

  .lightbox {
    width: 94vw;
    height: 84svh;
  }

  .lightbox__close {
    top: -48px;
    right: 0;
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .recruit-page-hero {
    min-height: 100svh;
    padding-top: calc(var(--oz-header-height) + var(--oz-preview-height) + 18px);
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 14px);
  }

  .recruit-page-hero .kicker {
    margin-bottom: 14px;
  }

  .recruit-campaign-title--hero {
    gap: 5px;
  }

  .recruit-campaign-title--hero .recruit-campaign-title__count b {
    font-size: clamp(62px, 20vw, 72px);
  }

  .recruit-campaign-title--hero .recruit-campaign-title__count > span {
    font-size: clamp(25px, 8.1vw, 29px);
  }

  .recruit-campaign-title--hero .recruit-campaign-title__sync {
    font-size: clamp(23px, 7.4vw, 27px);
  }

  .recruit-page-hero p:last-child {
    margin-top: 14px;
    font-size: 10px;
    line-height: 1.7;
  }
}

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

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

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hp-progress {
    display: none;
  }

  .opening {
    display: none !important;
  }
}

/* Mobile motion remains readable while becoming easier to perceive. */
@keyframes hero-rise-mobile {
  from { transform: translateY(46px); }
  to { transform: none; }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .hero__label,
  .hero__lead,
  .hero__actions {
    animation-name: hero-rise-mobile;
  }

  .js-ready [data-reveal] {
    transform: translateY(54px);
    transition-duration: .9s;
  }
}
