@charset "UTF-8";
@import "fonts.css";
@import "panel.css";
@import "navigation.css";
@import "calc.css";
@import "logo.css";

body{
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "AvenirNext-Medium", Arial, Helvetica, Geneva, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #FFF;
  overflow-x: hidden;
}
a{
  color: #FFF;
}
a:hover{
  color: #FFF;
  text-decoration: underline;
}
.center-group{
  position: relative;
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::-webkit-input-placeholder {
   color: rgba(255,255,255,0.7);
}
:-moz-placeholder { /* Firefox 18- */
   color: rgba(255,255,255,0.7);
}
::-moz-placeholder {  /* Firefox 19+ */
   color: rgba(255,255,255,0.7);
}
:-ms-input-placeholder {
   color: rgba(255,255,255,0.7);
}

#canvas{
  position: relative;
}

.inline-divider{
  display: inline-block;
  margin: 0 5px;
  width: 8px;
  height: 8px;
  background: url('../images/inline-divider@2x.png') no-repeat left top;
  background-size: contain;
  position: relative;
  top: -2px;
}
.arrow-down{
  width: 24px;
  height: 22px;
  background: url('../images/arrow-down@2x.png') no-repeat left top;
  background-size: contain;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  cursor: pointer;
  bottom: 20px;
  z-index: 1;
}
.arrow-up{
  width: 24px;
  height: 22px;
  background: url('../images/arrow-up@2x.png') no-repeat left top;
  background-size: contain;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  cursor: pointer;
  bottom: 20px;
  z-index: 1;
}
.logo{
  position: relative;
  width: 243px;
  height: 62px;
  background: url('../images/logo-black.png') no-repeat left top;
  margin: auto;
}
.logo.pages{
  position: absolute;
  top: 15px;
  right: 10px;
  width: 130px;
  height: 33px;
  background: url('../images/logo-pages@2x.png') no-repeat left top;
  background-size: contain;
  margin: 0;
}
.sns-fb{
  display: inline-block;
  width: 26px;
  height: 25px;
  background: url('../images/sns-fb@2x.png') no-repeat left top;
  background-size: contain;
  margin: 0 10px;
  cursor: pointer;
}
.sns-ig{
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url('../images/sns-ig@2x.png') no-repeat left top;
  background-size: contain;
  margin: 0 10px;
  cursor: pointer;
}
.webpanel.main h1{
  margin-bottom: 20px;
}
.webpanel.main p{
  width: 80%;
  margin: auto;
  letter-spacing: 0.02em;
}
.webpanel.home{
  padding: 0;
  overflow: hidden;
}
.webpanel.home .home-video{
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF;
}
.webpanel.home .home-overlay{
  /*background-color: hsla(360, 100%, 50%, .40);*/
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
  position: fixed;
  color: #FFF;
  padding: 0 30px;
  /*animation: overlayColor 10s ease-in-out 0s infinite;*/
}


.webpanel.panel-left.jump, .webpanel.panel-right.jump{
  opacity: 0;
  margin-top: -30px;
}


.index-wrapper{
  width: 100%;
}
.indexItem{
  width: 48%;
  margin: 0 1% 2%;
  opacity: 1;
  transition: opacity 0.5s linear 0s;
}
.indexItem.init{
  opacity: 0;
}
.indexItem img{
  display: block;
  max-width: 100%;
}
.indexItemGutterSizer{
  width: 1%;
}
.index-loading{
  width: 58px;
  height: 58px;
  background-color: #000;
  position: absolute;
  background: url('../images/loading.png') no-repeat center center;
  -webkit-transform-origin: center center;
  -webkit-animation: loading 1.8s cubic-bezier(0.445, 0.050, 0.550, 0.950) 0s infinite;
}

@-webkit-keyframes loading {
  0%{
    transform: rotate(0deg);
    opacity: 0.05;
  }
  50%{
    opacity: 1;
  }
  100%{
    transform: rotate(360deg);
    opacity: 0.05;
  }
}


.singleImg{
  position: relative;
  max-width: 100%;
  display: block;
  margin-bottom: 10px;
  opacity: 1;
  transition: all 0.5s linear 0s;
  top: 0px;
}
.singleImg.init{
  opacity: 0;
  top: 20px;
}

.sinker{
  position: absolute;
  bottom: 40px;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body{
    height: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: "AvenirNext-Medium", Arial, Helvetica, Geneva, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    color: #FFF;
    overflow-x: hidden;
  }
  a{
    color: #FFF;
  }
  a:hover{
    color: #FFF;
    text-decoration: underline;
  }
  .center-group{
    position: relative;
  }
  .noselect {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }

  ::-webkit-input-placeholder {
     color: rgba(255,255,255,0.7);
  }
  :-moz-placeholder { /* Firefox 18- */
     color: rgba(255,255,255,0.7);
  }
  ::-moz-placeholder {  /* Firefox 19+ */
     color: rgba(255,255,255,0.7);
  }
  :-ms-input-placeholder {
     color: rgba(255,255,255,0.7);
  }

  .inline-divider{
    display: inline-block;
    margin: 0 5px;
    width: 8px;
    height: 8px;
    background: url('../images/inline-divider.png') no-repeat left top;
    position: relative;
    top: -2px;
  }
  .arrow-down{
    width: 24px;
    height: 22px;
    background: url('../images/arrow-down.png') no-repeat left top;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    cursor: pointer;
    bottom: 20px;
  }
  .arrow-up{
    width: 24px;
    height: 22px;
    background: url('../images/arrow-up.png') no-repeat left top;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    cursor: pointer;
    bottom: 20px;
  }
  .logo{
    position: relative;
    width: 243px;
    height: 62px;
    background: url('../images/logo-black.png') no-repeat left top;
    margin: auto;
  }
  .logo.pages{
    position: absolute;
    top: 30px;
    right: auto;
    left: 40px;
    width: 169px;
    height: 43px;
    background: url('../images/logo-pages.png') no-repeat left top;
    margin: 0;
  }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo.pages{
      background-size: 100%;
      background-image: url('../images/logo-pages@2x.png');
    }
  }
  .sns-fb{
    display: inline-block;
    width: 26px;
    height: 25px;
    background: url('../images/sns-fb.png') no-repeat left top;
    margin: 0 10px;
    cursor: pointer;
  }
  .sns-ig{
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../images/sns-ig.png') no-repeat left top;
    margin: 0 10px;
    cursor: pointer;
  }
  .webpanel.main h1{
    margin-bottom: 20px;
  }
  .webpanel.main p{
    width: 80%;
    margin: auto;
    letter-spacing: 0.02em;
  }
  .webpanel.home{
    padding: 0;
  }
  .webpanel.home .home-video{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
  .webpanel.home .home-overlay{
    /*background-color: hsla(360, 100%, 50%, .40);*/
    background-color: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    padding: 0 40px;
    font-size: 42px;
    font-family: 'AvenirNext-Bold';
  }

  .index-wrapper{
    width: 100%;
  }
  .indexItem{
    /*width: 31.33333%;
    margin: 0 1% 2%;*/
    width: 48%;
    margin: 0 1% 2%;
    opacity: 1;
    transition: opacity 0.5s linear 0s;
  }
  .indexItem.init{
    opacity: 0;
  }
  .indexItem img{
    display: block;
    max-width: 100%;
  }
  .indexItemGutterSizer{
    width: 1%;
  }

  .singleImg{
    position: relative;
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
    opacity: 1;
    transition: all 0.5s linear 0s;
    top: 0px;
  }
  .singleImg.init{
    opacity: 0;
    top: 20px;
  }

  .sinker{
    position: absolute;
    bottom: 40px;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .webpanel.home .home-overlay{
    font-size: 50px;
  }
}