/*load-------------------------------------------------*/

#loading{
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

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

.orbit_spinner, .orbit_spinner * {
    box-sizing: border-box;
}

.orbit_spinner {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    perspective: 800px;
    margin: 30vh auto;
}

.orbit_spinner .orbit {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.orbit_spinner .orbit:nth-child(1) {
    left: 0%;
    top: 0%;
    animation: orbit_spinner-orbit_one-animation 1200ms linear infinite;
    border-bottom: 3px solid white;
}

.orbit_spinner .orbit:nth-child(2) {
    right: 0%;
    top: 0%;
    animation: orbit_spinner-orbit_two-animation 1200ms linear infinite;
    border-right: 3px solid white;
}

.orbit_spinner .orbit:nth-child(3) {
    right: 0%;
    bottom: 0%;
    animation: orbit_spinner-orbit_three-animation 1200ms linear infinite;
    border-top: 3px solid white;
}

@keyframes orbit_spinner-orbit_one-animation {
    0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes orbit_spinner-orbit_two-animation {
    0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes orbit_spinner-orbit_three-animation {
    0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}


@media screen and (min-width: 700px) {

/*jn-------------------------------------------------*/

.txt_main{
    font-family: 'Alata', 'Noto Sans JP', sans-serif;
    font-size: 2em;
}

.txt_bold{
    font-size: 1.5em;
}

.txt{
    font-size: 1em;
}

.txt_logo{
    font-size: 5em;
    color: rgb(213, 59, 60);
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

a{
    color: white;
    text-decoration-color: rgb(100, 170, 255);
    transition: all 0.2s ease;
}

a:hover{
    background-color: rgb(100, 170, 255);
    color: rgb(0, 0, 0);
    text-decoration: none;
}

body{
    font-family: 'Alata', 'Noto Sans JP', sans-serif;
    color: white;
    position: relative;
    background-color: black;
    overscroll-behavior: none;
}

.bg_dot{
    width: 100%;
    height: 100vh;
    background: url(./img/dot.png) repeat;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#bg_video{
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
}
 #bg_video_s{
     display: none;
 }

.flow{
    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
}

.txt_logo_wrap{
    width: 100%;
    height: 10vh;
    text-align: center;
}

.txt_logo::before,
.txt_logo::after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-color: rgb(213, 59, 60);
    margin: 0pt 1rem;
}


/*top-------------------------------------------------*/

.box_top{
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
}

.logo_top{
    height: 100vh;
}



/*inf-------------------------------------------------*/

.box_inf{
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.inf_content{
    width: 35%;
    padding-left: 1rem;
    margin-left: 1rem;
    border-left: solid white 2px;
}

.inf_content img{
    width: 100%;
}

.inf_shop img{
    width: 50%;
}


/*mv-------------------------------------------------*/

.box_mv{
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.mv_content{
    width: 40%;
    padding-left: 1rem;
    border-left: solid white 2px;
    margin: 1.5rem auto;
}

.mv_iframe_wrap{
    position: relative;
    width: 100%;
    padding: calc(315 / 560 * 100%) 0 0;
}

.mv_iframe_wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*tr-------------------------------------------------*/

.box_tr{
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}
.tr_content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.tr_num{
    width: 100%;
    text-align: center;
    font-size: 1.3em;
    color: rgb(213, 59, 60);
}

.tr_title{
    width: 45%;
    text-align: right;
    font-size: 1.3em;
}

.tr_title::after{
    content: ' /';
}

.tr_origin{
    width: 45%;
    font-size: 1.3em;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}


/*staff-------------------------------------------------*/

.box_staff{
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.staff_content{
    text-align: center;
}

.rool{
    font-size: 1.6em;
    color: rgb(213, 59, 60);
    margin-top: 1.5rem;
}

.name{
    font-size: 1.3em;
}


/*banner-------------------------------------------------*/

.box_banner{
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_content{
    width: 40%;
    margin: 10vh auto;
}

.banner_content img{
    width: 100%;
}

.footer{
    width: 100%;
    text-align: center;
}

.footer img{
    width: 10%;
}

}

/*======================================================================
======================================================================
======================================================================
======================================================================
small
======================================================================
======================================================================
======================================================================
======================================================================*/


@media screen and (max-width: 699px) {


/*jn-------------------------------------------------*/

.txt_main{
    font-family: 'Alata', 'Noto Sans JP', sans-serif;
    font-size: 1.8em;
}

.txt_bold{
    font-size: 1em;
}

.txt{
    font-size: 0.8em;
}

.txt_logo{
    font-size: 2em;
    color: rgb(213, 59, 60);
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

a{
    color: white;
    text-decoration-color: rgb(100, 170, 255);
    transition: all 0.2s ease;
}

a:hover{
    background-color: rgb(100, 170, 255);
    color: rgb(0, 0, 0);
    text-decoration: none;
}

body{
    font-family: 'Alata', 'Noto Sans JP', sans-serif;
    color: white;
    position: relative;
    background-color: black;
    overscroll-behavior: none;
}

.bg_dot{
    width: 100%;
    height: 100vh;
    background: url(./img/dot.png) repeat;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#bg_video_s{
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
}
#bg_video{
    display: none;
}

.txt_logo_wrap{
    width: 100%;
    height: 10vh;
    text-align: center;
}

.txt_logo::before,
.txt_logo::after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-color: rgb(213, 59, 60);
    margin: 0pt 1rem;
}


/*top-------------------------------------------------*/

.box_top{
    width: 100%;
    height: 100vh;
    text-align: center;
}

.logo_top{
    width: 80%;
}

/*inf-------------------------------------------------*/

.box_inf{
    width: 100%;
    height: 120vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.inf_content{
    width: 80%;
    padding-left: 1rem;
    margin-left: 1rem;
    margin-bottom: 2rem;
    border-left: solid white 2px;
}

.inf_content img{
    width: 90%;
}

.inf_shop img{
    width: 50%;
}


/*mv-------------------------------------------------*/

.box_mv{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.mv_content{
    width: 90%;
    padding-left: 1rem;
    border-left: solid white 2px;
    margin: 1.5rem auto;
}

.mv_iframe_wrap{
    position: relative;
    width: 100%;
    padding: calc(315 / 560 * 100%) 0 0;
}

.mv_iframe_wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*tr-------------------------------------------------*/

.box_tr{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.tr_content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.tr_num{
    width: 100%;
    text-align: center;
    font-size: 0.7em;
    color: rgb(213, 59, 60);
    margin-top: 0.4rem;
}

.tr_title{
    width: 45%;
    text-align: right;
    font-size: 0.7em;
}

.tr_title::after{
    content: ' /';
}

.tr_origin{
    width: 45%;
    font-size: 0.7em;
    margin-left: 1rem;
}


/*staff-------------------------------------------------*/

.box_staff{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.staff_content{
    text-align: center;
}

.rool{
    font-size: 0.7em;
    color: rgb(213, 59, 60);
    margin-top: 0.4rem;
}

.name{
    font-size: 0.7em;
}


/*banner-------------------------------------------------*/

.box_banner{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.banner_content{
    width: 70%;
    margin: 10vh auto;
}

.banner_content img{
    width: 100%;
}

.footer{
    width: 100%;
    text-align: center;
}

.footer img{
    width: 30%;
}








}