@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;700&display=swap');

:root{
  /* Base palette */
  --bg:#1E1E1E;
  --bg2:#213946;
  --paper:#F4F6F5;
  --brand:#8E3B2E;

  /* Derived */
  --txt:rgba(244,246,245,.92);
  --muted:rgba(244,246,245,.70);
  --line:rgba(244,246,245,.12);
  --shadow:0 24px 90px rgba(0,0,0,.55);
  --radius:22px;

  --font-en:"Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-jp:"Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mincho:"Noto Serif JP", serif;

  --header-h:76px;
}

/* =========================
   Reset / Base
========================= */
*{ box-sizing:border-box; }

html,
body{
  height:100%;
}

body{
  margin:0;
  font-family:var(--font-jp);
  color:var(--txt);
  background:
    radial-gradient(900px 650px at 15% 10%, rgba(142,59,46,.22), transparent 60%),
    radial-gradient(1000px 700px at 85% 25%, rgba(33,57,70,.35), transparent 58%),
    radial-gradient(900px 700px at 50% 95%, rgba(142,59,46,.12), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

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

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* =========================
   Background
========================= */
.bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}

.bg__grain{
  position:absolute;
  inset:-40%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  transform:rotate(10deg);
  mix-blend-mode:overlay;
  opacity:.18;
}

.bg__glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 520px at 20% 15%, rgba(142,59,46,.18), transparent 62%),
    radial-gradient(900px 620px at 85% 25%, rgba(33,57,70,.34), transparent 56%);
  filter:blur(10px);
  opacity:.95;
}

/* =========================
   Header
========================= */
.header{
  position:sticky;
  top:0;
  min-height:var(--header-h);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:16px 20px;
  background:
    linear-gradient(
      135deg,
      rgba(142,59,46,.58) 0%,
      rgba(80,57,56,.42) 38%,
      rgba(33,57,70,.58) 100%
    );
  backdrop-filter:blur(18px) saturate(120%);
  -webkit-backdrop-filter:blur(18px) saturate(120%);
  border-bottom:1px solid rgba(244,246,245,.08);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  z-index:80;
}

.header__lang{
  justify-self:start;
  display:flex;
  align-items:center;
}

.header__brand{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
}

.brand__mark{
  font-weight:800;
  letter-spacing:.08em;
  color:var(--brand);
}

.brand__name{
  font-family:var(--font-en);
  font-weight:700;
  letter-spacing:.08em;
  font-size:14px;
}

.brand__sub{
  font-size:11px;
  color:var(--muted);
  letter-spacing:.18em;
}

.brand__logo{
  height:64px;
  width:auto;
  display:block;
  flex:0 0 auto;
}

/* =========================
   PC Nav
========================= */
.pcNav{
  display:none;
}

/* =========================
   Default Nav
========================= */
.nav{
  display:none;
}

.nav a{
  opacity:.78;
  transition:opacity .2s ease;
}

.nav a:hover{
  opacity:1;
}

/* =========================
   Language Switch
========================= */
.langSwitch{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin-left:0;
}

.langSwitch__toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  position:relative;
  z-index:71;
}

.langSwitch__icon{
  font-size:16px;
  line-height:1;
  color:#fff;
  opacity:.92;
}

.langSwitch__menu{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  min-width:52px;
  padding:0;
  opacity:0;
  pointer-events:none;
  transform:translateX(-50%) translateY(-4px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:72;
}

.langSwitch.is-open .langSwitch__menu{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.langSwitch__menu a{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.08em;
  line-height:1;
  opacity:.92;
}

.langSwitch__menu a:hover{
  opacity:1;
}

/* =========================
   Nav Toggle
========================= */
.navToggle{
  justify-self:end;
  display:inline-grid;
  place-items:center;
  width:56px;
  height:56px;
  flex:0 0 56px;
  border:none;
  background:transparent;
  border-radius:0;
  cursor:pointer;
  padding:0;
  box-shadow:none;
  appearance:none;
  -webkit-appearance:none;
  position:relative;
  overflow:visible;
  z-index:120;
}

.navToggle span{
  display:block;
  width:24px;
  height:2px;
  margin:0;
  background:rgba(244,246,245,.88);
  border-radius:0;
  position:absolute;
  left:50%;
  top:50%;
  transform-origin:center;
  transition:transform .18s ease, opacity .18s ease;
  z-index:120;
}

.navToggle span:nth-child(1){
  transform:translate(-50%, -8px);
}

.navToggle span:nth-child(2){
  transform:translate(-50%, 0);
}

.navToggle span:nth-child(3){
  transform:translate(-50%, 8px);
}

.navToggle.is-active span:nth-child(1){
  transform:translate(-50%, 0) rotate(45deg);
}

.navToggle.is-active span:nth-child(2){
  opacity:0;
}

.navToggle.is-active span:nth-child(3){
  transform:translate(-50%, 0) rotate(-45deg);
}

/* =========================
   Drawer
========================= */
.drawer{
  position:fixed;
  inset:var(--header-h) 0 0 0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  opacity:0;
  visibility:hidden;
  transition:opacity .18s ease, visibility .18s ease;
  z-index:100;
}

.drawer.is-open{
  opacity:1;
  visibility:visible;
}

.drawer__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(420px, 100%);
  height:calc(100svh - var(--header-h));
  border-radius:0;
  background:rgba(34,34,34,.88);
  border:none;
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:translateX(16px);
  transition:transform .18s ease;
  z-index:101;
}

.drawer.is-open .drawer__panel{
  transform:translateX(0);
}

.drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}

.drawer__title{
  font-family:var(--font-en);
  letter-spacing:.1em;
  font-weight:700;
}

.drawer__close{
  width:44px;
  height:44px;
  border:none;
  border-radius:0;
  background:transparent;
  color:var(--paper);
  font-size:22px;
  cursor:pointer;
  padding:0;
}

.drawer__lang{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0;
  padding:14px 16px;
  font-size:12px;
  letter-spacing:.08em;
  white-space:nowrap;
  border-bottom:1px solid var(--line);
  color:#fff;
  text-decoration:none;
  opacity:.92;
}

.drawer__lang a{
  color:#fff;
  text-decoration:none;
  opacity:.92;
}

.drawer__langIcon{
  font-size:14px;
  margin-right:2px;
}

.drawer__links{
  display:grid;
  padding:0 16px;
  gap:0;
}

.drawer__links a{
  padding:16px 0;
  border-radius:0;
  border:none;
  border-bottom:1px solid var(--line);
  background:transparent;
  font-family:var(--font-en);
  letter-spacing:.08em;
  font-weight:600;
  opacity:.95;
}

.drawer__foot{
  padding:16px;
  border-top:none;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
}

.drawer__sns{
  display:flex;
  gap:14px;
}

.drawer__sns a{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:0;
  background:transparent;
  opacity:.85;
}

/* =========================
   Buttons / Pills / Links
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(244,246,245,.03);
  font-family:var(--font-en);
  font-weight:700;
  letter-spacing:.08em;
  font-size:12px;
  cursor:pointer;
  transition:transform .12s ease, opacity .12s ease, background .12s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn--primary{
  border-color:rgba(244,246,245,.16);
  background:linear-gradient(135deg, rgba(142,59,46,.40), rgba(33,57,70,.30));
}

.btn--ghost{
  background:rgba(244,246,245,.02);
  opacity:.92;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(244,246,245,.03);
  font-family:var(--font-en);
  font-weight:700;
  letter-spacing:.08em;
  font-size:12px;
  opacity:.95;
}

.pill--ghost{
  background:rgba(244,246,245,.02);
}

.link{
  font-family:var(--font-en);
  letter-spacing:.12em;
  font-weight:800;
  font-size:12px;
  opacity:.92;
}

.link:hover{
  opacity:1;
}

/* =========================
   Hero Slider
========================= */
.heroSlider{
  width:100%;
  position:relative;
  aspect-ratio:16 / 9;
  height:auto;
  max-height:100svh;
  min-height:520px;
  overflow:hidden;
}

.slides{
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:stretch;
  padding:0 20px;
  opacity:0;
  transition:opacity .8s ease;
}

.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.14), rgba(0,0,0,.03));
}

.slide.is-active{
  opacity:1;
  z-index:1;
}

.slide__inner{
  position:relative;
  z-index:2;
  width:min(1360px, calc(100% - 40px));
  margin:0 auto;
  height:100%;
}

.slide--comingSoon{
  background-image:url("../img/grandOpen.webp");
  background-position:center center;
  background-repeat:no-repeat;
}

.slide--event1{
  background-image:url("../img/event1.webp");
  background-position:center center;
  background-repeat:no-repeat;
}

.slide--event2{
  background-image:url("../img/event2.webp");
  background-position:center center;
  background-repeat:no-repeat;
}

.heroCopy{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;
  text-align:center;
  padding:42px 0 0;
}

.heroCopy__top,
.heroCopy__sub{
  margin:0;
  color:#fff;
  font-family:var(--font-mincho);
  font-weight:700;
  text-shadow:
    0 3px 12px rgba(0,0,0,.65),
    0 0 22px rgba(0,0,0,.30);
}

.heroCopy__top{
  width:100%;
  max-width:none;
  padding-top:8px;
  font-size:clamp(26px, 2.3vw, 54px);
  line-height:1.22;
  letter-spacing:.04em;
  text-wrap:balance;
}

.heroCopy__sub{
  width:min(100%, 1180px);
  margin-top:18px;
  max-width:none;
  font-size:clamp(18px, 1.3vw, 28px);
  line-height:1.4;
  letter-spacing:.04em;
  text-wrap:balance;
}

.slide__tag{
  display:inline-flex;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(244,246,245,.05);
  font-family:var(--font-en);
  letter-spacing:.2em;
  font-size:11px;
  color:var(--paper);
}

.slide__title{
  font-family:var(--font-en);
  font-size:clamp(42px, 6vw, 84px);
  font-weight:800;
  letter-spacing:.02em;
  margin:12px 0 8px;
}

.slide__meta{
  font-size:14px;
  color:rgba(244,246,245,.78);
  margin:0 0 18px;
}

.slide__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.sliderNav{
  position:absolute;
  bottom:22px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:18px;
  z-index:5;
}

.navBtn{
  background:rgba(244,246,245,.06);
  border:1px solid rgba(244,246,245,.18);
  width:42px;
  height:42px;
  border-radius:999px;
  color:var(--paper);
  font-size:22px;
  cursor:pointer;
}

.dots{
  display:flex;
  gap:8px;
}

.dots button{
  width:8px;
  height:8px;
  border-radius:50%;
  border:none;
  background:rgba(244,246,245,.38);
  cursor:pointer;
}

.dots button.active{
  background:var(--paper);
}

.dots button:focus-visible{
  outline:2px solid rgba(244,246,245,.7);
  outline-offset:3px;
}

.scrollHint{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:74px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  font-family:var(--font-en);
  font-size:10px;
  letter-spacing:.24em;
  color:rgba(244,246,245,.72);
  opacity:.85;
  z-index:5;
}

.scrollHint i{
  width:1px;
  height:26px;
  background:linear-gradient(180deg, rgba(244,246,245,.0), rgba(244,246,245,.55));
  position:relative;
  overflow:hidden;
}

.scrollHint i::after{
  content:"";
  position:absolute;
  top:-10px;
  left:0;
  right:0;
  height:12px;
  background:rgba(244,246,245,.85);
  animation:drop 1.2s infinite ease-in-out;
}

@keyframes drop{
  0%{
    transform:translateY(0);
    opacity:.0;
  }
  30%{
    opacity:.9;
  }
  100%{
    transform:translateY(34px);
    opacity:.0;
  }
}

/* =========================
   Sections / Layout
========================= */
.section{
  padding:72px 0;
  position:relative;
}

.section--alt{
  background:linear-gradient(180deg, rgba(244,246,245,.03), rgba(244,246,245,.00));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section--paper{
  background:var(--paper);
  color:#1b1b1b;
}

.section--paper a{
  color:inherit;
}

.section--paper .pill{
  border-color:rgba(0,0,0,.16);
  background:rgba(0,0,0,.03);
  color:#1b1b1b;
}

.section--paper .pill--ghost{
  background:rgba(0,0,0,.02);
}

.section--paper .link--ink{
  color:#1b1b1b;
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.sectionHead--center{
  justify-content:center;
  text-align:center;
  flex-direction:column;
  align-items:center;
}

.sectionTitle{
  margin:0;
  font-family:var(--font-en);
  letter-spacing:.14em;
  font-weight:800;
  font-size:22px;
}

.sectionTitle--ink{
  color:#1b1b1b;
}

.sectionDesc{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
}

.sectionFoot{
  margin-top:22px;
  display:flex;
  justify-content:center;
}

.sectionEyebrow{
  font-family:var(--font-en);
  letter-spacing:.18em;
  font-weight:800;
  font-size:11px;
  color:var(--muted);
  margin-bottom:6px;
}

.grid{
  display:grid;
  gap:14px;
}

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

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

/* =========================
   Pick Up / Poster
========================= */
.posterCard{
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.12);
  background:#ffffff;
  overflow:hidden;
  box-shadow:0 18px 70px rgba(0,0,0,.10);
}

.posterCard__media{
  height:260px;
  background-image:url("../img/recruitTop.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.posterCard__body{
  padding:16px;
}

.posterCard__kicker{
  font-family:var(--font-en);
  letter-spacing:.18em;
  font-weight:800;
  font-size:11px;
  color:var(--brand);
}

.posterCard__title{
  margin:10px 0 6px;
  font-family:var(--font-en);
  font-weight:800;
  letter-spacing:.06em;
}

.posterCard__text{
  margin:0 0 12px;
  color:rgba(0,0,0,.68);
  line-height:1.9;
  font-size:13px;
}

/* =========================
   Campaign Cards
========================= */
.campaignCard{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(244,246,245,.03);
  overflow:hidden;
}

.campaignCard__media{
  height:180px;
  background:
    linear-gradient(135deg, rgba(142,59,46,.22), rgba(33,57,70,.30)),
    radial-gradient(500px 260px at 25% 25%, rgba(142,59,46,.18), transparent 62%),
    radial-gradient(500px 260px at 75% 65%, rgba(33,57,70,.28), transparent 62%);
}

.campaignCard__cap{
  padding:12px 14px;
  border-top:1px solid var(--line);
  font-family:var(--font-en);
  letter-spacing:.12em;
  font-weight:800;
  font-size:12px;
  color:rgba(244,246,245,.82);
}

/* =========================
   Access
========================= */
.access{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.access--big{
  grid-template-columns:420px 1fr;
}

.access__info{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(244,246,245,.03);
  padding:16px;
}

.access__info--ink{
  border-color:rgba(0,0,0,.12);
  background:rgba(0,0,0,.02);
}

.kv{
  margin-bottom:12px;
}

.kv__k{
  font-family:var(--font-en);
  letter-spacing:.14em;
  font-weight:800;
  font-size:11px;
  color:var(--muted);
}

.kv__v{
  margin-top:6px;
  line-height:1.9;
  color:rgba(244,246,245,.82);
  font-size:13px;
}

.kv__k--ink{
  color:rgba(0,0,0,.62);
}

.kv__v--ink{
  color:rgba(0,0,0,.80);
}

.access__buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.access__map{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(244,246,245,.02);
  overflow:hidden;
  min-height:320px;
}

.access__map--big{
  min-height:420px;
  border-color:rgba(0,0,0,.12);
  background:rgba(0,0,0,.02);
}

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

/* =========================
   Info List
========================= */
.infoList{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(244,246,245,.03);
  overflow:hidden;
}

.infoItem{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:14px;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}

.infoItem:last-child{
  border-bottom:none;
}

.infoItem__date{
  font-family:var(--font-en);
  letter-spacing:.12em;
  font-weight:800;
  font-size:12px;
  color:var(--muted);
}

.infoItem__title{
  font-size:14px;
  line-height:1.6;
  color:rgba(244,246,245,.90);
}

.infoItem:hover{
  background:rgba(244,246,245,.02);
}

/* =========================
   Form
========================= */
.form{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(244,246,245,.03);
  padding:16px;
}

.form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

label{
  display:block;
}

label span{
  display:block;
  margin:0 0 8px;
  font-family:var(--font-en);
  letter-spacing:.14em;
  font-weight:800;
  font-size:11px;
  color:var(--muted);
}

input,
select,
textarea{
  width:100%;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.20);
  color:var(--paper);
  outline:none;
}

textarea{
  resize:vertical;
  min-height:140px;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(244,246,245,.22);
  box-shadow:0 0 0 4px rgba(142,59,46,.14);
}

.form__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* =========================
   Sister Cards
========================= */
.sisterCard{
  display:block;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  overflow:hidden;
  box-shadow:0 18px 70px rgba(0,0,0,.10);
  padding-bottom:14px;
}

.sisterCard__media{
  height:160px;
  background:
    linear-gradient(135deg, rgba(33,57,70,.25), rgba(142,59,46,.18)),
    radial-gradient(500px 280px at 25% 25%, rgba(33,57,70,.30), transparent 62%),
    radial-gradient(500px 280px at 70% 65%, rgba(142,59,46,.20), transparent 62%);
}

.sisterCard__name{
  margin:12px 14px 2px;
  font-family:var(--font-en);
  letter-spacing:.12em;
  font-weight:800;
  color:#1b1b1b;
}

.sisterCard__sub{
  margin:0 14px;
  color:rgba(0,0,0,.60);
  font-size:13px;
}

/* =========================
   Movie
========================= */
.movieBlock{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(244,246,245,.03);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.movieBlock__video{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16 / 9;
  background:#000;
}

.section--alt .movieBlock{
  background:rgba(0,0,0,.18);
}

/* Full-bleed movie showcase */
.movieShowcase{
  position:relative;
  width:100%;
  min-height:clamp(300px, 52vw, 720px);
  overflow:hidden;
  background:#000;
}

.movieShowcase::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.36));
  pointer-events:none;
  z-index:1;
}

.movieShowcase::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.08) 35%, rgba(0,0,0,.22));
  pointer-events:none;
}

.movieShowcase__video{
  display:block;
  width:100%;
  height:100%;
  min-height:clamp(300px, 52vw, 720px);
  object-fit:cover;
  object-position:center center;
  background:#000;
}

/* =========================
   SNS Icons
========================= */
.drawer__sns a,
.footer__sns a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.snsIcon{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

.snsIcon--drawer{
  width:18px;
  height:18px;
}

.snsIcon--footer{
  width:22px;
  height:22px;
}

.footer__sns a:hover,
.drawer__sns a:hover{
  opacity:1;
  transform:translateY(-1px);
  transition:transform .12s ease, opacity .12s ease;
}

/* =========================
   Footer
========================= */
.footer{
  margin-top:18px;
  padding:16px 0 16px;
  color:var(--muted);
}

.footer__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
}

.footer__sns{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  width:100%;
}

.footer__sns a{
  width:40px;
  height:40px;
}

.footer__copy{
  width:100%;
  text-align:center;
  font-family:var(--font-en);
  font-size:9px;
  line-height:1.2;
  letter-spacing:.14em;
  opacity:.68;
  margin:0;
}

.footer--full{
  font-size:inherit;
  line-height:inherit;
  letter-spacing:inherit;
  opacity:1;
  text-align:inherit;
}

/* =========================
   Reveal
========================= */
.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .55s ease, transform .55s ease;
}

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

/* =========================
   To Top Button
========================= */
.toTop{
  position:fixed;
  right:18px;
  bottom:18px;
  width:64px;
  height:64px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  overflow:hidden;
  z-index:120;
  isolation:isolate;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  transition:transform .25s ease, opacity .25s ease;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(12px);
}

.toTop.is-show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0) scale(1);
}

.toTop::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:linear-gradient(
    135deg,
    #1E1E1E 0%,
    #8E3B2E 32%,
    #213946 68%,
    #F4F6F5 100%
  );
  background-size:220% 220%;
  animation:toTopGradientFlow 7s ease-in-out infinite;
  z-index:0;
}

.toTop::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:999px;
  background:rgba(16,16,16,.14);
  backdrop-filter:blur(6px);
  z-index:1;
}

.toTop:hover{
  transform:translateY(-4px) scale(1.04);
}

.toTop__img{
  position:relative;
  z-index:2;
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 1px 3px rgba(0,0,0,.22));
}

@keyframes toTopGradientFlow{
  0%{
    background-position:0% 50%;
    transform:translate3d(0,0,0) scale(1);
  }
  25%{
    background-position:40% 60%;
    transform:translate3d(-2%, 1%, 0) scale(1.03);
  }
  50%{
    background-position:100% 50%;
    transform:translate3d(2%, -1%, 0) scale(1.06);
  }
  75%{
    background-position:60% 40%;
    transform:translate3d(-1%, -2%, 0) scale(1.03);
  }
  100%{
    background-position:0% 50%;
    transform:translate3d(0,0,0) scale(1);
  }
}

/* =========================
   Responsive: <= 1280px
========================= */
@media (max-width: 1280px) and (min-width: 1025px){
  .heroCopy{
    padding-top:56px;
  }

  .slide__inner{
    width:min(1240px, calc(100% - 40px));
  }

  .heroCopy__top{
    width:100%;
    max-width:none;
    font-size:clamp(22px, 2.05vw, 38px);
    line-height:1.25;
    letter-spacing:.03em;
  }

  .heroCopy__sub{
    width:min(100%, 1040px);
    max-width:none;
    margin-top:14px;
    font-size:clamp(14px, 1.05vw, 19px);
    line-height:1.4;
    letter-spacing:.03em;
  }
}

/* =========================
   Responsive: <= 1024px
========================= */
@media (max-width: 1024px){
  .grid--3{
    grid-template-columns:1fr;
  }

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

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

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

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

  .access__map--big{
    min-height:320px;
  }

  .posterCard__media{
    height:220px;
  }

  .campaignCard__media{
    height:150px;
  }

  .infoItem{
    grid-template-columns:100px 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 769px){
  .heroCopy__top{
    width:100%;
    max-width:none;
    font-size:clamp(22px, 2.15vw, 40px);
    line-height:1.28;
    letter-spacing:.04em;
    text-wrap:balance;
  }

  .heroCopy__sub{
    width:min(100%, 860px);
    max-width:none;
    margin-top:14px;
    font-size:clamp(15px, 1.2vw, 22px);
    line-height:1.4;
    letter-spacing:.03em;
    text-wrap:balance;
  }
}

/* =========================
   Responsive: >= 1024px PC Nav
========================= */
@media (min-width: 1024px){
  .header{
    grid-template-columns:1fr auto 1fr;
    grid-template-areas:
      "lang brand toggle"
      "menu menu menu";
    row-gap:12px;
    padding:16px 20px 12px;
  }

  .header__lang{
    grid-area:lang;
  }

  .header__brand{
    grid-area:brand;
    justify-self:center;
  }

  .navToggle{
    grid-area:toggle;
    justify-self:end;
    display:none;
  }

  .pcNav{
    grid-area:menu;
    display:block;
    width:100%;
    margin:10px 0 14px;
  }

  .pcNav__inner{
    max-width:880px;
    margin:0 auto;
    padding:0 16px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
  }

  .pcNav__inner a{
    color:#fff;
    text-decoration:none;
    font-family:"Bree Serif", serif;
    font-size:16px;
    letter-spacing:.12em;
    white-space:nowrap;
    transition:opacity .2s ease;
  }

  .pcNav__inner a:hover{
    opacity:.7;
  }
}

/* =========================
   Responsive: <= 768px
========================= */
@media (max-width: 768px){
  :root{
    --header-h:74px;
  }

  .header{
    grid-template-columns:auto 1fr auto;
    padding:14px 14px;
    z-index:80;
  }

  .header__brand{
    justify-self:center;
  }

  .brand__logo{
    height:46px;
  }

  .langSwitch{
    margin-left:0;
  }

  .langSwitch__menu{
    top:calc(100% + 6px);
  }

  .navToggle{
    width:54px;
    height:54px;
    flex-basis:54px;
    z-index:120;
  }

  .drawer{
    inset:var(--header-h) 0 0 0;
  }

  .drawer__panel{
    width:100%;
    height:calc(100svh - var(--header-h));
  }

  .heroSlider{
    aspect-ratio:auto;
    height:82svh;
    min-height:700px;
    max-height:860px;
  }

  .slide{
    padding:0 16px;
  }

  .slide__inner{
    width:100%;
    height:100%;
  }

  .slide--comingSoon{
    background-image:url("../img/grandOpenSp.webp");
    background-position:center center;
  }

  .heroCopy{
    position:relative;
    height:100%;
    padding:44px 0 0;
    display:block;
    text-align:center;
  }

  .heroCopy__top{
    width:94%;
    max-width:none;
    margin:0 auto;
    padding-top:0;
    font-size:clamp(13px, 2.7vw, 18px);
    line-height:1.35;
    letter-spacing:.01em;
    text-align:center;
    white-space:nowrap;
  }

  .heroCopy__sub{
    position:absolute;
    left:50%;
    bottom:190px;
    transform:translateX(-50%);
    width:82%;
    max-width:none;
    margin:0;
    font-size:clamp(11px, 2.35vw, 16px);
    line-height:1.45;
    letter-spacing:.01em;
    text-align:center;
  }

  .scrollHint{
    bottom:108px;
  }

  .sliderNav{
    bottom:34px;
  }

  .navBtn{
    width:52px;
    height:52px;
    font-size:28px;
  }

  .dots button{
    width:10px;
    height:10px;
  }

  .movieShowcase,
  .movieShowcase__video{
    min-height:56vw;
  }

  .toTop{
    right:12px;
    bottom:12px;
    width:56px;
    height:56px;
  }

  .toTop__img{
    width:24px;
    height:24px;
  }
}