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

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

  --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;
}

*{ 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;
}

.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{
  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;
}

.pcNav{
  display:none;
}

.nav{
  display:none;
}

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

.nav a:hover{
  opacity:1;
}

.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;
}

.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;
  transition:transform .22s ease, opacity .22s ease;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

.navToggle::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:44px;
  height:44px;
  border-radius:999px;
  background:
    radial-gradient(
      circle,
      rgba(244,246,245,.18) 0%,
      rgba(244,246,245,.08) 45%,
      rgba(244,246,245,0) 75%
    );
  transform:translate(-50%, -50%) scale(.72);
  opacity:0;
  transition:transform .22s ease, opacity .22s ease;
  pointer-events:none;
  z-index:0;
}

.navToggle::after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:999px;
  border:1px solid rgba(244,246,245,.08);
  opacity:0;
  transform:scale(.9);
  transition:opacity .22s ease, transform .22s ease, border-color .22s ease;
  pointer-events:none;
  z-index:0;
}

.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 .22s ease,
    opacity .18s ease,
    width .22s ease,
    background .22s 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);
}

@media (hover: hover){
  .navToggle:hover{
    transform:scale(1.06);
  }

  .navToggle:hover::before{
    opacity:1;
    transform:translate(-50%, -50%) scale(1.12);
  }

  .navToggle:hover::after{
    opacity:1;
    transform:scale(1);
    border-color:rgba(244,246,245,.16);
  }

  .navToggle:hover span:nth-child(1),
  .navToggle:hover span:nth-child(3){
    width:28px;
  }

  .navToggle:hover span:nth-child(2){
    width:20px;
    opacity:.72;
  }
}

.navToggle:active{
  transform:scale(.94);
}

.navToggle:active::before,
.navToggle:focus-visible::before,
.navToggle.is-active::before{
  opacity:1;
  transform:translate(-50%, -50%) scale(1.06);
}

.navToggle:active::after,
.navToggle:focus-visible::after,
.navToggle.is-active::after{
  opacity:1;
  transform:scale(1);
  border-color:rgba(244,246,245,.18);
}

.navToggle:focus-visible{
  outline:none;
}

.navToggle:focus-visible span{
  background:#fff;
}

.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 .22s 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:0;
  transform:translateX(10px);
  transition:
    transform .28s ease,
    opacity .28s ease,
    letter-spacing .2s ease;
}

.drawer.is-open .drawer__links a{
  transform:translateX(0);
  opacity:.95;
}

.drawer.is-open .drawer__links a:nth-child(1){ transition-delay:.04s; }
.drawer.is-open .drawer__links a:nth-child(2){ transition-delay:.08s; }
.drawer.is-open .drawer__links a:nth-child(3){ transition-delay:.12s; }
.drawer.is-open .drawer__links a:nth-child(4){ transition-delay:.16s; }
.drawer.is-open .drawer__links a:nth-child(5){ transition-delay:.20s; }
.drawer.is-open .drawer__links a:nth-child(6){ transition-delay:.24s; }
.drawer.is-open .drawer__links a:nth-child(7){ transition-delay:.28s; }
.drawer.is-open .drawer__links a:nth-child(8){ transition-delay:.32s; }

@media (hover: hover){
  .drawer__links a:hover{
    letter-spacing:.12em;
    opacity:1;
  }
}

.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;
}

.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;
}

.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;
  display:block;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .8s ease, visibility .8s ease;
  color:inherit;
}

.slide.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  z-index:1;
}

.slide__media{
  position:absolute;
  inset:0;
  z-index:0;
  display:block;
}

.slide__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.slide__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,.04));
}

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

.heroCopy{
  position:relative;
  height:100%;
  display:block;
  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;
  text-align:center;
  font-size:clamp(26px, 2.3vw, 54px);
  line-height:1.22;
  letter-spacing:.04em;
  text-wrap:balance;
}

.heroCopy__sub{
  position:absolute;
  left:0;
  bottom:42px;
  width:auto;
  max-width:calc(100% - 40px);
  margin:0;
  text-align:left;
  font-size:clamp(18px, 1.3vw, 28px);
  line-height:1.4;
  letter-spacing:.04em;
}

.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;
  inset:0;
  z-index:5;
  pointer-events:none;
}

.navBtn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  width:88px;
  height:88px;
  padding:0;
  border:none;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  pointer-events:auto;
}

.navBtn.prev{
  left:22px;
}

.navBtn.next{
  right:22px;
}

.navBtn__icon{
  display:block;
  width:64px;
  height:64px;
  object-fit:contain;
  pointer-events:none;
}

.navBtn.prev .navBtn__icon{
  transform:rotate(180deg);
}

.navBtn.next .navBtn__icon{
  transform:none;
}

.dots{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  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;
  }
}

.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));
}

.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;
}

.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{
  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;
}

.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{
  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;
}

.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;
}

.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);
}

.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;
}

.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{
  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{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .55s ease, transform .55s ease;
}

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

.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);
  }
}

@media (max-width: 1280px) and (min-width: 1101px){
  .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{
    left:0;
    bottom:38px;
    max-width:calc(100% - 40px);
    font-size:clamp(14px, 1.05vw, 19px);
    line-height:1.4;
    letter-spacing:.03em;
  }
}

@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 (min-width: 1101px){
  .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;
  }
}

@media (min-width: 769px) and (max-width: 1100px){
  :root{
    --header-h:88px;
  }

  .header{
    grid-template-columns:72px 1fr;
    align-items:center;
    min-height:var(--header-h);
    padding:14px 18px;
    position:sticky;
    z-index:80;
  }

  .header__lang{
    justify-self:start;
  }

  .header__brand{
    justify-self:start;
    padding-left:6px;
  }

  .brand__logo{
    height:52px;
  }

  .pcNav{
    display:none;
  }

  .navToggle{
    position:absolute;
    top:50%;
    right:18px;
    transform:translateY(-50%);
    justify-self:auto;
    display:inline-grid;
    width:56px;
    height:56px;
    flex:0 0 56px;
    margin-right:0;
    z-index:120;
  }

  @media (hover: hover){
    .navToggle:hover{
      transform:translateY(-50%) scale(1.06);
    }
  }

  .navToggle:active{
    transform:translateY(-50%) scale(.94);
  }

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

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

  .container{
    width:min(1120px, calc(100% - 48px));
  }

  .heroSlider{
    aspect-ratio:16 / 9;
    min-height:560px;
    max-height:760px;
  }

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

  .heroCopy{
    padding:44px 0 0;
  }

  .heroCopy__top{
    width:100%;
    max-width:none;
    font-size:clamp(18px, 2vw, 30px);
    line-height:1.3;
    letter-spacing:.02em;
    text-wrap:balance;
  }

  .heroCopy__sub{
    left:0;
    bottom:34px;
    max-width:calc(100% - 20px);
    font-size:clamp(13px, 1.2vw, 18px);
    line-height:1.45;
    letter-spacing:.02em;
  }

  .navBtn{
    width:74px;
    height:74px;
  }

  .navBtn.prev{
    left:14px;
  }

  .navBtn.next{
    right:14px;
  }

  .navBtn__icon{
    width:54px;
    height:54px;
  }

  .dots{
    bottom:14px;
  }
}

@media (max-width: 768px){
  :root{
    --header-h:74px;
  }

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

  .header__brand{
    justify-self:start;
  }

  .brand__logo{
    height:46px;
  }

  .pcNav{
    display:none;
  }

  .langSwitch{
    margin-left:0;
  }

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

  .navToggle{
    position:absolute;
    top:50%;
    right:calc(env(safe-area-inset-right, 0px) + 14px);
    transform:translateY(-50%);
    width:48px;
    height:48px;
    flex-basis:auto;
    justify-self:auto;
    margin-right:0;
    z-index:120;
  }

  @media (hover: hover){
    .navToggle:hover{
      transform:translateY(-50%) scale(1.06);
    }
  }

  .navToggle:active{
    transform:translateY(-50%) scale(.94);
  }

  .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__media img{
    object-position:center center;
  }

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

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

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

  .heroCopy__sub{
    position:absolute;
    left:16px;
    bottom:130px;
    transform:none;
    width:auto;
    max-width:calc(100% - 32px);
    margin:0;
    text-align:left;
    font-size:clamp(11px, 2.35vw, 16px);
    line-height:1.45;
    letter-spacing:.01em;
  }

  .scrollHint{
    bottom:108px;
  }

  .navBtn{
    width:62px;
    height:62px;
  }

  .navBtn.prev{
    left:8px;
  }

  .navBtn.next{
    right:8px;
  }

  .navBtn__icon{
    width:44px;
    height:44px;
  }

  .dots{
    bottom:18px;
  }

  .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;
  }
}


/* =========================
   TOP TODAY EVENT
========================= */

.todayEventSection{
  padding:72px 0 32px;
  background:#F4F6F5;
}

.todayEventCard{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(340px, .92fr);
  gap:0;
  background:#F4F6F5;
  border:1px solid rgba(33,57,70,.10);
  overflow:hidden;
}

.todayEventMedia{
  position:relative;
  min-height:420px;
  background:#d9d9d9;
}

.todayEventMedia img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.todayEventBody{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:24px;
  padding:34px 32px 30px;
  color:#213946;
  background:#F4F6F5;
}

.todayEventHead{
  display:grid;
  gap:16px;
}

.todayEventEyebrow{
  margin:0;
  font-family:var(--font-en);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  color:#213946;
  opacity:.78;
}

.todayEventDate{
  margin:0;
  font-family:var(--font-en);
  font-size:15px;
  font-weight:800;
  letter-spacing:.14em;
  color:#213946;
}

.todayEventTitle{
  margin:0;
  font-family:"LINE Seed JP", "LINE Seed Sans JP", var(--font-jp), sans-serif;
  font-size:clamp(28px, 4vw, 54px);
  font-weight:700;
  line-height:1.08;
  letter-spacing:.02em;
  color:#213946;
}

.todayEventLineup{
  margin:0;
  font-family:"LINE Seed JP", "LINE Seed Sans JP", var(--font-jp), sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#213946;
  white-space:pre-line;
}

.todayEventFooter{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.todayEventLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  text-decoration:none;
  transition:transform .22s ease, opacity .22s ease;
}

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

.todayEventLink:hover{
  transform:translateX(4px);
  opacity:.78;
}

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

  .todayEventMedia{
    min-height:360px;
  }

  .todayEventBody{
    padding:28px 24px 24px;
  }

  .todayEventFooter{
    justify-content:flex-start;
  }
}

@media (max-width: 768px){
  .todayEventSection{
    padding:48px 0 20px;
  }

  .todayEventMedia{
    min-height:300px;
  }

  .todayEventEyebrow{
    font-size:11px;
  }

  .todayEventDate{
    font-size:13px;
  }

  .todayEventTitle{
    font-size:clamp(22px, 8vw, 34px);
    line-height:1.14;
  }

  .todayEventLineup{
    font-size:13px;
    line-height:1.8;
  }
}
/* =========================================================
   TOP CAMPAIGN
========================================================= */

.campaignSection{
  background:#F4F6F5;
  padding:42px 0 28px;
}

.campaignBanner{
  position:relative;
  display:block;
  width:min(100%, 1180px);
  margin:0 auto;
  padding:8px 0;
  overflow:hidden;
  background:#101010;
  text-decoration:none;
  box-shadow:
    inset 0 5px 0 #d9a441,
    inset 0 -5px 0 #d9a441,
    0 16px 44px rgba(0,0,0,.10);
}

.campaignBanner::after{
  content:"MORE INFO  →";
  position:absolute;
  right:32px;
  bottom:28px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  height:52px;
  padding:0 22px;
  border:1px solid rgba(255,255,255,.88);
  background:rgba(0,0,0,.18);
  color:#fff;
  font-family:var(--font-en);
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
  line-height:1;
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  transition:
    background .25s ease,
    transform .25s ease,
    opacity .25s ease;
}

.campaignBanner img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  transition:transform .45s ease, opacity .45s ease, filter .45s ease;
}

@media (hover: hover){
  .campaignBanner:hover img{
    transform:scale(1.01);
    opacity:.95;
    filter:brightness(1.04);
  }

  .campaignBanner:hover::after{
    transform:translateX(4px);
    background:rgba(0,0,0,.32);
  }
}

@media (max-width: 768px){
  .campaignSection{
    padding:26px 0 16px;
  }

  .campaignBanner{
    width:100%;
    padding:6px 0;
    box-shadow:
      inset 0 4px 0 #d9a441,
      inset 0 -4px 0 #d9a441,
      0 12px 30px rgba(0,0,0,.10);
  }

  .campaignBanner::after{
    right:14px;
    bottom:18px;
    min-width:118px;
    height:38px;
    padding:0 14px;
    font-size:11px;
    letter-spacing:.06em;
  }
}