@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;
  font-feature-settings: "palt";
  line-height: 1.8;
  font-size: 14px;
  color: #000;
  font-weight: normal;
  opacity: 0;
}

body.on {
  opacity: 1;
  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: 47.1698113208%;
  }
}
#header .logo {
  transition: 1s;
}

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

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

#header .logo a {
  transition: 0.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;
  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(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;
  transition: 0.8s;
}

@media screen and (min-width: 768px) {
  #content {
    max-width: 800px;
    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: 85%;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 60px !important;
}
@media screen and (min-width: 768px) {
  .section {
    width: 64%;
    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 .w90 {
  width: 90%;
}
.section .mt_20 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .section .mt_20 {
    margin-top: 40px;
  }
}

.flexbox {
  display: flex;
  justify-content: space-between;
}
.flexbox img {
  width: 49.5%;
}

._07 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  ._07 {
    width: 90%;
  }
}
._07 .flex ul {
  display: flex;
  justify-content: space-between;
}
._07 .flex ul li {
  width: 48%;
}

.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%;
    box-sizing: border-box;
  }
}

.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: 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;
  text-decoration: underline;
}

.price_box ul li a,
.price_box ul li .none {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  line-height: 1;
  transition: 0.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;
  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: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
  z-index: -1;
}

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

.price_box ul li span.buy:hover::before {
  transform: scale(1, 1);
  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 {
  transition: 0.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: 0.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: #000;
}

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

.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;
  }
  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;
  }
}
@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;
    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;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0.1;
    transform: scale(1.4) translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }
}
@keyframes zoomIn01 {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes position {
  0% {
    opacity: 0.4;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(8px);
  }
}
@keyframes position_01 {
  0% {
    opacity: 0;
    transform: translate(-50%, 100px);
  }
  100% {
    opacity: 1;
    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% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*----- フェードイン -----*/
.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 120px);
  -webkit-transform: translate(0, 120px);
  transition: 1.4s;
  transition-delay: 0.2s;
}

.inviewfromTop {
  opacity: 0;
  transform: translate(0, -120px);
  -webkit-transform: translate(0, -120px);
  transition: 1.4s;
  transition-delay: 0.2s;
}

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

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

.fadeInUp {
  opacity: 1 !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;
  }
}/*# sourceMappingURL=style.css.map */