@charset "UTF-8";


/*----------------------------------------
Variables
----------------------------------------*/
/* # Color */
/* # Shadow */
/* # Hover */
/* # Font Family */
/* # Font Weight */
/* # Width */
/* # Height */
/* # Padding */
/* # Easing */
/* #icomoon */
/*----------------------------------------
reset
----------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/*----------------------------------------
class
----------------------------------------*/
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  display: table;
  clear: both;
  content: "";
}

.f_cc {
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.f_box, .f_cc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f_item {
  -ms-flex: 1 0 auto;
  -webkit-box-flex: 1;
          flex: 1 0 auto;
}

.f_h_start {
      -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.f_h_center, .f_h_start {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
}

.f_h_center {
      -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.f_h_end {
      -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.f_h_end, .f_h_sb {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
}

.f_h_sb {
      -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.f_h_sa {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-around;
}

.f_wrap {
  -webkit-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.f_column {
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: column;
}

.f_start {
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

.f_end {
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}

.f_center {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.f_baseline {
  -ms-flex-align: baseline;
  -webkit-box-align: baseline;
          align-items: baseline;
}

.f_stretch {
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
}

.alignR {
  text-align: right;
}

.alignL {
  text-align: left;
}

.alignC {
  text-align: center;
}

/*----------------------------------------
scrollbar
----------------------------------------*/
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
  background: #6c6c6c;
}

/*----------------------------------------
l-loader
----------------------------------------*/
.load {
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100vh;
  background: #fff;
}

.load .load-anime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
      -ms-flex-align: center;
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #2b2b2b;
  text-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.load .load-anime .logo {
  font-size: 32px;
  font-size: 3.2rem;
}

.load .load-anime .text {
  font-weight: 400;
  /*左右のアニメーション*/
}

.load .load-anime .text .slide-in {
  display: inline-block;
  overflow: hidden;
}

.load .load-anime .text .slide-in_inner {
  display: inline-block;
  margin-top: 15px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5;
}

.load .load-anime .text .leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.load .load-anime .text .slideAnimeLeftRight {
  opacity: 0;
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.load .load-anime .text .slideAnimeRightLeft {
  opacity: 0;
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slideTextX100 {
  from {
    /*要素を左の枠外に移動*/
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    /*要素を元の位置に移動*/
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideTextX100 {
  from {
    /*要素を左の枠外に移動*/
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    /*要素を元の位置に移動*/
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes slideTextX-100 {
  from {
    /*要素を右の枠外に移動*/
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    /*要素を元の位置に移動*/
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideTextX-100 {
  from {
    /*要素を右の枠外に移動*/
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    /*要素を元の位置に移動*/
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.load-splash {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .load-splash {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #ececec;
  content: "";
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

@keyframes PageAnime {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

/*画面遷移の後現れるコンテンツ設定*/
.wrap {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear .wrap {
  opacity: 0;
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=maps/preload.css.map */
