@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

html,
body,
a,
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    font-feature-settings: "palt";
}


@font-face {
    font-family: 'geosans';
    src: url(../font/geosans.ttf);

}


html {}

body {
    overflow-x: hidden;
    -webkit-touch-callout: none;
    line-height: 1.63;
}


img {
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    display: block;
    font-size: 0;

}

a {
    color: inherit;
    text-decoration: none;
}


li {
    list-style-type: none;
}

a {
    transition-duration: 0.2s;
}

a:hover {
    opacity: 0.7;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;

}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}


.sp {
    display: none;

}


@media screen and (max-width: 896px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}



.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999998;
    background: #fff;


}

.loading img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    max-width: 400px;
    width: 60%;
}


.loading.load {
    opacity: 0;
    transition-duration: 0.5s;


}

.wrap.load {
    height: 100vh;
    overflow: hidden;
    opacity: 0;
}


.nav-btn {
    position: fixed;
    display: block;
    top: 40px;
    right: 40px;
    width: 68px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;
}

.nav-btn span {
    position: absolute;
    right: 0;
    width: 68px;
    height: 4px;
    background: #20b8c5;
    transition-duration: 0.2s;
    box-shadow: 0 0 5px #fff, 0 0 10px #fff;
}


.nav-btn.close span {
    background: #fff !important;
    box-shadow: 0 0 0px #fff, 0 0 0px #fff;
}

.nav-btn span:nth-of-type(1) {
    top: 0px;
}

.nav-btn.close span:nth-of-type(1) {
    top: calc(50% - 1.5px);
    transform: rotate(45deg);
}

.nav-btn span:nth-of-type(2) {
    top: 50%;
    margin-top: -1.5px;
}

.nav-btn.close span:nth-of-type(2) {
    opacity: 0;
    transform: translateX(-20%);

}

.nav-btn span:nth-of-type(3) {
    bottom: 0px;
}

.nav-btn.close span:nth-of-type(3) {
    bottom: calc(50% - 1.5px);
    transform: translateY(0) rotate(-45deg);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: none;
    background: rgba(0, 0, 0, .7);
    z-index: 9998;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);

}

nav.open {
    display: block;
}

nav::-webkit-scrollbar {
    display: none;
}

.nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-flow: column;

}

.nav-inner a {
    font-family: 'geosans';
    font-size: 42px;
    color: #fff;
    background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    opacity: 0;
}

nav.open a {
    animation: example 0.5s ease-out forwards;
    /* 2秒間でアニメーションをループ */
}

@keyframes example {
    from {
        transform: translateY(100%);
        opacity: 0;
        filter: blur(5px);
    }

    to {
        transform: translateY(0%);
        opacity: 1;
        filter: blur(0px);
    }
}

.nav-inner a:nth-child(2) {
    animation-delay: 0.05s !important;
}

.nav-inner a:nth-child(3) {
    animation-delay: 0.1s !important;
}

.nav-inner a:nth-child(4) {
    animation-delay: 0.15s !important;
}

.nav-inner a:nth-child(5) {
    animation-delay: 0.2s !important;
}

.nav-inner a:nth-child(6) {
    animation-delay: 0.25s !important;
}

.nav-inner a:nth-child(7) {
    animation-delay: 0.3s !important;
}

.nav-inner a:nth-child(8) {
    animation-delay: 0.35s !important;
}


@media screen and (max-width: 896px) {
    .nav-btn {
        position: fixed;
        display: block;
        top: 20px;
        right: 20px;
        width: 32px;
        height: 30px;
        cursor: pointer;
        z-index: 9999;
    }

    .nav-btn span {
        width: 32px;
        height: 2px;
    }


    .nav-btn.close span {
        background: #fff !important;
        box-shadow: 0 0 0px #fff, 0 0 0px #fff;
    }

    .nav-btn span:nth-of-type(1) {
        top: 0px;
    }

    .nav-btn.close span:nth-of-type(1) {
        top: calc(50% - 1px);
        transform: rotate(45deg);
    }

    .nav-btn span:nth-of-type(2) {
        top: 50%;
        margin-top: -1px;
    }

    .nav-btn.close span:nth-of-type(2) {
        opacity: 0;
        transform: translateX(-20%);

    }

    .nav-btn span:nth-of-type(3) {
        bottom: 0px;
    }

    .nav-btn.close span:nth-of-type(3) {
        bottom: calc(50% - 1px);
        transform: translateY(0) rotate(-45deg);
    }

    .nav-inner a {
        font-family: 'geosans';
        font-size: 28px;
        color: #fff;
        background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        opacity: 0;
    }

    nav.open a {
        animation: example 0.5s ease-out forwards;
        /* 2秒間でアニメーションをループ */
    }


}

.fix-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    background: url(../img/fix-back.jpg);
    background-size: cover;
    z-index: -1;
}

.hero {
    padding: 4vw 0 8vw;
    background: url(../img/hero-back.jpg) no-repeat;
    background-color: #fff;
    background-size: 100% auto;
    position: relative;
}


.hero-contents {
    width: 90%;
    margin: 0 auto;
    position: relative;

}

.hero .back {
    opacity: 0;
}

.hero-contents {
    opacity: 0;
}

.hero .back.on,
.hero-contents.on {
    animation: hero 1.2s ease-in-out forwards;
}

@keyframes hero {
    0% {
        transform: translateY(0%);
        opacity: 0;

    }

    10% {
        opacity: 0;
        filter: blur(5px) brightness(1.5);
    }

    40% {
        filter: blur(5px) brightness(1.5);
    }

    100% {
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}

.logo {
    position: absolute;
    top: 30%;
    right: 50px;
    width: 45%;
}

.resale {
    position: absolute;
    top: 53%;
    right: 90px;
    width: 40%;
}

@media screen and (max-width: 896px) {

    .resale {
        top: 66%;
        right: 0;
        width: 100%;
    }
}

.release-date {
    position: absolute;
    bottom: 20%;
    right: 8.2%;
    width: 35.5%;
}

.news {
    background-color: #f8f8f8;
    background-image: url(../img/star_back.png);
    background-size: 40rem auto;

    font-size: 1vw;
    position: absolute;
    bottom: 0.9%;
    right: 8.2%;
    width: 35.5%;
    height: 16.5%;

    z-index: 99;
    border-left: solid 4px #93aaff;
    border-right: solid 4px #5cff40;

}


.news:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: #000;
    background: linear-gradient(90deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 100%);
    z-index: 5;
}

.news:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #000;
    background: linear-gradient(90deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 100%);
    z-index: 5;
}



.news-inner {
    overflow-y: scroll;
    height: 100%;
    padding: 1.2em 1em;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #20b8c5 #fff;
}

.news strong {
    font-size: 0.8em;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.8em;
    position: relative;
    z-index: 2;
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    color: #fff;
    background: #20b8c5;
    width: fit-content;
    border-radius: 100px;
    padding: 0 0.9em 0.1em;
}

.news ul {
    position: relative;
    z-index: 2;

}

.news li {
    font-size: 0.9em;
    display: flex;
    font-weight: bold;
    line-height: 1.4;
    color: #20b8c5;

}

.news li a {
    text-decoration: underline;
}


.news li:not(:last-child) {
    padding-bottom: 0.8em;
    margin-bottom: 0.8em;
    border-bottom: dotted 1px #20b8c5;
}

.news li span {
    display: block;
    width: 7em;
    flex-shrink: 0;
    font-size: 80%;

}

.news-inner li em {

    font-style: normal;
    font-size: 113%;

}


@media screen and (max-width: 1080px) {

    .hero {
        padding: 80px 0 8vw;
        background: url(../img/hero-back.jpg) no-repeat;
        background-color: #fff;
        background-size: 150% auto;
    }

    .logo {
        position: absolute;
        top: auto;
        right: 0;
        width: 100%;
        bottom: 34.5%;
    }

    .release-date {
        position: absolute;
        bottom: 16.5%;
        right: 15%;
        width: 70%;
    }

    .news {
        background: rgba(32, 184, 197, .2);
        font-size: 3vw;
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 24vw;
        margin-top: 6vw;

    }



}

section {
    position: relative;
    padding: 180px 0 200px;
    background: rgba(255, 255, 255, .9);
}

section:before,
footer:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 100%);
    z-index: 2;
}

section.blue {
    background: rgba(0, 210, 221, .5);
    color: #fff;
}


.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/star_back.png);
    background-size: 1920px auto;



}

.blue .back {
    filter: blur(10px);
    opacity: 0.4;
}

.back2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/blue_back.png);
    background-size: 100% auto;



}

#about {
    padding: 350px 0 430px;
}

.inner {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

h2 {
    position: relative;
    margin-bottom: 40px;
}

h2 strong {
    display: inline-block;
    font-size: 180px;
    background: linear-gradient(90deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    padding-left: 0.03em;
    margin-bottom: -10em;
    margin-bottom: -10em;
    position: relative;
    z-index: 2;
    letter-spacing: -0.3em;
    opacity: 0;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0, .35, .03, .98);
    filter: blur(5px);


}

h2.on strong {
    letter-spacing: 0em;
    opacity: 1;
    filter: blur(0px);
}

h2 span {
    display: inline;
    font-family: 'geosans';
    font-weight: normal;
    opacity: 1;
}

h2 small {
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    color: #20b8c5;
    position: absolute;
    bottom: 6px;
    left: 0;
    z-index: 3;
    background: #ff0;
    display: inline-block;
    padding: 0.2em 0.2em 0.3em;
    background: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%),
        linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%);
    background-position: 0 0, 1px 1px !important;
    background-size: 2px 2px !important;
    text-shadow:
        2px 2px 0px #fff, -2px -2px 0px #fff,
        -2px 2px 0px #fff, 2px -2px 0px #fff,
        2px 0px 0px #fff, -2px -0px 0px #fff,
        0px 2px 0px #fff, 0px -2px 0px #fff;
    letter-spacing: -0.3em;
    opacity: 0;
    transition-duration: 0.6s;
}

h2.on small {
    letter-spacing: 0em;
    opacity: 1;
}

.blue h2 strong {
    background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
}

.blue h2 small {
    background: linear-gradient(45deg, #5fc2c7 25%, transparent 25%, transparent 75%, #5fc2c7 75%),
        linear-gradient(45deg, #5fc2c7 25%, transparent 25%, transparent 75%, #5fc2c7 75%);
    color: #fff;
    text-shadow: none;
}

h2:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #000;
    background: linear-gradient(90deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 100%);
    mask-image: linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%),
        linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%);
    mask-position: 0 0, 1px 1px;
    /* 「0 0」と1マス（1色）の大きさ「30px 30px」をそれぞれ指定 */
    mask-size: 2px 2px;
}

.blue h2:after {
    background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
}



#about p {
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 34px;
    line-height: 1.8;
    color: #fff;
}

#about p span {
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    font-weight: 600;
    font-style: normal;
    display: inline-block;
}

.section-intro {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
    position: relative;
}

.section-intro strong {
    color: #f4f328;
}

.section-intro small {
    font-size: 78%;
    display: inline-block;
    font-weight: normal;
}

.section-intro span {
    display: block;
    font-size: 18px;
    font-weight: normal;
}


.section-intro p {
    width: calc(100% - 160px);
}

.section-intro .ura {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    flex-flow: row-reverse;
}

.section-intro .ura a {
    display: flex;
    width: 232px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    background: #fff;
    border-radius: 100px;

}

.section-intro .ura a span {
    width: 24px;
    margin-left: 6px;
}

.section-intro .ura figure {
    width: 148px;
}


.section-intro .ura aside {
    font-size: 16px;
    font-weight: normal;
    margin-top: 8px;
    position: absolute;
    top: 100%;
    left: 0;
}


@media screen and (max-width: 1150px) {

    #rarity .section-intro {
        display: flex;
    }

    .section-intro .ura {
        position: static;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        width: 232px;
    }

    .section-intro .ura figure {
        margin-bottom: 20px;
    }

    .section-intro .ura aside {
        position: static;
    }

    .section-intro p {
        width: calc(100% - 240px);
    }

}


@media screen and (max-width: 896px) {
    #rarity .section-intro {
        display: block;
    }

    section {
        position: relative;
        padding: 60px 0 100px;
    }

    section:before,
    footer:before {
        height: 12px;
    }




    .back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../img/star_back.png);
        background-size: 1000px auto;



    }


    .back2 {
        background-size: 900px auto;



    }

    #about {
        padding: 60px 0 100px;
    }

    h2 {
        position: relative;
        margin-bottom: 40px;
    }

    h2 strong {
        font-size: 72px;
    }

    h2 small {
        font-size: 14px;
    }



    #about p {
        font-size: 16px;
    }


    .section-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }



    .section-intro span {
        display: block;
        font-size: 11px;
        font-weight: normal;
    }


    .section-intro p {
        width: 100%;
    }

    .section-intro .ura {

        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin: 40px auto 0;

    }

    .section-intro .ura a {
        display: flex;
        width: 180px;
        height: 30px;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #000;
        background: #fff;
        border-radius: 100px;

    }

    .section-intro .ura a span {
        width: 18px;
        margin-left: 6px;
    }

    .section-intro .ura figure {
        width: 100px;
        margin-bottom: 12px;
    }


    .section-intro .ura aside {
        font-size: 12px;
        font-weight: normal;
        margin-top: 8px;
        position: static;
        top: 100%;
        left: 0;
        text-align: center;
    }

}

.border {
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
}

.card-nav-1 {
    margin-top: 44px;
}

.card-nav-1 ul {
    display: flex;
    justify-content: space-between;
}

.card-nav-1 li {
    width: calc(16.66% - 8px);
    background: #fff;
    color: #000;
    padding: 10px 20px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
}

.card-nav-1 li.new {
    background: linear-gradient(90deg, #f3f6ff 0%, #ffe8e7 33%, #fffde0 65%, #eaffdf 100%);



}

.card-nav-1 li.new:after {
    content: "NEW";
    display: block;
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 16px;
    background: linear-gradient(90deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 100%);
    color: #fff;
    border-radius: 100px;
    padding: 0 0.5em;
    font-weight: bold;
    animation: fluffy 2s infinite;
}

@keyframes fluffy {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.card-nav-1 li.active {
    background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
}

.card-nav-1 li p:nth-child(1) {
    font-size: 26px;
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    line-height: 0.8;
    margin-bottom: 8px;
}

.card-nav-1 li p:nth-child(1) span {
    display: inline-block;
    font-size: 56%;
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    line-height: 1.2;
    display: block;
    margin-top: 0.5em;

}

.card-nav-1 li p:nth-child(2) {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.card-nav-1 li p:nth-child(2) span {
    font-size: 88%;
    display: inline-block;
}

.card-nav-2 {
    margin-top: 28px;
}

.card-nav-2 ul {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}


.card-nav-2 li {
    width: calc(33.33% - 10px);
    text-align: center;
    position: relative;
    cursor: pointer;
}


.card-nav-2 li span {
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    font-size: 24px;
    position: relative;
    z-index: 3;
    padding: 0 0.6em;
}

.card-nav-2 li.active span:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
}

.card-copy {
    text-align: center;
    font-size: 40px;
    line-height: 1.23;
    color: #fff9b1;
    margin-top: 40px;
    margin-bottom: 100px;
}

.card-copy span {
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    position: relative;


}

.card-copy span strong {
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
    font-size: 110%;
    color: #f4f328;
}

@media screen and (max-width: 1080px) {

    .card-nav-2 {
        margin-top: 28px;
    }

    .card-nav-2 ul {
        flex-flow: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 400px;
    }


    .card-nav-2 li {
        width: 100%;
        text-align: center;
        position: relative;
        cursor: pointer;
        margin-bottom: 20px;
    }


    .card-nav-2 li span {
        font-family: "dnp-shuei-mincho-pr6n", sans-serif;
        font-size: 24px;
        position: relative;
        z-index: 3;
        position: relative;
    }


}

@media screen and (max-width: 896px) {

    .border {
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
    }

    .card-nav-1 {
        margin-top: 44px;
    }


    .card-nav-1 ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .card-nav-1 li {
        width: calc(100% - 3px);
        margin-bottom: 14px;
        padding: 10px 14px;
        position: relative;
    }

    .card-nav-1 li p:nth-child(1) {
        font-size: 20px;
        font-family: "dnp-shuei-mincho-pr6n", sans-serif;
        line-height: 0.8;
    }

    .card-nav-1 li p:nth-child(2) {
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .card-nav-1 li p:nth-child(2) span {
        font-size: 88%;
        display: inline-block;
    }

    .card-nav-2 li span {
        font-size: 18px;
    }

    .card-copy {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .card-copy span {
        font-family: "dnp-shuei-mincho-pr6n", sans-serif;

    }

    .card-copy span strong {
        font-size: 120%;
    }
}

@media screen and (min-width: 897px) {

    .card-list {
        width: 90%;
        max-width: 1240px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
        padding-bottom: 60px;
    }

    #rarity .card-list {
        padding-bottom: 120px;
    }

    .card-list ul {
        display: flex;
        aspect-ratio: 4.5 / 1;
        justify-content: center;
    }

    .card-list ul li {
        width: 9%;
        height: 100%;
        margin: 0 2px;
        transition-duration: 0.2s;
        position: relative;
    }


    .card-list ul li h6 {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        white-space: nowrap;
        opacity: 0;
        transition-duration: 0.2s;
    }

    .card-list ul li:hover {
        width: 15.9%;
        flex-shrink: 0;

    }

    .card-list ul li:hover h6 {
        opacity: 1;
    }

    .card-list ul li figure {
        height: 100%;
    }

    .card-list ul li figure img {
        height: 100%;
        object-fit: cover;
    }




}

.card-list h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.card-list h4 span {
    color: #20b8c5;
}

.blue .card-list h4 span {
    color: #f4f328;
}

.rarity aside {
    font-size: 16px;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: -30px;
    margin-bottom: 40px;
}

@media screen and (max-width: 896px) {

    .card-list {
        position: relative;
        z-index: 3;
    }

    #rarity .card-list {
        padding-bottom: 40px;
    }

    .card-list h4 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 12px;
    }

    .card-list ul li {
        margin: 0 10px;
    }

    .card-list ul li h6 {
        margin-top: 12px;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        opacity: 0;
        transition-duration: 0.2s;
        white-space: nowrap;

    }

    .card-list ul li.slick-active h6 {
        opacity: 1;
    }

    .now-priting {
        width: 55% !important;
    }

    .rarity aside {
        font-size: 12px;
        text-align: center;
        position: relative;
        z-index: 3;
        margin-top: -20px;
        margin-bottom: 28px;
    }

}

.product-detail {
    display: flex;
    align-items: center;
}

.product-detail figure {
    max-width: 440px;
    width: 50%;
    margin-right: 48px;
    flex-shrink: 0;
}

.product-txt {
    width: 100%;
}

.product-txt p {
    margin-bottom: 20px;
}

.product-txt strong {
    display: block;
    text-indent: -1em;
    padding-left: 1em;
    color: #20b8c5;
    font-size: 22px;
    margin-bottom: 8px;
}

.product-txt p > span {
    display: block;
    font-size: 18px;
    line-height: 1.33;
    margin-bottom: 28px;
}

.product-txt strong:last-child {
    text-indent: 0em;
    padding-left: 0em;
}

.product-txt ul {
    padding: 6px 0;
    position: relative;
    margin-top: 48px;

}

.product-txt ul:before,
.product-txt ul:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, #5fc2c7 25%, transparent 25%, transparent 75%, #5fc2c7 75%),
        linear-gradient(45deg, #5fc2c7 25%, transparent 25%, transparent 75%, #5fc2c7 75%);
    background-position: 0 0, 1px 1px !important;
    background-size: 2px 2px !important;
}

.product-txt ul:after {
    top: auto;
    bottom: 0;
}

.product-txt ul li {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: solid 1px #20b8c5;
    display: flex;

}

.product-txt ul li:nth-child(3) {
    font-weight: 700;
    color: #20b8c5;
    ;
}

.product-txt ul li:last-child {
    border: none;
}

.product-txt ul li span {
    display: block;
    width: 130px;
    flex-shrink: 0;
    text-align: center;
    margin-right: 28px;
}


@media screen and (max-width: 896px) {
    .product-detail {
        display: block;
    }

    .product-detail figure {
        max-width: 440px;
        width: 70%;
        margin: 0 auto 40px;
    }

    .product-txt p {
        margin-bottom: 20px;
    }

    .product-txt strong {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .product-txt p > span {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .product-txt ul {
        padding: 6px 0;
        position: relative;
        margin-top: 32px;

    }

    .product-txt ul li {
        font-size: 11px;
        padding: 12px 0;

    }

    .product-txt ul li:last-child {
        border: none;
    }

    .product-txt ul li span {
        width: 80px;
        margin-right: 10px;
    }

}

#benefits .section-intro span {
    font-weight: 700;
    color: #20b8c5;
}

#privilege h3 {
    font-size: 38px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffc4c2 0%, #fffac1 20%, #baffae 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    height: 132px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-left: solid 4px #ffc4c2;
    border-right: solid 4px #baffae;
    margin-bottom: 28px;

}

#privilege h3:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc4c2 0%, #fffac1 20%, #baffae 100%);
    z-index: 2;
}

#privilege h3:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc4c2 0%, #fffac1 20%, #baffae 100%);
    z-index: 2;
}

#privilege h3 img {
    height: 100%;
    position: absolute;
    object-fit: contain;
    top: 0;
    right: 0;
    object-position: right;
}

.common-btn {
    width: 100%;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
    border-radius: 100px;
    position: relative;
    color: #000;
    font-size: 30px;
    font-weight: bold;

}

.common-btn .is-disabled {
    pointer-events: none;

    background: #ccc;
    color: #999;

    cursor: default;

    opacity: .7;
}

.common-btn span {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    width: 30px;
}

#privilege .common-btn {
    margin-top: 48px;
}

.broccoli {
    margin-top: 80px;
}

@media screen and (max-width: 896px) {

    #privilege h3 {
        font-size: 16px;
        font-weight: bold;
        height: 52px;
        padding-left: 10px;
        border-left: solid 2px #ffc4c2;
        border-right: solid 2px #baffae;
        margin-bottom: 18px;

    }

    #privilege h3:before {
        height: 2px;

    }

    #privilege h3:after {
        height: 2px;
    }


    .common-btn {
        width: 100%;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(90deg, #e0e6ff 0%, #ffc4c2 33%, #fffac1 65%, #baffae 100%);
        border-radius: 100px;
        position: relative;
        color: #000;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        line-height: 1.1;

    }

    .common-btn span {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        width: 14px;
    }

    #privilege .common-btn {
        margin-top: 40px;
    }

    .broccoli {
        margin-top: 80px;
    }


}

.campaign-txt {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
}

.campaign-txt small {
    font-size: 85%;
    font-weight: normal;
}

.campaign-txt span {
    font-size: 18px;
    display: block;
    margin-top: 60px;
}

.campaign-txt span strong {
    font-weight: bold;
    font-size: 120%;
}

#campaign .prize-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

#campaign .prize-list>li {
    width: calc(33.33% - 10px);
}

#campaign ul li p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 32px;
    text-align: center;
}

#campaign ul li p span {
    font-size: 11px;
    display: block;
    margin-top: 0.6em;
}

#campaign ul li h3 {
    text-align: center;
    font-weight: bold;
    color: #20b8c5;
    line-height: 1.2;
    height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    flex-flow: column;

}

#campaign ul li h3 span {
    font-size: 80%;
}

#campaign .card-list {
    padding-bottom: 100px;

}

.campaign-txt2 {
    font-size: 18px;
    position: relative;
    border-top: solid 4px #5cff40;
    border-bottom: solid 4px #93aaff;
    font-weight: 500;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.campaign-txt2 strong {
    font-size: 120%;
}

.campaign-txt2 h3 {
    font-size: 120%;
    margin-bottom: 40px;
    border-radius: 100px;
    padding: 5px;
    color: #fff;
    background-color: #20b8c5;
}

.campaign-txt2 small {
    margin-bottom: 20px;
}

.campaign-txt2 .apply_container {
    max-width: 1200px;
    align-items: flex-start;
}

#campaign .campaign-txt2 .apply_container li p {
    margin-top: 0;
    margin-bottom: 0px;
}

#campaign .campaign-txt2 .required_list li p {
    margin-top: 0;
    margin-bottom: 0px;
}


.campaign-txt2 .apply_container {
    max-width: 690px;
    margin: 0 auto 40px;
}

.campaign-txt2 .apply_container li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.campaign-txt2 .apply_container .number {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #20b8c5;
    color: #fff;
    font-weight: bold;
}

.campaign-txt2 .required_list {
    background: #fff;
   padding: 20px 116px;

    border: solid 1px #20b8c5;
    max-width: 690px;
    margin: 0 auto 40px;

}

.campaign-txt2 .required_list li {

    display: flex;
    align-items: center;


}

.campaign-txt2 .required_list .number {
    flex-shrink: 0;
    width: 1em;
    color: #02188e;
    font-weight: 700;
}

.campaign-txt2 .btn_container .common-btn {
    margin-bottom: 20px;
}

.campaign-txt2 .btn_container {
    margin-bottom: 40px;
}

.campaign-txt2 p {
    margin-bottom: 40px;
}

.campaign-txt2 .prize_01_container,
.campaign-txt2 .prize_02_container {
    display: flex;

    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.campaign-txt2 .prize_01_container span,
.campaign-txt2 .prize_02_container span {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #20b8c5;
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.campaign-txt2 .prize_01_container p,
.campaign-txt2 .prize_02_container p {
    margin-bottom: 0;
}

.campaign-txt2 .winners {
    font-size: 120%;
    font-weight: 700;
}

.campaign-txt2 .applicationperiod {
    font-size: 120%;
    font-weight: 700;
}

.campaign-txt2 span {
    font-size: 88%;
    display: inline-block;
}

.campaign-txt2 small {
    font-size: 77%;
    display: inline-block;
}

.campaign-txt2:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(0deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 90%);
    z-index: 2;
}

.campaign-txt2:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(0deg, #93aaff 0%, #ff9793 33%, #ffdd55 65%, #5cff40 90%);
    z-index: 2;
}

#other .prize-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

#other .prize-list>li {
    width: calc(33.33% - 10px);
}

#other ul li p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 32px;
    text-align: center;
}

#other ul li p span {
    font-size: 11px;
    display: block;
    margin-top: 0.6em;
}

#other ul li h3 {
    text-align: center;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    flex-flow: column;

}

#other ul li h3 span {
    font-size: 80%;
}


#other figure {
    position: relative;
}

#other figure::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.5);

    z-index: 10;
}

#other figure::after {
    content: "キャンペーンは終了しました。";

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);

    z-index: 20;

    white-space: nowrap;
}

@media screen and (max-width: 896px) {

    .campaign-txt {
        font-size: 16px;
        margin-bottom: 40px;
    }

    #other .prize-list {
        display: flex;
        flex-flow: column;
        margin-bottom: 20px;
    }

    #other .prize-list>li {
        width: 100%;
        margin-bottom: 40px;
    }

    #other ul li p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 32px;
        text-align: center;
    }

    #other ul li p span {
        font-size: 10px;
        display: block;
    }

    #other ul li h3 {
        text-align: center;
        font-weight: bold;
        color: #fff;
        line-height: 1.2;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-bottom: 16px;
        flex-flow: column;

    }

    #other ul li h3 span {
        font-size: 80%;
    }

    .campaign-txt span {
        font-size: 11px;
        display: block;
        margin-top: 40px;
    }

    #campaign .prize-list {
        display: flex;
        flex-flow: column;
        margin-bottom: 20px;
    }

    #campaign .prize-list>li {
        width: 100%;
        margin-bottom: 40px;
    }

    #campaign ul li p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 32px;
        text-align: center;
    }

    #campaign ul li p span {
        font-size: 10px;
        display: block;
    }

    #campaign ul li h3 {
        text-align: center;
        font-weight: bold;
        color: #20b8c5;
        line-height: 1.2;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-bottom: 16px;
        flex-flow: column;

    }

    #campaign ul li h3 span {
        font-size: 80%;
    }


    #campaign .campaign-txt2 .apply_container li p {
        text-align: left;
    }

    #campaign .campaign-txt2 .required_list li p {
        text-align: left;
    }

    .campaign-txt2 .required_list li {
        align-items: flex-start;
    }

    .campaign-txt2 .prize_01_container,
    .campaign-txt2 .prize_02_container {
        flex-direction: column;
    }


    .campaign-txt2 .prize_01_container span,
    .campaign-txt2 .prize_02_container span {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .campaign-txt2 {
        font-size: 14px;
        padding: 20px;

    }

    .campaign-txt2 .required_list {
   padding: 20px;

}

.campaign-txt2 .required_list li {

    margin-bottom: 10px;
}

.campaign-txt2 .required_list li:last-of-type {

    margin-bottom: 0px;
}


}

.topics-schedule {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.topics-schedule div,
.topics-schedule li {
    display: flex;
}

.topics-schedule div {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.topics-schedule ul {
    padding: 6px 0;
    position: relative;
}

.topics-schedule ul:before,
.topics-schedule ul:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%),
        linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%);
    background-position: 0 0, 1px 1px !important;
    background-size: 2px 2px !important;
}

.topics-schedule ul:after {
    top: auto;
    bottom: 0;
}

.topics-schedule li {
    padding: 8px 0;
    border-bottom: solid 1px rgba(255, 255, 255, .6);
    font-size: 24px;
}

.topics-schedule li:last-child {
    border: none;
}

.topics-schedule .venue {
    width: 44%;
    padding-left: 16px;
}

.topics-schedule aside {
    font-size: 16px;
    margin-top: 20px;
}

@media screen and (max-width: 896px) {

    .topics-schedule {
        margin: 0 auto 40px;

    }

    .topics-schedule div {
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .topics-schedule ul {
        padding: 6px 0;
        position: relative;
    }


    .topics-schedule li {
        padding: 12px 0;
        border-bottom: solid 1px rgba(255, 255, 255, .6);
        font-size: 14px;
        line-height: 1.2;
        align-items: center;
    }



    .topics-schedule aside {
        font-size: 11px;
    }

}

footer {
    background: #fff;
    padding: 140px 0 100px;
    position: relative;
}


footer .bnr {
    width: 1260px;
    margin: 0 auto 40px;
    display: flex;
    gap: 28px;
}

footer .sns {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

footer .sns a {
    display: block;
    width: 92px;
    margin: 0 24px;
}

footer .link {
    display: flex;
    justify-content: center;
    margin-bottom: 72px;
    align-items: center;
}

footer .link a {
    display: block;
    width: 200px;
    margin: 0 24px;
}


footer p {
    text-align: center;
    font-size: 14px;
}


@media screen and (max-width: 896px) {
    footer {
        background: #fff;
        padding: 80px 0 72px;
        position: relative;
    }

    footer .bnr {
        width: 200px;
        flex-flow: column;
        gap: 20px;
    }

    footer .sns {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    footer .sns a {
        display: block;
        width: 40px;
        margin: 0 12px;
    }

    footer .link {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    footer .link a {
        display: block;
        width: 100px;
        margin: 0 8px;
    }


    footer p {
        text-align: center;
        font-size: 10px;
    }
}