html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 12px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
a {
  color: white;
  text-decoration: underline;
}
body {
  background: black;
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4em;
  line-height: 1em;
  margin-bottom: 10px;
  text-align: center;
}
.site {
  height: 100%;
}
.logo {
  position: absolute;
  top: 0;
  left: 20px;
}
.logo a {
  display: block;
  width: 164px;
  height: 102px;
  background: url(../images/logo-small-fr.png) no-repeat center center;
  background-size: 100% auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.logo a:hover {
  transform: scale(1.05);
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.content {
  padding: 90px 0;
}
.content p {
  text-align: justify;
  font-size: 1.5em;
  line-height: 1.6em;
  max-width: 600px;
  padding: 0 20px;
  margin: 45px auto;
}
.separator {
  width: 681px;
  height: 8px;
  max-width: 100%;
  margin: 0 auto;
  background: url(../images/line.png) no-repeat center center;
}
.title {
  height: 108px;
  width: 100%;
  margin: 0 0 90px 0;
  padding: 0;
  overflow: hidden;
}
.title span {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
  text-indent: -9999px;
  background-position: top center;
  transition: transform 0.3s ease;
  transform: translateY(100%);
}
.visible .title span {
  transform: translateY(0);
}
.button {
  position: relative;
  display: inline-block;
  border: 3px solid #C6AE4F;
  background-color: #44352F;
  padding: 15px 58px 15px 20px;
  color: white;
  font-size: 17px;
  line-height: 17px;
  width: 290px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: nowrap;
  box-shadow: 3px 3px 0 black;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.button:hover {
  transform: scale(1.05);
}
.button:after {
  content: "";
  position: absolute;
  background: url(../images/button.png);
  height: 17px;
  width: 18px;
  margin-top: -8.5px;
  top: 50%;
  right: 20px;
}
.button.button-small {
  width: auto;
  padding-top: 10px ;
  padding-bottom: 10px;
}
.sound-popup {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  height: 100%;
  width: 100%;
  background: #40312B url(../images/sound/bg.png) repeat top left;
}
.sound-popup .logo {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 206px;
  max-height: 30vh;
  z-index: 1;
  background: url(../images/sound/logo-fr.png) no-repeat center center;
  background-size: contain;
}
.sound-popup .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 55px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.sound-popup .content p {
  text-align: center;
  color: white;
  padding: 0;
  margin: 10px auto;
}
.sound-buttons {
  margin: 0;
  padding: 0;
  text-align: center;
}
.sound-buttons li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  width: 124px;
  height: 124px;
  padding: 10px;
}
.sound-buttons a {
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
  transition: transform 0.3s ease;
  transform: scale(1);
  background-position: center center;
}
.sound-buttons a:hover {
  transform: scale(1.05);
}
.sound-buttons .sound-on {
  background-image: url(../images/sound/on.gif);
}
.sound-buttons .sound-off {
  background-image: url(../images/sound/off.png);
}
.sound-popup-frame {
  position: absolute;
  top: 50px;
  left: 50px;
  width: calc(100% - 100px);
  box-sizing: border-box;
  height: calc(100% - 100px);
  border: 2px solid #C6AE4F;
}
.sound-popup-frame .corner {
  display: block;
  position: absolute;
  width: 142px;
  height: 142px;
  background: url(../images/sound/decorate.png) no-repeat top left;
}
.sound-popup-frame .corner:nth-child(1) {
  top: -33px;
  left: -32px;
}
.sound-popup-frame .corner:nth-child(2) {
  top: -32px;
  right: -33px;
  transform: rotate(90deg);
}
.sound-popup-frame .corner:nth-child(3) {
  bottom: -32px;
  left: -33px;
  transform: rotate(-90deg);
}
.sound-popup-frame .corner:nth-child(4) {
  bottom: -33px;
  right: -32px;
  transform: rotate(180deg);
}
@media screen and (max-width: 400px) {
  .sound-buttons li {
    width: 50%;
    box-sizing: border-box;
    padding: 5px;
  }
  .sound-popup-frame {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
  .sound-popup .content {
    padding: 20px;
  }
}
@media screen and (max-height: 400px) {
  .sound-popup .logo {
    display: none;
  }
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 99;
}
.menu .close,
.menu .open {
  background-size: 100% 100%;
  width: 80px;
  height: 83px;
  display: block;
  position: fixed;
  top: 20px;
  transform: scale(1);
  transform-origin: 100% 50%;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.menu .open {
  right: 0;
  z-index: 0;
  background-image: url(../images/menu/menu.png);
}
.menu .close {
  right: 0;
  z-index: 5;
  background-image: url(../images/menu/close.png);
}
.menu .close:hover,
.menu .open:hover {
  transform: scale(1.05);
}
.menu.visible {
  z-index: 101;
}
.menu.visible .menu-content {
  transform: translateX(0);
  transition: transform 0.3s ease-in-out, visibility 0s linear;
  visibility: visible;
}
.menu-content {
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 470px;
  max-width: 100vw;
  background-image: url(../images/menu/bg-v2.png);
  background-repeat: repeat;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-flex {
  position: absolute;
  left: 0;
  width: 100%;
  height: 836px;
  top: 50%;
  margin-top: -418px;
}
.menu-list {
  height: 100%;
}
.menu-list ul {
  margin: 0;
  padding: 18px 0;
}
.menu-frame {
  position: absolute;
  top: 0;
  left: 40px;
  width: calc(100% - 80px);
  box-sizing: border-box;
  height: 100%;
}
.menu-frame .corner {
  display: block;
  position: absolute;
  width: 43px;
  height: 43px;
  background: url(../images/menu/frame.png) no-repeat top left;
}
.menu-frame .border {
  position: absolute;
  display: block;
  background-color: #C6AE4F;
  transition: transform 0.5s ease-out 0.3s;
}
.menu-frame .corner:nth-child(1) {
  top: -20px;
  left: -20px;
}
.menu-frame .corner:nth-child(2) {
  top: -20px;
  right: -20px;
  transform: rotate(90deg);
}
.menu-frame .corner:nth-child(3) {
  bottom: -20px;
  left: -20px;
  transform: rotate(-90deg);
}
.menu-frame .corner:nth-child(4) {
  bottom: -20px;
  right: -20px;
  transform: rotate(180deg);
}
.menu-frame .border:nth-child(5) {
  height: 1px;
  left: 4px;
  top: 0;
  width: calc(100% - 8px);
  transform: scaleX(0);
  transform-origin: 100% 0;
}
.menu.visible .menu-frame .border:nth-child(5) {
  transform: scaleX(1);
}
.menu-frame .border:nth-child(6) {
  width: 1px;
  height: calc(100% - 8px);
  top: 4px;
  right: 0;
  transform: scaleY(0);
  transform-origin: 0 100%;
}
.menu.visible .menu-frame .border:nth-child(6) {
  transform: scaleY(1);
}
.menu-frame .border:nth-child(7) {
  height: 1px;
  left: 4px;
  bottom: 0;
  width: calc(100% - 8px);
  transform: scaleX(0);
  transform-origin: 0 0;
}
.menu.visible .menu-frame .border:nth-child(7) {
  transform: scaleX(1);
}
.menu-frame .border:nth-child(8) {
  width: 1px;
  height: calc(100% - 8px);
  top: 4px;
  left: 0;
  transform: scaleY(0);
  transform-origin: 0 0;
}
.menu.visible .menu-frame .border:nth-child(8) {
  transform: scaleY(1);
}
.menu-list li {
  padding: 0;
  list-style: none;
}
.menu-list a {
  display: block;
  width: 100%;
  height: 80px;
  padding: 1px 0;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}
.menu-list li.selected a {
  background-color: #44352f;
}
.menu-list li.selected:hover a {
  background-color: rgba(68, 53, 47, 0.8);
}
.menu-list span {
  text-indent: -9999px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 50%;
  margin-top: -33px;
  width: 100%;
  height: 46px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 200%;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease 0.3s;
  transform: translateY(200%);
}
.menu.visible .menu-list span {
  transform: translateY(0);
}
.menu-list li.selected span {
  background-position: center 100%;
}
.menu-list li:hover span {
  opacity: 0.6;
}
@media screen and (max-height: 750px) {
  .menu-flex {
    margin-top: 0;
    top: 20px;
  }
}
.home-menu span {
  background-image: url(../images/menu/home.png);
}
.story-menu span {
  background-image: url(../images/menu/story.png);
}
.authors-menu span {
  background-image: url(../images/menu/authors.png);
}
.characters-menu span {
  background-image: url(../images/menu/characters.png);
}
.comics-menu span {
  background-image: url(../images/menu/comics.png);
}
.trailers-menu span {
  background-image: url(../images/menu/trailers.png);
}
.special-menu span {
  background-image: url(../images/menu/extraits.png);
}
.anime-menu span {
  background-image: url(../images/menu/anime.png);
}
.press-menu span {
  background-image: url(../images/menu/press.png);
}
.talking-about-us-menu span {
  background-image: url(../images/menu/talking.png);
}
.home {
  height: 100%;
}
.home .background {
  background-image: url(../images/home/bg.jpg);
  background-position: center bottom;
}
.home .logo {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 605.83333333px;
  height: 257.5px;
  max-height: 30vh;
  margin-left: -302.91666667px;
  z-index: 1;
}
.home .logo h1 {
  margin: 0;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
  background: url(../images/home/logo-fr.png) no-repeat center center;
  background-size: contain;
}
.home .home-characters {
  width: 50%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 25%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.home .tome2 {
  position: absolute;
  bottom: 60px;
  left: 10px;
}
.home .tome2 a {
  display: block;
  width: 298px;
  height: 350px;
  background: url(../images/pastille-test-qi.png) no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
  transform: scale(1);
  text-indent: -9999px;
}
.home .tome2 a:hover {
  transform: scale(1.05);
}
.home .macaron-anime {
  position: absolute;
  bottom: 60px;
  right: 10px;
}
.home .macaron-anime a {
  display: block;
  background: url(../images/home/pastille_volume_tpn_anime.png) no-repeat center center;
  width: 298px;
  height: 350px;
  background-size: contain;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.home .macaron-anime a:hover {
  transform: scale(1.05);
}
@media screen and (max-aspect-ratio: 1.66666667) {
  .home .home-characters {
    height: auto;
  }
}
@media screen and (max-width: 1090px) {
  .home .macaron-anime {
    width: 250px;
  }
  .home .tome2 a {
    width: 250px;
  }
}
@media screen and (max-width: 900px) {
  .home .home-characters {
    left: 12.5%;
    width: 75%;
  }
  .tome2 {
    display: none;
  }
  .macaron-anime {
    display: none;
  }
}
@media screen and (max-width: 605px) {
  .home .home-characters {
    left: 5%;
    width: 90%;
  }
  .home .logo {
    width: 100%;
    left: 0;
    top: 60px;
    margin-left: 0;
  }
}
@-webkit-keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
body {
  margin: 0;
  height: 100%;
  overflow: scroll;
}
body.bg-black {
  background-color: #000;
}
#arrow-scroll {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-animation: fade_move_down 2s ease-in-out infinite;
  animation: fade_move_down 2s ease-in-out infinite;
  height: 43px;
  display: block;
  background: url(../images/quiz/prologue-anim/arrow_bl.png?160351e2440);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  right: 0;
  bottom: 50px;
  left: 0;
  position: fixed;
  margin: auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: opacity 1s ease 0s, visibility 1s ease 0s;
}
#arrow-scroll img {
  display: block;
  width: 100%;
}
#intro-container {
  opacity: 1;
  transition: opacity 1s ease 0s;
}
#intro-container.anim {
  opacity: 0;
}
#skip-intro {
  position: fixed;
  bottom: 2vh;
  right: 2vh;
  width: 89px;
  cursor: pointer;
  z-index: 10;
}
#skip-intro img {
  display: block;
  width: 100%;
}
#skip-intro a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#background {
  position: fixed;
  background-image: url(../images/intro/bg_first_pc.png);
  background-position: center;
  background-size: cover;
  top: 0;
  width: 100%;
  height: 100%;
}
#background.bg-second {
  position: fixed;
  width: 76vh;
  height: 100vh;
  left: 50%;
  margin-left: -38vh;
  background-image: url(../images/intro/bg_second.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
}
#smoke {
  display: none;
  position: fixed;
  width: 76vh;
  height: 100vh;
  top: 0;
  left: 50%;
  margin-left: -38vh;
}
#smoke::after {
  content: "";
  display: block;
  background-image: url(../images/intro/bg_smoke.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-position: right top;
  background-size: auto 100%;
  background-repeat: repeat-y;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  z-index: 999;
}
#smoke::before {
  content: "";
  display: block;
  background-image: url(../images/intro/bg_smoke.png);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background-position: right top;
  background-size: auto 100%;
  background-repeat: repeat-y;
  z-index: 999;
}
.bodymovin_container {
  position: relative;
  width: 80vh;
  height: 100%;
  margin: auto;
}
.wrapper_content .bodymovin {
  display: block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 0;
  transition: opacity 1.2s ease 0s;
}
.wrapper_content .space {
  height: 33%;
}
.wrapper_content .bodymovin.show {
  opacity: 1;
}
#wrapper_content_first {
  display: block;
}
#wrapper_content_second {
  display: none;
}
#wrapper_content_first #coma_first_001 {
  position: absolute;
  width: 77vh;
  height: 50vh;
  margin-top: -25vh;
}
#wrapper_content_first #coma_first_002 {
  position: absolute;
  width: 70.8vh;
  height: 100vh;
  margin-top: -50vh;
  left: 10vh;
  z-index: 1;
}
#wrapper_content_first #coma_first_003 {
  position: absolute;
  width: 45.8vh;
  height: 33.3vh;
  margin-top: -16.65vh;
  left: 3.33vh;
}
#wrapper_content_first #coma_first_004 {
  width: 15.575vh;
  height: 25.64vh;
  top: 14.3vh;
  left: 45.5vh;
  z-index: 2;
}
#wrapper_content_first #coma_first_005 {
  width: 43.75vh;
  height: 70vh;
  margin-top: -35vh;
  left: 7.875vh;
  z-index: 1;
}
#wrapper_content_first #coma_first_006 {
  width: 89.5vh;
  height: 153vh;
  top: -26vh;
  margin-top: 0;
  z-index: 1;
}
#wrapper_content_first #coma_first_007 {
  width: 59vh;
  height: 50vh;
  margin-top: -25vh;
  z-index: 1;
}
#wrapper_content_first #coma_first_008 {
  width: 22.8vh;
  height: 80vh;
  margin-top: -40vh;
  left: 45.29vh;
}
#wrapper_content_first #coma_first_012 {
  width: 16.48vh;
  height: 43.84vh;
  top: 30vh;
  left: 21vh;
}
#wrapper_content_first #coma_first_011 {
  width: 17.84vh;
  height: 20.96vh;
  top: 66vh;
  left: 11.4vh;
  z-index: 1;
}
#wrapper_content_first #coma_first_014 {
  width: 105.82vh;
  height: 105vh;
  top: auto;
  bottom: 0;
}
#wrapper_content_first #coma_first_015 {
  width: 21.22vh;
  height: 24vh;
  margin-top: -12vh;
  left: 25vh;
}
#wrapper_content_first #coma_first_016 {
  width: 21.27vh;
  height: 35vh;
  top: 11.5vh;
  left: 0;
}
#wrapper_content_first #coma_first_017 {
  width: 22.1vh;
  height: 24vh;
  top: 0;
  margin-top: -12vh;
  left: 25vh;
}
#wrapper_content_first #coma_first_018 {
  width: 100vh;
  top: auto;
  height: 33vh;
  bottom: 5vh;
}
#wrapper_content_first #coma_first_019 {
  width: 100vh;
  top: auto;
  height: 86.5vh;
  bottom: 0;
}
/*#wrapper_content_second #coma_noize{
    position: absolute;
    width: 77vh;
    height: 50vh;
    margin-top: -25vh;
}*/
#wrapper_content_second #coma_second_002 {
  position: absolute;
  width: 35vh;
  height: 27vh;
  margin-top: -13.5vh;
  z-index: 1;
}
#wrapper_content_second #coma_second_001 {
  position: absolute;
  width: 77vh;
  height: 50vh;
  margin-top: -25vh;
}
#wrapper_content_second #coma_second_003 {
  position: absolute;
  height: 100vh;
  width: 80vh;
  margin-top: -50vh;
}
#wrapper_background_animation {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
}
.story {
  position: relative;
  width: 100%;
  color: white;
}
.story .background {
  background-image: url(../images/story/bg.jpg);
  background-position: center center;
}
.story .background-top {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 35vw;
  top: 0;
  left: 0;
  background-image: url(../images/story/top.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.story .background-bottom {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 68.92vw;
  bottom: 0;
  left: 0;
  background-image: url(../images/story/bottom.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.story .title span {
  background-image: url(../images/story/ttl.png);
}
.authors {
  position: relative;
  width: 100%;
  color: white;
}
.authors .background {
  background-image: url(../images/story/bg.jpg);
  background-position: center center;
}
.authors .background-top {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 35vw;
  top: 0;
  left: 0;
  background-image: url(../images/story/top.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.authors .background-bottom {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 68.92vw;
  bottom: 0;
  left: 0;
  background-image: url(../images/story/bottom.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.authors .title span {
  background-image: url(../images/authors/ttl.png);
}
.author-item {
  max-width: 640px;
  padding: 0 20px;
  margin: 30px auto;
  position: relative;
  box-sizing: border-box;
}
.author-item .image,
.author-item .text {
  display: inline-block;
  vertical-align: middle;
}
.author-item .image {
  width: 198px;
}
.author-item .image img {
  display: block;
  width: 100%;
  height: auto;
}
.author-item .text {
  padding-left: 20px;
  width: calc(100% - 198px);
  box-sizing: border-box;
}
.author-item .name h3 {
  font-size: 3em;
  line-height: 1em;
  margin: 0 0 10px 0;
  text-align: left;
}
.author-item p {
  width: auto;
  margin: 0;
  padding: 0;
  font-size: 1.4em;
  line-height: 1.2em;
}
@media screen and (max-width: 450px) {
  .authors .author-item {
    text-align: center;
  }
  .authors .author-item .text {
    margin-top: 10px;
    padding-left: 0;
    width: 100%;
    text-align: left;
  }
}
.characters .background {
  background-image: url(../images/characters/bg.jpg);
  background-position: center center;
}
.characters .title {
  height: 80px;
  margin-bottom: 45px;
}
.characters .title span {
  background-image: url(../images/characters/ttl.png);
}
.character-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  transition: opacity 0.5s ease-out;
  opacity: 0;
}
.character-item .previous,
.character-item .next {
  height: 100px;
  width: 50px;
  background-position: top left;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  cursor: pointer;
  transition: transform 0.5s ease-out 0.5s;
}
.character-item .previous {
  background-image: url(../images/characters/prev.png);
  left: 0;
  transform: translateX(-100%);
}
.character-item .next {
  background-image: url(../images/characters/next.png);
  right: 0;
  transform: translateX(100%);
}
.character-item .item-image {
  width: 322.66666667px;
  height: 500px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.character-item .item-image.visible {
  opacity: 1;
}
.character-item .item-text {
  display: inline-block;
  vertical-align: top;
  width: 500px;
  text-align: left;
  margin-left: 20px;
}
.character-item .info {
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.character-item .info.visible {
  opacity: 1;
}
.character-item .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4em;
  line-height: 1.2em;
}
.character-item .number {
  line-height: 1.2em;
  font-size: 2.5em;
  letter-spacing: -0.01em;
  color: #c6ae4f;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 10px;
}
.character-item .text {
  font-size: 1.4em;
  line-height: 1.2em;
  min-height: 5.04em;
}
.character-item .badge-list ul {
  padding: 0;
  margin: 10px -10px;
}
.character-item .badge-list li {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
  width: 95px;
  height: 97px;
  background-repeat: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.character-item .badge-list li:hover {
  transform: scale(1.05);
}
.character-item .badge-list li.selected {
  background-position: 0 -97px;
}
.visible .character-item {
  opacity: 1;
}
.visible .character-item .previous,
.visible .character-item .next {
  transform: translateX(0);
}
@media screen and (max-width: 830px) {
  .character-item .badge-list {
    display: none;
  }
  .character-item .item-text {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .character-item .item-image {
    background-position: center bottom;
  }
}
.comics {
  position: relative;
  width: 100%;
  color: white;
}
.comics .background {
  background-image: url(../images/comics/bg.jpg);
  background-position: center center;
}
.comics .title span {
  background-image: url(../images/comics/ttl.png);
}
.comics .manga-item {
  max-width: 640px;
  padding: 0 20px;
  margin: 30px auto;
  position: relative;
  box-sizing: border-box;
}
.comics .manga-item .image,
.comics .manga-item .text {
  display: inline-block;
  vertical-align: middle;
}
.comics .manga-item .image {
  width: 190px;
}
.comics .manga-item .image img {
  display: block;
  width: 100%;
  height: auto;
}
.comics .manga-item .text {
  padding-left: 20px;
  width: calc(100% - 190px);
  box-sizing: border-box;
}
.comics .manga-item .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4em;
  line-height: 1em;
  margin-bottom: 10px;
}
.comics .manga-item .date {
  line-height: 1.2em;
  font-size: 2.2em;
  color: #c6ae4f;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 10px;
}
.comics .manga-item .price,
.comics .manga-item .isbn {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.comics .manga-item small {
  font-size: 0.9em;
  text-align: left;
  display: block;
  line-height: 1em;
  margin-top: 10px;
}
.comics .button {
  position: absolute;
  bottom: 10px;
  left: 230px;
}
@media screen and (max-width: 450px) {
  .comics .manga-item .image {
    width: 100px;
  }
  .comics .manga-item .text {
    width: calc(100% - 100px);
    font-size: 0.8em;
  }
}
.trailers {
  position: relative;
  width: 100%;
  min-height: 100%;
  color: white;
}
.trailers .background {
  background-image: url(../images/trailers/bg.jpg);
  background-position: center center;
}
.trailers .title span {
  background-image: url(../images/trailers/ttl.png);
}
.trailers p {
  text-align: center ;
  font-size: 2em;
}
.trailers .video {
  margin: 30px auto;
  position: relative;
  width: 660px;
  box-sizing: border-box;
  padding: 0 10px;
  max-width: 100%;
}
.trailers .video iframe {
  width: 100%;
  min-height: 360px;
}
.trailers .video img {
  display: block;
  opacity: 1;
  width: 100%;
}
.trailers .video a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease-in-out;
}
.trailers .video:hover > a {
  background-color: rgba(0, 0, 0, 0.6);
}
.trailers .video .youtube-logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../images/trailers/yt_icon_rgb.png) no-repeat center center;
  background-size: 100%;
  width: 73px;
  height: 52px;
  margin-left: -36px;
  margin-top: -26px;
  z-index: 2;
}
.trailers .video h3 {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 10px;
  font-size: 1.2em;
  line-height: 1.2em;
  margin: 0;
  color: white;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.special {
  position: relative;
  width: 100%;
  min-height: 100%;
  color: white;
}
.special h3 {
  font-size: 2em;
}
.special .background {
  background-image: url(../images/special/bg.jpg);
  background-position: center center;
  overflow: hidden;
}
.special .background div {
  position: absolute;
}
.special .background .kusari-1 {
  width: 263px;
  height: 316px;
  background: url(../images/special/kusari_1.png) no-repeat center center;
  top: 200px;
  left: 0;
}
.special .background .kusari-2 {
  width: 302px;
  height: 241px;
  background: url(../images/special/kusari_2.png) no-repeat center center;
  top: 0;
  right: 0;
}
.special .background .kusari-3 {
  width: 269px;
  height: 284px;
  background: url(../images/special/kusari_3.png) no-repeat center center;
  top: 700px;
  left: 0;
}
.special .background .kusari-4 {
  width: 334px;
  height: 451px;
  background: url(../images/special/kusari_4.png) no-repeat center center;
  top: 400px;
  right: 0;
}
.special .title span {
  background-image: url(../images/special/ttl.png);
}
.special p {
  text-align: center ;
  font-size: 2em;
}
.special .preview {
  margin: 30px auto;
  position: relative;
  box-sizing: border-box;
  padding: 0 10px;
  max-width: 100%;
}
.special .preview:last-child {
  margin-bottom: 0;
}
.special .preview iframe {
  width: 100%;
  height: 100%;
}
.special ul {
  box-sizing: border-box;
  list-style: none;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  margin-bottom: 5em;
  text-align: center;
}
.special ul li {
  display: inline-block;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .special ul li {
    display: inline-block;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .special ul li {
    display: inline-block;
    width: 50%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .special ul li {
    display: inline-block;
    width: 33.33%;
  }
}
.special img {
  display: block;
  width: 100%;
}
.footer {
  bottom: 0;
  position: fixed;
  z-index: 100;
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  padding: 5px 0;
  overflow: hidden;
  background: url(../images/footer/bg.png);
  background-size: initial;
}
.footer .footer-socialnetwork {
  padding: 5px 0;
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
.footer .footer-socialnetwork li {
  display: inline-block;
  vertical-align: top;
  height: 30px;
  width: 31px;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.footer .footer-socialnetwork li:hover {
  transform: scale(1.1);
}
.footer .footer-socialnetwork a,
.footer .footer-socialnetwork span {
  display: block;
  height: 100%;
  width: 100%;
}
.footer .footer-socialnetwork .twitter {
  background-image: url(../images/footer/twitter.png);
}
.footer .footer-socialnetwork .facebook {
  background-image: url(../images/footer/facebook.png);
}
.footer .footer-socialnetwork .instagram {
  background-image: url(../images/footer/instagram.png);
}
.footer .footer-socialnetwork .youtube {
  background-image: url(../images/footer/youtube.png);
}
.footer .footer-socialnetwork .snapchat {
  background-image: url(../images/footer/snapchat.png);
}
.footer .footer-socialnetwork .sound {
  background-image: url(../images/footer/sound_off.png);
}
.footer .footer-socialnetwork .sound-on {
  background-image: url(../images/footer/sound_on.png);
}
.footer .copyright,
.footer .footer-link {
  display: inline-block;
  vertical-align: bottom;
  text-align: left;
  color: white;
  padding: 5px 0;
  font-size: 1em;
  margin: 0 10px;
}
.footer .footer-link {
  position: absolute;
  bottom: 5px;
  right: 0;
}
@media screen and (max-width: 800px) {
  .footer .footer-link-pro {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    margin-top: -76px;
    position: relative;
  }
  .footer .copyright {
    display: block;
  }
}
.talking {
  position: relative;
  width: 100%;
  color: white;
}
.talking .background {
  background-image: url(../images/story/bg.jpg);
  background-position: center center;
}
.talking .background-top {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 35vw;
  top: 0;
  left: 0;
  background-image: url(../images/story/top.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.talking .background-bottom {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 68.92vw;
  bottom: 0;
  left: 0;
  background-image: url(../images/story/bottom.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.talking .title span {
  background-image: url(../images/talking/ttl.png);
}
.talking-item {
  max-width: 640px;
  margin: 30px auto;
  position: relative;
  box-sizing: border-box;
}
.talking-item .text {
  display: inline-block;
  vertical-align: middle;
}
.talking-item .text {
  padding: 0 20px;
  box-sizing: border-box;
}
.talking-item .name h3 {
  font-size: 3em;
  line-height: 1em;
  margin: 0 0 10px 0;
  text-align: left;
  color: #ae9d3c;
}
.talking-item p {
  width: auto;
  margin: 0;
  padding: 0;
  font-size: 1.4em;
  line-height: 1.2em;
}
@media screen and (max-width: 450px) {
  .talking .talking-item {
    text-align: center;
  }
  .talking .talking-item .text {
    margin-top: 10px;
    padding: 0 10px;
    width: 100%;
    text-align: left;
  }
}
.action {
  text-align: center;
  margin-top: 30px;
}
.anime {
  position: relative;
  width: 100%;
  min-height: 100%;
  color: white;
}
.anime .logo a {
  background: url(../images/anime/logo-white.png) no-repeat center center;
}
.anime h3 {
  font-size: 2em;
}
.anime .background {
  background-color: #44352f;
  background-position: center center;
  overflow: hidden;
}
.anime .background div {
  position: absolute;
}
.anime .background .kusari-1 {
  width: 263px;
  height: 316px;
  background: url(../images/special/kusari_1.png) no-repeat center center;
  top: 200px;
  left: 0;
}
.anime .background .kusari-2 {
  width: 302px;
  height: 241px;
  background: url(../images/special/kusari_2.png) no-repeat center center;
  top: 0;
  right: 0;
}
.anime .background .kusari-3 {
  width: 269px;
  height: 284px;
  background: url(../images/special/kusari_3.png) no-repeat center center;
  top: 700px;
  left: 0;
}
.anime .background .kusari-4 {
  width: 334px;
  height: 451px;
  background: url(../images/special/kusari_4.png) no-repeat center center;
  top: 400px;
  right: 0;
}
.anime .title span {
  background-image: url(../images/anime/ttl.png);
}
.anime .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2em;
  line-height: 1em;
}
.anime .text {
  width: 100%;
}
.anime .text ul {
  font-size: 1.5em;
  line-height: 1.5;
}
.anime .anime-item {
  max-width: 820px;
  padding: 0 20px;
  margin: 30px auto;
  position: relative;
  box-sizing: border-box;
}
.anime .anime-item .image,
.anime .anime-item .text {
  display: inline-block;
  vertical-align: middle;
}
.anime .anime-item .image {
  width: 300px;
}
.anime .anime-item .text {
  padding-left: 20px;
  width: calc(100% - 300px);
  box-sizing: border-box;
}
.anime .anime-item .text ul {
  font-size: 1.5em;
  line-height: 1.5;
}
.anime .video {
  margin: 30px auto;
  position: relative;
  width: 660px;
  box-sizing: border-box;
  padding: 0 10px;
  max-width: 100%;
}
.anime .video iframe {
  width: 100%;
  min-height: 360px;
}
.anime .video img {
  display: block;
  opacity: 1;
  width: 100%;
}
.anime .video a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease-in-out;
}
.anime .video:hover > a {
  background-color: rgba(0, 0, 0, 0.6);
}
.anime .video .youtube-logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../images/trailers/yt_icon_rgb.png) no-repeat center center;
  background-size: 100%;
  width: 73px;
  height: 52px;
  margin-left: -36px;
  margin-top: -26px;
  z-index: 2;
}
.anime .video h3 {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 10px;
  font-size: 1.2em;
  line-height: 1.2em;
  margin: 0;
  color: white;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.anime .anime-infos {
  max-width: 600px;
  margin: 30px auto;
  position: relative;
  box-sizing: border-box;
}
.anime img {
  display: block;
  width: 100%;
}
.anime .action {
  padding: 10px;
}
.anime .button span {
  display: inline-block;
  vertical-align: middle;
}
.anime .button .button-logo {
  background: url(../images/anime/logo-wakanim.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 148px;
  height: 30px;
  margin-left: 10px;
}
.anime .button .button-logo-adn {
  background: url(../images/anime/adn-logo-v2.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 71.31578947px;
  height: 40px;
  margin-left: 10px;
}
.anime .anime-copyright {
  text-align: center;
  margin-top: 2em;
}
@media screen and (max-width: 700px) {
  .anime .anime-item .image,
  .anime .anime-item .text {
    display: block;
  }
  .anime .anime-item .image {
    margin: auto;
  }
  .anime .anime-item .text {
    padding-left: 0px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .anime .anime-item .image,
  .anime .anime-item .text {
    display: block;
  }
  .anime .anime-item .image {
    width: 100%;
  }
  .anime .anime-item .text {
    padding-left: 0px;
    width: 100%;
  }
  .anime .anime-item .text p {
    padding: 0;
  }
}
