@charset "utf-8";

/* boxDate */
.secIndexList + .boxDate{
    margin-top: 10rem;
}
.boxDate .txtDate{
    font-size: var(--pcFontSize110);
    font-weight: bold;
}
.boxDate .txt{
    font-size: var(--pcFontSize50);
}
@media only screen and (max-width:1215px){
    .secIndexList + .boxDate{
        margin-top: 6rem;
    }
    .boxDate .txtDate{
        font-size: var(--spFontSize60);
    }
    .boxDate .txt{
        font-size: var(--spFontSize30);
    }
}

/* secIndexList */
.secIndexList{
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.secIndexList .item{
    position: relative;
    width: calc((100% - 8rem) / 3);
    margin: 7.2rem 4rem 0 0;
}
.secIndexList .item:nth-child(3n){
    margin-right: 0;
}
.secIndexList .item:nth-child(-n+3){
    margin-top: 0;
}
.secIndexList .txtNew{
    position: absolute;
    top: -2.8rem;
    left: 0;
    font-size: var(--pcFontSize22);
    color: var(--keyColor);
    animation: blinking 1s ease-in-out infinite alternate;
}
.secIndexList .txt{
    text-align: center;
    font-weight: bold;
    font-size: var(--pcFontSize20);
    color: var(--white_color);
    transform: scaleY(1.3);
    margin-top: 3.3rem;
}
.secArtist{
    margin-bottom: 18rem;
}
.secArtist .boxBody{
    margin-top: 18rem;
}
.secArtist .eng{
    text-align: center;
    font-weight: bold;
    font-size: var(--pcFontSize130);
}
.secArtist .boxTxt{
    display: flex;
    justify-content: center;
    margin-top: 1.9rem;
}
.secArtist .txtList{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
}
.secArtist .txtAndMore{
    font-size: var(--pcFontSize140);
    color: var(--white_color);
    font-weight: bold;
    text-align: center;
}
.secArtist .txtItem{
    position: relative;
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_26);
    color: var(--white_color);
    font-weight: bold;
}
.secArtist .txtItem::before{
    content: '※';
}
@media only screen and (max-width:1215px){
    .secIndexList{
        display: block;
        margin-top: 5.9rem;
    }
    .secIndexList .item,
    .secIndexList .item:nth-child(3n),
    .secIndexList .item:nth-child(-n+3){
        width: 100%;
        margin: 4.3rem 0 0;
    }
    .secIndexList .item:first-child{
        margin-top: 0;
    }
    .secIndexList .txtNew{
        top: -2.2rem;
        font-size: var(--spFontSize18);
    }
    .secIndexList .txt{
        font-size: var(--spFontSize16);
        letter-spacing: var(--spLetterSpacing16_-50);
        margin-top: 2rem;
        white-space: nowrap;
    }
    .secArtist{
        margin-bottom: 7.4rem;
    }
    .secArtist .boxBody{
        margin-top: 5.5rem;
    }
    .secArtist .eng{
        font-size: var(--spFontSize40);
    }
    .secArtist .txtAndMore{
        font-size: var(--spFontSize40);
    }
    .secArtist .boxTxt{
        margin-top: 2.3rem;
    }
    .secArtist .txtItem{
        padding-left: 0;
        font-size: var(--spFontSize11);
        line-height: var(--spLineHeight11_16);
        padding-left: 1rem;
    }
    .secArtist .txtItem + .txtItem{
        margin-top: 0.8rem;
    }
    .secArtist .txtItem::before{
        position: absolute;
        margin: auto;
        display: block;
        top: 0;
        left: 0;
    }
}

@keyframes blinking {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
