/* layout */
#header {
  width: 100%;
  border-bottom: 1px solid #c6c6c6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: #ffffff9f;
}
#banner {
  padding-top: 64px;
}
#movie {
  background-color: #d9d9d9;
  padding: 24px;
}
#event {
  background-color: #fff;
  padding: 24px;
}
#opening {
  background: url(../img/bg01.jpg) no-repeat center top;
  background-size: cover;
  padding: 24px;
}
#new {
  padding: 24px;
}
#help {
  padding: 24px;
}
#footer {
  background-color: #222222;
}

/* 모바일 메뉴 */
#mNav {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  display: none;
}
.ham {
  display: block;
  font-size: 30px;
  color: #000;
  padding: 10px 15px;
  position: absolute;
  right: 0;
}
#mNav ul {
  width: 100%;
  height: 553px;
  position: absolute;
  top: 58px;
  right: 0;
  background-color: #38116a;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
#mNav ul li {
  padding: 24px;
  border-bottom: 1px solid #885cffa9;
}
#mNav ul li a {
  font-size: 20px;
  color: #c6c6c6;
}
#mNav ul.active {
  transform: translateX(0);
}

@media (max-width: 1024px) {
  #mNav {
    display: block;
  }
}

/* Trailer */
/* 트레일러 */
.overlay {
  background-color: rgba(0, 0, 0, 0.92);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

/* 처음엔 숨김 */
.overlay.is-hidden {
  display: none;
}

.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* width: min(960px, 92vw); */

  /* 여기서 크기를 키운다 */
  width: 96vw;
  max-width: 1400px;

  aspect-ratio: 16 / 9;
}

#trailer,
#trailer iframe {
  width: 100%;
  height: 100%;
}
.modal_close {
  display: block;
  width: 32px;
  height: 32px;
  overflow: hidden;
  background: url(../img/close.svg) no-repeat;
  background-size: 32px 32px;
  border: 0;
  color: transparent;
  position: absolute;
  top: 24px;
  right: 24px;
  text-indent: 100%;
}
body.modal_on {
  overflow: hidden;
}
