@charset "UTF-8";
/* Scss Document */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /*font-weight: normal;*/
  vertical-align: baseline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: 'Lato',"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #000;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 14px;
  }
}
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: #222;
  text-decoration: none;
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* 
Button
-------------- */
.button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sp_none {
  display: none;
}

.container {
  width: 80%;
  margin: 0 auto;
}

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

  .sp_none {
    display: block;
  }

  .container {
    width: 1000px;
  }
}
/* ----------------------------------------------------------
 Title 
---------------------------------------------------------- */
#title_container_pc {
  display: none;
}

#title_container_sp {
  width: 100%;
}

@media screen and (min-width: 769px) {
  #title_container_sp {
    display: none;
  }

  #title_container_pc {
    display: block;
    width: 100%;
    height: 520px;
    background: url("../images/img_main_pc.jpg") no-repeat top center;
    background-size: cover;
  }
  #title_container_pc div {
    width: 940px;
    margin: 0 auto;
  }
  #title_container_pc div img {
    width: 310px;
    margin-top: 170px;
    margin-left: 20px;
  }
}
/* ----------------------------------------------------------
 Thumbs 
---------------------------------------------------------- */
#thumbs_container {
  width: 90%;
  margin: 40px auto;
}
#thumbs_container .thumb_01 {
  width: 26%;
  float: left;
}
#thumbs_container .thumb_02 {
  width: 70%;
  float: right;
  margin-top: 8%;
}
#thumbs_container .thumb_03, #thumbs_container .thumb_04 {
  width: 33%;
  float: left;
  margin-right: 2%;
  margin-top: 8%;
}
#thumbs_container .thumb_05 {
  width: 25%;
  float: right;
  margin-top: -8%;
}
#thumbs_container .thumb_06 {
  width: 50%;
  float: right;
  margin-right: 2%;
  margin-top: 8%;
}
#thumbs_container .thumb_07 {
  width: 90%;
  float: left;
  margin-top: 8%;
}
#thumbs_container .text_01 {
  width: 22%;
  float: right;
  margin-top: -64%;
}
#thumbs_container .line_5 {
  margin: 8% 0;
}
#thumbs_container .line_5 .right {
  float: right;
  width: 52%;
}
#thumbs_container .line_5 .right .thumb_08 {
  padding-left: 12%;
  margin-bottom: 4%;
}
#thumbs_container .line_5 .right .thumb_09 {
  padding-left: 12%;
  margin-bottom: 20%;
}
#thumbs_container .line_5 .right .thumb_10 {
  padding-right: 12%;
}
#thumbs_container .line_5 .left {
  float: left;
  width: 46%;
}
#thumbs_container .line_5 .left .text_02 {
  text-align: center;
  font-family: "Times New Roman", Times, "serif";
  padding: 10% 0 30%;
}
#thumbs_container .thumb_12 {
  width: 24%;
  float: right;
}
#thumbs_container .thumb_13 {
  width: 55%;
  float: right;
  margin-right: 2%;
}

@media screen and (min-width: 769px) {
  #thumbs_container {
    width: 940px;
    margin: 100px auto;
  }
  #thumbs_container img {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #thumbs_container img:hover {
    opacity: .8;
  }
  #thumbs_container .line_5 .left .text_02 {
    font-size: 2em;
    padding: 10% 0 36%;
  }
}
/*  */
.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .8s;
  -ms-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* ----------------------------------------------------------
 SNS
---------------------------------------------------------- */
#sns_container {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
}
#sns_container .sns_box p, #sns_container .sns_box div {
  display: inline-block;
  margin: 0 5px;
}
#sns_container .sns_box .Button a {
  color: #fff;
}
#sns_container .sns_box .Button a i {
  font-size: 20px;
  line-height: 38px;
}
#sns_container .sns_box .Button a.hvr-outline-out {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #444;
  border: 2px solid #444;
}
#sns_container .sns_box .Button a.hvr-outline-out:before {
  border: 2px solid #444 !important;
  border-radius: 50% !important;
}
#sns_container img.all_staff {
  width: 100%;
  max-width: 700px;
  margin: 20px 0;
}

/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer {
  padding: 0 0 40px;
  text-align: center;
  font-size: .8em;
}
footer img {
  width: 100px;
  margin-bottom: 10px;
}

/* ----------------------------------------------------------
 POP UP Setting
---------------------------------------------------------- */
.popup_container {
  margin-bottom: 80px;
}

ul.credit_box {
  padding: 5%;
  width: 100%;
  /* color */
}
ul.credit_box li {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #e8e8e8;
}
ul.credit_box li .text, ul.credit_box li .link {
  display: inline-block;
  vertical-align: middle;
}
ul.credit_box li .text {
  width: 64%;
  line-height: 1.2;
}
ul.credit_box li .text x-small {
  font-size: .6em;
}
ul.credit_box li .link {
  width: 32%;
  text-align: right;
}
ul.credit_box li .link i {
  padding-right: 5px;
}
ul.credit_box li .comingsoon {
  color: #ccc;
}
ul.credit_box li:last-child {
  border-bottom: 1px solid #fff;
}
ul.credit_box li a {
  display: block;
  width: 100%;
}
ul.credit_box .red {
  color: crimson;
}
ul.credit_box .ivory {
  color: #ffefd2;
}
ul.credit_box .light_gray {
  color: lightgray;
}
ul.credit_box .light_bule {
  color: #59cbef;
}
ul.credit_box .light_green {
  color: #aaceb0;
}
ul.credit_box .light_pink {
  color: pink;
}
ul.credit_box .deep_green {
  color: #003C1F;
}
ul.credit_box .pink_beige {
  color: peachpuff;
}
ul.credit_box .pink_blown {
  color: #C95734;
}
ul.credit_box .black {
  color: #222;
}
ul.credit_box .beige {
  color: burlywood;
}
ul.credit_box .mastard {
  color: #efc100;
}
ul.credit_box .camel {
  color: #d89000;
}
ul.credit_box .white {
  color: #f4f4f4;
}
ul.credit_box .pink {
  color: deeppink;
}
ul.credit_box .blue {
  color: #071BB0;
}
ul.credit_box .khaki {
  color: #5d933a;
}
ul.credit_box .green {
  color: green;
}
ul.credit_box .purple {
  color: #B476E5;
}
ul.credit_box .navy {
  color: #0D2480;
}
ul.credit_box .mint {
  color: #6DB8A8;
}
ul.credit_box .gray {
  color: #999;
}
ul.credit_box .blown {
  color: #7B4518;
}
ul.credit_box .yellow_blue {
  color: #1D658D;
}

.others_01 {
  padding: 5px 14% 5px 3%;
}

.others_02 {
  padding: 5px 3% 5px 14%;
}

@media screen and (min-width: 769px) {
  .popup_container {
    width: 750px;
    margin: 20px auto 60px;
  }

  a.close_popup {
    font-size: 34px;
    line-height: 58px;
    padding: 0 18px;
    font-weight: 300;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  a.close_popup:hover {
    background: #888;
  }

  ul.credit_box li a .link {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  ul.credit_box li a:hover .link {
    color: deeppink;
  }
}
/* text-based popup styling */
.white-popup {
  position: relative;
  background: #FFF;
  padding: 25px;
  /* 元のcss
  	width:auto;
  	max-width: 400px;
  	margin: 0 auto; 
  */
  width: 100%;
}

.mfp-iframe-scaler iframe {
  background: #fff;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #fff;
  width: 55px;
  height: 55px;
  font-size: 30px;
  font-weight: 200;
  background: #000;
  right: 0;
  text-align: center;
  padding-right: 0;
  opacity: 1;
  transition: all 0.2s;
}
.mfp-image-holder .mfp-close:hover, .mfp-iframe-holder .mfp-close:hover {
  opacity: .7;
}

/* 

====== Move-from-top effect ======

*/
.mfp-move-from-top {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-from-top .mfp-content {
  vertical-align: top;
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.2s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 1;
  /* popup表示した時の、背景の透過度 */
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(-50px);
  opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== "Hinge" close effect ======

*/
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 1s;
  animation-name: hinge;
}

.mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
  opacity: 0;
  transition: opacity .5s ease-out;
}
.mfp-with-fade.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-with-fade.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-fade.mfp-removing.mfp-bg {
  opacity: 0;
}

/*# sourceMappingURL=preorder_vol2_style.css.map */
