@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");
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
/*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: #1d2223;
  font-weight: normal;
  scroll-snap-type: y mandatory;
  /*width: 100%;
  height: 100%; */
}

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

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

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

#header {
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

#header.opacity {
  opacity: 1;
  transition: opacity 2s;
}

@media screen and (max-width: 767px) {
  #header {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-image: url(../img/sp_main.jpg);
    background-size: cover;
    background-position: center center;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 768px) {
  #header {
    width: 100%;
    margin: 0 auto;
    background-image: url(../img/pc_main.jpg);
    background-size: cover;
    background-position: center center;
    margin-bottom: 120px;
  }
  #header::before {
    content: "";
    display: block;
    padding-top: calc(1080 / 1920 * 100%);
  }
}

#header .logo {
  transition: 1s;
}

#header .logo.fixed {
  position: fixed;
  top: 40px;
  width: 20%;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  #header .logo.fixed {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 10%;
    transform: translate(0%, 0%);
  }
}

@media screen and (min-width: 768px) {
  #header .logo.fixed svg {
    fill: #777;
  }
}

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

@media screen and (max-width: 767px) {
  #header .logo {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

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

#header .logo svg {
  fill: #fff;
}

@media screen and (min-width: 768px) {
  #header .logo svg {
    fill: #fff;
  }
}

#header .logo svg g polygon {
  transform-origin: 50% 50%;
  transform: rotateX(-90deg);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

#header .logo svg g path {
  transform-origin: 50% 50%;
  transform: rotateX(-90deg);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

#header .logo svg g ._2 {
  transition-delay: .1s;
}

#header .logo svg g ._3 {
  transition-delay: .2s;
}

#header .logo svg g ._4 {
  transition-delay: .3s;
}

#header .logo svg g ._5 {
  transition-delay: .4s;
}

#header .logo svg g ._6 {
  transition-delay: .5s;
}

#header .logo svg g ._7 {
  transition-delay: .6s;
}

#header .logo svg g ._8 {
  transition-delay: .7s;
}

#header .logo svg g ._9 {
  transition-delay: .8s;
}

#header .logo svg g ._10 {
  transition-delay: .9s;
}

#header .logo svg g ._11 {
  transition-delay: 1s;
}

#header .logo svg g ._12 {
  transition-delay: 1.1s;
}

#header .logo svg g ._13 {
  transition-delay: 1.2s;
}

#header .logo svg g ._14 {
  transition-delay: 1.3s;
}

#header .logo svg g ._15 {
  transition-delay: 1.4s;
}

#header .logo.active svg g polygon {
  transform: rotateX(0);
}

#header .logo.active svg g path {
  transform: rotateX(0);
}

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

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

#content {
  width: 100%;
}

.section {
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 140px !important;
  }
}

@media screen and (min-width: 768px) {
  .section {
    max-width: 760px;
    margin: 0 auto 200px;
  }
}

.section div {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .section div {
    margin-bottom: 60px;
  }
}

.background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../img/back.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -10;
  opacity: 0;
  transition: .4s;
}

.background.on {
  opacity: 1;
}

._01 div:nth-of-type(1) {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._01 div:nth-of-type(1) {
    margin: 0 auto 60px;
  }
}

._01 div:nth-of-type(2) {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._01 div:nth-of-type(2) {
    margin: 0 auto 60px;
  }
}

._02 div:nth-of-type(1) {
  width: 60%;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  ._02 div:nth-of-type(1) {
    margin-right: auto;
  }
}

._02 div:nth-of-type(2) {
  width: 60%;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  ._02 div:nth-of-type(2) {
    margin-left: auto;
  }
}

._02 div:nth-of-type(3) {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._02 div:nth-of-type(3) {
    margin: 0 auto 60px;
  }
}

._03 .flex {
  display: flex;
  margin-bottom: 0;
}

._03 .flex div {
  width: 50%;
  box-sizing: border-box;
}

._03 .flex div:nth-of-type(1) {
  padding-right: 2.5%;
}

._03 .flex div:nth-of-type(2) {
  padding-left: 2.5%;
  margin-top: 20%;
}

._03 .flex + div {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._03 .flex + div {
    margin: 0 auto 60px;
  }
}

._04 div:nth-of-type(1) {
  width: 95%;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  ._04 div:nth-of-type(1) {
    margin-right: auto;
  }
}

._04 div:nth-of-type(2) {
  width: 95%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._04 div:nth-of-type(2) {
    margin: 0 auto 60px;
  }
}

._05 .flex {
  display: flex;
  margin-bottom: 0;
}

._05 .flex div {
  width: 50%;
  box-sizing: border-box;
}

._05 .flex div:nth-of-type(1) {
  padding-right: 2.5%;
}

._05 .flex div:nth-of-type(2) {
  padding-left: 2.5%;
  margin-top: 20%;
}

._05 .flex + div {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._05 .flex + div {
    margin: 0 auto 60px;
  }
}

._06 div:nth-of-type(1) {
  width: 95%;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  ._06 div:nth-of-type(1) {
    margin-right: auto;
  }
}

._06 div:nth-of-type(2) {
  width: 95%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._06 div:nth-of-type(2) {
    margin: 0 auto 60px;
  }
}

._07 div:nth-of-type(1) {
  width: 70%;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  ._07 div:nth-of-type(1) {
    margin-right: auto;
  }
}

._07 div:nth-of-type(2) {
  width: 65%;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  ._07 div:nth-of-type(2) {
    margin-left: auto;
  }
}

._07 div:nth-of-type(3) {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._07 div:nth-of-type(3) {
    margin: 0 auto 60px;
  }
}

._08 div:nth-of-type(1) {
  width: 70%;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  ._08 div:nth-of-type(1) {
    margin-right: auto;
  }
}

._08 div:nth-of-type(2) {
  width: 65%;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  ._08 div:nth-of-type(2) {
    margin-left: auto;
  }
}

._08 div:nth-of-type(3) {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._08 div:nth-of-type(3) {
    margin: 0 auto 60px;
  }
}

._09 div:nth-of-type(1) {
  width: 95%;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  ._09 div:nth-of-type(1) {
    margin-right: auto;
  }
}

._09 div:nth-of-type(2) {
  width: 95%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._09 div:nth-of-type(2) {
    margin: 0 auto 60px;
  }
}

._10 .flex {
  display: flex;
  margin-bottom: 0;
}

._10 .flex div {
  width: 50%;
  box-sizing: border-box;
}

._10 .flex div:nth-of-type(1) {
  padding-right: 2.5%;
  margin-top: 20%;
}

._10 .flex div:nth-of-type(2) {
  padding-left: 2.5%;
}

._10 .flex + div {
  width: 85%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  ._10 .flex + div {
    margin: 0 auto 60px;
  }
}

.price_box {
  /*font-family: "游ゴシック体";*/
  width: 100%;
  margin: 10px auto 20px;
}

@media screen and (min-width: 768px) {
  .price_box {
    margin: 20px auto 30px;
  }
}

.price_box ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.price_box ul li a {
  position: relative;
  text-align: center;
  display: block;
  font-size: 10px;
  color: #000;
  letter-spacing: 1px;
  box-sizing: border-box;
  line-height: 1.9;
  transition: 1s;
}

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

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

.price_box ul li a:not([class="disabled"])::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.price_box ul li a:not([class="disabled"]):hover::after {
  opacity: 0.5;
}

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

.price_box ul li a span {
  font-size: 10px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .price_box ul li a span {
    font-size: 12px;
    line-height: 1.8;
  }
}

.price_box ul li a span.item {
  font-weight: bold;
}

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

.price_box ul li a span.tax {
  transform: scale(0.9);
  transform-origin: left center;
  display: inline-block;
}

.price_box ul li a span.notice {
  display: block;
  font-weight: bold;
  letter-spacing: 1px;
}

#footer {
  position: relative;
  width: 100%;
  /*background-image: url(../img/footer.png);
  background-size: cover;
  background-position: center 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;*/
}

@media screen and (min-width: 768px) {
  #footer {
    margin-top: 120px;
  }
}

#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 {
  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%;
  }
}

#footer .logo a {
  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: #777777;
}

@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 {
  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 {
  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: rgb(255,255,255);
  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;
}

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

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

/*div[class*="section"] {
  @include mq(sp) {
  margin-bottom: 140px;
}
  @include mq(pc) {
    margin-bottom: 200px;
  }
}*/
@media screen and (max-width: 767px) {
  div[class*="section"]:last-child {
    margin-bottom: 30px;
  }
}

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

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

/*----- フェードイン -----*/
.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 120px);
  -webkit-transform: translate(0, 120px);
  transition: 1.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;
}

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

.inviewRight {
  opacity: 0;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  transition: 1s;
  transition-delay: .4s;
}

.inviewLeft {
  opacity: 0;
  transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  transition: 1s;
  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: flex;
  align-items: 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;
  }
}

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