@charset "UTF-8";
html, body {
  width: 100%;
  height: 100%;
  background-color: #E3E3DD;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html div, html p, html h1, html h2, html h3, html h4, body div, body p, body h1, body h2, body h3, body h4 {
  margin: 0;
  padding: 0;
  font-family: 'Oswald', sans-serif, 'はれのそら明朝', serif;
}

.loading {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.loading__top {
  width: 100%;
  height: 33%;
  position: relative;
}
.loading__top--line {
  width: 25%;
  height: 3px;
  content: "";
  background-color: #679FCA;
  position: absolute;
  top: 30px;
}
.loading__top--square {
  width: 50px;
  height: 50px;
  content: "";
  background-color: #FFF27B;
  position: absolute;
  top: 60px;
  left: 20px;
  -webkit-transform: rotateZ(15deg);
          transform: rotateZ(15deg);
}
.loading__middle {
  width: 100%;
  height: 33%;
  position: relative;
}
.loading__middle h1 {
  font-size: 120px;
  color: #1D1B1B;
  white-space: nowrap;
  position: absolute;
  top: 20%;
  right: -220vw;
}
.loading__bottom {
  width: 100%;
  height: 33%;
  position: relative;
}
.loading__bottom--square {
  width: 50px;
  height: 50px;
  content: "";
  background-color: #FFF27B;
  position: absolute;
  bottom: 60px;
  right: 20px;
  -webkit-transform: rotateZ(-15deg);
          transform: rotateZ(-15deg);
}
.loading__bottom--line {
  width: 25%;
  height: 3px;
  content: "";
  background-color: #679FCA;
  position: absolute;
  bottom: 30px;
  right: 0px;
}

/*---------------------- ハンバーガーメニュー ---------------------*/
#nav__toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  height: 40px;
  z-index: 200;
}
#nav__toggle div {
  position: relative;
  width: 35px;
}
#nav__toggle div span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background-color: #1D1B1B;
  position: absolute;
  -webkit-transition: top .4s ease, -webkit-transform .6s ease-in-out;
  transition: top .4s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .4s ease;
  transition: transform .6s ease-in-out, top .4s ease, -webkit-transform .6s ease-in-out;
}
#nav__toggle div span:nth-child(1) {
  top: 0;
}
#nav__toggle div span:nth-child(2) {
  top: 14px;
}
#nav__toggle div span:nth-child(3) {
  top: 28px;
}

.open #nav__toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(405deg);
          transform: rotate(405deg);
}
.open #nav__toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav__toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
}

#global__nav {
  background-color: #FDB46C;
  color: #1D1B1B;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  opacity: 0;
  -webkit-transition: opacity .6s ease, visibility .6s ease;
  transition: opacity .6s ease, visibility .6s ease;
}
#global__nav a {
  display: block;
  color: #1D1B1B;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
}
#global__nav a:hover {
  color: #9f9898;
}
#global__nav ul {
  list-style: none;
}
#global__nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity .2s ease, -webkit-transform .8s ease;
  transition: opacity .2s ease, -webkit-transform .8s ease;
  transition: transform .8s ease, opacity .2s ease;
  transition: transform .8s ease, opacity .2s ease, -webkit-transform .8s ease;
}
#global__nav ul li:nth-child(2) {
  -webkit-transition-delay: .15s;
          transition-delay: .15s;
}
#global__nav ul li:nth-child(3) {
  -webkit-transition-delay: .30s;
          transition-delay: .30s;
}

.open {
  overflow: hidden;
}
.open #global__nav {
  visibility: visible;
  opacity: 1;
}
.open #global__nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

/* ------------------ 背景の2色のバー ----------------------*/
.bar__left {
  content: "";
  height: 170px;
  width: 50%;
  background-color: #FF83B7;
  z-index: 0;
  position: absolute;
  top: 16%;
}

.bar__right {
  content: "";
  height: 100vh;
  width: 21%;
  background-color: #FFF27B;
  z-index: 0;
  position: absolute;
  right: 0;
}

h1 {
  text-align: center;
  color: #1D1B1B;
  font-size: 65px;
  position: absolute;
  top: 10%;
  left: 15%;
}

/* --------------- キューブ -----------------*/
.cube__left {
  float: left;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 425px;
  -webkit-perspective: 425px;
}
.cube__left .cube {
  width: 1px;
  height: 1px;
  margin: 425px auto 350px auto;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  border: 5px solid white;
  position: relative;
  animation: rotation__left 1000s linear 0s infinite normal;
  -webkit-animation: rotation__left 1000s linear 0s infinite normal;
}
.cube__left .cube .surface {
  width: 220px;
  height: 220px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #FDB46C;
  position: absolute;
  left: calc(-220px / 2);
  top: calc(-220px / 2);
  text-align: center;
  line-height: 220px;
}
.cube__left .cube .front {
  transform: translateZ(calc(220px / 2));
  -webkit-transform: translateZ(calc(220px / 2));
  background-image: url("image/ms/home_ms_01.png");
  background-size: cover;
}
.cube__left .cube .back {
  transform: translateZ(calc(-220px / 2)) rotateY(180deg);
  -webkit-transform: translateZ(calc(-220px / 2)) rotateY(180deg);
  background-image: url("image/ms/home_ms_02.png");
  background-size: cover;
}
.cube__left .cube .right {
  transform: translateX(calc(220px / 2)) rotateY(90deg);
  -webkit-transform: translateX(calc(220px / 2)) rotateY(90deg);
  background-image: url("image/ms/home_ms_03.png");
  background-size: cover;
}
.cube__left .cube .left {
  transform: translateX(calc(-220px / 2)) rotateY(-90deg);
  -webkit-transform: translateX(calc(-220px / 2)) rotateY(-90deg);
  background-image: url("image/ms/home_ms_04.png");
  background-size: cover;
}
.cube__left .cube .top {
  transform: translateY(calc(-220px / 2)) rotateX(90deg);
  -webkit-transform: translateY(calc(-220px / 2)) rotateX(90deg);
  background-image: url("image/ms/home_ms_05.png");
  background-size: cover;
}
.cube__left .cube .bottom {
  transform: translateY(calc(220px / 2)) rotateX(-90deg);
  -webkit-transform: translateY(calc(220px / 2)) rotateX(-90deg);
  background-image: url("image/en_logo2.png");
  background-size: cover;
}

.cube__right {
  float: left;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 425px;
  -webkit-perspective: 425px;
}
.cube__right .cube {
  width: 1px;
  height: 1px;
  margin: 425px auto 350px auto;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  border: 5px solid white;
  position: relative;
  animation: rotation__right 1000s linear 0s infinite normal;
  -webkit-animation: rotation__right 1000s linear 0s infinite normal;
}
.cube__right .cube .surface {
  width: 220px;
  height: 220px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #679FCA;
  position: absolute;
  left: calc(-220px / 2);
  top: calc(-220px / 2);
  text-align: center;
  line-height: 220px;
}
.cube__right .cube .front {
  transform: translateZ(calc(220px / 2));
  -webkit-transform: translateZ(calc(220px / 2));
  background-image: url("image/mr/home_mr_01.png");
  background-size: cover;
}
.cube__right .cube .back {
  transform: translateZ(calc(-220px / 2)) rotateY(180deg);
  -webkit-transform: translateZ(calc(-220px / 2)) rotateY(180deg);
  background-image: url("image/mr/home_mr_02.png");
  background-size: cover;
}
.cube__right .cube .right {
  transform: translateX(calc(220px / 2)) rotateY(90deg);
  -webkit-transform: translateX(calc(220px / 2)) rotateY(90deg);
  background-image: url("image/en_logo2.png");
  background-size: cover;
}
.cube__right .cube .left {
  transform: translateX(calc(-220px / 2)) rotateY(-90deg);
  -webkit-transform: translateX(calc(-220px / 2)) rotateY(-90deg);
  background-image: url("image/mr/home_mr_03.png");
  background-size: cover;
}
.cube__right .cube .top {
  transform: translateY(calc(-220px / 2)) rotateX(90deg);
  -webkit-transform: translateY(calc(-220px / 2)) rotateX(90deg);
  background-image: url("image/mr/home_mr_04.png");
  background-size: cover;
}
.cube__right .cube .bottom {
  transform: translateY(calc(220px / 2)) rotateX(-90deg);
  -webkit-transform: translateY(calc(220px / 2)) rotateX(-90deg);
  background-image: url("image/mr/home_mr_05.png");
  background-size: cover;
}

/* キーフレーム */
@keyframes rotation__left {
  100% {
    -webkit-transform: rotateX(32846deg) rotateY(36452deg) rotateZ(9080deg);
            transform: rotateX(32846deg) rotateY(36452deg) rotateZ(9080deg);
  }
}
@-webkit-keyframes rotation__left {
  100% {
    -webkit-transform: rotateX(35462deg) rotateY(34530deg) rotateZ(9080deg);
  }
}
/* キーフレーム */
@keyframes rotation__right {
  100% {
    -webkit-transform: rotateX(-36218deg) rotateY(-32459deg) rotateZ(8700deg);
            transform: rotateX(-36218deg) rotateY(-32459deg) rotateZ(8700deg);
  }
}
@-webkit-keyframes rotation__right {
  100% {
    -webkit-transform: rotateX(-37452deg) rotateY(-34821deg) rotateZ(8700deg);
  }
}
.button__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 80px;
  z-index: 800;
  -webkit-transform: translateZ(80px);
          transform: translateZ(80px);
}
.button__container .button {
  display: inline-block;
  text-decoration: none;
  color: #1D1B1B;
  background-color: #F2F2F2;
  border: 1px solid #1D1B1B;
  padding: 8px 30px;
  cursor: auto;
}
.button__container .button:hover {
  background-color: #FDB46C;
  -webkit-transition: .6s;
  transition: .6s;
  cursor: pointer;
}

.download {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 160px;
  letter-spacing: 1.1px;
  color: #1D1B1B;
}
.download svg {
  margin-bottom: 7px;
  width: 100px;
}
.download a img {
  width: 140px;
  height: auto;
}

/*# sourceMappingURL=style.css.map */