@charset "utf-8";
/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: #0086CD;
    z-index: 9999;
}

.action {
    opacity:0;
    transition: .5s ease-out;
}
.loaded .action {
    opacity:1;
}
.action.act01 img {
    opacity: 0;
    transition: .5s ease-out;
    transform: translateY(-30px);
}
.action.act01.bgBottom img {
    transform: translateY(30px);
}
.loaded .action.act01 img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}
.action.act02 {}
.loaded .action.act02 {
    transition-delay: 1.5s;
}


.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
    transform: translateY(20px);
}
.mainWrap .anim.fadeY.on {
    opacity: 1;
    transform: translateY(0px);
}

@media screen and (max-width: 960px){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    min-height: 650px;
    transform: translate3d(0, 0, -1px);
    overflow: hidden;
    background: #0086CD;
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {}
.bgBox .bg01::before {
    background: url(/static/ligareaz/fanclub/feature/2ndAniv/image/ph_bgAnim_01_0a3u1e9N.png);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-size: 700px;
    opacity: 0.05;
    animation: bgAnim01 90s linear infinite;
    -webkit-animation: bgAnim01 90s linear infinite;
}
.bgBox .bg01::after {
    background: url(/static/ligareaz/fanclub/feature/2ndAniv/image/ph_bgAnim_02_0a3u1e9N.png);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-size: 700px;
    opacity: 0.05;
    animation: bgAnim02 90s linear infinite;
    -webkit-animation: bgAnim02 90s linear infinite;
}
@keyframes bgAnim01 {
	0% {background-position: 0 0;}
	100% {background-position: 1400px 0;}
}
@keyframes bgAnim02 {
	0% {background-position: 0 0;}
	100% {background-position: 1400px 0;}
}

@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px;
	    height: 100vh;
	}
	.bgBox .bg {
		height: 100vh;
	}
    .bgBox .bg01 {}
    .bgBox .bg01::before,
    .bgBox .bg01::after {
        background-size: 400px;
    }
    @keyframes bgAnim01 {
        0% {background-position: 0 0;}
        100% {background-position: 1200px 0;}
    }
    @keyframes bgAnim02 {
        0% {background-position: 0 0;}
        100% {background-position: 1200px 0;}
    }

}



/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 45px;
    height: 45px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9997;
    background: #FFF41F;
    border: 10px solid #FFF41F;
    padding: 10px;
    border-radius: 100px;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #0086CD;
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 20%;
}
.hamBtn :nth-of-type(2) {
    bottom: 20%;
}
.hamBtn.open span {}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamBtn.open span:nth-of-type(2) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}

.navigation {
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9996;
    position: fixed;
	transition: all 0.5s ease-out;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}

.navigation .headerNavBox {
    background: #0086CD;
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-direction: row;
}
.navigation .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    width: 320px;
    margin: 0 90px 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 25px;
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    font-family: "Kaisei Tokumin", serif;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
    }
    .hamBtn.scrolled {
        background: #d2b300;
        border: 10px solid #d2b300;
    }
    .hamBtn.scrolled span {
        background: #0A2745;
    }

	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}

    .navigation .headerNavBox {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .navigation .heroNavLogo {
        width: 50%;
        max-width: 225px;
        margin: 0px 0 45px;
    }
    .navigation .headerNav li {
        position: relative;
    }
    .navigation .headerNav li a {
        font-size: 24px;
        display: block;
        line-height: 1;
    }

    .navigation .snsWrap {
        color: #fff;
    }
    .navigation .snsWrap .menuList {
        display: flex;
    }
    .navigation .snsWrap .menuList li {
        margin: 0 20px 0 0;
    }
    .navigation .snsWrap .menuList li:last-child {
        margin: 0;
    }
    .navigation .snsWrap .menuList li a {
        font-size: 20px;
    }

}



/*===================================================
	ALL
====================================================*/
html {}

.mainWrap {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Kaisei Tokumin", serif;
    padding: 0 0 30px;
    color: #405060;
    overflow: clip;
}
.mainWrap img {
    display: block;
}

.container {
    position: relative;
    z-index: 2;
    background: #88d1f8;
    padding: 120px 0;
}

section {
    margin: 0 auto 160px;
}
.container section:last-child {
    margin: 0 auto;
}

.liveLogo {
    width: 70%;
    max-width: 450px;
    margin: 0 auto 195px;
}

section .inBox {
    position:relative;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 40px 40px;
    background: #fff;
    border: 2px solid #0086cd;
    border-radius: 40px;
    box-shadow: 5px 5px #40506020;
}
section .inBox h3 {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF41F;
    color: #0086cd;
    font-size: 56px;
    letter-spacing: 0.05em;
    font-weight: bold;
    display: inline-block;
    padding: 0 40px;
    height: 70px;
    line-height: 64px;
}
section .inBox h3:before, 
section .inBox h3:after {
    position: absolute;
    content: '';
    top: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-color: #FFF41F transparent;
}
section .inBox h3:before {
    left: -19px;
    border-width: 35px 0px 35px 20px;
}
section .inBox h3:after {
    right: -19px;
    border-width: 35px 20px 35px 0px
}

.containerBottom {
    position: relative;
    left: 0;
    top: -1px;
    width: 100%;
    min-width: 1600px;
    z-index: 1;
    margin-bottom: 160px;
}

.mainWrap .copy {
    text-align: center;
    font-size: 10px;
    color: #fff;
}

@media screen and (min-width:961px) {
    
    .sp {
        display: none;
    }

    a {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .liveLogo a img {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }
    .liveLogo a img:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width:960px) {
    
    .pc {
        display: none;
    }

    html {}

    .mainWrap {
        padding: 0 0 20px;
    }

    section {
        margin: 0 auto 85px;
    }
    .container section:last-child {}

    .container {
        padding: 60px 0;
    }

    .liveLogo {
        margin: 0 auto 85px;
    }

    section .inBox {
        padding: 45px 20px 20px;
        border-radius: 20px;
    }
    section .inBox h3 {
        top: -25px;
        font-size: 36px;
        height: 50px;
        line-height: 50px;
        padding: 0 25px;
	}
    section .inBox h3:before, 
    section .inBox h3:after {}
    section .inBox h3:before {
        left: -14px;
        border-width: 25px 0px 25px 15px;
    }
    section .inBox h3:after {
        right: -14px;
        border-width: 25px 15px 25px 0px;
    }

    .containerBottom {
        margin-bottom: 90px;
        min-width: 1200px;
    }

}



/*===================================================
    heroView
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 650px;
    z-index: 2;
    margin: 0;
    overflow: clip;
}

#heroView .heroInner {
    position: absolute;
    width: 25%;
    max-width: 400px;
    min-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
#heroView .heroInner .mainLogo {}

#heroView .artistLogo {
    position: absolute;
    width: 175px;
    top: 30px;
    left: 30px;
}

.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 {
    line-height: 1;
    writing-mode: vertical-rl;
    padding: 0 0 10px 0;
    color: #FFF41F;
    font-weight: bold;
}
.scrollBox .scrollArrow span {
    display: block;
    width: 1px;
    height: 60px;
    z-index: 1;
    background: #FFF41F;
    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 .snsWrap {
    position: absolute;
    bottom: 25px;
    right: 30px;
	color: #0086CD;
}
#heroView .snsWrap .menuList {
	display: flex;
}
#heroView .snsWrap .menuList li {
	margin: 0 20px 0 0;
}
#heroView .snsWrap .menuList li:last-child {
	margin: 0;
}
#heroView .snsWrap .menuList li a {
	font-size: 20px;
}
#heroView .snsWrap .menuList li a i {}

#heroView .bgItem {
    position: absolute;
    width: 100%;
    min-width: 1600px;
    z-index: -1;
}
#heroView .bgItem.bgTop {
    top: 0;
    left: 0;
}
#heroView .bgItem.bgBottom {
    bottom: 0;
    right: 0;
}

#heroView .circle {
    position: absolute;
    width: 3%;
    aspect-ratio: 1 / 1;
    background: #88d1f8;
    border-radius: 100px;
    max-width: 45px;
}
#heroView .circle.border {
    background: none;
    border: 2px solid #88d1f8;
}
#heroView .circle.circle01 {
    top: 30%;
    left: 15%;
    transform: translate(-15%, -30%);
    width: 2.5%;
}
#heroView .circle.circle02 {
    top: 50%;
    left: 25%;
    transform: translate(-25%, -50%);
    width: 2%;
}
#heroView .circle.circle03 {
    bottom: 30%;
    left: 5%;
    transform: translate(-5%, 30%);
}
#heroView .circle.circle04 {
    top: 25%;
    right: 15%;
    transform: translate(15%, -25%);
    width: 2.5%;
}
#heroView .circle.circle05 {
    top: 55%;
    right: 25%;
    transform: translate(25%, -55%);
    width: 2%;
}
#heroView .circle.circle06 {
    bottom: 30%;
    right: 5%;
    transform: translate(5%, 30%);
}

@media screen and (min-width: 961px){

    #heroView .artistLogo a img,
    #heroView .snsWrap .menuList li a i  {
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
    }
    #heroView .artistLogo a:hover img,
    #heroView .snsWrap .menuList li a:hover i {
        opacity: 0.7;
    }

    #heroView .heroInner h2 .sp {
        display: none;
    }
	
}

@media screen and (max-width: 960px){

	#heroView {
	    min-height: 450px;
	}

    #heroView .heroInner {
        max-width: 300px;
        min-width: initial;
        width: 70%;
    }
    #heroView .heroInner .mainLogo {}
    
    #heroView .artistLogo {
        width: 150px;
        top: 20px;
        left: 20px;
    }

    .scrollBox .scrollArrow {
        left: 20px;
        bottom: 20px;
    }
    
    #heroView .snsWrap {
        bottom: 15px;
        right: 20px;
    }
	
    #heroView .bgItem {
        min-width: 1200px;
    }
    #heroView .bgItem.bgTop {}
    #heroView .bgItem.bgBottom {
        min-width: 1400px;
    }

    #heroView .circle {}
    #heroView .circle.border {}
    #heroView .circle.circle01 {
        width: 20px;
        top: 20%;
        left: 15%;
        transform: translate(-15%, -20%);
    }
    #heroView .circle.circle02 {
        top: 24%;
        left: 55%;
        transform: translate(-55%, -24%);
        width: 15px;
    }
    #heroView .circle.circle03 {
        bottom: 17.5%;
        left: 20%;
        transform: translate(-20%, 17.5%);
        width: 20px;
    }
    #heroView .circle.circle04 {
        top: initial;
        bottom: 20%;
        right: initial;
        left: 45%;
        transform: translate(20%, -45%);
        width: 15px;
    }
    #heroView .circle.circle05 {
        top: 20%;
        right: 15%;
        transform: translate(15%, -20%);
        width: 15px;
    }
    #heroView .circle.circle06 {
        bottom: 20%;
        right: 10%;
        transform: translate(10%, 20%);
    }

}



/*===================================================
    NEWS
====================================================*/
#news {}
#news h3 {}
#news .inBox {}

#news .inBox .newsList {}
#news .inBox .newsList li {
    position: relative;
    border-bottom: 1px dashed #40506050;
}
#news .inBox .newsList li:first-child {
    border-top: 1px dashed #40506050;
}
#news .inBox .newsList li:last-child {}
#news .inBox .newsList li a {
    padding: 15px 20px;
    display: block;
}
#news .inBox .newsList li a .date {
    font-weight: bold;
    margin: 0 0 5px;
}
#news .inBox .newsList li a .date span {
    margin: 0 0 0 10px;
    font-size: 14px;
    color: #0086CD;
}
#news .inBox .newsList li a .tit {}
#news .inBox .newsList li a .tit span.link {
    text-decoration: underline;
}

#news .moreList {
    display: none;
}
#news .inBox .newsList.moreList  li:first-child {
    border-top: none;
}

#news .viewMore {
    display: block;
    width: 125px;
    border: 1px solid #405060;
    text-align: center;
    line-height: 1em;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    padding: 10px;
    margin: 40px auto 0;
    transition: 0.3s ease;
    cursor: pointer;
}
#news .viewMore.open {
    background: #405060;
    color: #fff;
}

@media screen and (min-width: 961px) {

    #news .inBox .newsList li a:hover {
        background: #FFF41F;
    }

    #news .viewMore:hover {
        background: #405060;
        color: #fff;
    }

}
        
@media screen and (max-width: 960px) {

    #news {}
    #news h3 {}
    #news .inBox {}

    #news .inBox .newsList {}
    #news .inBox .newsList li {}
    #news .inBox .newsList li:last-child {}
    #news .inBox .newsList li a  {
        padding: 15px 0;
        font-size: 14px;
    }
    #news .inBox .newsList li a .date {
        margin: 0 0 5px;
    }
    #news .inBox .newsList li a .date span {
        font-size: 12px;
    }
    #news .inBox .newsList li a .tit {}

    #news .viewMore {
        margin: 20px auto 0;
    }

}


/*===================================================
    SPECIAL
====================================================*/
#special {}
#special h3 {}
#special .inBox {
    color: #0086cd;
    text-align: center;
}

#special .inBox .specialTit {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(to bottom, transparent 70%, #fff41f 70% 60%);
    display: inline-block;
    margin: 0 0 20px;
}
#special .inBox .specialTxt {
    font-size: 18px;
    margin: 0 auto 40px
}
#special .inBox .specialTxt p {
    margin-bottom: 5px;
}
#special .inBox .specialTxt p:last-child {
    margin-bottom: 0;
}

#special .inBox .tanabataList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 30px;
}
#special .inBox .tanabataList li {
    width: calc(100% / 12 - 110px / 12);
    margin: 0 10px 10px 0;
}
#special .inBox .tanabataList li:last-child {}
#special .inBox .tanabataList li p {}
#special .inBox .tanabataList li p a {}
#special .inBox .tanabataList li p a img {}

#special .inBox .specialBtn {}
#special .inBox .specialBtn a {
    display: block;
    width: 90%;
    max-width: 300px;
    color: #0086cd;
    background: #fff41f;
    text-align: center;
    font-weight: 600;
    border-radius: 100px;
    padding: 20px;
    margin: 0 auto;
    transition: 0.3s ease;
    cursor: pointer;
}
#special .inBox .specialBtn.gray {}
#special .inBox .specialBtn.gray a {
    color: #6d6d6d;
    background: #c6c6c6;
    pointer-events: none;
}


@media screen and (min-width: 961px) {

    #special .inBox .tanabataList li:nth-child(12) {
        margin: 0 0 10px;
    }
    #special .inBox .tanabataList li p a img {
        transition: all 0.5s;
    }
    #special .inBox .tanabataList li p a:hover img {
        transform: scale(1.1);
    }

    #special .inBox .specialBtn a:hover {
        color: #fff41f;
        background: #0086cd;
    }

}
        
@media screen and (max-width: 960px) {

    #special {}
    #special h3 {}
    #special .inBox {}

    #special .inBox .specialTit {
        font-size: 20px;
        margin: 0 0 15px;
    }
    #special .inBox .specialTxt {
        font-size: 14px;
        margin: 0 0 20px;
    }
    #special .inBox .specialTxt p {
        margin: 0;
    }
    #special .inBox .specialTxt p:last-child {}

    #special .inBox .tanabataList {
        margin: 0 auto 20px;
    }
    #special .inBox .tanabataList li {
        width: calc(100% / 6 - 25px / 6);
        margin: 0 5px 5px 0;
    }
    #special .inBox .tanabataList li:nth-child(6n) {
        margin: 0 0 5px;
    }
    #special .inBox .tanabataList li:last-child {}
    #special .inBox .tanabataList li p {}
    #special .inBox .tanabataList li p a {}
    #special .inBox .tanabataList li p a img {}

    #special .inBox .specialBtn {}
    #special .inBox .specialBtn a {}
    #special .inBox .specialBtn.gray {}
    #special .inBox .specialBtn.gray a {}

}


/*===================================================
  OP:MODAL
====================================================*/
.op_modal{}
.op_modal .modPop {
    display:none;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}
.op_modal .modPop.popActive {
    display:block;
}
.op_modal .modPop .popupShade{
    position: absolute;
    display: flex;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: rgb(0 0 0 / 0.75);
    z-index: 0;
    align-items: center;
    justify-content: center;
}

.op_modal .modPop .close {
    width: 45px;
    height: 45px;
    position: fixed;
    right: 30px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
    background: #FFF41F;
    border-radius: 100px;
}
.op_modal .modPop .close::before,
.op_modal .modPop .close::after {
    content: '';
    display: inline-block;
    width: 60%;
    height: 4px;
    background: #0086CD;
    position: absolute;
    border-radius: 2px;
    left: 50%;
    top: 50%;
}
.op_modal .modPop .close::before {
    transform: translate(-50%,-50%);
}
.op_modal .modPop .close::after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.op_modal .modPop .popInBox {
    width: 50vh;
    max-width: 400px;
}
.op_modal .modPop .popInBox.popYoko {
    width: 75vh;
    max-width: 640px;
}
.op_modal .modPop .popInBox .tanabata {
    position: relative;
}
.op_modal .modPop .popInBox .tanabata img {
    pointer-events: none;
    user-select: none;
    height: 90svh;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media screen and (min-width:961px) {}

@media screen and (max-width:960px) {

  .op_modal .modPop .close {
    right: 20px;
    top: 20px;
  }

  .op_modal .modPop .popInBox {
    width: 70%;
    max-width: 400px;
  }

  .op_modal .modPop .popInBox .tanabata {}
  .op_modal .modPop .popInBox .tanabata img {
    height: 80svh;
  }

}
