@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: "crimson_text";
  font-style: normal;
  src: url("../fonts/crimsontext-roman.eot");
  src: url("../fonts/crimsontext-roman.woff") format("woff"), url("../fonts/crimsontext-roman.ttf") format("truetype");
}

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

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
body {
  font-family: 'futura-pt', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.8;
  font-size: 14px;
  color: #000;
  font-weight: normal;
  opacity: 0;
}

body.on {
  opacity: 1;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

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

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

#wrapper {
  width: 100%;
  overflow: hidden;
}

#header {
  width: 100%;
  position: relative;
  overflow: hidden;
  /*clip-path: inset(10% 10% 10% 10%);
  &.on {
    clip-path: inset(0% 0% 0% 0%);
    background-size: 100%;
    transition: clip-path 1.4s ease,
                background-size 1.2s .2s ease;
  }*/
}

#header {
  width: 100%;
  background-image: url(../images/main.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  #header {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

#header::before {
  content: "";
  display: block;
  padding-top: 100%;
}

@media screen and (min-width: 768px) {
  #header {
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/main_pc.jpg);
    background-color: #f3f3f2;
    background-size: contain;
    background-position: top right;
  }
  #header::before {
    content: "";
    display: block;
    padding-top: calc(500 / 1060 * 100%);
  }
}

#header .logo {
  -webkit-transition: 1s;
  transition: 1s;
}

#header .logo.opacity {
  opacity: 0;
}

#header .logo {
  width: 50%;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  #header .logo {
    width: 20%;
    position: absolute;
    top: 50%;
    left: 16%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

#header .logo a {
  -webkit-transition: .4s;
  transition: .4s;
}

#header .logo a:hover {
  opacity: 0.6;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  /*opacity: 0;
  &.on {
    opacity: 1;
  }*/
}

.background div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.background div::after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  background: inherit;
  -webkit-filter: blur(4px);
          filter: blur(4px);
  z-index: 0;
}

.background div.current {
  opacity: 1;
}

.background div:nth-of-type(1) {
  background-color: #e5e7e8;
}

.background div:nth-of-type(2) {
  background-color: #8778a1;
}

.background div:nth-of-type(3) {
  background-color: #dcb12e;
}

.background div:nth-of-type(4) {
  background-image: url(../images/bg_4.jpg);
}

#content {
  width: 100%;
  opacity: 0;
  -webkit-transition: .8s;
  transition: .8s;
}

@media screen and (min-width: 768px) {
  #content {
    max-width: 600px;
    margin: 0 auto;
  }
}

#content.on {
  opacity: 1;
}

.scene_group {
  padding: 100px 0;
}

@media screen and (min-width: 768px) {
  .scene_group {
    padding: 160px 0;
  }
}

.section {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 60px !important;
}

@media screen and (min-width: 768px) {
  .section {
    margin-bottom: 100px !important;
  }
}

.section .m_r {
  margin-left: auto;
}

.section .m_c {
  margin: 0 auto;
}

.section .m_l_0 {
  margin-left: 0;
}

.section .m_r_0 {
  margin-right: 0;
}

.section .w80 {
  width: 80%;
}

.section .mt_20 {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .section .mt_20 {
    margin-top: 40px;
  }
}

.curtain {
  position: relative;
}

.curtain::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.curtain.colA::after {
  background-color: #9e9b8a;
}

.curtain.colB::after {
  background-color: #727166;
}

.curtain.colC::after {
  background-color: #bdb3aa;
}

.curtain.off::after {
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1) 0.4s;
  transition: -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1) 0.4s;
  transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1) 0.4s;
  transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1) 0.4s, -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1) 0.4s;
}

.price_box {
  width: 100%;
  margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
  .price_box {
    width: 70%;
    margin-top: 30px;
  }
}

.price_box.w80 {
  width: 80%;
}

@media screen and (min-width: 768px) {
  .price_box.w80 {
    padding: 0 8%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.price_box.column ul li:not(:first-child) {
  margin-top: 15px;
}

.price_box.column ul li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media screen and (max-width: 767px) {
  .price_box.column ul li a div {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  .price_box.column ul li a div {
    margin-bottom: 16px;
  }
}

.price_box ul.group:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .price_box ul.group:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.price_box ul li:not(:first-child) {
  margin-top: 6px;
}

@media screen and (min-width: 768px) {
  .price_box ul li:not(:first-child) {
    margin-top: 8px;
  }
}

.price_box ul li.position {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.0;
  text-decoration: underline;
}

.price_box ul li a,
.price_box ul li .none {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.0;
  -webkit-transition: .4s;
  transition: .4s;
}

@media screen and (min-width: 768px) {
  .price_box ul li {
    font-size: 14px;
  }
}

.price_box ul li a:not([class="disabled"]):hover {
  cursor: pointer;
}

.price_box ul li a.disabled {
  background-color: transparent;
  color: #000;
  border: none;
  padding: 1px 0;
  font-weight: normal;
  opacity: 0.5;
}

.price_box ul li span.price {
  margin-left: 5px;
}

.price_box ul li span.buy {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 14px;
  border: 1px solid #000;
  position: relative;
}

.price_box ul li span.buy::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  z-index: -1;
}

.price_box ul li span.buy:hover {
  color: #fff;
}

.price_box ul li span.buy:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

#footer {
  position: relative;
  width: 100%;
}

#footer .toTop {
  width: 10%;
  max-width: 40px;
  margin: 0 auto 50px;
}

@media screen and (min-width: 768px) {
  #footer .toTop {
    max-width: 50px;
    margin: 0 auto 120px;
  }
}

#footer .toTop a {
  -webkit-transition: .4s;
  transition: .4s;
}

#footer .toTop a:hover {
  opacity: 0.6;
}

#footer .logo {
  width: 36%;
  margin: 0 auto 50px;
}

@media screen and (min-width: 768px) {
  #footer .logo {
    width: 14%;
    margin: 0 auto 120px;
  }
}

#footer .logo a {
  -webkit-transition: .4s;
  transition: .4s;
}

#footer .logo a:hover {
  opacity: 0.6;
}

#footer .copyright {
  width: 100%;
  margin: 20px auto 0;
  padding: 16px 0;
  color: #fff;
  letter-spacing: 1px;
  text-indent: 1px;
  background-color: #333;
}

@media screen and (min-width: 768px) {
  #footer .copyright {
    margin: 40px auto 0;
  }
}

#footer .copyright span {
  display: block;
  font-size: 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #footer .copyright span {
    font-size: 12px;
  }
}

.cover_anim:before {
  -webkit-animation: cover_R 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: cover_R 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;
}

.cover_anim01:before {
  -webkit-animation: cover_L 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          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;
}

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

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

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

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

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

.rotate.in {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) rotate3d(1, 1, 0, 0deg);
          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);
  -webkit-transition: -webkit-filter 0.6s cubic-bezier(0.1, 0, 0.2, 1);
  transition: -webkit-filter 0.6s cubic-bezier(0.1, 0, 0.2, 1);
  transition: filter 0.6s cubic-bezier(0.1, 0, 0.2, 1);
  transition: filter 0.6s cubic-bezier(0.1, 0, 0.2, 1), -webkit-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;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

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

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

@media screen and (max-width: 767px) {
  div[class*="group"] {
    margin-bottom: 140px;
  }
  div[class*="group"]:first-child {
    padding-top: 0px !important;
  }
  div[class*="group"]:last-child {
    margin-bottom: 0px !important;
  }
}

@media screen and (min-width: 768px) {
  div[class*="group"]:first-child {
    padding-top: 200px !important;
  }
}

/*テキストアニメーション
_______________________________________*/
/* ANIMATION
--------------------------------------*/
.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;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes position {
  0% {
    opacity: 0.4;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 1.0;
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

@keyframes position {
  0% {
    opacity: 0.4;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 1.0;
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inviewRight {
  opacity: 0;
  transform: translateX(30%);
  -webkit-transform: translateX(30%);
  -webkit-transition: 1.6s;
  transition: 1.6s;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.inviewLeft {
  opacity: 0;
  transform: translateX(-30%);
  -webkit-transform: translateX(-30%);
  -webkit-transition: 1.6s;
  transition: 1.6s;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

/*.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;
  transform: translate(0, 0) !important;
  -webkit-transform: translate(0, 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

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

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

@media screen and (max-width: 767px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}
/*# sourceMappingURL=style.css.map */