@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: 'futura-pt',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  font-size: 14px;
  color: #1d2223;
  font-weight: normal;
  opacity: 0;
}

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

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

a {
  color: #4d0101;
  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;
  }*/
}

@media screen and (max-width: 767px) {
  #header {
    /*height: 100vh;
    height: calc(var(--vh, 1vh) * 100);*/
    background-image: url(../img/sp_main_01.jpg);
    background-size: cover;
    background-position: center center;
    margin-bottom: 60px;
  }
  #header::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}

@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%;
}

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

#header .logo.fixed svg {
  /*@include mq(pc) {
          fill: #777;
        }*/
}

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

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

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

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

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

/*#navigation {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 0;
  transition: .8s;
  &.show {
    opacity: 1;
  }
  @include mq(pc) {
    left: 40px;
  }
  a {
    display: block;
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: .4s;
    position: relative;
    @include mq(pc) {
      width: 8px;
      height: 8px;
      border: 1px solid #12a7e2;
    }
    &:not(:last-child) {
      margin-bottom: 16px;
      @include mq(pc) {
        margin-bottom: 20px;
      }
    }
    /*&::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%) scale(0);
      width: 10px;
      height: 1px;
      background-color: #fff;
      margin-right: 8px;
      transition: .4s;
    }*/
/*&.current {
      background-color: #fff;
      transform: scale(1.4);
      @include mq(pc) {
        background-color: #12a7e2;
      }
     &::before {
        transform: translateY(-50%) scale(1);
      }
    }
  }
}*/
.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;
  transition: 1s;
}

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

.background div.current {
  opacity: 1;
}

.background div:nth-of-type(1) {
  background-image: url(../img/bg_1.jpg);
}

@media screen and (min-width: 768px) {
  .background div:nth-of-type(1) {
    background-image: url(../img/pc_bg_1.jpg);
  }
}

.background div:nth-of-type(2) {
  background-image: url(../img/bg_2.jpg);
}

@media screen and (min-width: 768px) {
  .background div:nth-of-type(2) {
    background-image: url(../img/pc_bg_2.jpg);
  }
}

.background div:nth-of-type(3) {
  background-image: url(../img/bg_3.jpg);
}

@media screen and (min-width: 768px) {
  .background div:nth-of-type(3) {
    background-image: url(../img/pc_bg_3.jpg);
  }
}

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

@media screen and (min-width: 768px) {
  #content {
    max-width: 880px;
    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: 100%;
  overflow: hidden;
}

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

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

.section .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

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

.section .flex.small {
  width: 84%;
  margin: 0 auto 30px;
}

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

.section .flex.small div {
  width: 49%;
}

.section .w84 {
  width: 84%;
  margin: 0 auto 30px;
}

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

.section .full {
  width: 100%;
  margin-bottom: 14px;
}

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

#first .section._01 {
  width: 70%;
  margin-left: auto;
}

#first .section._01 .first {
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  #first .section._01 .first {
    margin-bottom: 30px;
  }
}

#first .section._02 {
  width: 70%;
}

#first .section._02 .first {
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  #first .section._02 .first {
    margin-bottom: 30px;
  }
}

#first .section._03 .first {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #first .section._03 .first {
    margin: 0 auto 30px;
  }
}

#first .section._04 .flexslider {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #first .section._04 .flexslider {
    margin: 0 auto 30px;
  }
}

#first .section._05 {
  width: 50%;
}

#first .section._05 .first {
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  #first .section._05 .first {
    margin-bottom: 30px;
  }
}

#first .section._06 .first {
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  #first .section._06 .first {
    margin-bottom: 30px;
  }
}

#first .section._07 div.first {
  width: 70%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #first .section._07 div.first {
    margin: 0 auto 30px;
  }
}

#first .section._08 div.first {
  width: 60%;
  margin-left: auto;
  margin-bottom: 30px;
}

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

#first .section._08 div.second {
  width: 50%;
  margin-left: 4%;
  margin-bottom: 30px;
}

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

#first .section._08 div.third {
  width: 60%;
  margin: 0 4% 30px auto;
}

@media screen and (min-width: 768px) {
  #first .section._08 div.third {
    margin: 0 4% 60px auto;
  }
}

#first .section._08 div.fourth {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #first .section._08 div.fourth {
    margin: 0 auto 30px;
  }
}

#first .section._09 div.first {
  width: 60%;
  margin-bottom: 30px;
}

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

#first .section._09 div.second {
  width: 50%;
  margin-left: auto;
  margin-bottom: 30px;
}

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

#first .section._09 div.third {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #first .section._09 div.third {
    margin: 0 auto 30px;
  }
}

#second .section._02 .first {
  width: 80%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  #second .section._02 .first {
    margin: 0 auto 60px;
  }
}

#second .section._02 .flex {
  width: 100%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  #second .section._02 .flex {
    margin: 0 auto 60px;
  }
}

#second .section._02 .flex .left {
  width: 48%;
}

#second .section._02 .flex .right {
  width: 48%;
  margin-top: 30%;
}

#second .section._02 .third {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #second .section._02 .third {
    margin: 0 auto 30px;
  }
}

#second .section._03 .flexslider {
  width: 60%;
  margin: 0 auto;
}

#second .section._04 .layout {
  position: relative;
  margin-bottom: 30px;
}

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

#second .section._04 .layout::before {
  content: "";
  display: block;
  padding-top: 125%;
}

#second .section._04 .layout div {
  position: absolute;
}

#second .section._04 .layout div:nth-of-type(1) {
  width: 50%;
  top: 0;
  right: 0;
}

#second .section._04 .layout div:nth-of-type(2) {
  width: 60%;
  bottom: 0;
  left: 0;
}

#second .section._04 .second {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #second .section._04 .second {
    margin: 0 auto 30px;
  }
}

#second .section._05 .first {
  width: 50%;
  margin-right: 4%;
  margin-left: auto;
  margin-bottom: 30px;
}

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

#second .section._05 .second {
  width: 60%;
  margin-bottom: 30px;
}

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

#second .section._05 .third {
  width: 50%;
  margin-left: auto;
  margin-bottom: 30px;
}

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

#second .section._05 .fourth {
  width: 80%;
  margin: 0 auto  14px;
}

@media screen and (min-width: 768px) {
  #second .section._05 .fourth {
    margin: 0 auto  30px;
  }
}

#third {
  padding: 100px 0 50px 0;
  margin-bottom: 0 !important;
}

#third .section._01 .first {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #third .section._01 .first {
    margin: 0 auto 30px;
  }
}

#third .section._02 .flex {
  width: 100%;
  margin-bottom: 30px;
}

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

#third .section._02 .flex div.left {
  width: 56%;
}

#third .section._02 .flex div.right {
  width: 40%;
  margin-top: 40%;
}

#third .section._02 .second {
  width: 70%;
  margin: 0 auto  14px;
}

@media screen and (min-width: 768px) {
  #third .section._02 .second {
    margin: 0 auto  30px;
  }
}

#third .section._02 .third {
  width: 70%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #third .section._02 .third {
    margin: 0 auto 30px;
  }
}

#third .section._03 .flexslider {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #third .section._03 .flexslider {
    margin: 0 auto 30px;
  }
}

#third .section._04 .flex {
  margin-bottom: 30px;
}

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

#third .section._04 .flex div {
  width: 48%;
}

#third .section._04 .second {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #third .section._04 .second {
    margin: 0 auto 30px;
  }
}

#third .section._05 .flex div.left {
  width: 48%;
  margin-top: 40%;
}

#third .section._05 .flex div.left div.first {
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  #third .section._05 .flex div.left div.first {
    margin-bottom: 30px;
  }
}

#third .section._05 .flex div.right {
  width: 48%;
}

#third .section._06 .first {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #third .section._06 .first {
    margin: 0 auto 30px;
  }
}

#third .section._07 .first {
  width: 70%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #third .section._07 .first {
    margin: 0 auto 30px;
  }
}

#third .section._08 .layout {
  position: relative;
  margin-bottom: 30px;
}

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

#third .section._08 .layout::before {
  content: "";
  display: block;
  padding-top: 125%;
}

#third .section._08 .layout div {
  position: absolute;
}

#third .section._08 .layout div:nth-of-type(1) {
  width: 60%;
  top: 0;
  right: 0;
}

#third .section._08 .layout div:nth-of-type(2) {
  width: 50%;
  bottom: 0;
  left: 0;
}

#third .section._08 .flexslider {
  width: 80%;
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  #third .section._08 .flexslider {
    margin-bottom: 30px;
  }
}

#third .section._09 .first {
  width: 60%;
  margin-bottom: 30px;
}

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

#third .section._09 .second {
  width: 50%;
  margin-left: auto;
  margin-bottom: 30px;
}

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

#third .section._09 .third {
  width: 80%;
  margin: 0 auto 14px;
}

@media screen and (min-width: 768px) {
  #third .section._09 .third {
    margin: 0 auto 30px;
  }
}

.curtain {
  position: relative;
}

.curtain::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: scale(1, 1);
  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 {
  transform: scale(1, 0);
  transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1) 0.4s;
}

.price_box {
  /*font-family: "游ゴシック体";*/
  width: 54%;
  margin: 0 auto;
}

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

@media screen and (max-width: 767px) {
  .price_box.w70 {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .price_box.w80 {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .price_box.w90 {
    width: 90%;
  }
}

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

.price_box.column ul li a {
  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: 5px;
}

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

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

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

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

.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;
            transition: .4s;
          }
          &:hover::after {
            opacity: 0.5;
          }*/
}

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

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

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

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

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

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

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

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

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

@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%;
    margin: 0 auto 120px;
  }
}

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

@media screen and (max-width: 767px) {
  div[class*="group"] {
    margin-bottom: 140px;
  }
}

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

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

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

/*テキストアニメーション
_______________________________________*/
/* 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(30%);
  -webkit-transform: translateX(30%);
  transition: 1.6s;
  transition-delay: .4s;
}

.inviewLeft {
  opacity: 0;
  transform: translateX(-30%);
  -webkit-transform: translateX(-30%);
  transition: 1.6s;
  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
--------------------------------------*/
