@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * 01. Template
 * 02. Modal
 * 03. Header
 * 04. Scroll
 * 05. Footer
 * 06. Cursor
 * 07. Canvas
-------------------------------------------------*/
/*-----------------------------------------------
 * 01. Template
-------------------------------------------------*/
body{
    -webkit-text-size-adjust: 100%;
    background-color: #000;
    color: #fff;
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-feature-settings: "palt";
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.07em;
    line-height: 1.8;
    word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #fff; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
#fullWrap{
    display: flex;
    flex-direction: column;
    min-width: 1200px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
@media screen and (max-width:768px){ 
    html{ 
        font-size: 62.5%;
    }
    body{
        font-size: 10px; 
        font-size: 1rem;
    }
    .sp{ display: block; }
    .pc{ display: none; }
    .ah:hover { opacity: 1; }
    #fullWrap{
        min-width: 320px;
        overflow: hidden;
    }
}
::selection{
    background: #bc6ef4;
    color: #000;
}
::-moz-selection{
    background: #bc6ef4;
    color:#000;
}
/* font */
.font-belleza{ font-family: 'Belleza', sans-serif; }
/*-----------------------------------------------
 * 02. Modal
-------------------------------------------------*/
.modalBox{
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.oneModal{
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.oneModalIn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-width: 1200px;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width:768px){
    .oneModalIn{
        min-width: 100%;
    }
    .oneModalIn__cont{
        width: 100%;
    }
}
/* closeBtn */
.closeBtn {
    width: 100%;
    height: 100%;
    min-width: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.closeBtn a{
    display: block;
    width: 84px;
    height: 80px;
    pointer-events: auto;
    position: absolute;
    top: 0;
    right: 0;
    text-decoration: none;
}
.closeBtn a:after{
    content: "CLOSE";
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-shadow: 0px 0px 10px #2e89e4;
}
.closeBtn a span:first-child{
    position: absolute;
    display: block;
    width: 100px;
    height: 1px;
    background: #fff;
    top: 28px;
    left: -8px;
    transform: rotate(34deg);
}
.closeBtn a span:last-child{
    position: absolute;
    display: block;
    width: 100px;
    height: 1px;
    background: #fff;
    top: 28px;
    right: -8px;
    transform: rotate(-34deg);
}
.closeBtn a span:first-child:before{
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: #bc6ef4;
    top: 0;
    right: 0;
    transition: all .1s ease-in-out;
}
.closeBtn a span:last-child:before{
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: #bc6ef4;
    top: 0;
    left: 0;
    transition: all .1s ease-in-out;
}
.closeBtn a:hover span:first-child:before{
    width: 100%;
}
.closeBtn a:hover span:last-child:before{
    transition-delay: .1s;
    width: 100%;
}
@media screen and (max-width:768px){
    .closeBtn{
        min-width: 100%;
        overflow: hidden;
    }
    .closeBtn a{
        width: 54px;
        height: 50px;
    }
    .closeBtn a span:first-child{
        width: 54px;
        top: 15px;
        left: 5px;
    }
    .closeBtn a span:last-child{
        width: 54px;
        top: 15px;
        right: -5px;
    }
    .closeBtn a:after {
        font-size: 10px;
        margin-left: 4px;
    }
}
/* common */
.commonIframe{
    width: 100%;
    height: 100%;
    display: block;
}
/* youtube */
.youtubeIframeWrap{
    width: 920px;
    height: 520px;
    transform: scale(1,0);
    transform-origin: center;
    transition: transform .7s cubic-bezier(0.25, 1, 0.5, 1);
}
.youtubeIframeWrap.is-active{
    transition-delay: .3s;
    transform: scale(1);
}
@media screen and (max-width:768px){
    .youtubeIframeWrap{
        width: 100%;
        height: auto;
        padding-top: 56.25%;
        position: relative;
    }
    .youtubeIframe{
        position: absolute;
        top: 0;
        left: 0;
    }
}
/*-----------------------------------------------
 * 03. Header
-------------------------------------------------*/
.header{
    display: flex;
    width: 100%;
    height: 80px;
    min-width: 1200px;
    mix-blend-mode: difference;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header.is-active{
    mix-blend-mode: inherit;
}
.header:after{
    content: "";
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    width: 100%;
    height: 100%;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(0, 1);
    transform-origin: left;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.header.is-active:after{
    transition-delay: .4s;
    transform: scale(1);
}
@media screen and (max-width:768px){
    .header{
        height: 50px;
        min-width: 320px;
        mix-blend-mode: inherit;
        position: fixed;
    }
    .header:after{
        content: none;
    }
}
/**
 * headerSns
 */
.headerSnsWrap{
    display: flex;
    height: 100%;
    margin-left: 20px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width:768px){
    .headerSnsWrap{
        width: calc(100% - 50px);
        height: 50px;
        margin-left: 0;
        z-index: 2;
        opacity: 0;
        pointer-events: none;
        transition: all .3s ease-in-out;
    }
    .headerSnsWrap:after{
        content: "";
        -webkit-overflow-scrolling: touch;
        background: rgba(0,0,0,.6);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        transition: all .3s ease-in-out;
    }
    .header.is-active .headerSnsWrap,
    .header.is-on .headerSnsWrap{
        opacity: 1;
        pointer-events: auto;
    }
}
/* logo */
.headerSns__logo{
    height: 100%;
    margin: 0 20px;
}
.headerSns__logo a{
    background: url(../img/common/icon_logo.svg) no-repeat center / 100%;
    display: block;
    width: 40px;
    height: 100%;
}
@media screen and (max-width:768px){
    .headerSns__logo{
        margin: 0 0 0 10px;
        position: relative;
        z-index: 1;
    }
    .headerSns__logo a{
        width: 28px;
    }
}
/* lists */
.headerSnsLists{
    display: flex;
    align-items: center;
    height: 100%;
}
.headerSnsLists__item{
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 12px;
}
.headerSnsLists__item a{
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    display: block;
}
.headerSnsLists__item.icon-youtube a{
    background-image: url(../img/common/icon_youtube.svg);
    width: 24px;
    height: 18px;
}
.headerSnsLists__item.icon-tiktok a{
    background-image: url(../img/common/icon_tiktok.svg);
    width: 21px;
    height: 24px;
}
.headerSnsLists__item.icon-instagram a{
    background-image: url(../img/common/icon_instagram.svg);
    width: 24px;
    height: 24px;
}
.headerSnsLists__item.icon-twitter a{
    background-image: url(../img/common/icon_twitter.svg);
    width: 24px;
    height: 20px;
}
@media screen and (max-width:768px){
    .headerSnsLists{
        margin: auto;
        position: relative;
        z-index: 1;
    }
}
/**
 * headerNav
 */
.headerNavWrap{
    height: 100%;
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.headerNav{
    height: 100%;
}
@media screen and (max-width:768px){
    .headerNavWrap{
        -webkit-overflow-scrolling: touch;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin-left: 0;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        padding: 100px 0;
        transform: translateX(100%);
        transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .header.is-on .headerNavWrap{
        transform: translateX(0);
    }
    .header:before{
        content: "";
        background-image: linear-gradient(45deg, #e22020, #e22020, #bc6ef4, #bc6ef4);
        background-size: 300% 300%;
        opacity: .9;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        animation: gradient 10s ease infinite;
        transform: translateX(100%);
        transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .header.is-on:before{
        transform: translateX(0);
    }
    .headerNav{
        height: auto;
        position: relative;
        z-index: 2;
    }
}
/* navLists */
.headerNavLists{
    display: flex;
    height: 100%;
    margin-right: 20px;
}
.headerNavLists__item{
    height: 100%;
    margin: 0 16px;
}
.headerNavLists__item a{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.headerNavLists__item a.is-active,
.headerNavLists__item a:hover{
    color: #bc6ef4;
}
.headerNavLists__item a:after{
    content: "";
    background-image: linear-gradient(45deg, #e22020, #bc6ef4);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center;
    transition: transform .3s ease-in-out;
}
.headerNavLists__item a:hover:after,
.headerNavLists__item a.is-active:after{
    transform: scale(1);
}
.header__shareWrap{
    display: none;
}
@media screen and (max-width:768px){
    .header__shareWrap{
        opacity: 0;
        transition: opacity .3s ease-in-out;
    }
    .header.is-on .header__shareWrap{
        transition-delay: .3s;
        opacity: 1;
    }
    .headerNavLists{
        display: block;
        margin-right: 0;
    }
    .headerNavLists__item{
        height: auto;
        margin: 0 0 20px;
        overflow: hidden;
    }
    .headerNavLists__item:last-child{
        margin: 0;
    }
    .headerNavLists__item a{
        color: rgba(255,255,255,.4);
        display: flex;
        align-items: center;
        font-size: min(11.2vw, 88px);
        line-height: 1.1;
        padding-left: 10.6%;
        text-align: left;
        transform: translateY(100%);
        transition: transform .5s ease-in-out;
        white-space: nowrap;
    }
    .header.is-on .headerNavLists__item a{
        transition-delay: .3s;
        transform: translateY(0);
    }
    .headerNavLists__item a.is-active,
    .headerNavLists__item a:hover{
        color: rgba(255,255,255,1);
    }
    .headerNavLists__item a:after{
        background-color: #fff;
        background-image: none;
        display: block;
        height: 1px;
        margin-left: 20px;
        position: relative;
        bottom: auto;
        left: auto;
        transform-origin: right;
        transform: scale(0, 1);
    }
    /**
     * share
     */
    .header__shareWrap{
        display: flex;
        align-items: center;
        margin-top: 40px;
        padding-left: 10.6%;
    }
    .header__shareWrap dt{
        color: #fff;
        font-size: 12px;
        font-size: 1.2rem;
        margin-right: 14px;
        white-space: nowrap;
    }
    .header__shareWrap .shareLists{
        display: flex;
        justify-content: center;
    }
    /* list item */
    .header__shareWrap .shareLists__item{
        width: 36px;
        height: 36px;
        margin: 0 6px;
    }
    .header__shareWrap .shareLists__item a{
        background-repeat: no-repeat;
        background-position: center; 
        background-size: 24px;
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .header__shareWrap .shareLists__item a.shareLists__link--tw{
        background-image: url(../img/common/icon_twitter.svg);
    }
    .header__shareWrap .shareLists__item a.shareLists__link--fb{
        background-image: url(../img/common/icon_facebook.svg);
    }
    .header__shareWrap .shareLists__item a.shareLists__link--line{
        background-image: url(../img/common/icon_line.svg);
    }
    /**
     * Menu trigger
     */
    .header__navBtn{
        background-image: linear-gradient(45deg, #e22020, #bc6ef4);
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
    }
    .header__navBtn:before{
        content: "";
        background-image: linear-gradient(45deg, #e22020, #e22020, #bc6ef4, #bc6ef4);
        background-size: 300% 300%;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        animation: gradient 10s ease infinite;
    }
    .header__navBtn a{
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
    }
    .header__navBtn a:before{
        content: "";
        background-color: #fff;
        width: 100%;
        height: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 0;
        transition: height .3s ease-in-out;
    }
    .header__navBtn a.is-active:before{
        transition-delay: .2s;
        height: 100%;
    }
    .header__navBtn__lineWrap{
        width: 24px;
        height: 13px;
        margin: auto;
        position: absolute;
        top: 13px;
        right: 0;
        left: 0;
        z-index: 1;
    }
    .header__navBtn--close{
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        right: 0;
        transition: all .3s ease-in-out;
    }
    .header__navBtn--close:nth-child(4){
        transform: rotate(-45deg);
        top: 7px;
    }
    .header__navBtn--close:nth-child(5){
        transform: rotate(45deg);
        bottom: 5px;
    }
    .header__navBtn--close:nth-child(4):before,
    .header__navBtn--close:nth-child(5):before{
        content: "";
        background-color: #000;
        width: 0;
        height: 100%;
        position: absolute;
        top: 0;
        transition: all .3s ease-in-out;
    }
    .header__navBtn--close:nth-child(4):before{
        right: 0;
    }
    .header__navBtn--close:nth-child(5):before{
        left: 0;
    }
    .header__navBtn a.is-active .header__navBtn--close:nth-child(4):before,
    .header__navBtn a.is-active .header__navBtn--close:nth-child(5):before{
        transition-delay: .3s;
        width: 100%;
    }
    .header__navBtn--line{
        background-color: #fff;
        display: block;
        height: 1px;
        position: absolute;
        left: 0;
        transition: all .3s ease-in-out;
    }
    .header__navBtn--line:nth-child(1){
        width: 100%;
        top: 0;
    }
    .header__navBtn--line:nth-child(2){
        width: 75%;
        top: 6px;
    }
    .header__navBtn--line:nth-child(3){
        width: 50%;
        bottom: 0;
    }
    .header__navBtn a.is-active .header__navBtn--line{
        width: 0;
    }
    .header__navBtn a.is-active .header__navBtn--line:nth-child(1){
        transition-delay: .2s;
    }
    .header__navBtn a.is-active .header__navBtn--line:nth-child(2){
        transition-delay: .1s;
    }
    .header__navBtn--text{
        color: #fff;
        font-size: 11px;
        font-size: 1.1rem;
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%) scale(.8);
        z-index: 1;
        transition: all .3s ease-in-out;
    }
    .header__navBtn--text:before{
        content: "MENU";
    }
    .header__navBtn a.is-active .header__navBtn--text:before{
        content: "CLOSE";
        color: #000;
    }
}
/* keyframes */
@keyframes gradient{
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 51%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/*-----------------------------------------------
 * 04. Scroll
-------------------------------------------------*/
.scbtn{
    width: 80px;
}
.scbtn a{
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}
.scbtn a span.scbtn__text{
    display: flex;
    align-items: center;
    font-size: 12px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
}
.scbtn a span.scbtn__line{
    background-color: rgba(255,255,255,.2);
    display: block;
    width: 1px;
    height: 160px;
    overflow: hidden;
    position: relative;
}
.scbtn a span.scbtn__line:before{
    content: "";
    background-color: rgba(255,255,255,1);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.scbtn a span:nth-child(1){
    margin-bottom: 24px;
}
@media screen and (max-width:768px){
    .scbtn{
        width: 50px;
    }
    .scbtn a span.scbtn__text{
        font-size: 10px;
        font-size: 1rem;
    }
    .scbtn a span.scbtn__line{
        height: 80px;
    }
    .scbtn a span:nth-child(1){
        margin-bottom: 12px;
    }
}
/*-----------------------------------------------
 * 05. Footer
-------------------------------------------------*/
.footer{
    width: 100%;
    height: 100vh;
    margin-top: auto;
}
@media screen and (max-width:768px){
    .footer{
        height: auto;
    }
}
/**
 * footer__inWrap
 */
.footer__inWrap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
.footer__in{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 150px 0;
    position: relative;
    z-index: 1;
}
@media screen and (max-width:768px){
    .footer__inWrap{
        display: block;
        padding: 160px 0;
    }
    .footer__in{
        margin: 0;
    }
}
/* background */
.footer__bgWrap{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.footer__bgWrap:before{
    content: "";
    background-image: url(../img/common/dot_cover.png);
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.footer__bgWrap:after{
    content: "";
    background-color: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.footer__bgWrap iframe{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
/* logo , hash */
.footer__logo{
    width: 440px;
}
.footer__logo img,
.footer__hash img{
    width: 100%;
}
.footer__hash{
    width: 150px;
    margin-top: 40px;
}

.footer__youtube{
    display: flex;
    align-items: center;
    height: 100%;
    margin-top: 40px;
}
.footer__youtube a{
    background-image: url(../img/common/icon_youtube.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    display: block;
    width: 64px;
    height: 46px;
}

@media screen and (max-width:768px){
    .footer__logo{
        width: 220px;
    }
    .footer__hash{
        width: 100px;
        margin-top: 20px;
    }
}
/**
 * share
 */
.footer__shareWrap{
    margin-top: 40px;
}
.footer__shareWrap dt{
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    white-space: nowrap;
}
.footer__shareWrap .shareLists{
    display: flex;
    justify-content: center;
}
@media screen and (max-width:768px){
    .footer__shareWrap{
        margin-top: 40px;
    }
    .footer__shareWrap dt{
        font-size: 12px;
        font-size: 1.2rem;
    }
}
/* list item */
.footer__shareWrap .shareLists__item{
    width: 40px;
    height: 40px;
    margin: 0 12px;
}
.footer__shareWrap .shareLists__item a{
    background-repeat: no-repeat;
    background-position: center; 
    background-size: 24px;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.footer__shareWrap .shareLists__item a.shareLists__link--tw{
    background-image: url(../img/common/icon_twitter.svg);
}
.footer__shareWrap .shareLists__item a.shareLists__link--fb{
    background-image: url(../img/common/icon_facebook.svg);
}
.footer__shareWrap .shareLists__item a.shareLists__link--line{
    background-image: url(../img/common/icon_line.svg);
}
@media screen and (max-width:768px){
    .footer__shareWrap .shareLists__item{
        width: 36px;
        height: 36px;
        margin: 0 6px;
    }
}
/* scroll */
.footer--scbtn{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.footer--scbtn a span.scbtn__line:before{
    animation: scrollUp 1.7s ease-in-out infinite;
}
@keyframes scrollUp{ 
    0%   { top: 100%; }
    100% { top: -100%; } 
}
/* bottom text */
.footer__bottomText{
    color: #888;
    font-size: 12px;
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 1;
}
.footer__bottomText a{
    color: #bc6ef4;
}
@media screen and (max-width:768px){
    .footer__bottomText{
        font-size: 10px;
        font-size: 1rem;
        margin-top: 40px;
        position: relative;
        right: auto;
        bottom: auto;
        text-align: center;
    }
}
/* copyright */
.footer__copyRight{
    color: #888;
    font-size: 12px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 1;
}
@media screen and (max-width:768px){
    .footer__copyRight{
        display: block;
        font-size: 10px;
        font-size: 1rem;
        margin-top: 20px;
        position: relative;
        left: auto;
        bottom: auto;
        text-align: center;
    }
}
/*-----------------------------------------------
 * 06. Cursor
-------------------------------------------------*/
.cursor{
    width: 64px;
    height: 64px;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
@media screen and (max-width:768px){
    .cursor{
        display: none;
    }
}
/* play icon */
.cursor__play{
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    width: 64px;
    height: 64px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .1s ease-in-out;
}
.cursor.on-movieLink .cursor__play{
    opacity: 1;
}
.cursor__play svg{
    margin-top: -1px;
    margin-left: -1px;
    transform: rotate(-90deg);
}
.cursor__play svg circle{
    fill: transparent;
    stroke: #fff;
    stroke-width: 2;
    animation: pCircle-out .8s forwards;
}
.cursor.on-movieLink .cursor__play svg circle{
    animation: pCircle .8s forwards;
}

/* chara icon */
.cursor__chara{
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    width: 64px;
    height: 64px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .1s ease-in-out;
}
.cursor.on-charaLink .cursor__chara{
    opacity: 1;
}
.cursor__chara svg{
    margin-top: -1px;
    margin-left: -1px;
    transform: rotate(-90deg);
}
.cursor__chara svg circle{
    fill: transparent;
    stroke: #fff;
    stroke-width: 1;
    animation: pCircle-out .8s ease;
}
.cursor.on-charaLink .cursor__chara svg circle{
    animation: pCircle .8s ease;
}
.cursor_left{
    position: absolute;
    width: 16px;
    height: 31px;
    top: calc(50% - 15.5px);
    left: -48px;
    background: url(../img/common/cursor_left.svg) no-repeat center center / contain;
}
.cursor_right{
    position: absolute;
    width: 16px;
    height: 31px;
    top: calc(50% - 15.5px);
    right: -48px;
    background: url(../img/common/cursor_right.svg) no-repeat center center / contain;
}

@keyframes pCircle {
    0% {
        stroke-dasharray: 0 201; /*-- 円の直径(64)x3.14 --*/
    }
    26% {
        stroke-dasharray: 0 201;
    }
    100% {
        stroke-dasharray: 201 201;
    }
}
@keyframes pCircle-out {
    0% {
        stroke-dasharray: 201 201; /*-- 円の直径(64)x3.14 --*/
    }
    26% {
        stroke-dasharray: 201 201;
    }
    100% {
        stroke-dasharray: 0 201;
    }
}
.cursor__play--text{
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: flash .001s ease-in-out infinite alternate;
}
/*-----------------------------------------------
 * 07. Canvas
-------------------------------------------------*/
#canvasWrap{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}
#canvasBg{
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}