@charset "UTF-8";
/*リセット
--------------------------------------------*/
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;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

/*フォント
---------------------------------------------*/
@font-face {
  font-family: "amiri-regular";
  font-style: normal;
  src: url("../fonts/amiri-regular.eot");
  src: url("../fonts/amiri-regular.woff") format("woff"), url("../fonts/amiri-regular.ttf") format("truetype");
}

@font-face {
  font-family: "amiri-bold";
  font-style: normal;
  src: url("../fonts/amiri-bold.eot");
  src: url("../fonts/amiri-bold.woff") format("woff"), url("../fonts/amiri-bold.ttf") format("truetype");
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
/*html {
  width: 100%;
  height: 100%;
}*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  font-size: 14px;
  color: #444444;
  font-weight: normal;
  scroll-snap-type: y mandatory;
  opacity: 0;
}

body.loaded {
  opacity: 1;
  transition: opacity 1s;
}

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

a {
  color: #4d0101;
  text-decoration: none;
}

#wrapper {
  width: 100%;
}

#header {
  width: 100%;
  /*height: 100vh;
  height: calc(var(--vh, 1vh) * 100);*/
  margin-bottom: 14%;
}

@media screen and (max-width: 999px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 1000px) {
  #header {
    height: 100vh;
    margin-bottom: 13.6%;
  }
}

#header .wrap {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1000px) {
  #header .wrap {
    display: flex;
  }
}

#header .wrap .slick {
  width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 1000px) {
  #header .wrap .slick {
    width: 40%;
    position: fixed;
    top: 0;
    left: 0;
  }
}

#header .wrap .slick::after {
  content: url(../img/uneven.svg);
  display: block;
  width: 26%;
  position: absolute;
  bottom: 11.5%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 1s;
}

#header .wrap .slick.logo_visible::after {
  opacity: 1;
}

#header .wrap .logo {
  width: 29.6%;
  position: absolute;
  bottom: 11.5%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1000px) {
  #header .wrap .logo {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  #header .wrap .textarea {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  #header .wrap .textarea {
    width: 60%;
    background-color: #dfd7c3;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#header .wrap .textarea .inner {
  width: 65.7%;
  margin: 0 auto;
}

#header .wrap .textarea .inner div {
  width: 43.2%;
  margin: 0 auto 17.7%;
  opacity: 0;
}

#header .wrap .textarea .inner div.loaded {
  opacity: 1;
  transition: opacity 1.6s 1s;
}

#header .wrap .textarea .inner p {
  font-size: 16px;
  text-align: center;
  letter-spacing: 1px;
  text-indent: 1px;
  line-height: 2.2;
}

#header .wrap .textarea .inner p span {
  display: block;
  opacity: 0;
}

#header .wrap .textarea .inner p span.loaded {
  opacity: 1;
  transition: opacity 1.6s;
}

#header .wrap .textarea .inner p span.loaded:nth-of-type(1) {
  transition-delay: 1.8s;
}

#header .wrap .textarea .inner p span.loaded:nth-of-type(2) {
  transition-delay: 2.6s;
}

#header .wrap .textarea .inner p span.loaded:nth-of-type(3) {
  transition-delay: 3.4s;
}

.slideobject {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100) !important;
  overflow: hidden;
  /*&::before {
    content: "";
    display: block;
    padding-top: calc(1125 / 750 * 100%);
  }*/
}

.slideobject .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.slideobject .image.img1 {
  background-image: url(../img/main1.jpg);
}

.slideobject .image.img2 {
  background-image: url(../img/main2.jpg);
}

.slideobject .image.img3 {
  background-image: url(../img/main3.jpg);
}

.slideobject .image.img4 {
  background-image: url(../img/main4.jpg);
}

/* 効果をかけるためのスタイル設定 */
.slick .slick-slide {
  /* slickによってelement.styleで付けられるopacityを無効化 */
  opacity: 1 !important;
}

.slick .slideobject {
  /* フェード要素の初期設定 */
  opacity: 0;
  transition: 0s;
}

.slick .slick-active .slideobject {
  /* slick-active(効果開始)の際のフェード設定 */
  /* [重要]slick側の設定と同じdurationを取る */
  opacity: 1;
  transition: ease 4.0s;
}

.slick .slick-continue .slideobject {
  /* エフェクトの継続用に付与したslick-continueのフェード設定 */
  /* [重要]slick側の設定と同じdurationを取る */
  opacity: 0;
  transition: ease 4.0s;
}

.slick .image {
  /* 画像 ズーム要素の初期設定 */
  transform: scale(1.07);
  transition: 0s;
}

.slick .slick-active .image {
  /* 画像　slick-active(効果開始) */
  /* 必ずフェードに対して大きめのtransition-durationを取る */
  transform: scale(1);
  transition: ease 6s;
}

.slick .slick-continue .image {
  transform: scale(1);
  transition: ease 6s;
}

/*#loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: linear-gradient(120deg, rgba(142,118,83,0.5), rgba(123,61,51,0.8));
    z-index: 2;
    .logo_wrap {
      width: 150px;
      height: 150px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      @include mq(pc) {
        width: 300px;
      height: 300px;
      }
      .logo {
        position: relative;
        width: 100%;
        height: 100%;
        &::after {
          content: "";
          display: block;
          background-image: url(../img/logo_white.svg);
          background-repeat: no-repeat;
          background-position: center;
          width: 100%;
          height: 100%;
          z-index: 100;
          animation: blink 2s ease 0s infinite normal;
          -webkit-animation: blink 2s ease 0s infinite normal;
        }
      }
    }
}*/
#content {
  width: 100%;
  margin: 0 auto;
  background-color: #f9f7f3;
}

@media screen and (max-width: 999px) {
  #content {
    margin-top: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 1000px) {
  #content {
    width: 60%;
    margin: 0 0 0 auto;
    margin-top: 100vh;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.section {
  margin-bottom: 14% !important;
}

.section h3 {
  font-family: "amiri-regular";
  color: #999999;
  font-size: 20px;
  letter-spacing: 2px;
  text-indent: 2px;
  line-height: 1.0;
  margin-bottom: 6.6%;
}

@media screen and (min-width: 1000px) {
  .section h3 {
    font-size: 30px;
    margin-bottom: 15.3%;
  }
}

#brandstory {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 999px) {
  #brandstory {
    padding-top: 16%;
  }
}

@media screen and (min-width: 1000px) {
  #brandstory {
    width: 44.4%;
    max-width: 455px;
    padding-top: 16%;
  }
}

#brandstory .text {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  #brandstory .text {
    font-size: 16px;
  }
}

#brandstory .text p {
  letter-spacing: 0.07em;
  line-height: 2.0;
}

@media screen and (min-width: 1000px) {
  #brandstory .text p {
    line-height: 2.2;
  }
}

#brandstory .text p:not(:last-of-type) {
  margin-bottom: 6.6%;
}

@media screen and (min-width: 1000px) {
  #brandstory .text p:not(:last-of-type) {
    margin-bottom: 12.7%;
  }
}

#profile {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  #profile {
    width: 61.5%;
    max-width: 630px;
  }
}

#profile h3 {
  text-align: center;
}

@media screen and (min-width: 1000px) {
  #profile h3 {
    margin-bottom: 11.1%;
  }
}

#profile dl dt {
  font-family: Lato;
  font-size: 13px;
  margin-bottom: 3%;
  letter-spacing: 0.15em;
}

@media screen and (min-width: 1000px) {
  #profile dl dt {
    font-size: 16px;
  }
}

#profile dl dd {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-align: justify;
}

@media screen and (min-width: 1000px) {
  #profile dl dd {
    font-size: 13px;
    line-height: 2.2;
  }
}

#lineup {
  width: 92%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  #lineup {
    width: 94%;
    max-width: 964px;
    /*display: flex;
    flex-wrap: wrap;
    justify-content: space-between;*/
  }
}

#lineup h3 {
  text-align: center;
  margin-bottom: 7.2%;
}

@media screen and (min-width: 1000px) {
  #lineup h3 {
    width: 100%;
    margin-bottom: 7.3%;
  }
}

#lineup .wrap {
  margin-bottom: 13.3%;
}

@media screen and (min-width: 1000px) {
  #lineup .wrap {
    display: flex;
    flex-flow: column;
    /*width: calc(300 / 964 * 100%);*/
    width: 60%;
    margin: 0 auto 13.3%;
  }
}

#lineup .wrap .item {
  margin-bottom: 10%;
}

#lineup .wrap dl dt {
  font-family: Lato;
  font-size: 18px;
  line-height: 1.0;
  letter-spacing: 1.6px;
  margin-bottom: 5%;
}

@media screen and (min-width: 1000px) {
  #lineup .wrap dl dt {
    font-size: 22px;
  }
}

#lineup .wrap dl dd {
  font-size: 12px;
  margin-bottom: 5%;
}

@media screen and (min-width: 1000px) {
  #lineup .wrap dl dd {
    font-size: 14px;
  }
}

#lineup .wrap a.button {
  position: relative;
  display: block;
  font-family: Lato;
  width: 100%;
  height: 40px;
  text-align: center;
  color: #fff;
  line-height: 40px;
  letter-spacing: 1px;
  text-indent: 1px;
}

@media screen and (min-width: 1000px) {
  #lineup .wrap a.button {
    margin-top: auto;
    font-size: 16px;
    letter-spacing: 2.5px;
    text-indent: 2.5px;
  }
}

#lineup .wrap a.button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #dfd7c3, #bfa283 100%);
  transition-duration: 1.4s;
}

#lineup .wrap a.button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #dfd7c3, #bfa283 50%);
}

#lineup .wrap a.button:hover::after {
  opacity: 0;
  transition-duration: .4s;
}

@media screen and (min-width: 1000px) {
  #lineup .wrap a.button:hover span {
    letter-spacing: 2px;
    text-indent: 2px;
    transition-duration: .2s;
  }
}

#lineup .wrap a.button span {
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .8s;
}

#footer {
  background-color: #dfd7c3;
}

@media screen and (min-width: 1000px) {
  #footer {
    width: 100%;
    margin-left: auto;
  }
}

#footer .flex {
  padding: 16% 0;
}

@media screen and (max-width: 999px) {
  #footer .flex {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 16%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1000px) {
  #footer .flex {
    display: flex;
    justify-content: space-between;
    width: 48.8%;
    max-width: 504px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 999px) {
  #footer .flex #uneven {
    margin-bottom: 66.6%;
    width: 100%;
  }
}

@media screen and (min-width: 1000px) {
  #footer .flex #uneven {
    width: 18.45%;
  }
}

#footer .flex #uneven span {
  display: block;
  width: 83.3%;
  margin: 0 auto 25%;
}

@media screen and (min-width: 1000px) {
  #footer .flex #uneven span {
    width: 100%;
    margin-bottom: 32.2%;
  }
}

#footer .flex #uneven a {
  display: block;
  width: 21.6%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  #footer .flex #uneven a {
    width: 25.8%;
  }
}

#footer .flex #mystic {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  #footer .flex #mystic {
    width: 20.23%;
  }
}

#footer .flex #mystic a {
  display: block;
  width: 66.6%;
  margin: 0 auto 25%;
}

@media screen and (min-width: 1000px) {
  #footer .flex #mystic a {
    width: 72.5%;
    padding-top: 14.7%;
    margin-bottom: 39.2%;
  }
}

#footer .flex #mystic div {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

@media screen and (max-width: 999px) {
  #footer .flex #mystic div {
    justify-content: space-between;
  }
}

#footer .flex #mystic div a {
  display: block;
}

@media screen and (max-width: 999px) {
  #footer .flex #mystic div a:nth-of-type(1) {
    width: 21.6%;
    margin: 0 4% 0 0;
  }
}

@media screen and (min-width: 1000px) {
  #footer .flex #mystic div a:nth-of-type(1) {
    width: 23.5%;
    padding: 0;
    margin: 0 auto 0 0;
  }
}

@media screen and (max-width: 999px) {
  #footer .flex #mystic div a:nth-of-type(2) {
    width: 21.6%;
    margin: 0 0 0 4%;
  }
}

@media screen and (min-width: 1000px) {
  #footer .flex #mystic div a:nth-of-type(2) {
    width: 23.5%;
    padding: 0;
    margin: 0 0 0 auto;
  }
}

#footer p {
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  padding-bottom: 1.8%;
}

.cover_anim:before {
  animation: cover_T 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #f8ced2;
  width: 120%;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.cover_anim01:before {
  animation: cover_L 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.bg_color::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 100;
  animation: shrink 1.2s ease-in-out 0s 1 forwards;
}

.opacity {
  animation: opacity 1.6s ease-in-out 1 both;
}

/*.rotate {
  animation: rotate 1.6s ease-in-out .6s 1 forwards;
}*/
.opacity01 {
  opacity: 1 !important;
}

.logo_small {
  opacity: 0;
  transform: translateY(50px);
}

.logo_small.translate {
  opacity: 1 !important;
  transform: translateY(0);
  transition: all 2s;
}

h1.translate01 {
  opacity: 1 !important;
  transform: translate(-50%, -50%) !important;
  transition: all 1s 1s;
}

h3.translate02 {
  opacity: 1 !important;
  transform: translate(-90%, -95%) !important;
  transition: all 1s 1.6s;
}

.rotate {
  opacity: 0;
  transform: translate3d(0%, -35%, 0) rotate3d(1, 1, 0, -30deg);
  transition: transform 1.4s;
}

.rotate.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate3d(1, 1, 0, 0deg);
}

.filter {
  filter: blur(10px) brightness(2) saturate(1);
  -webkit-filter: blur(10px) brightness(2) saturate(1);
  -moz-filter: blur(10px) brightness(2) saturate(1);
  transition: filter 0.6s cubic-bezier(0.1, 0, 0.2, 1);
}

.filter.off {
  filter: blur(0) brightness(1) saturate(1);
  -webkit-filter: blur(0) brightness(1) saturate(1);
  -moz-filter: blur(0) brightness(1) saturate(1);
}

.scale {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: all 2s ease-in-out;
}

.sp_only {
  margin: 10% auto !important;
}

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

@media screen and (max-width: 999px) {
  .pc_only {
    display: none;
  }
}

div[class*="section"] {
  margin-bottom: 120px;
}

@media screen and (min-width: 1000px) {
  div[class*="section"] {
    margin-bottom: 160px;
  }
}

@media screen and (max-width: 999px) {
  div[class*="section"]:first-child {
    margin-bottom: 100px;
  }
}

/*div[class*="section"]:nth-last-child(2) {
  @include mq(sp) {
    margin-bottom: 0;
  }
}*/
/*テキストアニメーション
_______________________________________*/
/* ANIMATION
--------------------------------------*/
.fuwatAnime {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .6s;
  -ms-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-name: fuwatAnime;
  -ms-animation-name: fuwatAnime;
  animation-name: fuwatAnime;
  visibility: visible !important;
}

@-webkit-keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fuwatAnimeFromTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  -ms-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fuwatAnimeFromTop;
  -ms-animation-name: fuwatAnimeFromTop;
  animation-name: fuwatAnimeFromTop;
  visibility: visible !important;
}

@-webkit-keyframes fuwatAnimeFromTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fuwatAnimeFromTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.blink {
  animation: blink 2s ease 0s infinite normal;
  -webkit-animation: blink 2s ease 0s infinite normal;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@keyframes shrink {
  0% {
    transform: traslateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    transform: scale(1.4) rotate(12deg);
  }
  100% {
    opacity: 1.0;
    transform: scale(1) rotate(0);
  }
}

@keyframes fadeIn01 {
  0% {
    opacity: 0.4;
    transform: matrix(1.5, 0.2, 0.2, 1.5, 0, -10);
  }
  30% {
    opacity: 0.4;
    transform: matrix(1.3, 0.1, 0.1, 1.3, 3, -7);
  }
  100% {
    opacity: 1.0;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0.1;
    transform: scale(1.4) translateY(-30px);
  }
  100% {
    opacity: 1.0;
    transform: scale(1) translateY(0px);
  }
}

@keyframes zoomIn01 {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

/*.position {
  opacity: 0;
  -webkit-animation: position 2s ease-in-out 0s 1 forwards;
      animation: position 2s ease-in-out 0s 1 forwards;
}*/
@keyframes position {
  0% {
    opacity: 0.4;
    transform: translateX(0);
  }
  100% {
    opacity: 1.0;
    transform: translateX(8px);
  }
}

@keyframes position_01 {
  0% {
    opacity: 0;
    transform: translate(-50%, 100px);
  }
  100% {
    opacity: 1.0;
    transform: translate(-50%, 0px);
  }
}

@keyframes bg_size {
  0% {
    border: none;
  }
  100% {
    border: 1px solid;
  }
}

@keyframes cover_R {
  100% {
    transform: translateX(100%);
  }
}

@keyframes cover_L {
  100% {
    transform: translateX(-100%);
  }
}

@keyframes cover_T {
  100% {
    transform: translateY(-120%);
  }
}

@keyframes arrow_anime {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 50px) rotate(180deg);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes blur {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}

/*----- フェードイン -----*/
.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 2s;
  transition-delay: .4s;
}

.inviewfadeInUp01 {
  opacity: 0;
  transform: translate(0, 10px);
  -webkit-transform: translate(0, 10px);
  transition: 1s;
  transition-delay: 1s;
}

.inviewfadeInUp2 {
  opacity: 0;
  transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
  transition: 1s;
  transition-delay: .4s;
}

.inviewfadeInUp3 {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 1.4s;
  transition-delay: .8s;
}

.inviewfadeIn {
  opacity: 0;
  transition: .8s;
}

.inviewfromTop {
  opacity: 0;
  transform: translate(0, -80px);
  -webkit-transform: translate(0, -80px);
  transition: 1s;
}

.inviewRight {
  opacity: 0;
  transform: translate(30px, -30px);
  -webkit-transform: translate(30px, -30px);
  transition: .8s;
  transition-delay: .8s;
}

.inviewLeft {
  opacity: 0;
  transform: translate(-30px, -30px);
  -webkit-transform: translate(-30px, -30px);
  transition: .8s;
  transition-delay: .8s;
}

/*.zoomIn {
      animation: zoomIn 1.2s 1s cubic-bezier(.3,1.59,.79,-0.64) 1 forwards;
    }*/
.fadeInUp {
  opacity: 1.0 !important;
  transform: translate(0, 0) !important;
  -webkit-transform: translate(0, 0) !important;
}

.fadeInUp01 {
  opacity: 1.0 !important;
}

/* loading
--------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
  z-index: 99999;
}

#loader-bg #loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1000px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}

@media screen and (max-width: 999px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}

@media screen and (min-width: 1000px) {
  #loader-bg #loading div {
    width: 20%;
    margin: auto;
  }
}

@media screen and (max-width: 999px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}

/*jQueryのCSS
--------------------------------------*/
