@charset "UTF-8";
/* --------------------------------------------------
vars
CSS変数
-------------------------------------------------- */
:root {
  --color-scream7: #DC001E;
  --color-scary-movie: #DC7200;
}

/* --------------------------------------------------
reset
リセットCSS
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: bottom;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: 'メイリオ', 'Meiryo', 'Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

img {
  vertical-align: bottom;
  border: none;
}

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

input {
  vertical-align: middle;
  width: auto;
}

input[type="radio"], input[type="checkbox"] {
  margin: 0;
}

label {
  font-weight: normal;
}

/* --------------------------------------------------
base
html / body などサイト全体のベース
-------------------------------------------------- */
html {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  html {
    font-size: calc(1 / 375 * 100vw);
  }
}

@media (min-width: 769px) {
  html {
    font-size: calc(1 / 1000 * 100vw);
  }
}

@media (min-width: 1000px) {
  html {
    font-size: 1px;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #000;
  color: #fff;
  font-feature-settings: "palt" 1;
  font-weight: 500;
  font-optical-sizing: auto;
}

main {
  display: block;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

svg {
  width: 100%;
  height: auto;
}

sup {
  vertical-align: super;
  font-size: smaller;
  font-family: 'Roboto', 'Verdana', 'Droid Sans', sans-serif;
}

figure {
  display: block;
}

picture {
  display: block;
}

strong {
  font-weight: bold;
}

button {
  display: block;
  color: inherit;
  font-weight: inherit;
  font-feature-settings: inherit;
}

/* --------------------------------------------------
layout
ページ全体のレイアウト
-------------------------------------------------- */
.l-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .is-has-header .l-wrap {
    padding-top: 66rem;
  }
}

.l-inner {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-sec + .l-sec {
    margin-top: 60rem;
  }
}

/* --------------------------------------------------
common
共通パーツ（随時追加）
-------------------------------------------------- */
/* --------------------------------------------------
header
固定ヘッダー
-------------------------------------------------- */
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 66rem;
}

@media screen and (min-width: 769px) {
  .header {
    width: 376rem;
    height: 40rem;
    transform: rotate(90deg) translateX(-40rem);
    transform-origin: left bottom;
  }
}

.header__height {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header__height {
    height: 66rem;
  }
}

@media screen and (min-width: 769px) {
  .header__height {
    height: 0;
  }
}

/* --------------------------------------------------
gnav
グロナビ（アンカーリンク）
-------------------------------------------------- */
.gnav {
  width: 100%;
  height: 100%;
}

.gnav__list {
  width: 100%;
  height: 100%;
  display: flex;
  background: #000;
}

@media screen and (max-width: 768px) {
  .gnav__list {
    gap: 2rem;
  }
}

.gnav__item {
  width: 50%;
}

.gnav__link {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18rem;
  line-height: 1;
  font-weight: bold;
  color: #000;
}

.gnav__link.is-scream7 {
  background: var(--color-scream7);
}

.gnav__link.is-scary-movie {
  background: var(--color-scary-movie);
}

.gnav__arw {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 12rem;
}

@media screen and (max-width: 768px) {
  .gnav__arw {
    left: 0;
    right: 0;
    top: 47rem;
    margin: 0 auto;
  }
  .gnav__arw img {
    display: block;
    transform: rotate(90deg);
    transform-origin: center center;
  }
}

@media screen and (min-width: 769px) {
  .gnav__arw {
    top: 0;
    bottom: 0;
    right: 7rem;
    margin: auto 0;
  }
}

/* --------------------------------------------------
movie
映画作品
-------------------------------------------------- */
.movie {
  --movie-accent: var(--color-scream7);
}

.movie--scream7 {
  --movie-accent: var(--color-scream7);
}

.movie--scary {
  --movie-accent: var(--color-scary-movie);
}

.movie__inner {
  width: 100%;
}

.movie__cont {
  width: 100%;
  padding: 70rem 20rem 100rem;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .movie__cont {
    max-width: 1000rem;
    padding: 120rem 80rem 200rem;
  }
}

/* --------------------------------------------------
mv
メインビジュアル
-------------------------------------------------- */
.mv {
  width: 100%;
  overflow: hidden;
}

.mv__inner {
  display: block;
  width: 100%;
}

/* --------------------------------------------------
theater
劇場リンクボタン
-------------------------------------------------- */
.theater {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40rem;
}

@media screen and (min-width: 769px) {
  .theater {
    margin-top: 50rem;
  }
}

.theater__btn {
  width: 220rem;
  height: 50rem;
}

.theater__link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 10rem 26rem;
  font-size: 16rem;
  font-weight: bold;
  line-height: 180%;
}

.theater__arw {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8rem;
  margin: auto 0;
  width: 8rem;
  height: 12rem;
}

/* --------------------------------------------------
video
動画（YouTube）
-------------------------------------------------- */
.video {
  width: 100%;
  margin-top: 50rem;
}

@media screen and (min-width: 769px) {
  .video {
    margin-top: 100rem;
  }
}

.video__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video__player iframe {
  width: 100%;
  height: 100%;
}

.video__title {
  margin-top: 10rem;
  font-size: 14rem;
  line-height: 180%;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .video__title {
    margin-top: 10rem;
    font-size: 16rem;
  }
}

/* --------------------------------------------------
lead
リード文
-------------------------------------------------- */
.lead {
  margin-top: 40rem;
}

@media screen and (min-width: 769px) {
  .lead {
    margin-top: 100rem;
  }
}

.lead__main {
  font-size: 27rem;
  font-weight: 600;
  line-height: 150%;
  color: var(--movie-accent);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .lead__main {
    font-size: 32rem;
  }
}

.lead__sub {
  margin-top: 10rem;
  font-size: 16rem;
  line-height: 180%;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .lead__sub {
    text-align: center;
    font-size: 18rem;
    margin-top: 15rem;
  }
}

/* --------------------------------------------------
info
インフォメーションのボックス
-------------------------------------------------- */
.info {
  border: solid 1rem var(--movie-accent);
  margin-top: 30rem;
}

@media screen and (min-width: 769px) {
  .info {
    margin-top: 70rem;
  }
}

.info__ttl {
  padding: 8rem;
  font-size: 20rem;
  font-weight: bold;
  line-height: 120%;
  color: #000;
  background-color: var(--movie-accent);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .info__ttl {
    padding: 5rem;
    font-size: 22rem;
    min-height: 50rem;
    line-height: 180%;
  }
}

.info__body {
  padding: 20rem 20rem 50rem;
}

@media screen and (min-width: 769px) {
  .info__body {
    padding: 30rem 50rem 40rem;
  }
}

.info__sec + .info__sec {
  margin-top: 20rem;
}

@media screen and (min-width: 769px) {
  .info__sec + .info__sec {
    margin-top: 30rem;
  }
}

.info__hdg {
  font-size: 16rem;
  font-weight: bold;
  line-height: 180%;
}

@media screen and (min-width: 769px) {
  .info__hdg {
    font-size: 18rem;
  }
}

.info__txt {
  font-size: 16rem;
  line-height: 170%;
}

@media screen and (min-width: 769px) {
  .info__txt {
    font-size: 18rem;
  }
}

.info__note {
  margin-top: 5rem;
  font-size: 12rem;
  line-height: 170%;
}

/* --------------------------------------------------
terms
注意事項
-------------------------------------------------- */
.terms__ttl {
  margin: 0;
  padding: 6rem;
  min-height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16rem;
  line-height: 180%;
  color: #000000;
  background-color: var(--movie-accent);
  text-align: center;
}

.terms__body {
  margin-top: 20rem;
}

.terms__body p {
  font-size: 12rem;
  line-height: 170%;
}

@media screen and (min-width: 769px) {
  .terms__body p {
    font-size: 16rem;
  }
}

.terms__body p + p {
  margin-top: 1em;
}

/* --------------------------------------------------
footer
フッター
-------------------------------------------------- */
.footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 60rem 20rem 30rem;
  text-align: center;
  background-color: #222222;
}

@media screen and (min-width: 769px) {
  .footer {
    padding: 65rem 0 35rem;
  }
}

.footer__copyright {
  font-size: 12rem;
  font-weight: 400;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .footer__copyright {
    font-size: 12rem;
  }
}

/* --------------------------------------------------
animation
アニメーション
-------------------------------------------------- */
.inv-fadeIn {
  opacity: 0;
}

.is-loaded .inv-fadeIn.is-inview {
  opacity: 1;
  transition-delay: 0.5s;
  transition: opacity 1.0s;
}

.inv-fadeInUp {
  opacity: 0;
  transform: translateY(30rem) scale(0.95);
}

.is-loaded .inv-fadeInUp.is-inview {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
  transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.inv-fadeInZoomOut {
  opacity: 0;
  transform: scale(1.1);
}

.is-loaded .inv-fadeInZoomOut.is-inview {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
  transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-wrap {
  opacity: 0;
  transition: opacity 0.5s;
}

.is-loaded .l-wrap {
  opacity: 1;
}

.mv__inner {
  opacity: 0;
}

.is-loaded .mv__inner {
  opacity: 1;
  animation-name: a-mv-fadeIn;
  animation-duration: 1.0s;
  animation-delay: 0.0s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes a-mv-fadeIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.lead__main,
.lead__sub {
  opacity: 0;
  transform: scale(1.1);
  transform-origin: center bottom;
}

.is-loaded .is-inview .lead__main, .is-loaded .is-inview
.lead__sub {
  opacity: 1;
  transform: none;
  transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.is-loaded .is-inview .lead__main {
  transition-delay: 0.0s;
}

.is-loaded .is-inview .lead__sub {
  transition-delay: 0.2s;
}

/* --------------------------------------------------
Utility
補助クラス
-------------------------------------------------- */
.u-font-Noto-Sans-JP {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media screen and (min-width: 769px) {
  .u-hover {
    transition: opacity .3s;
  }
  .u-hover:hover {
    opacity: .8;
    cursor: pointer;
  }
}

@media screen and (max-width: 768px) {
  .is-onlyPC {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .is-onlySP {
    display: none;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
