@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*******************************************************************/
@media only screen and (min-width: 961px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}

@media only screen and (max-width: 960px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}

body {
  position: relative;
  font-family: YakuHanMP, "Zen Old Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
  background: #000;
  color: #fff;
  z-index: -1;
}

@media only screen and (min-width: 961px) {
  body {
    min-width: 1100px;
  }
}

/*******************************************************************/
.wrapper {
  -webkit-animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  opacity: 0;
  z-index: 1;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 960px) {
  .hero {
    display: block;
  }
}

.hero .visual {
  width: 50%;
}

@media only screen and (max-width: 960px) {
  .hero .visual {
    width: 100%;
  }
}

.hero_in {
  width: 50%;
}

@media only screen and (max-width: 960px) {
  .hero_in {
    width: 100%;
  }
}

.hero_in h1 {
  width: 80%;
  margin: 15% auto 0;
}

@media only screen and (max-width: 960px) {
  .hero_in h1 {
    width: 80%;
    margin: 50px auto 0;
  }
}

.hero_in .catch {
  text-align: center;
  font-size: 30px;
  line-height: 1.5em;
  margin-top: 60px;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  .hero_in .catch {
    font-size: 18px;
    margin-top: 40px;
  }
}

.hero_in .catch_2 {
  text-align: center;
  font-size: 35px;
  line-height: 1.5em;
  margin-top: 30px;
  letter-spacing: 0.1em;
}
.hero_in .catch_2 p{
  background: #fff;
  color: #000;
  display: inline-block;
  line-height: 1em;
  padding: 10px 20px 14px;
  }

@media only screen and (max-width: 960px) {
  .hero_in .catch_2 {
    display: none;
  }
}

.period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  margin-top: 120px;
  line-height: 1em;
}

@media only screen and (max-width: 960px) {
  .period {
    font-size: 15px;
    margin-top: 50px;
  }
}

.period dt {
  background: #fff;
  color: #000;
  padding: 20px 30px;
}

@media only screen and (max-width: 960px) {
  .period dt {
    padding: 10px 20px;
  }
}

.period dd {
  padding: 20px 30px;
  border: #fff solid 1px;
}

@media only screen and (max-width: 960px) {
  .period dd {
    padding: 10px 20px;
  }
}

.lead {
  text-align: center;
  font-size: 20px;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  margin-top: 100px;
}

@media only screen and (max-width: 960px) {
  .lead {
    width: 90%;
    margin: 60px auto 0;
    font-size: 13px;
  }
}

.movie {
  position: relative;
  width: 80%;
  margin: 100px auto 0;
  max-width: 800px;
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
  transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
  overflow: hidden;
}

.movie .p-movie__thumb {
  -webkit-transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
  transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
}

@media only screen and (min-width: 961px) {
  .movie:hover .p-movie__thumb {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .movie:hover::before {
    opacity: 0;
  }
}

.movie::before {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  pointer-events: none;
  -webkit-transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
  transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
  z-index: 1;
}

.movie::after {
  content: "";
  background: url(../img/movie_play.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  width: 130px;
  height: 130px;
  pointer-events: none;
  -webkit-transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
  transition: all 0.5s cubic-bezier(0.43, 0.72, 0.57, 1.01);
}

@media only screen and (max-width: 960px) {
  .movie::after {
    width: 80px;
    height: 80px;
  }
}

@media only screen and (max-width: 960px) {
  .movie {
    width: 90%;
    margin: 60px auto 0;
  }
}

.theater-list {
  width: 90%;
  max-width: 1000px;
  margin: 100px auto 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
}

@media only screen and (max-width: 960px) {
  .theater-list {
    margin: 60px auto 0;
    padding: 8% 5%;
  }
}

.theater-list dt {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {
  .theater-list dt {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.theater-list .theater-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.theater-list .theater-list-item.cap {
  border-bottom: solid 1px #fff;
  padding-bottom: 20px;
}

@media only screen and (max-width: 960px) {
  .theater-list .theater-list-item {
    margin-top: 10px;
    font-size: 12px;
  }
  .theater-list .theater-list-item.cap {
    padding-bottom: 10px;
  }
}

.theater-list .theater-list-item .item_01 {
  width: 20%;
}

@media only screen and (max-width: 960px) {
  .theater-list .theater-list-item .item_01 {
    width: 18%;
    line-height: 1.3em;
  }
}

.theater-list .theater-list-item .item_02 {
  width: 40%;
}
.theater-list .theater-list-item .item_02 a{
  color: #fff;
}

@media only screen and (max-width: 960px) {
  .theater-list .theater-list-item .item_02 {
    width: 38%;
    margin-left: 2%;
    line-height: 1.3em;
  }
}

.theater-list .theater-list-item .item_03 {
  width: 40%;
}

@media only screen and (max-width: 960px) {
  .theater-list .theater-list-item .item_03 {
    width: 40%;
    margin-left: 2%;
    line-height: 1.3em;
  }
}

.special {
  width: 90%;
  max-width: 1000px;
  margin: 100px auto 0;
}

@media only screen and (max-width: 960px) {
  .special {
    margin: 60px auto 0;
  }
}

.special dt {
  text-align: center;
  font-size: 30px;
}

@media only screen and (max-width: 960px) {
  .special dt {
    font-size: 22px;
  }
}

.special dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

@media only screen and (max-width: 960px) {
  .special dd {
    display: block;
    margin-top: 30px;
  }
}

.special dd .img {
  width: 45%;
  margin-right: 5%;
}

@media only screen and (max-width: 960px) {
  .special dd .img {
    width: 100%;
    margin: 0;
  }
}

.special dd .img img {
  width: 100%;
}

.special dd .text {
  width: 50%;
}

@media only screen and (max-width: 960px) {
  .special dd .text {
    width: 100%;
    margin: 20px 0 0 0;
  }
}

.special dd .text .text_1 {
  font-size: 20px;
}

@media only screen and (max-width: 960px) {
  .special dd .text .text_1 {
    font-size: 18px;
  }
}

.special dd .text .text_2 {
  line-height: 1.5em;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .special dd .text .text_2 {
    font-size: 13px;
  }
}

/*******************************************************************/
.footer {
  position: relative;
  margin-top: 200px;
  padding: 0 50px 50px 50px;
  color: #777;
  font-size: 11px;
  z-index: 10;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .footer {
    font-size: 10px;
    margin-top: 100px;
    padding: 0 5% 26% 5%;
  }
}

.footer a {
  color: #777;
  text-decoration: none;
}

@media only screen and (min-width: 961px) {
  .footer .anime {
    width: 260px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .footer .anime:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@media only screen and (max-width: 960px) {
  .footer .anime {
    position: relative;
    width: 60%;
    margin: 0 auto;
  }
}

.footer .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 960px) {
  .footer .share {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10%;
  }
}

.footer .share li {
  width: 30px;
  margin-left: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (min-width: 961px) {
  .footer .share li:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.footer .share li:first-child {
  margin-left: 0;
}

.footer .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 960px) {
  .footer .link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10%;
  }
}

.footer .link li {
  margin-left: 10px;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (min-width: 961px) {
  .footer .link li:hover {
    opacity: 0.6;
  }
}

.footer .link li:first-child {
  margin-left: 0;
}

.footer .text {
  margin-top: 8px;
}

@media only screen and (max-width: 960px) {
  .footer .text {
    text-align: center;
    line-height: 1.3em;
    margin-top: 10px;
  }
}

.footer .copy {
  margin-top: 12px;
}

@media only screen and (max-width: 960px) {
  .footer .copy {
    text-align: center;
    margin-top: 15px;
  }
}

/*******************************************************************/
/************************************/
.is-modal-overflow-prep .m-modal.m-modal-custom .m-modal__content {
  margin: 60px auto;
}

@media only screen and (max-width: 960px) {
  .is-modal-overflow-prep .m-modal.m-modal-custom .m-modal__content {
    margin: 48px auto;
  }
}

.m-modal.m-modal-custom .m-modal__bg {
  background: #000;
}

.m-modal.m-modal-custom .m-modal__bg.--youtube {
  background: #000;
  opacity: 0.8;
}

.m-modal.m-modal-custom .m-modal__close-btn {
  width: 40px;
  height: 40px;
  top: 24px;
  right: 22px;
  border: 1px #777;
}

@media only screen and (min-width: 961px) {
  .m-modal.m-modal-custom .m-modal__close-btn:hover::before,
  .m-modal.m-modal-custom .m-modal__close-btn:hover::after {
    background-color: #777;
  }
}

@media only screen and (max-width: 960px) {
  .m-modal.m-modal-custom .m-modal__close-btn {
    width: 7vw;
    height: 7vw;
    top: 1.8%;
    right: 2.9%;
  }
}

.m-modal.m-modal-custom .m-modal__close-btn::before,
.m-modal.m-modal-custom .m-modal__close-btn::after {
  height: 100%;
  width: 3px;
  border-radius: 50rem;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transition: background-color #777;
  transition: background-color #777;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-modal.m-modal-custom .m-modal__close-btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.m-modal.m-modal-custom .m-modal__close-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bnr{
  position: fixed;
  bottom: 0;
  right: 0;
}
@media only screen and (min-width: 961px) {
  .bnr{
    bottom: 30px;
  }
}
.bnr li{
  width: 200px;
  margin-top: 10px;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bnr li:first-child{
  margin-top: 0;
}
@media only screen and (min-width: 961px) {
  .bnr li:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 960px) {
  .bnr{
  display: flex;
  }
  .bnr li{
    width: 50%;
    margin: 0;
  }
}