@charset "UTF-8";
:root {
  --font-all:"Josefin Sans","dnp-shuei-mgothic-std",-apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --color-blue: #006282;
  --color-orange: #f4916f;
  --color-beige: #f4f0e9;
  --color-white: #fff;
}

/*============================
THEATER NAV
============================*/
@-webkit-keyframes tenmetsu {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tenmetsu {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-theater__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 50px;
  max-width: 1100px;
}
@media screen and (max-width: 900px) {
  .p-theater__nav {
    margin-bottom: 26px;
  }
}
.p-theater__nav_item {
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
}
.p-theater__nav_item:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-theater__nav_item:nth-of-type(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-theater__nav_item:nth-of-type(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.p-theater__nav_item:nth-of-type(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.p-theater__nav_item:nth-of-type(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.p-theater__nav_item:nth-of-type(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.is-load .p-theater__nav_item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 900px) {
  .p-theater__nav_item {
    width: 46.3%;
  }
  .p-theater__nav_item:nth-child(even) {
    margin-left: 1.1%;
  }
}
.p-theater__nav_item:hover {
  background-color: var(--color-beige);
  color: var(--color-blue);
}
.p-theater__nav_item.is-show {
  pointer-events: none;
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
}
.p-theater__nav_item-link {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 205px;
  margin: 0 5px 10px;
  padding: 19px 0px;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 300;
  text-align: center;
  border-radius: 200px;
  color: var(--color-blue);
  line-height: 1;
  background-color: unset;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid var(--color-blue);
  -webkit-transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1), color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1), color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 900px) {
  .p-theater__nav_item-link {
    width: 100%;
    font-size: 12px;
    padding: 14px 0px;
    margin: 0 0 4px;
  }
}
.p-theater__nav_item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 22px;
  height: 22px;
  background: url(../img/point_star.svg) no-repeat;
  background-size: contain;
  opacity: 0;
}
.is-current .p-theater__nav_item-link {
  color: var(--color-white);
  background-color: var(--color-blue);
}
.is-current .p-theater__nav_item-link::before {
  opacity: 1;
  -webkit-animation: tenmetsu 0.8s ease-in-out forwards;
          animation: tenmetsu 0.8s ease-in-out forwards;
}
@media screen and (min-width: 901px) {
  .p-theater__nav_item-link:hover {
    color: var(--color-white);
    background-color: var(--color-blue);
  }
  .p-theater__nav_item-link:hover::before {
    opacity: 1;
    -webkit-animation: tenmetsu 0.8s ease-in-out forwards;
            animation: tenmetsu 0.8s ease-in-out forwards;
  }
}
.p-theater__nav_item-link span {
  vertical-align: sub;
}
.p-theater__nav_item-link span.novelty {
  padding-left: 1em;
}