@charset "UTF-8";
/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background: #000;
}

@media (max-width:800px) {
  body {
    font: 1.4rem/1 "Zen Old Mincho", serif;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}
a:hover {
  opacity: 0.7;
}

/* -- LAYOUT -- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #fff;
}
.nav_logo {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 70px;
  margin-left: 20px;
}
.nav_tfm {
  width: 118px;
  margin-right: 25px;
}
.nav_hokto {
  width: 115px;
  padding-bottom: 8px;
}

@media (max-width:800px) {
  .nav {
    height: 60px;
  }
  .nav_logo {
    height: 60px;
    margin-left: 13px;
  }
  .nav_tfm {
    width: 90px;
    margin-right: 18px;
  }
  .nav_hokto {
    width: 87px;
    padding-bottom: 4px;
  }
}
.toggle {
  appearance: none;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  margin: 0;
  padding: 0;
  width: 70px;
  height: 70px;
  border: none;
  background: #efc78a;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.toggle > span, .toggle:before, .toggle:after {
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 5px);
  width: 40px;
  height: 1px;
  margin: -2px 0 0 -15px;
  background-color: #000;
}
.toggle > span {
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle::before, .toggle::after {
  content: "";
  transition: background-color 0.3s ease;
}
.toggle::before {
  transform: translateY(-10px);
}
.toggle::after {
  transform: translateY(10px);
}
.toggle[aria-expanded=true] {
  background: none;
}
.toggle[aria-expanded=true] > span {
  opacity: 0;
}
.toggle[aria-expanded=true]::before, .toggle[aria-expanded=true]::after {
  background-color: white;
}
.toggle[aria-expanded=true]::before {
  animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
  animation: 0.3s ease closeBar2 forwards;
}
.toggle.-close::before {
  animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeBar2Rev forwards;
}

@media (max-width:800px) {
  .toggle {
    width: 13.333vw;
    height: 13.333vw;
  }
  .toggle > span, .toggle:before, .toggle:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6.667vw;
    height: 0.222vw;
    margin: 0 0 0 -3.111vw;
  }
  .toggle::before {
    transform: translateY(-1.222vw);
  }
  .toggle::after {
    transform: translateY(1.222vw);
  }
}
.humnav {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  background: url(../../img/bg-black.jpg) repeat;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.humnav[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.humnav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width:800px) {
  .humnav {
    display: block;
    background-size: 800px;
  }
}
.menu {
  padding-left: 60px;
}
.menu li {
  position: relative;
  text-align: center;
  line-height: calc(1em + 0.5rem);
}
.menu li:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.menu li a {
  display: block;
  color: #fff;
  font-size: 26px;
}
.menu li a:hover {
  opacity: 1;
}
.menu li + li {
  margin-top: 60px;
}

@media (max-width:800px) {
  .menu {
    width: 320px;
    max-width: 90vw;
    margin: 0 auto;
    padding-left: 0;
  }
  .menu li a {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  .menu li img {
    top: -4px;
    left: 0;
    width: 23px;
    height: 26px;
    content: "";
  }
  .menu li + li {
    margin-top: 40px;
  }
}
@keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}
.movie {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie video::-webkit-media-controls {
  display: none !important;
}

.header {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_kv {
  text-align: center;
}
.header_tfm {
  position: absolute;
  top: 27px;
  left: 24px;
  width: 138px;
  z-index: 2;
}
.header_time {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85px;
  background: rgba(0, 0, 0, 0.5);
}
.header_time > img {
  max-width: 80%;
}
.header_credit {
  position: absolute;
  bottom: -25px;
  right: 18px;
}
.header_credit > a {
  text-decoration: underline;
}

@media (max-width:800px) {
  .header_tfm {
    width: 23.333vw;
    top: 3.222vw;
    left: 2.889vw;
  }
  .header_kv {
    width: 92.889vw;
  }
  .header_time {
    height: 12.111vw;
  }
  .header_time > img {
    max-width: 87.444vw;
  }
  .header_credit {
    bottom: -5vw;
    right: 2.667vw;
    font-size: 2.667vw;
  }
}
.about {
  padding: 90px 20px 80px;
  background: url(../../img/bg-black.jpg) repeat;
}
.about_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.about_txt {
  max-width: 700px;
  margin-right: 40px;
  font-size: 18px;
  line-height: 1.89;
  letter-spacing: -0.03em;
}
.about_btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width:800px) {
  .about {
    padding: 14.889vw 0 8.333vw;
    background-size: 800px;
  }
  .about_inner {
    display: block;
    margin: 0 auto;
  }
  .about_txt {
    max-width: 100%;
    margin: 0 auto 6.667vw;
    font-size: 3.111vw;
    line-height: 2;
    text-align: center;
  }
  .about_img {
    display: block;
    width: 42.402vw;
    margin: 0 auto 6.667vw;
  }
  .about_btn {
    width: 74.556vw;
  }
}
.slide {
  position: relative;
  width: 100%;
  height: 267px;
  background-position: 0 0;
  animation: bgroop 50s linear infinite;
  background-size: 1600px auto;
  transform: translateZ(0);
}
.slide-upper {
  background: url(../../img/slide-upper.jpg) repeat-x;
}
.slide-lower {
  color: #000;
  background: url(../../img/slide-lower.jpg) repeat-x;
}
.slide_caption {
  position: absolute;
  bottom: -25px;
  right: 18px;
}

@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1600px 0;
  }
}
@media (max-width:800px) {
  .slide {
    height: 67.111vw;
    background-size: cover;
  }
  .slide_caption {
    bottom: -5vw;
    right: 2.333vw;
    font-size: 2.667vw;
  }
}
.cast {
  padding: 85px 20px 5px;
  background: url(../../img/bg-black.jpg) repeat;
}
.cast_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  height: 59px;
  margin: 0 auto;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: 59px;
  box-sizing: border-box;
  border: 1px solid #fff;
}
.cast_heading > span {
  flex: 0 0 237px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 237px;
  font-size: 18px;
  font-weight: 500;
}
.cast_heading > span:before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 40px;
  width: 2px;
  background: #fff;
  content: "";
}
.cast_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.cast_img {
  display: block;
  margin-right: 30px;
}
.cast_txt {
  max-width: 550px;
  font-size: 17px;
  line-height: 1.88;
}
.cast_profile {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 400;
}

@media (max-width:800px) {
  .cast {
    padding: 13vw 0 0;
    background-size: 800px;
  }
  .cast_heading {
    width: 85.222vw;
    height: 10.333vw;
    padding-left: 4.111vw;
    font-size: 4vw;
    line-height: 10.333vw;
  }
  .cast_heading > span {
    flex: 0 0 35.222vw;
    max-width: 35.222vw;
    font-size: 2.889vw;
  }
  .cast_heading > span:before {
    bottom: 3.2vw;
    height: 4.444vw;
    width: 0.222vw;
  }
  .cast_inner {
    display: block;
    padding: 8.889vw 0 8.333vw;
  }
  .cast_img {
    width: 60.889vw;
    margin: 0 auto 6.667vw;
  }
  .cast_txt {
    max-width: 85.222vw;
    margin: 0 auto;
    font-size: 3.111vw;
    line-height: 2;
  }
  .cast_profile {
    margin-bottom: 2vw;
    font-size: 3.111vw;
    line-height: 1;
  }
}
.bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 330px;
  padding: 135px 0;
  background: #fff;
}
.bnr_tfm {
  width: 194px;
}

@media (max-width:800px) {
  .bnr {
    margin: 0 auto 69.667vw;
    padding: 21vw 0;
  }
}
.footer {
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}
.footer_sns {
  position: absolute;
  left: 23px;
  display: flex;
  justify-content: start;
  align-items: center;
  list-style: none;
}
.footer_sns > li {
  width: 36px;
  margin-right: 7px;
}
.footer_copy {
  text-align: center;
}

@media (max-width:800px) {
  .footer {
    height: auto;
    display: block;
    padding: 3.556vw 0;
  }
  .footer_sns {
    position: relative;
    left: inherit;
    width: fit-content;
    margin: 0 auto 3.333vw;
  }
  .footer_sns > li {
    width: 8.889vw;
    margin: 0 1.333vw;
  }
  .footer_copy {
    font-size: 2.889vw;
  }
}
.pagetop {
  position: fixed;
  right: 25px;
  bottom: 88px;
  cursor: pointer;
}
.pagetop img {
  width: 62px;
  height: 62px;
}

@media (max-width:800px) {
  .pagetop {
    right: 4vw;
    bottom: 9.222vw;
  }
  .pagetop img {
    width: 8.991vw;
    height: 8.991vw;
  }
}
/* -- UTILITY -- */
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:800px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */