  @charset "UTF-8";
.transition.fade {
  background: #fff;
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
.transition.fade.is-active {
  animation-name: transition-fade;
  animation-duration: 0.3s;
  animation-delay: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes transition-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.transition.fade-logo {
  background: #fff;
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.transition.fade-logo .logo {
  width: 80%;
  max-width: 360px;
  opacity: 0;
  transition: 0.5s;
}
.transition.fade-logo .logo svg {
  fill: #005e8b;
}
.transition.fade-logo.is-active {
  animation-name: transition-fade;
  animation-duration: 0.3s;
  animation-delay: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.transition.fade-logo.is-active .logo {
  opacity: 1;
}

@keyframes transition-fade-logo {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.transition.blur {
  background: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(50px);
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.transition.blur.is-active {
  animation-name: transition-blur;
  animation-duration: 0.5s;
  animation-delay: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes transition-blur {
  0% {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
  }
  100% {
    backdrop-filter: blur(0);
    display: none;
  }
}
.transition.roll-tb {
  background: #fff;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.transition.roll-tb.is-active {
  animation-name: transition-roll-tb;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes transition-roll-tb {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.transition.roll-bt {
  background: #fff;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.transition.roll-bt.is-active {
  animation-name: transition-roll-bt;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes transition-roll-bt {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
.transition.roll-lr {
  background: #fff;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.transition.roll-lr.is-active {
  animation-name: transition-roll-lr;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes transition-roll-lr {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.transition.roll-rl {
  background: #fff;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.transition.roll-rl.is-active {
  animation-name: transition-roll-rl;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes transition-roll-rl {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
.transition.roll-split2 .transition-item {
  display: block;
  background: #fff;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  transform: scaleX(1);
}
.transition.roll-split2 .transition-item.left {
  left: 50%;
}
.transition.roll-split2 .transition-item.right {
  right: 50%;
}
.transition.roll-split2.is-active .transition-item {
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.transition.roll-split2.is-active .transition-item.left {
  animation-name: transition-roll-split2-left;
}
.transition.roll-split2.is-active .transition-item.right {
  animation-name: transition-roll-split2-right;
}

@keyframes transition-roll-split2-left {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes transition-roll-split2-right {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
.transition.roll-split4 .transition-item {
  position: fixed;
  top: 0;
  left: 0;
  height: 50%;
  width: 50%;
  z-index: 999;
}
.transition.roll-split4 .transition-item::before {
  content: "";
  background: #fff;
  box-shadow: 0 0 0 1px #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.transition.roll-split4 .transition-item:nth-child(2) {
  left: inherit;
  right: 0;
}
.transition.roll-split4 .transition-item:nth-child(3) {
  top: inherit;
  bottom: 0;
}
.transition.roll-split4 .transition-item:nth-child(4) {
  top: inherit;
  left: inherit;
  right: 0;
  bottom: 0;
}
.transition.roll-split4.is-active .transition-item {
  animation-duration: 0.6s;
  animation-delay: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.transition.roll-split4.is-active .transition-item:nth-child(1) {
  animation-name: transition-roll-split4-tb;
}
.transition.roll-split4.is-active .transition-item:nth-child(2) {
  animation-name: transition-roll-split4-rl;
}
.transition.roll-split4.is-active .transition-item:nth-child(3) {
  animation-name: transition-roll-split4-lr;
}
.transition.roll-split4.is-active .transition-item:nth-child(4) {
  animation-name: transition-roll-split4-bt;
}

/* 四隅から色を表示する-上から下 キーフレーム */
@keyframes transition-roll-split4-tb {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* 四隅から色を表示する-左から右 キーフレーム */
@keyframes transition-roll-split4-lr {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* 四隅から色を表示する-下から上 キーフレーム */
@keyframes transition-roll-split4-bt {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/* 四隅から色を表示する-右から左 キーフレーム */
@keyframes transition-roll-split4-rl {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
.transition.roll-split10 .transition-item {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 10%;
  z-index: 999;
}
.transition.roll-split10 .transition-item::before {
  background: #fff;
  box-shadow: 0 0 0 1px #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.transition.roll-split10 .transition-item:nth-child(2) {
  left: 10%;
}
.transition.roll-split10 .transition-item:nth-child(3) {
  left: 20%;
}
.transition.roll-split10 .transition-item:nth-child(4) {
  left: 30%;
}
.transition.roll-split10 .transition-item:nth-child(5) {
  left: 40%;
}
.transition.roll-split10 .transition-item:nth-child(6) {
  left: 50%;
}
.transition.roll-split10 .transition-item:nth-child(7) {
  left: 60%;
}
.transition.roll-split10 .transition-item:nth-child(8) {
  left: 70%;
}
.transition.roll-split10 .transition-item:nth-child(9) {
  left: 80%;
}
.transition.roll-split10 .transition-item:nth-child(10) {
  left: 90%;
}
.transition.roll-split10.is-active .transition-item {
  animation-name: transition-roll-split10;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.transition.roll-split10.is-active .transition-item:nth-child(2) {
  animation-delay: 0.2s;
}
.transition.roll-split10.is-active .transition-item:nth-child(3) {
  animation-delay: 0.3s;
}
.transition.roll-split10.is-active .transition-item:nth-child(4) {
  animation-delay: 0.4s;
}
.transition.roll-split10.is-active .transition-item:nth-child(5) {
  animation-delay: 0.5s;
}
.transition.roll-split10.is-active .transition-item:nth-child(6) {
  animation-delay: 0.6s;
}
.transition.roll-split10.is-active .transition-item:nth-child(7) {
  animation-delay: 0.7s;
}
.transition.roll-split10.is-active .transition-item:nth-child(8) {
  animation-delay: 0.8s;
}
.transition.roll-split10.is-active .transition-item:nth-child(9) {
  animation-delay: 0.9s;
}
.transition.roll-split10.is-active .transition-item:nth-child(10) {
  animation-delay: 1s;
}

@keyframes transition-roll-split10 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.transition.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #005e8b;
  z-index: 999;
}
.transition.shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  width: 0;
  height: 1px;
}
.transition.shutter.is-active {
  animation: transition-shutter-hide 2s forwards;
}
.transition.shutter.is-active::before {
  animation: transition-shutter-open 2s forwards;
}

.shutter-content {
  animation: transition-shutter-content 2s forwards;
}

@keyframes transition-shutter-hide {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes transition-shutter-open {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes transition-shutter-content {
  70% {
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    transform: perspective(800px) scale(1) rotateX(0);
  }
}
.transition.shutter-layer2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #005e8b;
  z-index: 999;
}
.transition.shutter-layer2::before, .transition.shutter-layer2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.transition.shutter-layer2::before {
  background: #ccc;
  width: 0;
  height: 1px;
}
.transition.shutter-layer2::after {
  width: 120%;
  height: 0;
  margin-left: -10%;
  background: #fff;
}
.transition.shutter-layer2.is-active {
  animation: transition-shutter-hide 2s forwards;
}
.transition.shutter-layer2.is-active::before {
  animation: transition-shutter-layer2-open1 2s forwards;
}
.transition.shutter-layer2.is-active::after {
  animation: transition-shutter-layer2-open2 2s forwards;
}

.shutter-layer2-content {
  animation: transition-shutter-layer2-content 2s forwards;
}

@keyframes transition-shutter-layer2-hide {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes transition-shutter-layer2-open1 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes transition-shutter-layer2-open2 {
  60% {
    width: 120%;
    height: 0;
    transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
}
@keyframes transition-shutter-layer2-content {
  70% {
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    transform: perspective(800px) scale(1) rotateX(0);
  }
}
.transition.circle-reduce {
  background: #fff;
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  z-index: 999;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
  display: block;
  border-radius: 50%;
  animation-name: transition-circle-reduce;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes transition-circle-reduce {
  0% {
    transform: scale(100);
  }
  100% {
    transform: scale(0);
  }
}

/*# sourceMappingURL=transition.css.map */
