﻿@charset "UTF-8";


/*//////////////////////////////////////////////////

Title : LP CSS

//////////////////////////////////////////////////*/


main {
  max-width: 100%;
}

.main_page {
  background: url(../img/bg_pc.jpg) no-repeat;
  background-size: 100%;
  content: "";
  font-size: calc(10 * (100vw / 1200));
}

.main_page img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.main_page picture {
  display: block;
}
/* ===================
  　　　animation
=================== */

.js-ef {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.js-ef.effect {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}

.item01.js-ef.effect {
  animation-delay: 0;
}

.item02.js-ef.effect {
  animation-delay: 0.5s;
}

.item03.js-ef.effect {
  animation-delay: 1s;
}

.img_area.js-ef.effect {
  animation-delay: 2s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}



/* ===================
  　　　intro
=================== */

.intro_section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.intro_area_right {
  position: relative;
  width: 58.75%;
  line-height: 0;
}

.intro_area_left {
  width: 41.25%;
  padding-top: 5em;
}

.intro_item {
  position: absolute
}

.intro_item.item01 {
  width: 27.1em;
  top: 5em;
  right: 2.6em;
}

.intro_item.item02 {
  width: 11em;
  top: 28.1em;
  right: 16.8em;
}

.intro_item.item03 {
  width: 27.9em;
  bottom: 2.6em;
  left: 2em;
}

.movie_inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 60em;
}

.movie_inner iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 119%;
  height: 119%; */
  width: 100%;
  height: 100%;
}

.movie_sound {
  position: absolute;
  bottom: 1em;
  right: 9em;
  width: 5.5em;
  z-index: 10;
  cursor: pointer;
}
.movie_sound > span {
  display: none;
  width: 5.5em;
}
.movie_sound > span.is-active {
  display: block;
}
.intro_title {
  width: 10.6em;
  margin: 1em auto 0;
}

/*=======================================
                    PC
========================================*/

@media screen and (min-width: 769px) {

}

/*=======================================
                    Tablet
========================================*/
@media screen and (min-width: 769px) and (max-width: 1200px) {
  html {
    font-size: calc(10* (100vw / 1200)) ;
  }
}
/*=======================================
                    SP
========================================*/


/* only SP */

@media only screen and (max-width: 768px) {

  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .main_page {
    background: url(../img/bg_sp.png) no-repeat;
    background-size: cover;
  }

  /* ===================
    　　　intro
  =================== */

  .intro_section {
    flex-direction: column-reverse;
  }

  .intro_area_right {
    width: 100%;
  }

  .intro_area_left {
    width: 100%;
    padding-top: 0;
  }

  .intro_item.item01 {
    width: calc(405* (100vw / 750));
    top: calc(149 * (100vw / 750));
    right: calc(-100 * (100vw / 750));
  }
  
  .intro_item.item02 {
    width: calc(149 * (100vw / 750));
    bottom: calc(338 * (100vw / 750));
    right: calc(110 * (100vw / 750));
    top: auto;
  }
  
  .intro_item.item03 {
    width: calc(366 * (100vw / 750));
    bottom: calc(44 * (100vw / 750));
    left: calc(-93 * (100vw / 750));
  }

  .movie_inner {
    height: calc(1125* (100vw / 750));
  }

  .movie_sound {
    bottom: calc(3 * (100vw / 750));
    right: calc(77 * (100vw / 750));
    width: calc(108* (100vw / 750));
    height: calc(40* (100vw / 750));
  }
  .movie_sound > span {
    width: calc(108* (100vw / 750));
  }

  #share {
    bottom: 10% !important;
    z-index: 100 !important;
  }

}
