/*****************************
 * 全体
*****************************/
/* section
**************/
section .container {
    width: 92%;
}

section#ranking .container {
    width: 100%;
}

@media (max-width: 767px) {
    section .container {
        width: 90%;
    }

    section {
        padding-top: calc(75/var(--base-font-size-row-value) * 1rem);
        padding-bottom: calc(75/var(--base-font-size-row-value) * 1rem);
    }

    section#event {
        padding-top: calc(55 / var(--base-font-size-row-value) * 1rem);
        padding-bottom: calc(55 / var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 768px) {
    section {
        padding-top: calc(218/var(--base-font-size-row-value) * 1rem);
        padding-bottom: calc(160/var(--base-font-size-row-value) * 1rem);
    }

    section#event {
        padding-top: calc(158 / var(--base-font-size-row-value) * 1rem);
        padding-bottom: calc(100 / var(--base-font-size-row-value) * 1rem);
    }
}




/*****************************
 * パーツ
*****************************/
/* button
**************/
.view-more {
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: rotate(-10deg);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.view-more a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.view-more a span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(10deg);
    z-index: 5;
    height: 100%;
    width: 100%;
}

.view-more::before,
.view-more::after {
    content: "";
    position: absolute;
    top: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

#mv .view-more::before,
#mv .view-more::after {
    left: 0;
}

.view-more::before {
    background-color: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.view-more::after {
    width: 100%;
    height: 100%;
}

.view-more:hover {
    color: var(--primary-color);
    transform: scale(1.001) rotate(-10deg);
}

.view-more:hover::before,
.view-more:hover::after {
    border: 1px solid var(--primary-color);
}

section .view-more {
    margin: 0 auto;
}

@media (max-width: 767px) {
    .view-more {
        width: calc(142/var(--base-font-size-row-value) * 1rem);
        height: calc(60/var(--base-font-size-row-value) * 1rem);
        font-size: calc(12.5/var(--base-font-size-row-value) * 1rem);
    }

    .view-more::before {
        width: calc(142/var(--base-font-size-row-value) * 1rem);
        height: calc(60/var(--base-font-size-row-value) * 1rem);
        transform: rotate(8deg);
    }

    section .view-more {
        width: calc(174/var(--base-font-size-row-value) * 1rem);
        height: calc(73/var(--base-font-size-row-value) * 1rem);
        margin-top: calc(20/var(--base-font-size-row-value) * 1rem);
        font-size: calc(16/var(--base-font-size-row-value) * 1rem);
    }

    section .view-more::before {
        width: calc(174/var(--base-font-size-row-value) * 1rem);
        height: calc(73/var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 768px) {
    .view-more {
        width: calc(268/var(--base-font-size-row-value) * 1rem);
        height: calc(113/var(--base-font-size-row-value) * 1rem);
        font-size: calc(18/var(--base-font-size-row-value) * 1rem);
    }

    .view-more::before {
        width: calc(267/var(--base-font-size-row-value) * 1rem);
        height: calc(106/var(--base-font-size-row-value) * 1rem);
        transform: translateY(4px) rotate(8deg);
    }

    section .view-more {
        margin-top: calc(80/var(--base-font-size-row-value) * 1rem);
    }
}


/* marquee
**************/
.marquee {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    color: var(--primary-color);
    font-style: italic;
}

.marquee .container p {
    opacity: 0.2;
}

.marquee .container {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeBounce 600s linear infinite alternate;
}

@keyframes marqueeBounce {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 767px) {
    .marquee {
        font-size: calc(140/var(--base-font-size-row-value) * 1rem);
        line-height: 0.8;
        padding: calc(40/var(--base-font-size-row-value) * 1rem) 0;
    }
}

@media (min-width: 768px) {
    .marquee {
        font-size: calc(400/var(--base-font-size-row-value) * 1rem);
        padding: calc(54/var(--base-font-size-row-value) * 1rem) 0;
    }
}



/*****************************
 * 各セクション
*****************************/
/* mv
**************/
#mv {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#mv .splide-mv {
    position: relative;
    width: 100%;
    height: 100%;
}

#mv .splide-mv li {
    position: relative;
    width: 100%;
    height: 100%;
}


.mv__container {
    position: relative;
    width: 100vw;
    height: 100%;
}

.mv__img {
    display: block;
    position: relative;
    width: 100vw;
    height: 100%;
}

.mv__img img {
    object-fit: cover;
    width: 100vw;
    height: 100%;
}

.mv__container .container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 90%;
    max-width: 1728px;
    margin: 0 auto;
}

.castdata {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
}

.castdata>.kana,
.castdata>.name,
.castdata>.prof {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), -3px 3px 10px rgba(0, 0, 0, 0.5), 3px -3px 10px rgba(0, 0, 0, 0.5), -3px -3px 10px rgba(0, 0, 0, 0.5);
}

.castdata>.prof {
    letter-spacing: 0.05em;
    margin-bottom: calc(25/var(--base-font-size-row-value) * 1rem);
}

@media (max-width: 767px) {
    .mv__img {
        /* background-image: url(../img/bg/basic/mv-img01.jpg); */
    }

    .castdata {
        bottom: 13.5vh;
    }

    .castdata>.kana {
        font-size: calc(12/var(--base-font-size-row-value) * 1rem);
        letter-spacing: 0.2rem;
        line-height: 0.8;
    }

    .castdata>.name {
        font-size: calc(28/var(--base-font-size-row-value) * 1rem);
    }

    .castdata>.name span {
        font-size: calc(16/var(--base-font-size-row-value) * 1rem);
    }

    .castdata>.prof {
        margin-top: calc(3/var(--base-font-size-row-value) * 1rem);
        font-size: calc(12/var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 768px) {
    .mv__img {
        /* background-image: url(../img/bg/basic/mv-img01.jpg); */
    }

    .castdata {
        bottom: 10vh;
    }

    .castdata>.kana {
        font-size: calc(20/var(--base-font-size-row-value) * 1rem);
        letter-spacing: 0.4rem;
        line-height: 1;
    }

    .castdata>.name {
        font-size: calc(56/var(--base-font-size-row-value) * 1rem);
    }

    .castdata>.name span {
        font-size: calc(32/var(--base-font-size-row-value) * 1rem);
    }

    .castdata>.prof {
        margin-top: calc(6/var(--base-font-size-row-value) * 1rem);
        font-size: calc(24/var(--base-font-size-row-value) * 1rem);
    }
}

/* ranking
************/
.splide-ranking {
    max-width: 1500px;
    margin: 0 auto;
}

.splide-ranking .view-more::after {
    transform: translate(-50%, 0);
}

.splide-ranking .splide__slide {
    position: relative;
    margin-right: 0;
    padding-bottom: 10px;
}

.splide-ranking .splide__slide h3 {
    color: var(--primary-color);
}

.splide-ranking .splide__slide .img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.splide-ranking .splide__slide .img-wrapper .rank {
    position: absolute;
    top: 2%;
    left: -2%;
    width: 40%;
}

.splide-ranking .splide__slide .img-wrapper>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.splide-ranking .splide__slide .name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    letter-spacing: 0.1em;
}


@media (max-width: 767px) {
    .splide-ranking .view-more::before {
        transform: translate(-50%) rotate(8deg);
    }

    section .splide-ranking .view-more {
        margin-top: calc(20 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide {
        max-width: calc(225 / var(--base-font-size-row-value) * 1rem);
        min-width: calc(225 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide h3 {
        font-size: calc(16 / var(--base-font-size-row-value) * 1rem);
        margin-bottom: calc(16 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide .img-wrapper {
        height: calc(330 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide .name {
        font-size: calc(19 / var(--base-font-size-row-value) * 1rem);
        bottom: calc(120 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide .name span {
        font-size: calc(10 / var(--base-font-size-row-value) * 1rem);
    }

    section .splide-ranking .splide__arrow--prev svg {
        transform: translate(calc(-119/var(--base-font-size-row-value) * 1rem), -200%) rotate(180deg);
    }

    section .splide-ranking .splide__arrow--next svg {
        transform: translate(calc(119/var(--base-font-size-row-value) * 1rem), -200%);
    }
}

@media (min-width: 768px) {
    .splide-ranking .view-more::before {
        transform: translate(-50%, 4px) rotate(8deg);
    }

    section .splide-ranking .view-more {
        margin-top: calc(40 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide {
        max-width: calc(450 / var(--base-font-size-row-value) * 1rem);
        min-width: calc(450 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide h3 {
        font-size: calc(32 / var(--base-font-size-row-value) * 1rem);
        margin-bottom: calc(32 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide .img-wrapper {
        height: calc(663 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide .name {
        font-size: calc(38 / var(--base-font-size-row-value) * 1rem);
        bottom: calc(200 / var(--base-font-size-row-value) * 1rem);
    }

    .splide-ranking .splide__slide .name span {
        font-size: calc(20 / var(--base-font-size-row-value) * 1rem);
    }

    section .splide-ranking .splide__arrow--prev svg {
        transform: translate(calc(-245/var(--base-font-size-row-value) * 1rem), -200%) rotate(180deg);
    }

    section .splide-ranking .splide__arrow--next svg {
        transform: translate(calc(245/var(--base-font-size-row-value) * 1rem), -200%);
    }
}


/* new face
**************/
.splide-newface .splide__slide {
    margin-right: 0;
}

section .splide-newface .splide__arrow--prev svg {
    transform: translate(0, -50%) rotate(180deg);
}

section .splide-newface .splide__arrow--next svg {
    transform: translate(0, -50%);
}

@media (max-width: 767px) {
    .splide-newface .splide__slide {
        max-width: calc(167 / var(--base-font-size-row-value) * 1rem);
        min-width: calc(167 / var(--base-font-size-row-value) * 1rem);
    }

    section .splide-newface .splide__arrow--prev svg {
        right: inherit;
        left: calc(-10 / var(--base-font-size-row-value) * 1rem);
    }

    section .splide-newface .splide__arrow--next svg {
        left: inherit;
        right: calc(-10 / var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 768px) {
    .splide-newface .splide__slide {
        max-width: calc(334 / var(--base-font-size-row-value) * 1rem);
        min-width: calc(334 / var(--base-font-size-row-value) * 1rem);
    }

    section .splide-newface .splide__arrow--prev svg {
        right: inherit;
        left: calc(-50 / var(--base-font-size-row-value) * 1rem);
    }

    section .splide-newface .splide__arrow--next svg {
        left: inherit;
        right: calc(-50 / var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 1024px) {
    section .splide-newface .splide__arrow--prev svg {
        right: inherit;
        left: calc(-50 / var(--base-font-size-row-value) * 1rem);
    }

    section .splide-newface .splide__arrow--next svg {
        left: inherit;
        right: calc(-50 / var(--base-font-size-row-value) * 1rem);
    }
}

/* event
**************/
#event .contents {
    width: 100%;
    max-width: 900px;
    margin: 0 auto calc(80 / var(--base-font-size-row-value) * 1rem);
    margin: 0 auto;
}

/* #event .contents .article-wrapper {
    position: relative;
    overflow: hidden;
}

#event .contents .article-wrapper::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--gradient-color-4);
} */

#event .contents .article+.article {
    margin-top: calc(30 / var(--base-font-size-row-value) * 1rem);
}

#event .contents .day {
    font-weight: 400;
}

#event .contents h3 a {
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

#event .contents h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
}

#event .contents h3 a:hover {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    #event .contents .article {
        display: block;
    }

    #event .contents {
        margin-bottom: calc(40 / var(--base-font-size-row-value) * 1rem);
    }

    #event .contents p {
        font-size: calc(12 / var(--base-font-size-row-value) * 1rem);
        margin-bottom: calc(5 / var(--base-font-size-row-value) * 1rem);
    }

    #event .contents h3 {
        font-size: calc(14 / var(--base-font-size-row-value) * 1rem);
        margin-bottom: calc(15 / var(--base-font-size-row-value) * 1rem);
    }

    #event .contents h3 a {
        padding-left: calc(36 / var(--base-font-size-row-value) * 1rem);
    }

    #event .contents h3 a::before {
        width: calc(20 / var(--base-font-size-row-value) * 1rem);
        height: calc(24 / var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 768px) {
    #event .contents .article {
        /* display: grid;
        grid-template-columns: 25% 1fr;
        align-items: center; */
    }

    #event .contents {
        margin-bottom: calc(80 / var(--base-font-size-row-value) * 1rem);
    }

    #event .contents .day {
        font-size: calc(20 / var(--base-font-size-row-value) * 1rem);
        /* margin-bottom: calc(10 / var(--base-font-size-row-value) * 1rem); */
    }

    #event .contents h3 {
        font-size: calc(24 / var(--base-font-size-row-value) * 1rem);
        /* margin-bottom: calc(30 / var(--base-font-size-row-value) * 1rem); */
    }

    #event .contents h3 a {
        padding-left: calc(48 / var(--base-font-size-row-value) * 1rem);
    }

    #event .contents h3 a::before {
        width: calc(28 / var(--base-font-size-row-value) * 1rem);
        height: calc(32 / var(--base-font-size-row-value) * 1rem);
    }
}

/*****************************
 * aside
*****************************/
/* aside
**************/
aside .container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 767px) {
    aside {
        padding-top: calc(50/var(--base-font-size-row-value) * 1rem);
        padding-bottom: calc(50/var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 768px) {
    aside {
        padding-top: calc(110/var(--base-font-size-row-value) * 1rem);
        padding-bottom: calc(110/var(--base-font-size-row-value) * 1rem);
    }
}

/* freespace01 
/* freespace02
**************/
aside.freespace {
    width: 100%;
    margin: 0 auto;
}

aside.freespace a {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

aside.freespace .container {
    position: relative;
    overflow: hidden;
}

aside.freespace .container iframe,
aside.freespace .container video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

@media (max-width: 767px) {
    aside.freespace a+a {
        margin-top: calc(10/var(--base-font-size-row-value) * 1rem);
    }

    aside.freespace iframe+iframe,
    aside.freespace video+video,
    aside.freespace iframe+video,
    aside.freespace video+iframe {
        margin-top: calc(20/var(--base-font-size-row-value) * 1rem);
    }
}

@media (min-width: 768px) {
    aside.freespace a+a {
        margin-top: calc(20/var(--base-font-size-row-value) * 1rem);
    }

    aside.freespace iframe+iframe,
    aside.freespace video+video,
    aside.freespace iframe+video,
    aside.freespace video+iframe {
        margin-top: calc(60/var(--base-font-size-row-value) * 1rem);
    }
}

/* バナースライダー
/* サムネイル
**************/
.thumbnaill-slider .splide__list {
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnaill-slider .splide__slide {
    margin-right: 0;
    min-width: auto;
    opacity: 0.7;
    cursor: pointer;
}

.thumbnaill-slider .splide__slide.is-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .thumbnaill-slider {
        width: 100%;
        margin: calc(10/var(--base-font-size-row-value) * 1rem) auto 0;
    }
}

@media (min-width: 768px) {
    .thumbnaill-slider {
        width: 92%;
        margin: calc(30/var(--base-font-size-row-value) * 1rem) auto 0;
    }
}