@charset "utf-8";
/*===================================================
    color
====================================================*/
:root {
    --color-main: #FFDF6A;
    --color-sub: #FFF895;
    --color-white: #fff;
    --color-black: #000;
    --color-black-opc: #00000010;
    --color-gray: #bbbbbb;

    --font-common: "Roboto", "Noto Sans JP", sans-serif;
    --font-bnr: ab-kokikaku, sans-serif;
} 



/*===================================================
  anim
====================================================*/
.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-main);
    z-index: 9999;
    transition: .5s ease-out;
    pointer-events: none;
}
.loaded .loader {
    transition-delay: 1s;
    transform: translateX(-100%);
}

#heroView .heroInner .mainLogo img {
    opacity: 0;
    transform: translateX(20px);
    transition: .5s ease-out;
}
.loaded #heroView .heroInner .mainLogo img {
    opacity: 1;
    transform: translateX(0px);
}
.loaded #heroView .heroInner .mainLogo img:nth-child(2) {transition-delay: 1.5s;}
.loaded #heroView .heroInner .mainLogo img:nth-child(3) {transition-delay: 1.75s;}
.loaded #heroView .heroInner .mainLogo img:nth-child(4) {transition-delay: 2s;}

#loop {
    opacity: 0;
    transition: .5s ease-out;
}
.loaded #loop {
    opacity: 1;
    transition-delay: 2.5s;
}

.mainWrap .anim.fadeX,
.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.mainWrap .anim.fadeX {
    transform: translateX(20px);
}
.mainWrap .anim.fadeY {
    transform: translateY(20px);
}
.mainWrap .anim.fadeX.on,
.mainWrap .anim.fadeY.on {
    opacity: 1;
}
.mainWrap .anim.fadeX.on {
    transform: translateX(0px);
}
.mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    inset: 0;
    min-height: 600px;
    background-color: var(--color-white);
    transform: translate3d(0, 0, -1px);
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}
.bgBox .bg01 {}

.artistIcon {
    position: absolute;
    z-index: 2;
    width: auto;
    height: 120vh;
    min-height: calc(600px * 1.20);
    aspect-ratio: 415 / 357;
    opacity: 0.1;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	.bgBox {
	    height: 100svh;
        min-height: 450px;
    }
	.bgBox .bg {}
    .bgBox .bg01 {}
    .artistIcon {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 140%;
        min-height: initial;
    }

    .artistIcon {
        position: absolute;
        z-index: 2;
        width: auto;
        height: 120vh;
        min-height: calc(600px * 1.20);
        aspect-ratio: 415 / 357;
        opacity: 0.1;
    }

}



/*===================================================
	all
====================================================*/
html {
    background: var(--color-white);
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: var(--font-common);
	font-size: 16px;
    color: var(--color-black);
    line-height: 1.5;
    overflow: clip;
}
.mainWrap img {
	display: block;
}

.floatBtn {
    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 30px;
}
.floatBtn a {
    text-align: center;
    font-weight: bold;
    border-radius: 100vmax;
    background: var(--color-black);
    aspect-ratio: 1 / 1;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floatBtn a img {
    width: 70%;
}

.container {
    position: relative;
    z-index: 2;
    padding: 20vw 0 0;
}
.container:before,
.container:after {
    content: '';
    position: absolute;
    z-index: -1;
    display: block;
    width: 100%;
    background: var(--color-main);
}
.container:before {
    height: 100%;
    inset: 0;
    transform: skewY(-15deg); 
    will-change: transform;
}
.container:after {
    height: 50%;
    left: 0;
    bottom: 0;
}

section {
	margin: 0 auto;
    padding: 0 0 160px;
    width: 90%;
    max-width: 1200px;
}
section:last-of-type {
    padding: 0 0 240px;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a, img, i {
		transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
    }

    .floatBtn a:hover {
        opacity: 0.7;
    }
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: 30px;
	}

    .mainWrap {
        font-size: 14px;
    }

    .floatBtn {
        right: 20px;
        bottom: 20px;
    }
    .floatBtn a {
        width: 95px;
    }
    .floatBtn a img {}

    .container {
        padding: 30vw 0 0;
    }

	section {
        padding: 0 0 80px;
	}
    section:last-of-type {
        padding: 0 0 120px;
    }

}


/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroView .heroInner {
    position: absolute;
    width: auto;
    max-width: 70%;
    height: 55svh;
    min-height: 330px;
    aspect-ratio: 1131 / 740;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 34px 0 0;
}
#heroView .heroInner .mainLogo {}
#heroView .heroInner .mainLogo img {
    position: absolute;
    top: 0;
    left: 0;
}
#heroView .heroInner .mainLogo img:first-child {
    position: inherit;
    opacity: 0 !important;
}

#loop {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    pointer-events: none;
}
#loop .loopBox {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: var(--color-black);
    padding: 20px 0;
}
#loop .loopBox p {
    font-family: var(--font-bnr);
    color: var(--color-main);
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
    will-change: transform;
    display: flex;
    white-space: nowrap;
    gap: 40px;
}
#loop .loopBox p span {
  flex-shrink: 0;
}

#heroView .scrollBox {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100svh;
    inset: 0;
    pointer-events: none;
}
#heroView .scrollBox .scrollArrow {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
#heroView .scrollBox .scrollArrow .txt {
    line-height: 0;
    writing-mode: vertical-rl;
    padding: 0 0 10px 0;
    font-weight: bold;
}
#heroView .scrollBox .scrollArrow span {
    z-index: 1;
    display: block;
    width: 1px;
    height: 60px;
    background: var(--color-black);
    animation: scrollArrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollArrow{
    0% {clip-path: inset(0 0 100% 0);}
    25% {clip-path: inset(0 0 0 0);}
    75% {clip-path: inset(0 0 0 0);}
    100% {clip-path: inset(100% 0 0 0);}
}

#heroView .countBox {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: var(--color-main);
    text-align: center;
    width: 110px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
}
#heroView .countBox .subTxt {
    font-size: 14px;
}
#heroView .countBox .count {
    font-size: 24px;
    line-height: 1;
}
#heroView .countBox .count .day {
    font-size: 200%;
    font-weight: 800;
}
#heroView .countBox .border {
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 2px solid var(--color-white);
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	#heroView {
	    min-height: 450px;
	}
			
	#heroView .heroInner {
        width: 80%;
        max-width: 450px;
        height: auto;
        min-height: initial;
        margin: 0;
    }

    #loop {}
    #loop .loopBox {}
    #loop .loopBox p {
        font-size: 20px;
        gap: 20px;
    }

    #heroView .scrollBox .scrollArrow {
        top: initial;
        bottom: 135px;
        left: 20px;
        transform: translateY(0%);
    }
    #heroView .scrollBox .scrollArrow .txt {
        display: none;    
    }

    #heroView .countBox {
        left: 20px;
        bottom: 20px;
        width: 95px;
    }
    #heroView .countBox .subTxt {
        font-size: 12px;
    }
    #heroView .countBox .count {
        font-size: 20px;
    }
    #heroView .countBox .count .day {}
    #heroView .countBox .border {}

}


/*===================================================
	lead
====================================================*/
#lead {}

#lead .txtWrap {
    padding: 40px;
    background: var(--color-white);
    font-weight: bold;
    box-shadow: 10px 10px var(--color-black-opc);
    margin: 0 0 70px;
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 20px;
}
#lead .txtWrap .photo {
    width: 25%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    overflow: hidden;
    border-radius: 100vmax;
}
#lead .txtWrap .photo a {}
#lead .txtWrap .photo a img {}
#lead .txtWrap .txtBox {
    width: 75%;
}
#lead .txtWrap .txtBox p {
    margin-bottom: 10px;
}
#lead .txtWrap .txtBox p:first-of-type {
    font-size: 28px;
    margin-bottom: 20px;
}
#lead .txtWrap .txtBox p:last-child {
    margin-bottom: 0;
}

#lead .snsList {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
#lead .snsList li {}
#lead .snsList li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--color-black);
    width: 45px;
    aspect-ratio: 1 / 1;
    border-radius: 100vmax;
    color: var(--color-white);
}

@media screen and (min-width: 961px){
    
    #lead .txtWrap .photo a:hover,
    #lead .snsList li a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #lead {}

    #lead .txtWrap {
        padding: 20px;
        font-size: 16px;
        box-shadow: 5px 5px var(--color-black-opc);
        margin: 0 0 40px;
        flex-direction: column;
        gap: 20px;
    }
    #lead .txtWrap .photo {
        max-width: 300px;
        width: 75%;
    }
    #lead .txtWrap .photo a {}
    #lead .txtWrap .photo a img {}
    #lead .txtWrap .txtBox {
        width: 100%;
    }
    #lead .txtWrap .txtBox p {}
    #lead .txtWrap .txtBox p:first-of-type {
        font-size: 20px;
        margin-bottom: 15px;
    }
    #lead .txtWrap .txtBox p:last-child {}

    #lead .snsList {
        gap: 15px;
    }
    #lead .snsList li {}
    #lead .snsList li a {
        font-size: 18px;
    }

}



/*===================================================
	fanclub
====================================================*/
#fanclub {}

#fanclub h3 {
    display: inline-block;
    color: var(--color-white);
    background: var(--color-black);
    padding: 15px 30px;
    font-weight: bold;
    font-size: 32px;
    margin: 0 0 60px;
}

#fanclub .fcBox {
    background: var(--color-white);
    margin-bottom: 40px;
    border-top: 20px solid var(--color-sub);
    box-shadow: 10px 10px var(--color-black-opc);
}
#fanclub .fcBox:last-of-type {
    margin-bottom: 60px;
}
#fanclub .fcBox .fcBoxTit {
    position: relative;
    margin-top: -1px;
    display: inline-block;
    background: var(--color-sub);
    padding: 0 40px 10px;
    font-weight: bold;
    font-size: 20px;

}
#fanclub .fcBox .fcBoxTit:after {
    position: absolute;
    display: block;
    content: "";
    background: var(--color-sub);
    height: 100%;
    width: 21px;
    top: 0;
    left: calc(100% - 1px);
    clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 100% 0%);
}
#fanclub .fcBox .fcBoxTit span {
    margin: 0 10px 0 0;
}
#fanclub .fcBox .inBox {
    padding: 40px;
}
#fanclub .fcBox .inBox .txtBox {
    margin-bottom: 40px;
}
#fanclub .fcBox .inBox .txtBox p {
    margin-bottom: 10px;
}
#fanclub .fcBox .inBox .txtBox p.note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin-bottom: 5px;
}
#fanclub .fcBox .inBox .txtBox p:last-child {
    margin-bottom: 0;
}

#fanclub .btn a {
    display: block;
    border-radius: 100vmax;
    padding: 22px;
    font-weight: bold;
    width: 90%;
    max-width: 300px;
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    margin: 0 auto;
}
#fanclub .btn.soon a {
    background: var(--color-gray);
    pointer-events: none;
}
#fanclub .fcBtn a {}
#fanclub .joinBtn a {
    padding: 15px;
}

@media screen and (min-width: 961px){

    #fanclub .btn a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #fanclub {}

    #fanclub h3 {
        font-size: 20px;
        padding: 10px 20px;
        margin: 0 0 30px;
    }

    #fanclub .fcBox {
        margin-bottom: 20px;
        border-top: 15px solid var(--color-sub);
        box-shadow: 5px 5px var(--color-black-opc);
    }
    #fanclub .fcBox:last-of-type {
        margin-bottom: 30px;
    }
    #fanclub .fcBox .fcBoxTit {
        padding: 0 20px 10px;
        font-size: 16px;
    }
    #fanclub .fcBox .fcBoxTit span {
        margin: 0 5px 0 0;
    }
    #fanclub .fcBox .inBox {
        padding: 20px;
    }
    #fanclub .fcBox .inBox .txtBox {
        margin-bottom: 20px;
    }
    #fanclub .fcBox .inBox .txtBox p {
        margin-bottom: 5px;
    }
    #fanclub .fcBox .inBox .txtBox p.note {
        font-size: 12px;
    }
    #fanclub .fcBox .inBox .txtBox p:last-child {}

    #fanclub .btn a {
        padding: 20px;
    }
    #fanclub .fcBtn {}
    #fanclub .fcBtn a {}
    #fanclub .joinBtn {}
    #fanclub .joinBtn a {}

}



/*===================================================
	footer
====================================================*/
footer {
    position: relative;
    z-index: 2;
    background: var(--color-main);
}

footer .inner {
    padding: 0 60px 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo_official {}
footer .logo_official svg {
    fill: var(--black);
    width: 150px;
    display: block;
}

footer .logo_yoani {
    width: 250px;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 10px;
}

footer .copyright {
    display: block;
    font-size: 10px;
    text-align: right;
    color: var(--black);
}

footer .note {
    padding: 0 5% 120px;
    text-align: center;
    font-size: 14px;
}

@media screen and (min-width: 961px){

    footer .logo_official a, footer .logo_yoani a {
        cursor: pointer;
    }

    footer .logo_official a:hover, footer .logo_yoani a:hover {
        opacity: 0.4;
    }
	
}

@media screen and (max-width: 960px){

    footer {
	    padding: 0 5%;
    }
    
    footer .inner {
    	padding: 0;
    }

    footer .inner .logo_official {
        margin: 0;
    }
    footer .logo_official svg {
        max-width: 125px;
    }

    footer .inner .logo_yoani {
        width: 45vw;
        max-width: 250px;
    }

    footer .copyright {
        font-size: 10px;
        zoom: 0.8;
    }
    
    footer .note {
        padding: 0 0 60px;
        text-align: left;
        font-size: 12px;
    }

}