@charset "UTF-8";
/*------------------------------------------------------------------------------

共通

------------------------------------------------------------------------------*/
body {
  background: url(../img/bg.jpg) no-repeat center 0 fixed;
  background-size: cover;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  background-color: #000000;
}

a {
  color: #ff6a27;
  outline: none;
}

a:hover {
  color: #ff2a48;
}

em {
  font-weight: bold;
  color: #ff2a48;
}

.align_center {
  text-align: center;
}

.clear {
  clear: both;
}

.hide_text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0px 0px;
  background-repeat: no-repeat;
}

/*------------------------------------------------------------------------------

個別

------------------------------------------------------------------------------*/
/*------------------------------------------/
ヘッダー
------------------------------------------/*/
.sns_btn {
  width: 900px;
  height: 30px;
  margin: 0 auto;
  position: relative;
}

.sns_btn ul {
  position: absolute;
  top: 6px;
  right: 0;
}

.sns_btn ul li {
  float: left;
  margin-left: 5px;
}

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

#header {
  width: 960px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 42;
}

/* ロゴ */
#header .logo {
  position: absolute;
  bottom: -180px;
  left: 25px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 0.5s;
  transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 0.5s;
  overflow: hidden;
}

.allload #header .logo {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*------------------------------------------/
メインコンテンツ
------------------------------------------/*/
main .contents {
  position: relative;
  width: 960px;
  margin: 0 auto;
}

section p {
  margin: 0;
}

/* ムービー */
section.movie {
  margin: 120px 0 130px 0px;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, -150px);
          transform: translate(0, -150px);
  -webkit-transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 0.5s;
  transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 0.5s;
}

section.movie img {
  background: url(../img/movie_img01.png) center 0 no-repeat;
  width: width("../img/movie_img01.png");
  height: height("../img/movie_img01.png");
  width: 675px;
  height: 648px;
  margin-left: 140px;
}

.allload section.movie {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

section.movie .prinny_movie {
  background: url(../img/movie_img02.png) 0 0 no-repeat;
  width: width("../img/movie_img02.png");
  height: height("../img/movie_img02.png");
  width: 229px;
  height: 225px;
  position: absolute;
  bottom: -70px;
  left: -139px;
}

section.movie .mv_obj {
  background: #000;
  border: solid 3px white;
  border-radius: 2px;
  position: absolute;
  top: 243px;
  left: 176px;
}

section.movie .play_btn::after {
  content: url(../img/img_play_btn.png);
  width: width("../img/img_play_btn.png");
  height: height("../img/img_play_btn.png");
  width: 610px;
  height: 345px;
  display: block;
  position: absolute;
  top: 243px;
  left: 176px;
  opacity: 0;
  -webkit-transition: opacity 0.03s linear;
  transition: opacity 0.03s linear;
}

section.movie .play_btn:hover::after {
  opacity: 1;
}

/* ストーリー */
section.world {
  margin: 0px 0px 60px 0;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, -100px);
          transform: translate(0, -100px);
  -webkit-transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 0.9s;
  transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 0.9s;
}

@media screen and (max-width: 960px) {
  section.world {
    margin: 0 0 50px 40px;
  }
}

section.world img {
  background: url(../img/world_img01.png) center 0 no-repeat;
  width: 100%;
  height: height("../img/world_img01.png");
  height: 708px;
}

.allload section.world {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* ss+prinny */
section.world .world_img {
  background: none;
  overflow: hidden;
  width: width("../img/world_img02.png");
  height: height("../img/world_img02.png");
  width: 524px;
  height: 257px;
  position: absolute;
  bottom: 0px;
  left: 352px;
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.allload section.world.trigger .world_img {
  opacity: 1;
  -webkit-animation: world 0.5s ease-in-out 1 0s normal forwards;
          animation: world 0.5s ease-in-out 1 0s normal forwards;
}

@-webkit-keyframes world {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  5% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  15% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  25% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  60% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
}

@keyframes world {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  5% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  15% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  25% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  60% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: right center 0;
            transform-origin: right center 0;
  }
}

/* キャラクター */
section.character {
  margin: 0px 0 70px -50px;
  opacity: 0;
  -webkit-transform: translate(0, -100px);
          transform: translate(0, -100px);
  -webkit-transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 1.1s;
  transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 1.1s;
}

@media screen and (max-width: 960px) {
  section.character {
    margin: 0 0 70px -10px;
  }
}

section.character img {
  background: url(../img/character_img01.png) center 0 no-repeat;
  width: 100%;
  height: height("../img/character_img01.png");
  height: 1930px;
}

.allload section.character {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* ギャラリー */
section.gallery {
  margin: 0 0 290px 0;
  opacity: 0;
  -webkit-transform: translate(0, -60px);
          transform: translate(0, -60px);
  -webkit-transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 1.3s;
  transition: all 0.2s cubic-bezier(0.18, 1.1, 0.77, 1.3) 1.3s;
}

@media screen and (max-width: 960px) {
  section.gallery {
    margin: 0 0 290px 15px;
  }
}

section.gallery img {
  background: url(../img/gallery_img01.png) center 0 no-repeat;
  width: 100%;
  height: height("../img/gallery_img01.png");
  height: 1010px
}

.allload section.gallery {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

section.gallery ul.photos {
  width: 700px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  top: 125px;
  left: 135px;
}

section.gallery ul.photos li {
  margin: 0px -5px -8px;
  position: relative;
  width: width("../img/ss01.png");
  height: height("../img/ss01.png", 2);
  width: 238px;
  height: 148px;
}

section.gallery ul.photos li:nth-child(1) a,
section.gallery ul.photos li:nth-child(1) img {
  background-image: url(../img/ss01.png);
}

section.gallery ul.photos li:nth-child(2) a,
section.gallery ul.photos li:nth-child(2) img {
  background-image: url(../img/ss02.png);
}

section.gallery ul.photos li:nth-child(3) a,
section.gallery ul.photos li:nth-child(3) img {
  background-image: url(../img/ss03.png);
}

section.gallery ul.photos li:nth-child(4) a,
section.gallery ul.photos li:nth-child(4) img {
  background-image: url(../img/ss04.png);
}

section.gallery ul.photos li:nth-child(5) a,
section.gallery ul.photos li:nth-child(5) img {
  background-image: url(../img/ss05.png);
}

section.gallery ul.photos li:nth-child(6) a,
section.gallery ul.photos li:nth-child(6) img {
  background-image: url(../img/ss06.png);
}

section.gallery ul.photos li:nth-child(7) a,
section.gallery ul.photos li:nth-child(7) img {
  background-image: url(../img/ss07.png);
}

section.gallery ul.photos li:nth-child(8) a,
section.gallery ul.photos li:nth-child(8) img {
  background-image: url(../img/ss08.png);
}

section.gallery ul.photos li:nth-child(9) a,
section.gallery ul.photos li:nth-child(9) img {
  background-image: url(../img/ss09.png);
}

section.gallery ul.photos li:nth-child(10) a,
section.gallery ul.photos li:nth-child(10) img {
  background-image: url(../img/ss10.png);
}

section.gallery ul.photos li:nth-child(11) a,
section.gallery ul.photos li:nth-child(11) img {
  background-image: url(../img/ss11.png);
}

section.gallery ul.photos li:nth-child(12) a,
section.gallery ul.photos li:nth-child(12) img {
  background-image: url(../img/ss12.png);
}

section.gallery ul.photos li:nth-child(13) a,
section.gallery ul.photos li:nth-child(13) img {
  background-image: url(../img/ss13.png);
}

section.gallery ul.photos li:nth-child(14) a,
section.gallery ul.photos li:nth-child(14) img {
  background-image: url(../img/ss14.png);
}

section.gallery ul.photos li:nth-child(15) a,
section.gallery ul.photos li:nth-child(15) img {
  background-image: url(../img/ss15.png);
}

section.gallery ul.photos li:nth-child(16) a,
section.gallery ul.photos li:nth-child(16) img {
  background-image: url(../img/ss16.png);
}

section.gallery ul.photos li:nth-child(17) a,
section.gallery ul.photos li:nth-child(17) img {
  background-image: url(../img/ss17.png);
}

section.gallery ul.photos li:nth-child(18) a,
section.gallery ul.photos li:nth-child(18) img {
  background-image: url(../img/ss18.png);
}

section.gallery ul.photos li a, section.gallery ul.photos li img {
  display: block;
  width: width("../img/ss01.png");
  height: height("../img/ss01.png", 2);
  width: 238px;
  height: 148px;
}

section.gallery ul.photos li img {
  background-position: 0 100%;
  opacity: 0;
  -webkit-transition: opacity 0.03 linear;
  transition: opacity 0.03 linear;
}

section.gallery ul.photos li img:hover {
  opacity: 1;
}

section.gallery .prinny_teacher {
  background: url(../img/gallery_img02.png) 0 0 no-repeat;
  width: width("../img/gallery_img02.png");
  height: height("../img/gallery_img02.png");
  width: 219px;
  height: 216px;
  position: absolute;
  bottom: -26px;
  left: -47px;
}

#totop {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 50%;
  margin-left: 520px;
  border-radius: 90px;
}

#totop img {
  background: url(../img/img_totop.png) center 100% no-repeat;
  width: width("../img/img_totop.png");
  height: height("../img/img_totop.png");
  width: 172px;
  height: 203px;
  display: block;
  border-radius: 90px;
}

#totop:hover img {
  -webkit-animation: animationTotop 0.2s cubic-bezier(0, 1.04, 0.67, 0.99) 1 0s normal forwards;
          animation: animationTotop 0.2s cubic-bezier(0, 1.04, 0.67, 0.99) 1 0s normal forwards;
}

@-webkit-keyframes animationTotop {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes animationTotop {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@media screen and (max-width: 960px) {
  #totop {
    display: none;
  }
}

/*------------------------------------------/
フッター
------------------------------------------/*/
.footer_bg {
  height: 515px;
  background: #000;
}

footer {
  width: 960px;
  margin: 0 auto;
  position: relative;
}

footer hr {
  border-top: 1px solid #fff;
  border-bottom: 0;
}

footer .etna_scarecrows {
  position: absolute;
  top: -230px;
  right: 50px;
}

footer .spec {
  margin: 40px auto 20px;
}

footer .btns {
  padding: 20px 0 0;
  height: 39px;
  float: right;
  line-height: 0;
}

footer .btns li {
  float: left;
  margin-left: 7px;
}

footer .btns a {
  display: block;
  background: #fff;
}

footer .btns a:hover img {
  opacity: 1;
}

footer .sns {
  height: 19px;
  padding: 20px 0 0;
}

footer .sns li {
  float: left;
  height: 19px;
  overflow: hidden;
}

footer .sns li:not(:last-child) {
  padding-right: 20px;
  background: url(../img/footer_navi_slash.png) 98% 0px no-repeat;
}

footer .sns a {
  display: block;
  height: 30px;
}

footer .sns .blog a, footer .sns .blog img {
  display: block;
  width: width("../img/footer_navi_blog.png");
  height: height("../img/footer_navi_blog.png", 2);
  width: 156px;
  height: 19px;
  background-image: url(../img/footer_navi_blog.png);
}

footer .sns .blog img {
  background-position: 0 100%;
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

footer .sns .blog img:hover {
  opacity: 1;
}

footer .sns .twitter a, footer .sns .twitter img {
  display: block;
  width: width("../img/footer_navi_twitter.png");
  height: height("../img/footer_navi_twitter.png", 2);
  width: 184px;
  height: 16px;
  background-image: url(../img/footer_navi_twitter.png);
}

footer .sns .twitter img {
  background-position: 0 100%;
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

footer .sns .twitter img:hover {
  opacity: 1;
}

footer .sns .facebook a, footer .sns .facebook img {
  display: block;
  width: width("../img/footer_navi_facebook.png");
  height: height("../img/footer_navi_facebook.png", 2);
  width: 212px;
  height: 16px;
  background-image: url(../img/footer_navi_facebook.png);
}

footer .sns .facebook img {
  background-position: 0 100%;
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

footer .sns .facebook img:hover {
  opacity: 1;
}

.copy {
  clear: both;
  text-align: right;
  line-height: 1.3;
  font-size: 11px;
  color: #fff;
}

@media screen and (min-width: 961px) {
  .sns_sp {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  footer .sns,
  footer .btns {
    display: none;
  }
  .footer_bg {
    height: 659px;
  }
  footer .spec {
    width: 960px;
  }
  .sns_sp {
    width: 670px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto;
  }
  .sns_sp li {
    display: block;
    margin: 0 5px;
  }
  .sns_sp .sp_twitter img {
    width: width("../img/sp_sns_twitter.png");
    height: height("../img/sp_sns_twitter.png");
    width: 217px;
    height: 78px;
    background: url(../img/sp_sns_twitter.png);
  }
  .sns_sp .sp_facebook img {
    width: width("../img/sp_sns_fb.png");
    height: height("../img/sp_sns_fb.png");
    width: 217px;
    height: 78px;
    background: url(../img/sp_sns_fb.png);
  }
  .sns_sp .sp_line img {
    width: width("../img/sp_sns_line.png");
    height: height("../img/sp_sns_line.png");
    width: 218px;
    height: 78px;
    background: url(../img/sp_sns_line.png);
  }
  .copy {
    font-size: 17px;
    text-align: center;
    margin: 0 auto;
  }
}
