/*------------------------------------------------------------*
 * base
 *------------------------------------------------------------*/
body {
    background-color: #000 !important;
    font-size: 14px;
    margin: 0px;
}


/*------------------------------------------------------------*
 * loading
 *------------------------------------------------------------*/
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.spinner {
    width: 100px;
    height: 100px;
    margin: 200px auto;
    background-color: #fff;
    border-radius: 100%;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}
.loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes sk-scaleout {
0% {
    transform: scale(0);
} 100% {
    transform: scale(1.0);
    opacity: 0;
}
}

/*------------------------------------------------------------*
 * main
 *------------------------------------------------------------*/
main {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#menu {
    margin: 0 auto;
}

#contents {
    margin: 30px auto;
    list-style: none;
    padding: 0;
    box-sizing: inherit;
    text-align: center;
}

.menu-item {
    display: list-item;
    padding: 10px;
    border: #fff solid 1px;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 134px;
}

#sns {
    margin: 20px auto;
    width: 160px;
    display: flex;
    justify-content: space-between;
}

.ike {
    margin-bottom: 40px;
}

#cover {
    object-fit: cover;
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

#main {
    margin-top: 10vh;
    text-align: center;
    color: #fff;
    padding: 0 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

a {
    color: #fff;
}

.nodeco {
    text-decoration: none;
}

img.logo {
    margin: 0px auto 40px auto;
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 103;
}

#footer-text {
    color: #eee;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
}

.ib {
    display: inline-block;
}

.youtube-wrapper {
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.youtube {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

.youtube .inner {
    padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/*------------------------------------------------------------*
 * modal
 *------------------------------------------------------------*/
.modal {
    color: #fff;
    display: none;
}

.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(64, 64, 64, 0.5);
    z-index: 100000
}

.modal-window {
    z-index: 100001;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 80vh;
    transform: translate(-50%, -50%);
}
.modal-title {
    margin-left: 30px;
}
.modal-label {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 50%;
    width:40px;
    height: 40px;
    cursor: pointer;
}
.modal-inner {
    width: 90vw;
    height: 100%;
    background: rgba(0, 0, 0 ,0.8);
    border-radius: 20px;
    box-shadow: 0px 2px 10px rgba(#000,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    padding-bottom: 60px;
    margin: 20px 40px;
    width: 100%;
    height: 80%;
}

.scroll {
    padding: 0 30px;
    overflow: auto;
    height: 90%;
}

/*------------------------------------------------------------*
 * PC
 *------------------------------------------------------------*/
 @media only screen and (min-width: 500px) {
    .profile-box {
        float: left;
        width: 46%;
        margin: 2%
    }
}

/*------------------------------------------------------------*
 * Smartphone
 *------------------------------------------------------------*/
@media only screen and (max-width: 500px) {
    #main {
        padding: 0 10px;
    }
    img.logo {
        width: 90%;
    }
    footer {
        position: static;
    }
    video {
        /* visibility: hidden; */
    }
    .youtube {
        width: 100%;
    }
    .modal-inner {
        width: 94vw;
    }
    .modal-window {
        z-index: 100001;
        position: fixed;
        top: 5%;
        left: 3%;
        width: 94vw;
        height: 90%;
        border-radius: 0px;
        transform: translate(0%, 0%)
    }
    .modal-content {
        margin: 0px;
    }
}