@charset "UTF-8";
@import "~@csstools/normalize.css";

:root {
    --color-main: #ccff00;
    --color-sub: #2d7839;
    --color-error: #db584b;
    --color-txt: #fff;
    --color-bg: #0a0a0a;
    --color-base: #f2f2f2;
    --color-gray-light: #f3f3f3;
    --color-gray: #c3c3c3;
    --color-gray-dark: #4b4b4b;
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1)
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block
}

button,
input,
textarea {
    border-radius: 0;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer
}

html {
    scrollbar-gutter: stable
}

@media (max-width:375px) {
    html {
        font-size: 4.26vw
    }
}

body {
    color: var(--color-txt);
    font-family: "M PLUS 2", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    position: relative
}

body,
html {
    width: 100%
}

ol,
ul {
    list-style-type: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-word
}

a {
    cursor: pointer;
    outline: none;
    text-decoration: none;
    color: var(--color-main);
    -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
    transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1)
}

a:hover {
    opacity: 0.5
}

::-moz-selection {
    background: var(--color-sub)
}

::-moz-selection,
::selection {
    background: var(--color-sub)
}

small {
    font-size: max(80%, 12px)
}

h1,
h2,
h3,
h4,
h5,
h6,
li {
    font-size: 100%
}

img,
picture,
video {
    max-width: 100%;
    height: auto;
    vertical-align: bottom
}

.wrapper {
    width: 100%
}

.contents {
    width: 100%;
    padding: 100px 0
}

@media (max-width:768px) {
    .contents {
        padding: 80px 0
    }
}

section:not(:last-child) {
    margin-bottom: 120px
}

@media (max-width:768px) {
    section:not(:last-child) {
        margin-bottom: 80px
    }
}

.anm-char {
    display: inline-block
}

.anm-txt .anm-char {
    position: relative
}

.anm-fade-up {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
}

.anm-blur {
    -webkit-filter: blur(50px);
    filter: blur(50px)
}

@media (max-width:768px) {
    .forPC {
        display: none !important
    }
}

@media (min-width:769px) {
    .forSP {
        display: none !important
    }
}

.lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-family: "Lexend", "M PLUS 2", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em
}

.lang-switch__link {
    color: var(--color-gray);
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease
}

.lang-switch__link:hover {
    color: var(--color-txt);
    opacity: 1
}

.lang-switch__link.is-active {
    color: var(--color-main);
    pointer-events: none
}

.lang-switch__sep {
    color: var(--color-gray-dark)
}

@media (max-width:768px) {
    .lang-switch {
        top: 5px;
        right: 15px;
        font-size: 0.75rem
    }
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg)
}

.contents {
    padding: 0
}

section {
    margin-bottom: 0 !important
}

.op {
    min-height: calc(100vh - 160px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

@media (max-width: 768px) {
    .op {
        min-height: calc(100vh - 80px);
    }
}

.op__texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05
}

.op__ttl {
    font-family: "Lexend", "M PLUS 2", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase
}

@media (max-width:768px) {
    .op__ttl {
        font-size: 15vw
    }
}

.op__ttl .slot-char {
    display: inline-block;
    overflow: hidden;
    height: 1.1em;
    line-height: 1.1;
    vertical-align: bottom
}

.op__ttl .slot-reel {
    display: block;
    line-height: 1.1
}

.token {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 5vh 20px;
    position: relative
}

.token__ttl {
    font-family: "Lexend", "M PLUS 2", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: 0.05em
}

.token__ticker {
    font-family: "Lexend", "M PLUS 2", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--color-gray);
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
    min-height: 1.5em
}

.token__id {
    cursor: pointer;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5em;
    font-family: "Lexend", monospace;
    font-size: clamp(0.6rem, 1.5vw, 0.9rem);
    color: var(--color-gray);
    letter-spacing: 0.05em;
    word-break: break-all;
    margin-bottom: 7em;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    padding-left: 1em
}

.token__id:hover {
    color: var(--color-main)
}

.token__id-icon {
    display: inline-block;
    vertical-align: middle;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    opacity: 0.5;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease
}

.token__id-icon--copied {
    display: none
}

.token__id:hover .token__id-icon {
    opacity: 1
}

.token__id.is-copied .token__id-icon {
    display: none
}

.token__id.is-copied .token__id-icon--copied {
    display: inline-block;
    opacity: 1
}

.token__img {
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    position: relative
}

.token__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.statement {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 10vh 20px;
    max-width: 1000px;
    margin: 0 auto
}

.statement__copy {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Medium", YuGothic;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 2em;
    letter-spacing: 0.08em
}

.statement__txt {
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    line-height: 2.2;
    color: var(--color-gray);
    max-width: 700px
}

@media (max-width:768px) {
    .statement__txt {
        font-size: 0.8125rem
    }
}

.story {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15vh 20px;
    position: relative;
    overflow: hidden
}

.story:after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/noise.jpeg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    -webkit-animation: noise-pulse 8s ease-in-out infinite;
    animation: noise-pulse 8s ease-in-out infinite
}

@-webkit-keyframes noise-pulse {

    0%,
    to {
        opacity: 0.3
    }

    50% {
        opacity: 0.15
    }
}

@keyframes noise-pulse {

    0%,
    to {
        opacity: 0.3
    }

    50% {
        opacity: 0.15
    }
}

.story__copy,
.story__txt {
    position: relative;
    z-index: 1
}

.story__copy {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Medium", YuGothic;
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 1.5em;
    letter-spacing: 0.03em
}

.story__txt {
    font-size: clamp(0.875rem, 1.3vw, 1.0625rem);
    line-height: 2.4;
    text-align: center;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.85)
}

.story.is-passed .story__copy,
.story.is-passed .story__txt {
    opacity: 0.2;
    -webkit-transition: opacity 0.8s var(--ease-out);
    transition: opacity 0.8s var(--ease-out)
}

.story:before {
    content: attr(data-keyword);
    position: absolute;
    font-size: clamp(8rem, 25vw, 20rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: -0.02em
}

@media (max-width:768px) {
    .story {
        padding: 12vh 20px
    }

    .story__copy {
        font-size: clamp(1.5rem, 7vw, 2.5rem)
    }

    .story__txt {
        line-height: 2.2;
        text-align: left
    }
}

.closing {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 15vh 20px 3rem;
    position: relative
}

.closing__copy {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Medium", YuGothic;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 1em;
    letter-spacing: 0.05em
}

@media (max-width:768px) {
    .closing__copy {
        font-size: 1.9375rem
    }
}

.closing__txt {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 2.2;
    color: var(--color-gray);
    max-width: 600px
}

.closing__sign {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 2;
    color: var(--color-gray);
    margin-top: 3em;
    text-align: center
}

.closing__sns {
    display: inline-block;
    margin-top: 10em;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease
}

.closing__sns img {
    width: 32px;
    height: 32px
}

.closing__sns:hover {
    opacity: 0.7
}

@media (max-width:768px) {
    .closing__sns img {
        width: 28px;
        height: 28px
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 50;
    opacity: 1;
    -webkit-transition: opacity 0.5s var(--ease-out);
    transition: opacity 0.5s var(--ease-out)
}

.scroll-indicator.is-hidden {
    opacity: 0;
    pointer-events: none
}

.scroll-indicator__text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl
}

.scroll-indicator__line {
    width: 1px;
    height: 60px;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--color-txt)), to(transparent));
    background: linear-gradient(to bottom, var(--color-txt), transparent);
    margin: 15px auto 0;
    -webkit-animation: scroll-line 2s ease-in-out infinite;
    animation: scroll-line 2s ease-in-out infinite
}

@media (max-width:768px) {
    .scroll-indicator {
        bottom: 20px
    }

    .scroll-indicator__line {
        height: 40px
    }
}

@-webkit-keyframes scroll-line {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top;
        transform-origin: top
    }

    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: top;
        transform-origin: top
    }

    50.1% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: bottom;
        transform-origin: bottom
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: bottom;
        transform-origin: bottom
    }
}

@keyframes scroll-line {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top;
        transform-origin: top
    }

    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: top;
        transform-origin: top
    }

    50.1% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: bottom;
        transform-origin: bottom
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: bottom;
        transform-origin: bottom
    }
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(var(--color-main)), to(var(--color-txt)));
    background: linear-gradient(90deg, var(--color-main), var(--color-txt));
    z-index: 1000;
    -webkit-transition: width 0.1s linear;
    transition: width 0.1s linear
}

.text-accent {
    color: var(--color-main)
}

.text-muted {
    color: var(--color-gray)
}