.gjs-dashed .opening {
    opacity: 1;
    visibility: visible;
    position: relative;
    bottom: auto;
}

body.gjs-dashed {
    opacity: 1;
    visibility: visible;
}

.gjs-dashed .openingTitBox {
    opacity: 1;
}

body {
    /* opacity: 0; */
    visibility: hidden;
    /* transition: .2s; */
}

body.loadingComplete {
    opacity: 1;
    visibility: visible;
    /* transition: .2s; */
    z-index: 99999999;
    position: relative;
}

.opening {
    opacity: 0;
    visibility: hidden;
}

.opening {
    display: block;
    max-width: 1920px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 999999999;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
	background: #F8F8FF;
}

.openingArea {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.openingTitBox {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.openingTit {
    overflow: hidden;
    color: #fff;
}

.openingTit {
  padding-bottom: 5px;
  /* transition: background-size 0.3s ease-out; */
}

.is-active .openingTit {
  /* background-size: 100% 2px; */
  /* background-position: bottom left; */
}

.is-active.opening {
    animation-name: opSlideUp;
    animation-fill-mode: forwards;
    animation-duration: .9s;
    animation-delay: 6s;
    opacity: 1;
    visibility: visible;
}

.openingTitBox {
    opacity: 0;
}

.is-active .openingTitBox {
    animation-name: opFadeIn;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-delay: 1s;
}

.is-active .openingTit:before {
    background-color: #fff;
    z-index: 2;
    height: 2px;
    position: absolute;
    bottom: 0;
    animation-name: opBorderIn;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-delay: 2s;
    content: "";
    -webkit-transition: all .1s cubic-bezier(.77, 0, .175, 1);
    transition: all .1s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

@keyframes opSlideUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        z-index: -999;
    }
}

@keyframes opFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opBorderIn {
    0% {    
      left: 0%;
      width: 0%;
    }
    100% {
      left: 100%;
      width: 100%;
    }
}

.loading.is-active.loadingComplete {
    visibility: visible;
    opacity: 1;
    transition: 0.8s;
}

.loading__text1 {
      font-size: 24px;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
}
.loading__text2 {
      font-size: 16px;
    font-weight: 400;
    font-family: "Tenor Sans", sans-serif;
    color: #B9B9B9;
}