@charset "utf-8";

#teaser h1{
    font-size: 0;
    margin: 0;
    padding: 0;
}

.l-auto-local-header__title__link::before,
.l-auto-local-header__title__link::after{
  display: none !important;
}

#teaser ul,
#teaser li{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-visual{
    position: relative;
}

.mv-ani{
    width: 100%;
    height: calc(100dvh - 148px);
    position: relative;
    overflow: hidden;
    background-color: #000;
}
@media screen and (max-width: 768px) {
    .mv-ani{
        height: calc(100dvh - 113px);
    }
}

.mv-ani::before,
.mv-ani::after{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.0);
    transform-origin: center;
    opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    transition-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 0;
}

.mv-ani::before{
    background: url(../images/main01.webp) center center no-repeat;
    background-size: cover;
        animation-delay: -1.2s;
}
.mv-ani::after{
    background: url(../images/main02.webp) center center no-repeat;
    background-size: cover;
    animation-delay: 4.8s;
}
@media screen and (max-width: 768px) {
    .mv-ani::before{
    background: url(../images/main01_sp.webp) center center no-repeat;
    background-size: cover;
}
.mv-ani::after{
    background: url(../images/main02_sp.webp) center center no-repeat;
    background-size: cover;
}
}

@keyframes fade {
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  45%{
    opacity: 1;
  }
  55%{
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.03);
  }
  100%{
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.0);
  }
}

.snsIcon{
    max-width: 1080px;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99;
}

.snsIcon ul{
    display: flex;
    justify-content: right;
    gap: 20px;
}
@media screen and (max-width: 768px) {
    .snsIcon ul{
        gap: 15px;
    }
}

.snsIcon ul li{
    width: 20px;
}
@media screen and (max-width: 768px) {
    .snsIcon ul li{
        width: 19px;
    }
}

@media screen and (min-width: 769px) {
    .snsIcon ul li a{
        transition: 0.3s;
    }
    .snsIcon ul li a:hover{
        opacity: 0.7;
    }
}

.snsIcon ul li img{
    vertical-align: bottom;
    width: 100%;
    height: auto;
}

.mvLogo{
    width: 226px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9;
}

.mvLogo img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .mvLogo{
        width: 186px;
    }
}



/**/
.curation-area{
    position: relative;
    width: 100%;
    padding: 200px 0;
}
@media screen and (max-width: 768px) {
    .curation-area{
        padding: 74px 0 100px;
    }
}

.curation-area img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.topics-wrap,
.archives-wrap{
    max-width: 980px;
    margin: 0 auto;
    padding:0 20px;
}
@media screen and (max-width: 768px) {
    .topics-wrap,
    .archives-wrap{
        padding:0 13px;
    }
}

.curation-thum-wrap{
    position: relative;
}

.movlink .curation-thum::after{
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    background: url(../images/icon_movie.svg) 0 0 no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

.archives-wrap .movlink .curation-thum::after{
    width: 20px;
    height: 20px;
}

@media screen and (min-width: 769px) {
    .curation-thum-wrap::after{
        content: "";
        height: calc(94.355%);
        aspect-ratio: 1/1;
        display: block;
        position: absolute;
        top: 3%;
        right: 3%;
        transition: 0.5s;
    }
}

.curation-txt{
    position: relative;
}

.curation-txt p{
    font-size: 0.875rem;
    text-overflow: ellipsis;
    direction: ltr;
    white-space: nowrap;
    width: calc(100% - 2rem);
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .curation-txt p{
        width: calc(100% - 1rem);
    }
}

a:not(.movlink) .curation-txt::after{
    content: "";
    width: 14px;
    height: 12px;
    background: url(../images/icon_next.svg) 0 0 no-repeat;
    background-size: auto 100%;
    position: absolute;
    top: 49%;
    right: 0;
    transform: translateY(-50%);
}

a[target="_blank"] .curation-txt::after{
    height: 14px;
    background: url(../images/icon_blank01.svg) 0 0 no-repeat;
    background-size: auto 100%;
}

/*topics*/
.topics-wrap{
    font-family: "A1ゴシック M JIS2004", "A1 Gothic M JIS2004";
    margin-bottom: 155px;
}
@media screen and (max-width: 768px) {
    .topics-wrap{
        margin-bottom: 74px;
    }
}

.topics-wrap h2{
    width: 188px;
    margin: 0 auto 95px;
}
@media screen and (max-width: 768px) {
    .topics-wrap h2{
        width: 144px;
        margin: 0 auto 53px;
    }
}

.topics-list01,
.topics-list02{
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 768px) {
    .topics-list01{
        flex-wrap: wrap;
        gap: 10px;
    }
}

.topics-list02{
    margin-top: 20px;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .topics-list02{
        margin-top: 10px;
        gap: 10px;
    }
}

.topics-list01 a,
.topics-list02 a{
    text-decoration: none;
    color: #fff;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.topics-list01 a{
    width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
    .topics-list01 a{
        width: calc(100%);
        border-radius: 3px;
    }
}

.topics-list02 a{
    width: calc(100% / 3 - 40px / 3);
}
@media screen and (max-width: 768px) {
    .topics-list02 a{
        width: calc(50% - 5px);
        border-radius: 3px;
    }
}

.topics-wrap .curation-cont{
    padding: 20%;
}
@media screen and (max-width: 768px) {
    .topics-wrap .curation-cont{
        padding: 18%;
    }
}

.topics-wrap .curation-txt p{
    margin-top: 1.25rem;
}

@media screen and (min-width: 769px) {

    .topics-wrap .curation-thum-wrap .curation-thum{
        transition: 0.5s;
        position: relative;
        z-index: 2;
    }

    .topics-wrap a:hover .curation-thum-wrap .curation-thum{
        transform: translateX(-22%);
    }
    .topics-wrap a:hover .curation-thum-wrap::after{
        transform: translateX(30%);
    }

    .topics-list01 a:nth-child(2n + 1) .curation-thum-wrap::after{
        background: url(../images/topics_bg_disc01.png) 0 0 no-repeat;
        background-size: cover;
    }
    .topics-list01 a:nth-child(2n + 2) .curation-thum-wrap::after{
        background: url(../images/topics_bg_disc02.png) 0 0 no-repeat;
        background-size: cover;
    }
    .topics-list02 a:nth-child(5n + 1) .curation-thum-wrap::after{
        background: url(../images/topics_bg_disc03.png) 0 0 no-repeat;
        background-size: cover;
    }
    .topics-list02 a:nth-child(5n + 2) .curation-thum-wrap::after{
        background: url(../images/topics_bg_disc04.png) 0 0 no-repeat;
        background-size: cover;
    }
        .topics-list02 a:nth-child(5n + 3) .curation-thum-wrap::after{
        background: url(../images/topics_bg_disc05.png) 0 0 no-repeat;
        background-size: cover;
    }
    .topics-list02 a:nth-child(5n + 4) .curation-thum-wrap::after{
        background: url(../images/topics_bg_disc01.png) 0 0 no-repeat;
        background-size: cover;
    }
    .topics-list02 a:nth-child(5n + 5) .curation-thum-wrap::after{
        background: url(../images/topics_bg_disc02.png) 0 0 no-repeat;
        background-size: cover;
    }
    
}


/*archives*/
.archives-wrap{
    font-family: "A1ゴシック R JIS2004", "A1 Gothic R JIS2004";
}

.archives-wrap h2{
    width: 260px;
    margin:  0 auto 104px;
}
@media screen and (max-width: 768px) {
    .archives-wrap h2{
        width: 172px;
        margin:  0 auto 48px;
    }
}

.archives-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.archives-list a{
    text-decoration: none;
    color: #fff;
    width: calc(50% - 20px);
    display: block;
    border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
    .archives-list a{
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .archives-list a:nth-last-child(-n+2){
        border-bottom: 1px solid #fff;
    }
}

@media screen and (max-width: 768px) {
    .archives-list a:last-child{
        border-bottom: 1px solid #fff;
    }
}

.archives-list .curation-cont{
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .archives-list .curation-cont{
        padding: 10px;
    }
}

.archives-list .curation-cont .curation-thum{
    width: 100px;
    border-radius: 6px;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .archives-list .curation-cont .curation-thum{
        width: 70px;
    }
}

.archives-list .curation-cont .curation-txt{
    width: calc(100% - 120px);
}
@media screen and (max-width: 768px) {
    .archives-list .curation-cont .curation-txt{
        width: calc(100% - 90px);
    }
}

@media screen and (min-width: 769px) {
    .archives-list a{
        position: relative;
    }

    .archives-list a::after {
        content: "";
        display: block;
        width: 0;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.2);
        transition: 0.3s;
        z-index: 0;
    }

    .archives-list a:hover::after {
        width: 100%;
    }
}
@media screen and (min-width: 769px) {
    #accordionBtn{
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #accordionBtn{
        /*スタイルリセット*/
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 0;
        border-radius: 0;
        background: none;

        /**/
        font-size: 0;
        width: 100%;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        padding: 2rem 0;
    }
    #accordionBtn.close {
        border-top: none;
    }

    #accordionBtn::after {
        content: "";
        width: 1rem;
        height: 1rem;
        display: inline-block;
        background: url(../images/icon_acc_open.svg) center center no-repeat;
        background-size: cover;
    }
    #accordionBtn.close::after {
        border-top: none;
        background: url(../images/icon_acc_close.svg) center center no-repeat;
        background-size: 100% auto;
    }
}

.bnr-wrap{
    max-width: 980px;
    margin: 150px auto 0;
    padding: 0 20px;
}

@media screen and (min-width: 769px) {
    .bnr-wrap ul{
        display: flex;
        gap: 50px;
    }

    .bnr-wrap ul a{
        transition: 0.3s;
    }
    .bnr-wrap ul a:hover{
        opacity: 0.7;
    }
}

@media screen and (max-width: 768px) {
    .bnr-wrap ul{
        text-align: center;
    }
    #teaser .bnr-wrap ul li{
        max-width: 226px;
        margin-bottom: 40px;
        display: inline-block;
    }
    #teaser .bnr-wrap ul li:last-child{
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .bnr-wrap{
        margin: 100px auto 0;
    }
}

.mailmagazine{
    margin-top: 100px;
}
@media screen and (max-width: 768px) {
    .mailmagazine{
        margin-top: 50px;
    }
}

.mailbtn{
    text-align: center;
}

@media screen and (max-width: 768px) {
    .mailbtn{
        bottom: 35px;
    }
}

.mailbtn a{
    font-family: "A1ゴシック R JIS2004", "A1 Gothic R JIS2004";
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 0;
    display: inline-block;
    position: relative;
}
@media screen and (min-width: 769px) {
    .mailbtn a:hover{
        background: none;
    }
    .mailbtn a::after{
        content: "";
        width: 0;
        height: 1px;
        display: block;
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: 0.3s;
    }
    .mailbtn a:hover::after{
        width: 100%;
    }
}

.mailbtn a span{
    margin-left: 0.5em;
}



/*bg*/
.bg_wrap{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bglist{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #f2f9ff;
    position: relative;
}

.bglist li{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;

}

.bg01{
background-color:hsla(191,76%,63%,1);
background-image:
radial-gradient(at 16% 4%, hsla(231,38%,85%,1) 0px, transparent 50%),
radial-gradient(at 0% 28%, hsla(269,27%,77%,1) 0px, transparent 50%),
radial-gradient(at 100% 96%, hsla(294,54%,87%,1) 0px, transparent 50%),
radial-gradient(at 99% 48%, hsla(162,68%,78%,1) 0px, transparent 50%),
radial-gradient(at 41% 100%, hsla(206,96%,69%,1) 0px, transparent 50%),
radial-gradient(at 68% 100%, hsla(212,52%,45%,1) 0px, transparent 50%);
        animation: bg_ani 10s ease infinite;
}

.bg02{
background-color:hsla(191,76%,63%,1);
background-image:
radial-gradient(at 1% 96%, hsla(231,38%,85%,1) 0px, transparent 50%),
radial-gradient(at 86% 93%, hsla(269,27%,77%,1) 0px, transparent 50%),
radial-gradient(at 100% 0%, hsla(294,54%,87%,1) 0px, transparent 50%),
radial-gradient(at 20% 0%, hsla(162,68%,78%,1) 0px, transparent 50%),
radial-gradient(at 54% 96%, hsla(206,96%,69%,1) 0px, transparent 50%),
radial-gradient(at 51% 1%, hsla(212,52%,45%,1) 0px, transparent 50%);

        animation: bg_ani 10s ease infinite;
    animation-delay: 2.5s;
}

.bg03{
background-color:hsla(191,76%,63%,1);
background-image:
radial-gradient(at 41% 96%, hsla(231,38%,85%,1) 0px, transparent 50%),
radial-gradient(at 100% 100%, hsla(269,27%,77%,1) 0px, transparent 50%),
radial-gradient(at 89% 98%, hsla(294,54%,87%,1) 0px, transparent 50%),
radial-gradient(at 0% 100%, hsla(162,68%,78%,1) 0px, transparent 50%),
radial-gradient(at 80% 11%, hsla(206,96%,69%,1) 0px, transparent 50%),
radial-gradient(at 0% 0%, hsla(212,52%,45%,1) 0px, transparent 50%);

        animation: bg_ani 10s ease infinite;
        animation-delay: 5s;
}

.bg04{
background-color:hsla(191,76%,63%,1);
background-image:
radial-gradient(at 100% 0%, hsla(231,38%,85%,1) 0px, transparent 50%),
radial-gradient(at 77% 100%, hsla(269,27%,77%,1) 0px, transparent 50%),
radial-gradient(at 3% 0%, hsla(294,54%,87%,1) 0px, transparent 50%),
radial-gradient(at 50% 0%, hsla(162,68%,78%,1) 0px, transparent 50%),
radial-gradient(at 40% 100%, hsla(206,96%,69%,1) 0px, transparent 50%),
radial-gradient(at 0% 100%, hsla(212,52%,45%,1) 0px, transparent 50%);

        animation: bg_ani 10s ease infinite;
        animation-delay: 7.5s;
}


@keyframes bg_ani {
    0%{
        opacity: 1;
    }
    25%{ opacity: 0;}
    75%{ opacity: 0;}
    100%{ opacity: 1}
}