@charset "UTF-8";
.none {
  display: none !important;
}
.none-d {
  display: none !important;
}
/* ======================================
  anime
====================================== */
@-webkit-keyframes anime_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anime_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes anime_fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime_fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes anime_fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anime_fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes anime_snow1 {
  0% {
    opacity: 0;
    background-position: 0px 0px;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: 500px 1000px;
  }
}
@keyframes anime_snow1 {
  0% {
    opacity: 0;
    background-position: 0px 0px;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: 500px 1000px;
  }
}
@-webkit-keyframes anime_snow2 {
  0% {
    opacity: 0;
    background-position: 0px 0px, 0px 0px;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: 400px 400px;
  }
}
@keyframes anime_snow2 {
  0% {
    opacity: 0;
    background-position: 0px 0px, 0px 0px;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: 400px 400px;
  }
}
@-webkit-keyframes loader_snow1 {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 500px 1000px;
  }
}
@keyframes loader_snow1 {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 500px 1000px;
  }
}
@-webkit-keyframes loader_snow2 {
  0% {
    background-position: 0px 0px, 0px 0px;
  }
  100% {
    background-position: 400px 400px;
  }
}
@keyframes loader_snow2 {
  0% {
    background-position: 0px 0px, 0px 0px;
  }
  100% {
    background-position: 400px 400px;
  }
}
@-webkit-keyframes anime_blur {
  0% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  100% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes anime_blur {
  0% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  100% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
/*----------------------------------------*/
/* [INDEX PAGE LAYOUT] */
#index .site-container {
  position: relative;
  z-index: 1;
}

/* kv
================================== */
.index-kv {
  position: relative;
  background: #000;
}

.index-kv:before,
.index-kv:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background: #000;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
  z-index: 1;
}

.index-kv:before {
  left: 0;
}

.index-kv:after {
  right: 0;
}

body.loadingEnded .index-kv:before,
body.loadingEnded .index-kv:after {
  width: 0;
}

.index-kv_image {
  position: relative;
  overflow: hidden;
}

.index-kv_image > img {
  width: 100%;
}

.index-kv_catch {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.index-kv_catch2 {
  position: absolute;
  bottom: -1.3333333333vw;
  width: 100%;
}
.index-kv_slider {
  position: relative;
}
.index-kv_slider li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.index-kv_progress {
  display: block;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, .5);
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  z-index: 2;
}

.index-kv_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: #c30010;
}

.index-kv_catch3 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.index-kv_he {
  position: relative;
  z-index: 1;
}

.index-kv_heUnit {
  position: relative;
  z-index: 1;
}
/* content
================================== */
.index-content {
  position: relative;
}

.index-content_snow1 {
  width: 100%;
  height: 100vh;
  background-image: url(../img/index/snow01.png);
  -webkit-animation: anime_snow1 33s linear infinite;
          animation: anime_snow1 33s linear infinite;
  position: fixed;
  bottom: 0;
}

.index-content_snow2 {
  width: 100%;
  height: 100vh;
  background-image: url(../img/index/snow02.png);
  background-repeat: repeat;
  -webkit-animation: anime_snow2 30s linear infinite;
          animation: anime_snow2 30s linear infinite;
  position: fixed;
  bottom: 0;
}

/* comment
================================== */
.index-comment {
  background: url(../img/index/bg_comment.png);
  position: relative;
}

.index-comment_header {
  background: #478aa3;
  position: relative;
  color: #fff;
}
.index-comment_header:before {
  width: 100%;
  height: 10px;
  background: url(../img/index/comment_arrow_sp.svg) center center no-repeat;
  content: "";
  position: absolute;
  z-index: 2;
  -webkit-animation: anime_fadeInOut 2s infinite linear;
          animation: anime_fadeInOut 2s infinite linear;
}
.index-comment_header:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 10px;
  background: #305d6e;
  content: "";
  position: absolute;
  z-index: 1;
}

.index-comment_ttl {
  font-size: 24px;
  text-align: center;
  font-weight: normal;
  line-height: 1;
}
.index-comment_ttl:after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto 5px;
  background: #fff;
  content: "";
}

.index-comment_read {
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}

.index-comment_list {
  height: 100%;
}

.index-comment_link {
  text-decoration: none;
  height: 100%;
}
.index-comment_link .index-comment_txt {
  color: #fff;
}

.index-comment_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #478aa3;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
.index-comment_name span {
  font-size: 22px;
}
.index-comment_name small {
  font-size: 12px;
  margin-top: 0;
}

.index-comment_txt {
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 35px;
}

.index-comment_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.index-comment_btn {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  padding: 7px 1.5em;
  color: #478aa3;
  text-decoration: none;
  border: 1px solid #478aa3;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.index-comment_btn:hover, .index-comment_btn.active {
  color: #fff;
  background: #478aa3;
}

/* news
================================== */
.index-news {
  padding: 70px 0 80px;
  position: relative;
}

.index-news_ttl {
  color: #c2000f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index-news_ttl:after {
  display: block;
  width: 100%;
  height: 1px;
  margin-left: 18px;
  background: #c2000f;
  content: "";
}

.index-news_link {
  text-decoration: none;
}

.index-news_img {
  position: relative;
  overflow: hidden;
}
.index-news_img img {
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.index-news_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index-news_date {
  font-size: 12px;
  margin-right: 10px;
  color: #c2000f;
  letter-spacing: 0.3px;
}

.index-news_new {
  font-size: 10px;
  display: block;
  padding: 1px 9px;
  background: #c2000f;
  color: #fff;
  line-height: 1;
}

.index-news_text {
  font-weight: bold;
  color: #000;
  line-height: 1.43;
  letter-spacing: 0.35px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.index-news_more a {
  font-size: 18px;
  display: block;
  margin: 0 25px;
  padding: 7px 1.5em;
  color: #c2000f;
  border: 1px solid #c2000f;
  text-decoration: none;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: inherit;
  color: #fff;
  background: #c2000f;
}
.index-news_more a:hover, .index-news_more a.active {
  color: #c2000f;
  background: none;
}

.index-theater {
  display: block;
  margin-right: auto;
  margin-left: auto;
  border: solid 1px #c2000f;
  background: #c2000f url(../img/common/icon_arrow.png) calc(100% - 10px) center no-repeat;
  background: rgba(194, 0, 15, .5) url(../img/common/icon_arrow.png) calc(100% - 10px) center no-repeat;
  text-align: center;
  text-decoration: none;
  color: #fff;
  line-height: 1;
}

.index-theater_en {
  display: block;
  font-size: 24px;
}

.index-theater_jp {
  display: block;
  font-size: 12px;
}

/* movie
================================== */
.index-movie {
  position: relative;
}
.index-movie_text {
  font-size: 13px;
  margin-top: 10px;
  color: #c2000f;
  font-weight: bold;
  text-align: center;
}

.index-movie_item a {
  display: block;
  border: 1px solid #c2000f;
  position: relative;
  overflow: hidden;
}
.index-movie_item a:before {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  background: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
}
.index-movie_item a:after {
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  display: block;
  width: 62px;
  height: 62px;
  background: url(../img/common/icon_playbtn.png) no-repeat;
  background-size: 62px;
  content: "";
  z-index: 1;
}
.index-movie_item a:hover:before {
  background: #000000;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.index-movie_btn a {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 25px 25px 0;
  padding: 7px 1.5em;
  color: #fff;
  text-decoration: none;
  background: #c2000f;
  border: 1px solid #c2000f;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.index-movie_btn a:hover, .index-movie_btn a.active {
  color: #c2000f;
  background: none;
}
/* banner
================================== */
/* pickup
================================== */
.index-pickup {
  max-width: 1120px;
  position: relative;
}

.index-pickup_more {
  max-width: 300px;
  margin: 6.6666666667vw auto 0;
}

.index-pickup_moreBtn {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  padding: 5px 10px;
  background: #c2000f;
  border: none;
  color: #fff;
  text-align: center;
}
.index-pickup_moreBtn:after {
  content: "";
  width: 2.6666666667vw;
  height: 2.2666666667vw;
  margin-left: 5px;
  padding-bottom: 3px;
  background: url(../img/index/icon_more_arrow.svg) center center no-repeat;
  background-size: 2.6666666667vw;
}

.js_more_list > li.is_hidden {
  display: none;
}

.js_more_btn.is_close:after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

/* oro
================================== */

.index-oro {
  max-width: 1280px;
  margin: 0 0 16vw;
  position: relative;
  z-index: 1;
}
.index-oro_ttl img {
  width: 100%;
}

/*----------------------------------------*/
/* [CAST LAYOUT] */
.credit {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/index/bg_credit.jpg) no-repeat center top;
  background-color: #000;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(200px);
      -ms-transform: translateY(200px);
          transform: translateY(200px);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
}

#index.credit-opened .credit {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#index.credit-closed .credit {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

#index .site-wrapper {
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
}

#index.credit-opened .site-wrapper {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-200px);
      -ms-transform: translateY(-200px);
          transform: translateY(-200px);
}

#index.credit-closed .site-wrapper {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#index .site-header {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#index.credit-opened .site-header {
  opacity: 0;
}

#index.credit-closed .site-header {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.credit_outer {
  height: 100%;
  overflow: auto;
}

.credit_inner {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.credit_close {
  position: absolute;
  left: 50%;
  color: #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
}

.credit_close .arrow {
  position: relative;
  display: block;
  width: 1.5em;
  height: 1.5em;
}

.credit_close .arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 200%;
  background: url(../img/common/icon_arrow_w.png) no-repeat center center/contain;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.credit_open_wrap {
  text-align: center;
  background: #000;
  position: relative;
  z-index: 1;
}

.credit_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  color: #fff;
  cursor: pointer;
}

.credit_open .arrow {
  position: relative;
  display: block;
  width: 1.5em;
  height: 1.5em;
}

.credit_open .arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background: url(../img/common/icon_arrow_w.png) no-repeat center center/contain;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
/*----------------------------------------*/
/* [TRAILER MODAL LAYOUT] */
#trailer {
  background: transparent;
}

.trailer-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.trailer-main {
  position: relative;
  overflow: auto;
}

.trailer-main-inner {
  margin: 0 auto;
}

.trailer-movie-wrap {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
}

.trailer-movie {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 14px;
  padding: 0 1.5em;
  color: #c2000f;
  font-size: inherit;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #c2000f;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.trailer-btn a:hover, .trailer-btn a.active {
  color: #000;
  background: #b6000e;
}

.trailer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.trailer-nav li {
  font-size: inherit;
}
.trailer-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 1.5em;
  color: #fff;
  font-size: inherit;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #b6000e;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.trailer-nav a:hover, .trailer-nav a.active {
  color: #000;
  background: #b6000e;
}
/*----------------------------------------*/
/* [GALLERY PAGE LAYOUT] */
#gallery .site-container {
  color: #fff;
  background: #000;
}

.gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.gallery-list_item {
  -webkit-transform: translate(10px, 0);
      -ms-transform: translate(10px, 0);
          transform: translate(10px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.gallery-list.enabled .gallery-list_item {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 1;
}

.gallery-list_item a {
  position: relative;
  display: block;
}

.gallery-list_item a:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/gallery/icon_modal.png) no-repeat center center/contain;
}

.gallery-list_item a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #b6000e;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.gallery-list_item a:hover:after {
  opacity: 1;
}

.gallery-list_item_image {
  display: block;
  width: 100%;
  background: no-repeat center center/cover;
}

/* overwrite mfp */
#gallery .mfp-title {
  padding: 0;
}

#gallery .mfp-counter {
  display: none;
}

#gallery .mfp-arrow {
  width: auto;
  height: auto;
  margin-top: 0;
}

#gallery .mfp-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  border: none;
  margin: 0;
  background: url(../img/gallery/icon_arrow.png) no-repeat center center/contain;
}

#gallery .mfp-arrow:after {
  position: absolute;
  top: 0;
  width: auto;
  height: auto;
  border: none;
  margin: 0;
  color: #fff;
  font-family: din-condensed;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#gallery .mfp-arrow-left:before {
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#gallery .mfp-arrow-left:after {
  content: "PREV";
}

#gallery .mfp-arrow-right:before {
  left: auto;
  right: 0;
  -webkit-transform: scale(-1, 1) translateY(-50%);
      -ms-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
}

#gallery .mfp-arrow-right:after {
  content: "NEXT";
  left: auto;
}
/*----------------------------------------*/
/* [INTRODUCTION PAGE LAYOUT] */
.introduction-kv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.introduction-kv:before, .introduction-kv:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
  z-index: 1;
}
.introduction-kv:before {
  left: 0;
}
.introduction-kv:after {
  right: 0;
}

body.loadingEnded .introduction-kv:before, body.loadingEnded .introduction-kv:after {
  width: 0;
}

.introduction-kv_inner {
  position: relative;
  width: 50%;
  z-index: 0;
  overflow: hidden;
}

.introduction-kv_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: no-repeat center top/cover;
}

.introduction-kv_inner:nth-of-type(1) {
  text-align: left;
}
.introduction-kv_inner:nth-of-type(2) {
  text-align: right;
}

.introduction-kv_text {
  height: 100%;
}
.introduction-kv_text img {
  position: relative;
  width: auto;
}

.introduction-kv_copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.introduction-kv_copy img {
  width: auto;
  height: 100%;
}

.introduction-kv_scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.introduction-kv_scroll a {
  position: relative;
  display: block;
  width: 2px;
  height: 160px;
  background: #fff;
  overflow: hidden;
}
.introduction-kv_scroll i {
  position: absolute;
  top: -50%;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #c2000f;
  -webkit-animation: scroll 1.5s linear infinite;
          animation: scroll 1.5s linear infinite;
}

@-webkit-keyframes scroll {
  0% {
    top: -100%;
  }
  80%, 100% {
    top: 100%;
  }
}

@keyframes scroll {
  0% {
    top: -100%;
  }
  80%, 100% {
    top: 100%;
  }
}
#introduction .page-content {
  color: #000;
  background: no-repeat center top/cover;
}
#introduction .page-content_title {
  color: #c2000f;
}
#introduction .page-content_inner {
  margin: 0 auto;
}

.introduction_text {
  line-height: 2.2;
  margin-top: 2em;
  font-weight: bold;
}
.introduction_text .ruby:before {
  margin-bottom: -0.5em;
}
/*----------------------------------------*/
/* [THEATER PAGE LAYOUT] */
#theater .site-container {
  padding-bottom: 10rem;
  color: #fff;
  background: #000;
}

#theater .page-content_inner {
  max-width: 1050px;
}

.theater-kv_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.theater-kv_list li {
  width: calc(50% - 5px);
}
.theater-kv_bnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #c2000f url(../img/theater/icon_arrow_wht.png) calc(100% - 11px) center no-repeat;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
}

.theater-mkimg {
  text-align: center;
}

.theater-content {
  max-width: 1050px;
  margin: 0 4vw 40px;
}

.theater-tablist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}

.theater-tab {
  width: calc(50% - 5px);
}

.theater-tab_radio {
  display: none;
}

.theater-tab_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.theater-tab_btn__final {
  font-size: 12px;
  border: 1px solid #c2000f;
  color: #c2000f;
}
.theater-tab_btn__final .ft-en {
  font-size: 16px;
}
.theater-tab_btn__begin {
  border: 1px solid #fff;
  color: #fff;
}
.theater-tab_btn .ft-en {
  font-size: 16px;
  font-weight: normal;
}

.theater-tabpanel {
  display: none;
  width: 100%;
  height: 1360px;
}

/* タブ動作
================================== */
#tab-pannel01.theater-tabpanel {
  border: 4px solid #c2000f;
}

#tab-pannel02.theater-tabpanel {
  border: 4px solid #fff;
}

.theater-tabframe {
  width: 100%;
  height: 100%;
}

#tab01:checked ~ #tab-pannel01 {
  display: block;
}

#tab02:checked ~ #tab-pannel02 {
  display: block;
}

#tab01:checked ~ .theater-tablist .theater-tab_btn__final {
  background: #c2000f url(../img/theater/icon_arrow_dwn_blk.png) center calc(100% - 3px) no-repeat;
  color: #000;
}

#tab02:checked ~ .theater-tablist .theater-tab_btn__begin {
  background: #ffffff;
  background: #fff url(../img/theater/icon_arrow_dwn_blk.png) center calc(100% - 3px) no-repeat;
  color: #000;
}

/* footer
================================== */
.theater-footer {
  position: relative;
}

.theater-footer_list {
  position: relative;
}
.theater-footer_list:before, .theater-footer_list:after {
  display: block;
  width: 100%;
  height: 30px;
  content: "";
  position: absolute;
}
.theater-footer_list:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(black));
  background: -webkit-linear-gradient(bottom, #000000, black);
  background: -o-linear-gradient(bottom, #000000, black);
  background: linear-gradient(to top, #000000, black);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(black));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0), black);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0), black);
  background: linear-gradient(to top, rgba(0, 0, 0, 0), black);
  top: 0;
}
.theater-footer_list:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(black));
  background: -webkit-linear-gradient(top, #000000, black);
  background: -o-linear-gradient(top, #000000, black);
  background: linear-gradient(to bottom, #000000, black);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), black);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), black);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  content: "";
  bottom: 0;
}
.theater-footer_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.theater-footer_final {
  background: url(../img/theater/ft_img_final_sp.jpg) center center no-repeat;
  background-size: cover;
}

.theater-footer_begin {
  background: url(../img/theater/ft_img_begin_sp.jpg) center center no-repeat;
  background-size: cover;
}

/* button
================================== */
.theater-btn {
  height: 47.5px;
}
.theater-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #c2000f url(../img/theater/icon_arrow_wht.png) calc(100% - 11px) center no-repeat;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
}

/* attention
================================== */
.theater-attention {
  margin-top: 60px;
  margin-bottom: 160px;
  padding: 30px;
  border: 7px solid #3e3e3e;
}

.theater-attention_list {
  text-align: center;
  margin: 30px auto;
}
.theater-attention_list li:first-child {
  margin-bottom: 15px;
}

.theater-attention_desc {
  padding: 40px;
  border: 3px solid #656565;
  font-size: 14px;
  line-height: 30px;
}
.theater-attention_desc p {
  margin-bottom: 2em;
}
.theater-attention_desc p:last-child {
  margin-bottom: 0;
}
.theater-attention_desc a {
  color: #00f6ff;
}

.theater_attention_note li:before {
  content: "・";
}
/* caution
================================== */
.theater-caution {
  padding: 30px 10px;
  margin-bottom: 80px;
  border: 3px solid #f00;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
/*----------------------------------------*/
/* [TRAILER MODAL LAYOUT] */
#oneokrock .site-container {
  padding-bottom: 10rem;
  overflow: visible;
}
#oneokrock .page-content_title .main {
  font-size: 18px;
}

.oneok_tuningTtl {
  position: relative;
}

.oneok_tuningTxt01 {
  position: relative;
  top: -0.1em;
}

.oneok-content {
  max-width: 960px;
  margin: 0 auto;
}

.oneok-content_movie {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  padding-top: 56.3%;
}

.oneok-movie {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.oneok-txt {
  font-size: 14px;
  margin-bottom: 4rem;
  line-height: 1.7;
}

/* tab
================================== */
.oneok-tablist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 0.4rem;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  z-index: 1;
}

.oneok-tab {
  width: calc(50% - 2.5px);
}
.oneok-tab.is_invalid {
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}

.oneok-tab_radio {
  display: none;
}

.oneok-tab_btn {
  display: block;
  cursor: pointer;
}

.oneok-tabpanel {
  display: none;
  width: 100%;
}

.oneok-tab_txt {
  font-size: 20px;
  display: block;
  position: relative;
}
.oneok-tab_txt:before {
  display: inline-block;
  padding-right: 0.8rem;
  position: relative;
  top: -0.1rem;
  content: "[";
}
.oneok-tab_txt:after {
  padding-left: 0.8rem;
  position: relative;
  top: -0.1rem;
  content: "]";
}

.oneok-tab_ttls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  color: #c2000f;
  font-weight: bold;
}

.oneok-tab_ttl01 {
  font-size: 15px;
  margin-right: 5px;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  line-height: 1;
  letter-spacing: 3px;
}

.oneok-tab_ttl02 {
  font-size: 10px;
  line-height: 1.2;
}

/* タブ動作
================================== */
.oneok-tabframe {
  width: 100%;
  height: 100%;
}

#tab01:checked ~ #tab-pannel01 {
  -webkit-animation: anime_fadeIn 1s;
          animation: anime_fadeIn 1s;
  display: block;
}

#tab02:checked ~ #tab-pannel02 {
  -webkit-animation: anime_fadeIn 1s;
          animation: anime_fadeIn 1s;
  display: block;
}

#tab01:checked ~ .oneok-tablist .oneok-tab_btn__final .oneok-tab_ttls {
  border-bottom: 2px solid #c2000f;
}

#tab02:checked ~ .oneok-tablist .oneok-tab_btn__begin .oneok-tab_ttls {
  border-bottom: 2px solid #c2000f;
}

/* interview
================================== */
.oneok-interview dt {
  font-size: 14px;
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.7;
}
.oneok-interview dd {
  font-size: 14px;
  margin-bottom: 5rem;
  line-height: 1.7;
}

/* figure
================================== */
.oneok-figure {
  margin-top: -3rem;
  margin-bottom: 5rem;
}

/* media
================================== */
.oneok-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.oneok-media_imgWrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.oneok-media_imgWrapper picture {
  display: block;
}

/*----------------------------------------*/
/* [Blu-ray&DVD/Digital PAGE LAYOUT] */
#he .site-container {
  padding-bottom: 53.3333333333vw;
  color: #fff;
  background: #000;
  position: relative;
}
#he .site-container:before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../img/home_entertainment/final/bg_final_sp.jpg) center top no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
}

#he_b .site-container {
  padding-bottom: 53.3333333333vw;
  color: #478aa3;
  background: #fff;
  position: relative;
}
#he_b .site-container:before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../img/home_entertainment/beginning/bg_begin_sp.jpg) center -40px no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
}
#he_b .site-container:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, .4);
  position: fixed;
  top: 0;
  left: 0;
}

#he .page-content,
#he_b .page-content {
  position: relative;
  z-index: 1;
}

#he .page-content_inner,
#he_b .page-content_inner {
  max-width: 960px;
}

#he_b .page-content_title {
  color: #000;
}

/* header
================================== */
.he-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 0.8vw;
  padding-left: 1.3333333333vw;
  padding-bottom: 1.3333333333vw;
  border-bottom: 2px solid #c2000f;
}

.he-header_title {
  line-height: 1;
}

.he-header_jp {
  display: block;
  width: 20.2666666667vw;
}

.he-header_en {
  letter-spacing: 1.3866666667vw;
  font-weight: normal;
}

.he-title_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 37.3333333333vw;
  height: 6.9333333333vw;
  border: 2px solid #478aa3;
  background: #478aa3 url(../img/home_entertainment/icon_arrow_w_r2.svg) calc(100% - 3px) center no-repeat;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.8vw;
}

/* trailer
================================== */
.he-trailer {
  margin-bottom: 21.3333333333vw;
  padding: 2.6666666667vw 2vw 8vw;
  background: #0f0000;
  background: rgba(15, 0, 0, .8);
}

.he-trailer_frame {
  position: relative;
  width: 100%;
  padding-top: 56.3%;
  border: 1px solid #252525;
}

.he-trailer_movie {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* sect
================================== */
.he-sect {
  margin-bottom: 21.3333333333vw;
  padding: 8vw 4vw;
  border: solid 1px #c2000f;
  border: solid 1px rgba(194, 0, 15, .5);
  background: #000000;
  background: rgba(0, 0, 0, .5);
}

.he-sect_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5.3333333333vw;
}

.he-sect_title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  padding: 0.9333333333vw 4.5333333333vw 0.8vw;
  background: #c2000f;
  text-align: center;
  letter-spacing: 0.1066666667vw;
  line-height: 1.3;
}
.he-sect_title__long {
  text-align: left;
}
.he-sect_title span {
  display: block;
  letter-spacing: 0.0666666667vw;
}

.he-sect_label {
  display: inline-block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 0.8vw;
  padding: 0.6666666667vw 2.6666666667vw;
  border: 1px solid #c2000f;
  color: #c2000f;
  letter-spacing: 0.32vw;
  line-height: 1;
}
.he-sect_figWrapper__border {
  border: 1px solid #ccc;
}

.he-sect_linkList li:not(:last-child) {
  margin-bottom: 20px;
}

.he-sect_bnr {
  display: block;
}

.he-sect_more {
  display: block;
  padding: 2.6666666667vw;
  border: solid 1px #ff0014;
  background: #750009 url(../img/home_entertainment/icon_arrow_r_w.png) calc(100% - 8px) center no-repeat;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

/* dl
================================== */
.he-dl dt {
  border-bottom: 1px solid #c2000f;
  font-weight: bold;
  text-align: center;
}

.he-dl_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.he-dl_list li {
  width: calc(33.33333% - 3.33333px);
  margin-top: 2.6666666667vw;
}
.he-dl_list li:last-child {
  margin-right: auto;
  margin-left: 5px;
}

/* note
================================== */

/* info
================================== */
.he-info {
  width: 100%;
  margin-bottom: 4vw;
  padding: 4vw 5.3333333333vw 4vw;
  background: #191919;
  font-weight: bold;
}

.he-info_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.he-info_group:not(:last-child) {
  margin-bottom: 1.3333333333vw;
}
.he-info_group dt:after {
  content: "：";
}

/* detail
================================== */
.he-detail {
  font-weight: bold;
}
.he-detail > li {
  margin-bottom: 5.3333333333vw;
  margin-left: 1em;
  text-indent: -1em;
}

.he-detail_note {
  font-weight: normal;
}

.he-detail_list {
  margin-left: 1em;
  text-indent: -1em;
}

.he-detail_dlist dt {
  margin-left: 1em;
}
.he-detail_dlist dd {
  margin-bottom: 1em;
  margin-left: 0;
  text-indent: 0;
}

.he-detail_dlist2 dd {
  margin-bottom: 1em;
  margin-left: 0;
  text-indent: 0;
}

/* beginning
================================== */
#he_b .he-header {
  border-color: #478aa3;
}
#he_b .he-title_btn {
  background: #c2000f url(../img/home_entertainment/icon_arrow_w_r2.svg) calc(100% - 13px) center no-repeat;
  border-color: #c2000f;
}
#he_b .he-trailer {
  background: #e8e8e8;
}
#he_b .he-trailer_frame {
  border: none;
}
#he_b .he-sect {
  background: #ffffff;
  background: rgba(255, 255, 255, .7);
  border-color: #478aa3;
}
#he_b .he-sect_label {
  border-color: #478aa3;
  color: #478aa3;
}
#he_b .he-sect_title {
  background: #478aa3;
  color: #fff;
}
#he_b .he-dl dt {
  border-color: #478aa3;
}
#he_b .he-info {
  background: #fff;
}
#he_b .he-sect_more {
  border-color: #478aa3;
  color: #478aa3;
  background: #ffffff url(../img/home_entertainment/icon_arrow_r_blue.png) calc(100% - 10px) center no-repeat;
  background: rgba(255, 255, 255, .7) url(../img/home_entertainment/icon_arrow_r_blue.png) calc(100% - 10px) center no-repeat;
}
#he_b .he-sect_more:hover {
  border-color: #478aa3;
  background: #478aa3 url(../img/home_entertainment/icon_arrow_r_w.png) calc(100% - 10px) center no-repeat;
  color: #fff;
}

/* ======================================
  swiper custom
====================================== */
/* top movie
================================== */
.index-movie .swiper-button-next:after,
.index-movie .swiper-button-prev:after {
  display: none;
}
.index-movie .swiper-button-prev {
  left: 0;
  background: url(../img/common/prev_btn.png) center center no-repeat;
  background-size: 100%;
}
.index-movie .swiper-button-next {
  right: 0;
  background: url(../img/common/next_btn.png) center center no-repeat;
  background-size: 100%;
}

/* pickup
================================== */
.index-pickup .swiper-pagination-bullet-active {
  background: #c2000f !important;
  border: 1px solid #c2000f;
  border-radius: 99em;
}
.index-pickup .swiper-pagination {
  padding: 18px 0 0;
  position: relative;
}
.index-pickup .swiper-button-next:after,
.index-pickup .swiper-button-prev:after {
  display: none;
}
.index-pickup .swiper-button-prev {
  top: 58px;
  left: -41px;
  background: url(../img/index/arrow_pickup_prev.png) center center no-repeat;
  background-size: 100%;
}
.index-pickup .swiper-button-prev:hover {
  background-image: url(../img/index/arrow_pickup_prev_on.png);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.index-pickup .swiper-button-next {
  top: 58px;
  right: -41px;
  background: url(../img/index/arrow_pickup_next.png) center center no-repeat;
  background-size: 100%;
}
.index-pickup .swiper-button-next:hover {
  background-image: url(../img/index/arrow_pickup_next_on.png);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* oro
================================== */
.index-oro .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border: 1px solid #f14444;
  background: none;
  border-radius: 99em;
  opacity: 1;
}
.index-oro .swiper-pagination-bullet-active {
  background: #f14444;
  border: 1px solid #f14444;
  border-radius: 99em;
}
.index-oro .swiper-pagination {
  padding-top: 11px;
  position: relative;
}
.index-oro .swiper-button-next:after,
.index-oro .swiper-button-prev:after {
  display: none;
}
.index-oro .swiper-button-prev {
  left: 3px;
  background: url(../img/index/arrow_oro_prev.png) center center no-repeat;
  background-size: 100%;
}
.index-oro .swiper-button-prev:hover {
  opacity: 0.8;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.index-oro .swiper-button-next {
  right: 3px;
  background: url(../img/index/arrow_oro_next.png) center center no-repeat;
  background-size: 100%;
}
.index-oro .swiper-button-next:hover {
  opacity: 0.8;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* ======================================
  bxslider custom
====================================== */
/* top comment
================================== */
.index-comment .bx-wrapper {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0;
}
.index-comment .js_slider > li[aria-hidden=false] .index-comment_name {
  -webkit-animation: anime_fadeIn 1.5s ease-out 0s 1 normal both;
          animation: anime_fadeIn 1.5s ease-out 0s 1 normal both;
}
.index-comment .js_slider > li[aria-hidden=false] .index-comment_txt {
  -webkit-animation: anime_fadeIn 0.5s ease-out 1s 1 normal both;
          animation: anime_fadeIn 0.5s ease-out 1s 1 normal both;
}
.index-comment .js_slider > li[aria-hidden=true] {
  -webkit-animation: anime_fadeOut 1s linear 0s 1 normal both;
          animation: anime_fadeOut 1s linear 0s 1 normal both;
}
@media print, screen and (min-width: 769px) {
  .none-md {
    display: none !important;
  }
  .index-kv_catch2 {
    bottom: -0.8vw;
  }
  .index-kv.fixed .index-kv_catch2 {
    width: 50%;
    position: fixed;
    bottom: 0;
    top: auto;
  }
  .index-kv_slider li {
    z-index: 2;
  }
  .index-kv_logo {
    width: 400px;
  }
  .index-kv_date {
    display: none;
  }
  .index-kv_he {
    width: 393px;
    margin: -110px auto 10px;
  }
  .index-kv_he1 {
    width: 393px;
    margin: -110px auto 10px;
  }
  .index-kv_he2 {
    width: 401px;
  }
  .index-kv_campaign {
    width: 401px;
    margin-top: 28px;
  }
  .index-kv_left {
    width: 50%;
    position: relative;
  }

  .index-kv_right {
    position: absolute;
    bottom: 0;
    left: 0;
    height: calc(100vh - 48px);
    min-height: 600px;
    max-height: 100%;
    min-width: 1280px;
    width: 100%;
  }

  .index-kv.fixed .index-kv_right {
    position: fixed;
    top: 48px;
    bottom: auto;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  .index-kv:not(.fixed) .index-kv_right {
    left: 0 !important;
  }

  .index-kv_right_inner {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 0;
  }
  .index-kv_bg-video_wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .index-kv_bg-video_wrap:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/index/bg_video_dots.png) repeat 0 0;
    opacity: 0.7;
  }
  .index-kv_bg-video {
    position: relative;
    width: 100%;
    height: 50%;
    overflow: hidden;
  }
  .index-kv_bg-video > video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .index-news {
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 1280px;
    margin-bottom: 120px;
  }
  .index-content {
    background: url(../img/index/bg_grd_wht.png) center bottom repeat-x, url(../img/index/bg_cont.jpg) center bottom no-repeat;
    background-size: auto, cover;
  }
  .index-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .index-comment_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 116px;
    padding: 10px 15px;
  }
  .index-comment_header:before {
    width: 10px;
    height: 100%;
    background: url(../img/index/comment_arrow_pc.svg) center center no-repeat;
    top: 0;
    right: -10px;
  }
  .index-comment_header:after {
    width: 10px;
    height: 100%;
    top: 0;
    right: -10px;
  }
  .index-comment_ttl {
    font-size: 18px;
    display: inline-block;
    letter-spacing: 1.8px;
  }
  .index-comment_ttl:after {
    margin-top: 3px;
    margin-bottom: 10px;
  }
  .index-comment_read {
    font-size: 14px;
    line-height: 1.2;
  }
  .index-comment_body {
    width: calc(100% - 256px);
    height: 108px;
    margin-left: 10px;
    padding: 10px 0;
  }
  .index-comment_item {
    height: 88px;
  }
  .index-comment_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    position: relative;
  }
  .index-comment_name {
    min-width: 140px;
    height: 100%;
    padding: 16px 10px;
    border-right: 1px solid #478aa3;
    line-height: 1.2;
  }
  .index-comment_name span {
    font-size: 20px;
  }
  .index-comment_name small {
    font-size: 14px;
    margin-top: 5px;
  }
  .index-comment_txt {
    font-size: 15px;
    padding: 10px 50px 10px 20px;
    line-height: 1.6;
  }
  .index-comment_btn {
    width: 100px;
    height: 35px;
    margin-right: 20px;
    padding: 5px 10px;
    line-height: 1.8;
  }
  .index-news {
    padding: 0 160px;
  }
  .index-news_ttl {
    font-size: 36px;
    margin-bottom: 25px;
    letter-spacing: 1.8px;
  }
  .index-news_ttl span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 960px;
    margin: 0 auto;
  }
  .index-news_ttl span:after {
    display: block;
    width: 50%;
    height: 1px;
    margin-left: 18px;
    background: #c2000f;
    content: "";
  }
  .index-news_ttl:after {
    width: 50%;
    margin-left: 24px;
    position: absolute;
    right: 0;
  }
  .index-news_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 960px;
    margin: 0 auto 95px;
  }
  .index-news_item {
    width: 176px;
  }
  .index-news_item:not(:last-child) {
    margin-right: 20px;
  }
  .index-news_link:hover {
    color: #000;
  }
  .index-news_link:hover .index-news_text {
    color: #c2000f;
  }
  .index-news_link:hover .index-news_img {
    border: 1px solid #c2000f;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .index-news_img {
    height: 0;
    padding-bottom: 62.5%;
  }
  .index-news_date {
    font-size: 16px;
    letter-spacing: 0.4px;
  }
  .index-news_more a {
    font-size: 24px;
    width: 300px;
    margin: 0 auto;
    padding: 5px 10px;
  }
  .index-theater {
    width: 400px;
    padding: 15px 10px;
  }
  .index-theater:hover {
    background: #c2000f url(../img/common/icon_arrow.png) calc(100% - 10px) center no-repeat;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .index-movie_text {
    font-size: 16px;
    margin-top: 10px;
  }
  .index-movie_btn a {
    font-size: 24px;
    width: 300px;
    margin: 35px auto 0;
    padding: 5px 10px;
  }
  .index-movie {
    width: 1216px;
    margin: 0 auto;
    padding: 80px 0;
  }

  .index-movie_innerWrapper {
    position: relative;
  }

  .index-movie_inner {
    width: 1110px;
    margin: 0 auto;
  }

  .index-movie_item {
    width: 356px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
  .index-movie_item a {
    display: block;
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .index-movie_item img {
    position: absolute;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
  .index-banner {
    position: absolute;
    top: 10px;
    right: 20px;
  }
  .index-banner a {
    cursor: pointer;
  }

  .index-banner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .index-banner li {
    width: 160px;
  }

  .index-banner li + li {
    margin-left: 15px;
  }
  .index-pickup {
    margin: 0 auto;
    padding-bottom: 14px;
  }
  .index-pickup_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .index-pickup_item {
    width: calc(16.66667% - 6.66667px);
    margin-right: 10px;
  }
  .index-pickup_item:last-child {
    margin-right: 0;
  }
  .index-pickup_item a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
  }
  .index-pickup_item a.-border {
    border: 1px solid #444;
  }
  .index-oro_wrapper {
    width: 100%;
    background: #fff;
  }
  .index-oro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 450px;
    margin: 0 auto 110px;
    padding-left: 29px;
    background: #fff;
  }
  .index-oro_header {
    width: 632px;
  }
  .index-oro_header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 10px;
  }
  .index-oro_ttl {
    width: 589px;
    margin-bottom: 15px;
  }
  .index-oro_btn {
    width: 230px;
    height: 50px;
    background: url(../img/index/oro_btn_off.png) no-repeat;
    background-size: 230px;
    text-indent: -999em;
    -webkit-transition: background-image 0.2s;
    -o-transition: background-image 0.2s;
    transition: background-image 0.2s;
  }
  .index-oro_btn:hover {
    background-image: url(../img/index/oro_btn_on.png);
  }
  .index-oro_txt {
    width: 314px;
  }
  .index-oro_inner {
    width: calc(100% - 632px);
    position: relative;
  }
  .index-oro_item {
    width: auto;
    height: 330px;
  }
  .index-oro_item img {
    height: 100%;
  }
  .trailer-btn a {
    height: 3em;
    margin-top: 24px;
  }
  #theater .site-container {
    padding-bottom: 100px;
  }
  #theater .page-content {
    padding-top: 100px;
  }
  .theater-kv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    height: 554px;
    padding-top: 4px;
    background-image: url(../img/theater/bg_kv.jpg), url(../img/theater/bg_kv_base.jpg);
    background-size: 1280px, 100% 100%;
    background-repeat: no-repeat, repeat-x;
    background-position: center center, top center;
  }
  .theater-kv:after {
    display: block;
    width: 100%;
    height: 30px;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(black));
    background: -webkit-linear-gradient(top, #000000, black);
    background: -o-linear-gradient(top, #000000, black);
    background: linear-gradient(to bottom, #000000, black);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), black);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0), black);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    content: "";
    position: absolute;
    bottom: 0;
  }
  .theater-kv_left {
    width: 54.6875vw;
  }
  .theater-kv_right {
    width: 45.3125vw;
  }
  .theater-kv_logo {
    width: 357px;
  }
  .theater-bnrs {
    width: 340px;
  }
  .theater-kv_list {
    margin-top: -7px;
    margin-left: 30px;
    margin-bottom: 14px;
  }
  .theater-kv_list li {
    width: 160px;
  }
  .theater-kv_bnr {
    height: 60px;
    margin-left: 30px;
  }
  .theater-kv_bnr a {
    font-size: 20px;
  }
  .theater-mkimg {
    margin-bottom: 120px;
  }
  .theater-content {
    margin: 0 auto 120px;
  }
  .theater-tablist {
    margin-bottom: 9px;
  }
  .theater-tab {
    width: calc(50% - 10px);
  }
  .theater-tab_btn {
    height: 80px;
  }
  .theater-tab_btn__final {
    font-size: 24px;
    letter-spacing: 1.8px;
  }
  .theater-tab_btn__final:hover {
    background-color: #c2000f;
    color: #000;
    -webkit-transition: background color 0.2s;
    -o-transition: background color 0.2s;
    transition: background color 0.2s;
  }
  .theater-tab_btn__final .ft-en {
    font-size: 28px;
    margin-right: 10px;
    letter-spacing: 2.1px;
  }
  .theater-tab_btn__begin:hover {
    background-color: #fff;
    color: #000;
    -webkit-transition: background color 0.2s;
    -o-transition: background color 0.2s;
    transition: background color 0.2s;
  }
  .theater-tab_btn .ft-en {
    font-size: 30px;
    letter-spacing: 2.25px;
  }
  .theater-footer .theater-btn {
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    bottom: 73px;
  }
  .theater-footer_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theater-footer_list li {
    width: 50%;
    height: 547px;
  }
  .theater-footer_final {
    background: url(../img/theater/ft_img_final.jpg) center center no-repeat;
    background-size: cover;
  }
  .theater-footer_final img {
    width: 288px;
  }
  .theater-footer_begin {
    background: url(../img/theater/ft_img_begin.jpg) center center no-repeat;
    background-size: cover;
  }
  .theater-footer_begin img {
    width: 399px;
  }
  .theater-btn {
    width: 340px;
    height: 60px;
    margin-left: 30px;
  }
  .theater-btn a {
    font-size: 20px;
  }
  .theater-btn a:hover {
    background-color: #c2000f;
    background-color: rgba(194, 0, 15, .8);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  #oneokrock .site-container {
    padding-bottom: 200px;
  }
  #oneokrock .page-content {
    padding-top: 0;
  }
  #oneokrock .page-content_header {
    padding-top: 120px;
  }
  #oneokrock .page-content_title .main {
    font-size: 48px;
  }
  .oneok-content_movie {
    max-width: 960px;
    margin: 0 auto 55px;
  }
  .oneok-txt {
    font-size: 16px;
    margin-bottom: 80px;
    line-height: 2.2;
    letter-spacing: 0.8px;
  }
  .oneok-tablist {
    margin-bottom: 45px;
    padding-top: 20px;
    padding-bottom: 10px;
    top: 48px;
  }
  .oneok-tab {
    width: calc(50% - 20px);
  }
  .oneok-tab_txt {
    font-size: 48px;
  }
  .oneok-tab_ttls {
    padding-bottom: 8px;
    border-bottom: 6px solid transparent;
  }
  .oneok-tab_ttl01 {
    font-size: 30px;
    margin-right: 22px;
    letter-spacing: 1.5px;
  }
  .oneok-tab_ttl02 {
    font-size: 20px;
    line-height: 1.5;
  }
  #tab01:checked ~ .oneok-tablist .oneok-tab_btn__final .oneok-tab_ttls {
    border-bottom: 6px solid #c2000f;
  }
  #tab02:checked ~ .oneok-tablist .oneok-tab_btn__begin .oneok-tab_ttls {
    border-bottom: 6px solid #c2000f;
  }
  .oneok-interview dt {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: 1.1px;
  }
  .oneok-interview dd {
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 2.2;
    letter-spacing: 0.8px;
  }
  .oneok-figure {
    margin-top: -20px;
    margin-bottom: 60px;
  }
  .oneok-figure.-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .oneok-figure_logo {
    margin-top: -20px;
  }
  .oneok-media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    margin-bottom: 60px;
  }
  .oneok-media_imgWrapper {
    margin-left: 30px;
  }
  .oneok-media_imgWrapper picture:not(:first-child) {
    margin-top: 30px;
  }
  #he .site-container {
    padding-bottom: 410px;
  }
  #he .site-container:before {
    height: 100%;
    background: url(../img/home_entertainment/final/bg_final.jpg) center top no-repeat;
    background-size: cover;
  }
  #he_b .site-container {
    padding-bottom: 410px;
  }
  #he_b .site-container:before {
    height: 100%;
    background: url(../img/home_entertainment/beginning/bg_begin.jpg) center -40px no-repeat;
    background-size: cover;
  }
  #he .page-content,
#he_b .page-content {
    padding-top: 100px;
  }
  .he-header {
    margin-bottom: 6px;
    padding-left: 20px;
    padding-bottom: 10px;
    border-bottom: 4px solid #c2000f;
  }
  .he-header_jp {
    width: 152px;
    margin-bottom: 5px;
  }
  .he-header_en {
    letter-spacing: 10.4px;
  }
  .he-title_btn {
    font-size: 15px;
  }
  .he-title_btn {
    width: 440px;
    height: 52px;
    background: #478aa3 url(../img/home_entertainment/icon_arrow_w_r2.svg) calc(100% - 13px) center no-repeat;
    letter-spacing: 6px;
  }
  .he-title_btn:hover {
    background: transparent url(../img/home_entertainment/icon_arrow_blu_r2.svg) calc(100% - 13px) center no-repeat;
    color: #478aa3;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .he-trailer {
    margin-bottom: 100px;
    padding: 20px 20px 40px;
  }
  .he-trailer_frame {
    max-width: 960px;
    margin: 0 auto;
  }
  .he-sect {
    margin-bottom: 160px;
    padding: 60px 40px 80px;
  }
  .he-sect:last-of-type {
    margin-bottom: 30px;
  }
  .he-sect_header {
    margin-bottom: 20px;
  }
  .he-sect_title {
    font-size: 16px;
  }
  .he-sect_title {
    padding: 9px 10px 8px;
    letter-spacing: 0.6px;
    line-height: 1.3;
    text-align: center;
  }
  .he-sect_title span {
    font-size: 10px;
  }
  .he-sect_title span {
    letter-spacing: 0.4px;
  }
  .he-sect_label {
    font-size: 12px;
  }
  .he-sect_label {
    margin-bottom: 6px;
    padding: 6px 19px 4px;
    letter-spacing: 2px;
  }
  .he-sect_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .he-sect_sub {
    width: 260px;
  }
  .he-sect_figWrapper:not(:last-child) {
    margin-bottom: 40px;
  }
  .he-sect_bnr:hover {
    opacity: 0.75;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .he-sect_more {
    font-size: 12px;
  }
  .he-sect_more {
    padding: 15px;
    background: #750009 url(../img/home_entertainment/icon_arrow_r_w.png) calc(100% - 10px) center no-repeat;
  }
  .he-sect_more:hover {
    border: 1px solid #c2000f;
    background: #000 url(../img/home_entertainment/icon_arrow_r_red.png) calc(100% - 10px) center no-repeat;
    color: #c2000f;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .he-sect_main {
    width: calc(100% - 320px);
    margin-left: 60px;
  }
  .he-sect_note {
    font-size: 9px;
  }
  .he-sect_note {
    text-align: center;
  }
  .he-dl {
    -ms-flex-item-align: center;
        align-self: center;
    width: calc(100% - 260px);
    margin-left: 40px;
  }
  .he-dl dt {
    font-size: 14px;
  }
  .he-dl dt {
    border-bottom: 2px solid #c2000f;
  }
  .he-dl_list li {
    width: calc(25% - 5.25px);
    margin-top: 13px;
  }
  .he-dl_list li:last-child {
    margin-left: 7px;
  }
  .he-note {
    font-size: 9px;
  }
  .he-info {
    font-size: 12px;
  }
  .he-info {
    margin-bottom: 35px;
    padding: 20px 20px 15px;
  }
  .he-info_group:not(:last-child) {
    margin-bottom: 10px;
  }
  .he-detail {
    font-size: 11px;
  }
  .he-detail {
    line-height: 1.8;
  }
  .he-detail > li {
    margin-bottom: 25px;
  }
  .he-detail_note {
    font-size: 10px;
  }
  .he-detail_dlist dd {
    margin-bottom: 20px;
  }
  .he-detail_dlist2 dd {
    margin-bottom: 20px;
  }
  #he_b .he-title_btn:hover {
    background: transparent url(../img/home_entertainment/icon_arrow_red_r2.svg) calc(100% - 13px) center no-repeat;
    color: #c2000f;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .index-movie .swiper-button-next,
.index-movie .swiper-button-prev {
    width: 34px;
    height: 81px;
    top: calc(50% - 30px);
  }
  .index-pickup .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border: 1px solid #c2000f;
    border-radius: 99em;
    background: none;
    opacity: 1;
  }
  .index-pickup .swiper-button-next,
.index-pickup .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .index-oro .swiper-pagination-bullet {
    display: none;
  }
  .index-oro .swiper-pagination {
    display: none;
  }
  .index-oro .swiper-button-next,
.index-oro .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) and (max-height: 700px) {
  .index-kv_right_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-kv_right_body {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) and (min-height: 701px) {
  .index-kv_right_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 769px) and (min-width: 769px) {
  .index-news_ttl span:after {
    margin-left: 24px;
  }
  .index-pickup_item a:hover img {
    -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
            transform: scale(1.05, 1.05);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .index-pickup_item a img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .oneok-figure.-col picture {
    width: calc(33.33333% - 6.66667px);
  }
  .he-header_en {
    font-size: 52px;
  }
  .he-title_btn {
    font-size: 30px;
  }
  .he-sect_title {
    font-size: 24px;
  }
  .he-sect_title span {
    font-size: 16px;
  }
  .he-sect_label {
    font-size: 20px;
  }
  .he-sect_more {
    font-size: 16px;
  }
  .he-sect_note {
    font-size: 14px;
  }
  .he-dl dt {
    font-size: 20px;
  }
  .he-note {
    font-size: 14px;
  }
  .he-info {
    font-size: 14px;
  }
  .he-detail {
    font-size: 14px;
  }
  .he-detail_note {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  .index-news_img {
    margin-bottom: 10px;
    border: 1px solid transparent;
  }

  .index-news_text {
    font-size: 14px;
  }
  .credit {
    min-width: 1260px;
  }

  .credit_close {
    top: 30px;
  }

  .credit_inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .credit_block {
    padding: 150px 0 20px;
  }

  .credit_logo {
    margin: 70px auto 0;
    width: 200px;
  }

  .credit_close {
    font-size: 20px;
  }

  .credit_open {
    padding-bottom: 30px;
    font-size: 20px;
  }
  .trailer-main-inner {
    width: 960px;
    padding: 100px 0 50px;
  }

  .trailer-nav {
    margin: 2em -0.75em 0;
  }
  .trailer-nav li {
    margin: 0.75em;
  }
  .trailer-nav a {
    height: 3em;
  }
  #gallery .page-content {
    padding-bottom: 300px;
  }

  #gallery .page-content_inner {
    max-width: 100%;
  }

  .gallery-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .gallery-list_item {
    width: 25%;
  }

  .gallery-list_item_image {
    min-height: 340px;
    height: 50vh;
  }

  .gallery-list_item a:before {
    width: 24px;
    height: 24px;
  }

  #gallery img.mfp-img {
    padding: 40px 0 60px;
  }

  #gallery .mfp-figure:after {
    bottom: 60px;
  }

  #gallery .mfp-arrow:before {
    width: 40px;
    height: 80px;
  }

  #gallery .mfp-arrow:after {
    font-size: 16px;
  }

  #gallery .mfp-arrow-left {
    left: 20px;
  }

  #gallery .mfp-arrow-left:after {
    left: 40px;
  }

  #gallery .mfp-arrow-right {
    right: 20px;
  }

  #gallery .mfp-arrow-right:after {
    right: 40px;
  }
  .introduction-kv {
    height: calc(100vh - 48px);
    min-height: 552px;
  }

  .introduction-kv_text {
    padding: 0 30px;
  }
  .introduction-kv_text img {
    top: 10%;
    height: 465px;
    max-height: 90%;
  }

  #introduction .page-content {
    padding-bottom: 70px;
    background-image: url(../img/introduction/bg-content.jpg);
  }
  #introduction .page-content_inner {
    max-width: 1100px;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .he-header_en {
    font-size: 26px;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .he-header_en {
    font-size: 5.2rem;
  }
  .he-title_btn {
    font-size: 3rem;
  }
  .he-sect_title {
    font-size: 2.4rem;
  }
  .he-sect_title span {
    font-size: 1.6rem;
  }
  .he-sect_label {
    font-size: 2rem;
  }
  .he-sect_more {
    font-size: 1.6rem;
  }
  .he-sect_note {
    font-size: 1.4rem;
  }
  .he-dl dt {
    font-size: 2rem;
  }
  .he-note {
    font-size: 1.4rem;
  }
  .he-info {
    font-size: 1.4rem;
  }
  .he-detail {
    font-size: 1.4rem;
  }
  .he-detail_note {
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width: 901px) {
  .none-lg {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (min-width: 1280px) and (max-width: 1500px) and (max-height: 700px) {
  .index-kv_right_body {
    margin-top: 180px;
  }
}
@media screen and (min-width: 1280px) {
  .theater-kv_logo {
    max-width: 400px;
  }
}
@media screen and (min-width: 769px) and (min-width: 1501px) and (max-height: 700px) {
  .index-kv_right_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-kv_right_body {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .none-d-md {
    display: none !important;
  }
  .index-kv_slider {
    margin-bottom: 1.8666666667vw;
    border-bottom: 1px solid transparent;
  }
  .index-kv_image3 {
    opacity: 0;
  }
  .index-kv_logo {
    width: 57.8666666667vw;
    position: absolute;
    bottom: -20vw;
    left: 17.7333333333vw;
    z-index: 1;
  }
  .index-kv_logo2 {
    width: 57.8666666667vw;
    position: absolute;
    bottom: -9.3333333333vw;
    left: 17.7333333333vw;
    z-index: 1;
  }
  .index-kv_date {
    margin: 0 3.0666666667vw 2vw 2.1333333333vw;
  }
  .index-kv_he {
    margin: 0 3.0666666667vw 2vw 2.1333333333vw;
  }
  .index-kv_heUnit {
    margin: 0 4vw;
  }
  .index-kv_he1 {
    margin-bottom: 2vw;
  }
  .index-kv_campaign {
    margin-top: 5.3333333333vw;
  }
  .index-kv {
    padding-bottom: 2rem;
  }

  .index-kv:before {
    display: none;
  }

  .index-kv:after {
    width: 100%;
  }

  .index-kv_image:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6rem;
  }

  .index-kv_bg-video_wrap {
    display: none;
  }

  .index-kv_sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: -3rem 0 1rem;
  }

  .index-kv_sns li + li {
    margin-left: 2rem;
  }

  .index-kv_sns a {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
  }
  .index-content:after {
    width: 100%;
    height: 100vh;
    background: url(../img/index/bg_cont_sp.jpg) center bottom no-repeat;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .index-comment {
    margin: 0 4vw 10vw;
    padding-bottom: 5.3333333333vw;
  }
  .index-comment_header {
    margin-bottom: 5.3333333333vw;
    padding: 3.3333333333vw 10px 1.3333333333vw;
  }
  .index-comment_header:before {
    background-size: 8px;
    bottom: -10px;
    left: 0;
  }
  .index-comment_header:after {
    bottom: -10px;
    left: 0;
  }
  .index-comment_body {
    height: 100%;
  }
  .index-comment_link {
    display: block;
    padding: 0 6vw;
  }
  .index-comment_name {
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid #478aa3;
    line-height: 1.4;
  }
  .index-comment_footer {
    padding: 0 6vw;
  }
  .index-news_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .index-news_item {
    margin-bottom: 20px;
  }
  .index-news_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .index-news_img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 32vw;
    height: 20vw;
    margin-right: 10px;
  }
  .index-news_more {
    margin-top: 60px;
  }
  .index-theater {
    margin: 0 4vw;
    padding: 8px 10px;
  }
  .index-movie {
    padding: 30px 0 21.3333333333vw;
  }

  .index-movie_item a {
    width: 100%;
    display: block;
    padding-bottom: 56.294%;
  }
  .index-movie_item img {
    position: absolute;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
  .index-banner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1rem 4vw;
  }

  .index-banner li {
    padding: 1rem 0;
  }
  .index-news {
    padding: 70px 0 80px;
  }

  .index-news_ttl {
    padding-left: 1rem;
  }

  .index-news_list {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .index-news_inner {
    position: relative;
  }

  .index-news_main {
    overflow: hidden;
  }

  .index-news_ticker_text {
    display: block;
    margin-top: 0.5em;
  }

  .index-news_more {
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 1.6rem;
  }
  .index-pickup {
    padding: 10.6666666667vw 4vw;
    background: #fff;
  }
  .index-pickup_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index-pickup_item {
    width: 44vw;
    margin-bottom: 1.3333333333vw;
  }
  .index-oro_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    margin-bottom: 2.6666666667vw;
    padding-left: 4vw;
  }
  .index-oro_ttl:after {
    display: block;
    width: 100%;
    height: 1px;
    margin-left: 18px;
    background: #f14444;
    content: "";
  }
  .index-oro_ttl img {
    width: 30.2666666667vw;
  }
  .index-oro_inner {
    margin-right: 4vw;
    margin-left: 4vw;
  }
  .index-oro_item:first-child {
    width: 90.2666666667vw;
  }
  .index-oro_item:not(:first-child) {
    width: 48vw;
  }
  .credit {
    background-size: 100% auto;
  }

  .credit_inner {
    position: relative;
    padding: 0 2rem;
  }

  .credit_block {
    padding: 5rem 0 12rem;
  }

  .credit_logo {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    width: 10rem;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .credit_open {
    padding-bottom: 2rem;
  }
  .trailer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .trailer-main {
    width: 100%;
    padding: 0 !important;
  }

  .trailer-main-inner {
    padding: 3rem 2rem 1rem;
  }

  .trailer-nav {
    margin-top: 1rem;
    font-size: 0.8rem;
  }
  .trailer-nav li {
    margin: 0.5em;
  }
  .trailer-nav a {
    height: 2.5em;
  }
  #gallery .page-content {
    padding-bottom: 10rem;
  }

  #gallery .page-content_inner {
    padding: 0;
  }

  .gallery-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .gallery-list_item {
    width: 50%;
  }

  .gallery-list_item a:before {
    width: 1.6rem;
    height: 1.6rem;
  }

  .gallery-list_item_image {
    padding-top: 100%;
  }

  #gallery img.mfp-img {
    padding: 3rem 0 7rem;
  }

  #gallery .mfp-figure:after {
    top: 3rem;
    bottom: 7rem;
  }

  #gallery .mfp-bottom-bar {
    margin-top: -6rem;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  #gallery .mfp-container {
    padding: 0;
  }

  #gallery .mfp-title {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
  }

  #gallery .mfp-arrow {
    top: calc(100% - 2rem);
  }

  #gallery .mfp-arrow:before {
    width: 1.5rem;
    height: 3rem;
  }

  #gallery .mfp-arrow:after {
    font-size: 0.8rem;
  }

  #gallery .mfp-arrow-left {
    left: 1rem;
  }

  #gallery .mfp-arrow-left:after {
    left: 1.5rem;
  }

  #gallery .mfp-arrow-right {
    right: 1rem;
  }

  #gallery .mfp-arrow-right:after {
    right: 1.5rem;
  }
  .introduction-kv {
    height: 32.5rem;
  }

  .introduction-kv_inner:nth-of-type(2) .introduction-kv_image {
    background-position-x: 75%;
  }

  .introduction-kv_text {
    padding: 0 0.5rem;
  }
  .introduction-kv_text img {
    top: 18.5%;
    height: 72.5%;
  }

  #introduction .page-content {
    padding-bottom: 4rem;
    background-image: url(../img/introduction/bg-content-sp.jpg);
  }
  #introduction .page-content_inner {
    max-width: 93.3%;
  }
  #theater .page-content_inner {
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .theater-kv_inner {
    height: 61.6vw;
    margin-bottom: 4vw;
    background: url(../img/theater/kv_bg_sp.jpg) center top no-repeat;
    background-size: cover;
    position: relative;
  }
  .theater-kv_inner:after {
    display: block;
    width: 100%;
    height: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(black));
    background: -webkit-linear-gradient(top, #000000, black);
    background: -o-linear-gradient(top, #000000, black);
    background: linear-gradient(to bottom, #000000, black);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), black);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0), black);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    content: "";
    position: absolute;
    bottom: 0;
  }
  .theater-kv_logo {
    width: 47.6vw;
    margin: 0 4vw 6.6666666667vw auto;
    padding-top: 5.0666666667vw;
    position: relative;
  }
  .theater-bnrs {
    margin: 0 14.9333333333vw;
  }
  .theater-kv_list {
    margin-bottom: 10px;
  }
  .theater-mkimg {
    margin: 0 8vw 40px;
  }
  .theater-tab_btn {
    height: 16vw;
    line-height: 1.2;
  }
  .theater-tab_btn__begin {
    padding-top: 0.5em;
  }
  #tab01:checked ~ .theater-tablist .theater-tab_btn__final {
    background-size: 4vw;
  }
  #tab02:checked ~ .theater-tablist .theater-tab_btn__begin {
    background-size: 4vw;
  }
  .theater-footer .theater-btn {
    margin: 0 14.9333333333vw;
  }
  .theater-footer_list {
    margin-bottom: 10px;
  }
  .theater-footer_list li {
    height: 48vw;
  }
  .theater-footer_final {
    padding-top: 4vw;
  }
  .theater-footer_final img {
    width: 48.8vw;
  }
  .theater-footer_begin {
    padding-bottom: 4vw;
  }
  .theater-footer_begin img {
    width: 73.2vw;
  }
  .theater-btn a {
    font-size: 14px;
    border: 1px solid #c2000f;
    background: #c2000f url(../img/common/icon_arrow.png) calc(100% - 6px) center no-repeat;
    background: rgba(194, 0, 15, .5) url(../img/common/icon_arrow.png) calc(100% - 6px) center no-repeat;
    background-size: 10px;
  }
  .theater-attention {
    padding: 0;
    border: none;
  }

  .theater-attention_list {
    margin: 10px auto;
  }
  .theater-attention_list li:first-child {
    margin-bottom: 8px;
  }

  .theater-attention_desc {
    padding: 20px;
    border: 2px solid #656565;
  }
  .theater-caution {
    padding: 20px 10px;
    margin: 0 4vw 40px;
    font-size: 18px;
  }
  #oneokrock .page-content {
    padding-top: 0;
    padding-right: 8vw;
    padding-left: 8vw;
  }
  #oneokrock .page-content_header {
    margin-bottom: 2rem;
    padding-top: 4rem;
  }
  .oneok-media.-rev .oneok-media_imgWrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: -3rem;
    margin-bottom: 5rem;
  }
  .oneok-media.-rev .oneok-media_body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .oneok-media_imgWrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 1.5rem;
  }
  .oneok-media_body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #he .page-content_inner,
#he_b .page-content_inner {
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .he-title_btn {
    font-size: 1.5rem;
  }
  .he-title_btn {
    background-size: 1.3333333333vw;
  }
  .he-trailer_catch {
    width: 72.2666666667vw;
    margin: 0 auto;
  }
  .he-sect:last-of-type {
    margin-bottom: 1em;
  }
  .he-sect_title {
    font-size: 1.6rem;
  }
  .he-sect_title span {
    font-size: 1rem;
  }
  .he-sect_title span {
    text-align: center;
  }
  .he-sect_label {
    font-size: 1.2rem;
  }
  .he-sect_sub {
    margin-bottom: 5.3333333333vw;
  }
  .he-sect_figWrapper {
    width: 50.6666666667vw;
    margin: 0 auto;
  }
  .he-sect_bnr {
    width: 64vw;
    margin: 0 auto;
  }
  .he-sect_more {
    font-size: 1.2rem;
  }
  .he-sect_more {
    background-size: 2.6666666667vw;
  }
  .he-sect_main {
    margin-bottom: 6.6666666667vw;
  }
  .he-sect_note {
    font-size: 0.9rem;
  }
  .he-dl {
    margin-top: 8vw;
    margin-bottom: 6.6666666667vw;
  }
  .he-dl dt {
    font-size: 1.4rem;
  }
  .he-dl dt {
    padding-bottom: 1.3333333333vw;
  }
  .he-note {
    font-size: 0.9rem;
  }
  .he-info {
    font-size: 1.2rem;
  }
  .he-detail {
    font-size: 1.1rem;
  }
  .he-detail_note {
    font-size: 1rem;
  }
  #he_b .he-title_btn {
    background-size: 1.3333333333vw;
  }
  .index-movie .swiper-button-next,
.index-movie .swiper-button-prev {
    display: none;
  }
  .index-pickup .swiper-button-next,
.index-pickup .swiper-button-prev {
    display: none;
  }
  .index-oro .swiper-button-next,
.index-oro .swiper-button-prev {
    display: none;
  }
  .index-comment .bx-viewport {
    max-height: 53.3333333333vw !important;
  }
}
@media screen and (max-width: 900px) {
  .none-d-lg {
    display: none !important;
  }
  #gallery .mfp-arrow {
    -webkit-transform: none;
    -ms-transform: none;
        transform: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .he-header_en {
    font-size: 2.6rem;
  }
}