@charset "utf-8";
/*===================================================
    color
====================================================*/
:root {
    --main: #44BCC2;
    --fc: #7EC9BE;
    --bg: #D8E8E5;
    --slideBg: #F6FBFC;
    --white: #fff;
    --dot: #F5F5F5;
    --gray: #9d9d9d;
    --yellow: #FFFFC7;
    --commonFont: "futura-pt", "Noto Sans JP", sans-serif;;
} 



/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--main);
    z-index: 9999;
}

.action.act01 img,
.action.act02 img {
    opacity: 0;
}
.loaded .action.act01 img {
    animation: moveAnim 0.3s ease 1.25s 1 forwards;
    -webkit-animation: moveAnim 0.3s ease 1.25s 1 forwards;
    right: 0;
    transition-delay: 1.25s;
}
.loaded .action.act02 img {
    animation: moveAnim 0.3s ease 1.75s 1 forwards;
    -webkit-animation: moveAnim 0.3s ease 1.75s 1 forwards;
    right: 0;
    transition-delay: 1.75s;
}
@keyframes moveAnim {
	0% {
		opacity: 0;
		transform: scale(0.8);
		-webkit-transform: scale(0.8);	
    }
	50% {
		transform: scale(1.15);
		-webkit-transform: scale(1.15);
    }
	100% {
		opacity: 1;
		transform: scale(1);
		-webkit-transform: scale(1);
	}	
}

.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);
}

.mainWrap .anim.delayTxt p {
    opacity: 0;
    transition: all 1s ease-out;
}
.mainWrap .anim.delayTxt.on p {
    opacity: 1;
}
.mainWrap .anim.delayTxt.on p:nth-child(1) {transition-delay: 0.25s;}
.mainWrap .anim.delayTxt.on p:nth-child(2) {transition-delay: 0.5s;}
.mainWrap .anim.delayTxt.on p:nth-child(3) {transition-delay: 0.75s;}
.mainWrap .anim.delayTxt.on p:nth-child(4) {transition-delay: 1s;}

@media screen and (max-width: 960px){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    overflow: hidden;
    background: var(--bg);
}
.bgBox .bg {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {
    z-index: 1;
    background-image: radial-gradient(circle, var(--dot) 3px, transparent 3px), radial-gradient(circle, var(--dot) 3px, transparent 3px);
    background-position: 0 0, 10px 20px;
    background-size: 20px 40px;
}
.bgBox .slideBox {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.slideBox .slide {
	pointer-events: none;
	overflow: hidden;
    width: 180px;
    height: 100%;
    background-repeat: repeat-y;
    background-size: 180px auto;
    position: absolute;
    opacity: 0.2;
}
.slideBox .slide01 {
    background-image: url(/static/notequalme/official/feature/fanName/image/ph_slide_01_0b6y2M6w.png);
    animation: slide01 10s linear infinite;
    left: 0;
}
.slideBox .slide02 {
    background-image: url(/static/notequalme/official/feature/fanName/image/ph_slide_02_0b6y2M6w.png);
    animation: slide02 10s linear infinite;
    right: 0;
}
@keyframes slide01 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -540px;
    }
}
@keyframes slide02 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 540px;
    }
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	.bgBox {}
	.bgBox .bg {}
    .bgBox .bg01 {
        background-image: radial-gradient(circle, var(--white) 2px, transparent 2px), radial-gradient(circle, var(--white) 2px, transparent 2px);
        background-position: 0 0, 8px 16px;
        background-size: 16px 32px;
    }
    .slideBox .slide {
        width: 100%;
        height: 80px;
        background-repeat: repeat-x;
        background-size: auto 80px;
    }
    .slideBox .slide01 {
        background-image: url(/static/notequalme/official/feature/fanName/image/ph_slide_sp_0b6y2M6w.png);
        animation: slideSp01 10s linear infinite;
        left: initial;
        top: 0;
    }
    .slideBox .slide02 {
        background-image: url(/static/notequalme/official/feature/fanName/image/ph_slide_sp_0b6y2M6w.png);
        animation: slideSp02 10s linear infinite;
        right: initial;
        bottom: 0;
    }
    @keyframes slideSp01 {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: -240px 0;
        }
    }
    @keyframes slideSp02 {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 240px 0;
        }
    }

}



/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: var(--commonFont);
	font-size: 16px;
    color: var(--main);
    line-height: 1.5;
    overflow: hidden;
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
}

section {
	margin: 0 auto 160px;
    width: 90%;
    max-width: 1200px;
}

section h3 {
    position: relative;
    font-size: 88px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin: 0 0 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
section h3.ja {
    font-size: 64px;
}
section h3 span {
    width: 75px;
}
section h3 span:nth-child(1) {
    margin-right: 10px;
}
section h3 span:nth-child(2) {
    margin-left: 10px;
}

section .inBox {
    position: relative;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--main);
    box-shadow: 5px 5px var(--white);
    color: var(--white);
}
section .inBox:last-child {
    margin-bottom: 0;
}

section .inBox .btn a {
	display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    color: var(--white);
    background: var(--accent);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
}
section .inBox .btn.fin a {
	background: var(--gray);
    pointer-events: none;
}

.note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

.soon {
    text-align: center;
    padding: 60px 0;;
}

.floatBox {
    z-index: 100;
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: all 0.5s ease;
    width: 25%;
    max-width: 150px;
}
.floatBox.bottomStop {
    bottom: 160px;
}
.floatBox a {}
.floatBox a p {}
.floatBox a p img {}

.floatBox.floatBox01 {}
.floatBox.floatBox01 a {}
.floatBox.floatBox01 a p {}
.floatBox.floatBox01 a p img {}

.floatBox.floatBox02 {}
.floatBox.floatBox02 a {}
.floatBox.floatBox02 a p {}
.floatBox.floatBox02 a p img {}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	section .inBox .btn a:hover {
		color: var(--accent);
	    background: var(--white);
	}

    .floatBox a p img {
        transition: all 0.3s ease-out;
    }
    .floatBox a:hover p img {
        opacity: 0.7;
    }
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: 45px;
	}

    .mainWrap {
        font-size: 14px;
    }


	section {
	    margin: 0 auto 90px;
	    width: calc(100% - 50px);
	}

    section .frameBox {}

	section h3 {
        font-size: 36px;
        margin: 0 0 20px;
	}
    section h3.ja {
        font-size: 26px;
    }
    section h3 span {
        width: 35px;
    }
    section h3 span:nth-child(1) {
        margin-right: 7px;
    }
    section h3 span:nth-child(2) {
        margin-left: 7px;
    }

	section .inBox {
	    padding: 20px;
        border: 1px solid var(--main);
        margin-bottom: 20px;
	}

    section .inBox .btn a {
        width: 90%;
    }

    .note {
        font-size: 12px;
    }

    .soon {
        padding: 30px 0;
    }

    .floatBox {
        right: 20px;
        bottom: 20px;
    }
    .floatBox.bottomStop {
        bottom: 90px;
    }
    .floatBox a {}
    .floatBox a p {}
    .floatBox a p img {}

    .floatBox.floatBox01 {}
    .floatBox.floatBox01 a {}
    .floatBox.floatBox01 a p {}
    .floatBox.floatBox01 a p img {}

    .floatBox.floatBox02 {}
    .floatBox.floatBox02 a {}
    .floatBox.floatBox02 a p {}
    .floatBox.floatBox02 a p img {}

}


/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 650px;
    margin: 0 0 160px;
}

#heroView .heroInner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 60%;
    max-width: 750px;
}
#heroView .heroInner .mainTit {
    width: 80%;
    margin: 0 auto 5%;
}
#heroView .heroInner .mainTxt {}

#heroView .topTxt01 {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
}

#heroView .topTxt02 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    max-width: 600px;
    width: 50%;
}

.scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
.scrollBox .scrollArrow {
    position: absolute;
    left: 30px;
    bottom: 30px;
}
.scrollBox .scrollArrow .txt {
    font-weight: bold;
    line-height: 1;
    writing-mode: vertical-rl;
    padding: 0 0 10px 0;
}
.scrollBox .scrollArrow span {
    display: block;
    z-index: 1;
    width: 1px;
    height: 60px;
    background: var(--main);
    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 .snsList{
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}
#heroView .snsList li {
    margin-bottom: 10px;
}
#heroView .snsList li:last-child {
    margin-bottom: 0;
}
#heroView .snsList li a {
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 1;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#heroView .snsList li a i {
    padding-bottom: 1px;
}

#heroView .heroBg {
    position: absolute;
    width: 500%;
    height: 120%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    background: var(--slideBg);
    z-index: -1;
}

@media screen and (min-width: 961px){

    #heroView .topTxt01 a img {
        transition: all 0.5s ease;
    }
    #heroView .topTxt01 a:hover img {
        opacity: 0.7;
    }

    #heroView .snsList li a:hover {
        background-color: var(--white);
        color: var(--main);    
    }

}

@media screen and (max-width: 960px){

	#heroView {
	    min-height: 450px;
	    margin: 0 0 90px;
	}

    #heroView .heroInner {
        width: 75%;
        max-width: 450px;
    }
    #heroView .heroInner .mainTit {}
    #heroView .heroInner .mainTxt {}

    #heroView .topTxt01 {
        top: 20px;
        left: 20px;
        width: 90px;
    }

    #heroView .topTxt02 {
        bottom: 20px;
        right: 20px;
        max-width: 600px;
        width: calc(100% - 60px);
    }
			
	#heroView .scrollBox .scrollArrow {
        left: 20px;
        bottom: 20px;
	}

    #heroView .snsWrap {
        bottom: 20px;
        right: 25px;
	}
    #heroView .snsWrap .menuTit {
        font-size: 18px;
    }
    #heroView .snsWrap .menu .menuList li a {
        font-size: 18px;
    }

    #heroView .snsList {
        right: 20px;
        top: 20px;
        transform: initial;
    }
    #heroView .snsList li {}
    #heroView .snsList li:last-child {}
    #heroView .snsList li a {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }
    #heroView .snsList li a i {}

    #heroView .heroBg {
        height: 85vh;
    }

}



/*===================================================
	intro
====================================================*/
#intro {}
#intro .inBox {
    padding: 60px 40px;
}

#intro .inBox .txtBox {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#intro .inBox .txtBox p {
    margin-bottom: 20px;
}
#intro .inBox .txtBox p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #intro {}
    #intro .inBox {
        padding: 20px;
    }

    #intro .inBox .txtBox {
        font-size: 16px;
    }
    #intro .inBox .txtBox p {
        margin-bottom: 10px;
    }
    #intro .inBox .txtBox p:last-child {}

}



/*===================================================
	story
====================================================*/
#story {}
#story h3 {}
#story .inBox {}

#story .inBox .boxTit {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
#story .inBox .boxTit .mun {
    width: 80px;
    margin: 0 20px 0 0;
}
#story .inBox .boxTit .tit {
    font-size: 32px;
    font-weight: bold;
}

#story .inBox .boxTxt {
    margin-bottom: 30px;
}
#story .inBox .boxTxt:last-child {
    margin-bottom: 0;
}
#story .inBox .boxTxt p {
    margin-bottom: 5px;
}
#story .inBox .boxTxt p:last-child {
    margin-bottom: 0;
}

#story .inBox .mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#story .inBox .mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

#story .inBox .recruitBox {
    background: var(--white);
    color: var(--main);
    padding: 40px;
    margin: 0 0 30px;
}
#story .inBox .recruitBox:last-child {
    margin-bottom: 0;
}
#story .inBox .recruitBox .recruitTit {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 20px;
}
#story .inBox .recruitBox .recruitTit.fin {
    margin: 0;
    padding: 20px 0;
}
#story .inBox .recruitBox .recruitTxt {
    text-align: center;
    margin: 0px 0 10px;
    font-weight: bold;
}
#story .inBox .recruitBox .btn.recruitBtn {}
#story .inBox .recruitBox .btn.recruitBtn a {
    background: var(--main);
    border: 1px solid var(--main);
}
#story .inBox .recruitBox .btn.recruitBtn.grayBtn {}
#story .inBox .recruitBox .btn.recruitBtn.grayBtn a {
    background: var(--gray);
    pointer-events: none;
}
#story .inBox .recruitBox .btnNote {
    font-size: 14px;
    text-align: center;
    padding: 20px 0 30px;
}
#story .inBox .recruitBox .btnNote a {
    text-decoration: underline;
}

#story .inBox .noteBox {}
#story .inBox .noteBox .noteTit {
    display: inline-block;
    background: var(--white);
    color: var(--main);
    font-weight: bold;
    padding: 3px 15px;
    margin: 0 0 10px;
}
#story .inBox .noteBox .noteList {}
#story .inBox .noteBox .noteList li {
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 5px;
    font-size: 14px;
}
#story .inBox .noteBox .noteList li:last-child {
    margin-bottom: 0;
}

#story .inBox .recruitBox .btn.fcBtn a {
    border: 1px solid var(--main);
    color: var(--main);
    max-width: 200px;
    padding: 10px;
    font-size: 14px;
}

@media screen and (min-width: 961px) {

    #story .inBox .recruitBox .btn.recruitBtn a:hover {
        background: var(--white);
    }

    #story .inBox .recruitBox .btnNote a:hover {
        opacity: 0.7;
    }

    #story .inBox .recruitBox .btn.fcBtn a:hover {
        background: var(--main);
        color: var(--white);
    }

}

@media screen and (max-width: 960px) {

    #story {}
    #story .frameBox {}
    #story h3 {}
    #story .inBox {}

    #story .inBox .boxTit {
        margin-bottom: 15px;
    }
    #story .inBox .boxTit .mun {
        width: 45px;
        margin: 0px 10px 0 0;
    }
    #story .inBox .boxTit .tit {
        font-size: 18px;
        width: calc(100% - 55px);
    }

    #story .inBox .boxTxt {
        margin-bottom: 15px;
    }
    #story .inBox .boxTxt p {}
    #story .inBox .boxTxt p:last-child {}

    #story .inBox .mov {}
    #story .inBox .mov iframe {}

    #story .inBox .recruitBox {
        margin: 0 0 20px;
        padding: 30px 20px;
    }
    #story .inBox .recruitBox .recruitTit {
        font-size: 16px;
        margin: 0 0 15px;
    }
    #story .inBox .recruitBox .recruitTit.fin {}
    #story .inBox .recruitBox .recruitTxt {}
    #story .inBox .recruitBox .btn.recruitBtn {}
    #story .inBox .recruitBox .btn.recruitBtn a {}
    #story .inBox .recruitBox .btn.recruitBtn.grayBtn {}
    #story .inBox .recruitBox .btn.recruitBtn.grayBtn a {
        padding: 15px;
    }
    #story .inBox .recruitBox .btnNote {
        font-size: 12px;
    }
    #story .inBox .recruitBox .btnNote a {}

    #story .inBox .noteBox {}
    #story .inBox .noteBox .noteTit {}
    #story .inBox .noteBox .noteList {}
    #story .inBox .noteBox .noteList li {
        font-size: 12px;
    }
    #story .inBox .noteBox .noteList li:last-child {}

    #story .inBox .recruitBox .btn.fcBtn a {}

}



/*===================================================
	intro
====================================================*/
#about {
    margin: 0 auto 240px;
}
#about .frameBox {}
#about h3 {}
#about .inBox {}

#about .inBox .txtBox {
    margin-bottom: 20px;
}
#about .inBox .txtBox p {
    margin-bottom: 10px;
}
#about .inBox .txtBox p:last-child {
    margin-bottom: 0;
}

#about .inBox .snsList {
    display: flex;
    margin-bottom: 35px;
}
#about .inBox .snsList li {
    margin-right: 15px;
}
#about .inBox .snsList li:last-child {
    margin-right: 0;
}
#about .inBox .snsList li a {
    font-size: 20px;
}
#about .inBox .snsList li a i {}

#about .inBox .kv {
    margin: 0 auto 30px;
}

#about .inBox .btn.aboutBtn a {
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--main);
}


@media screen and (min-width: 961px) {

    #about .inBox .snsList li a:hover {
        color: var(--main);
    }

    #about .inBox .btn.aboutBtn a:hover {
        background-color: var(--main);
        color: var(--white);
    }

}

@media screen and (max-width: 960px) {

    #about {
        margin: 0 auto 160px;
    }
    #about .frameBox {}
    #about h3 {}
    #about .inBox {}

    #about .inBox .txtBox {
        margin-bottom: 10px;
    }
    #about .inBox .txtBox p {}
    #about .inBox .txtBox p:last-child {}

    #about .inBox .snsList {}
    #about .inBox .snsList li {}
    #about .inBox .snsList li:last-child {}
    #about .inBox .snsList li a {
        font-size: 16px;
    }
    #about .inBox .snsList li a i {}

    #about .inBox .kv {}

    #about .inBox .btn.aboutBtn a {}

}



/*===================================================
	footer
====================================================*/
footer {
    position: relative;
}
footer .inner {
    padding: 0 3%;
    position: relative;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .logo_official {
    width: 10vw;
}
footer .logo_yoani {
    width: 17vw;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 5px;
}
footer .copyright {
    display: block;
    font-size: 12px;
    text-align: right;
    color: #222;
}

@media screen and (min-width: 961px){

    footer {
        padding: 0 0 30px;
        height: auto !important;
        position: relative;
        color: #222;
    }
    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% 30px;
    }
    footer .inner {
        padding: 0;
    }
    footer .inner .logo_official {
        width: 90px;
        margin: 0;
    }
    footer .inner .logo_yoani {
        width: 180px;
    }
    footer .copyright {
        font-size: 10px;
    }

}