@font-face {
    font-family: 'Noto Sans';
    src: url('../assets/fonts/NotoSans-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../assets/fonts/NotoSans-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../assets/fonts/NotoSans_ExtraCondensed-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../assets/fonts/NotoSansJP-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../assets/fonts/NotoSansJP-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../assets/fonts/NotoSansJP-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

:root {
    --bg: #1a1a1a;
    --bg2: #222;
    --bg3: #2a2a2a;
    --h: #f5f5f5;
    --p: #e0e0e0;
    --acc: #b0b0b0;
    --red: #DC003F;
    --sep: rgba(245, 245, 245, 0.08);
    --sep2: rgba(245, 245, 245, 0.04);
    --cv: clamp(34px, 4.5vw, 64px);
    --px: clamp(24px, 4vw, 56px);
    --nh: 62px;
    --fh: 44px;
    --dur: .9s;
    --ease: cubic-bezier(0.76, 0, 0.24, 1);
}

.red {
    color: var(--red) !important;
    font-style: normal;
}

.ruler {
    position: fixed;
    top: var(--nh);
    bottom: var(--fh);
    right: 0;
    width: var(--cv);
    z-index: 5;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        repeating-linear-gradient(to bottom, var(--h) 0px, var(--h) 1px, transparent 1px, transparent 10px),
        repeating-linear-gradient(to bottom, var(--h) 0px, var(--h) 1px, transparent 1px, transparent 2px);
    background-size: 10px 10px, 5px 2px;
    background-position: right top;
    background-repeat: repeat-y;
}

#v-ptr {
    position: fixed;
    right: 0;
    width: var(--cv);
    height: 1px;
    background: var(--red);
    z-index: 101;
    pointer-events: none;
    transition: top 0.6s var(--ease);
    top: 50%;
    box-shadow: 0 0 10px rgba(220, 0, 63, 0.3);
}

#shutter {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#shutter.on {
    opacity: 1;
}

.v-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vh, 15px);
    height: 100%;
    width: 100%;
    pointer-events: all;
}

.vn-link {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 7px;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: none;
    transition: all 0.4s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.vn-link.active {
    color: var(--h);
    font-weight: 700;
}

.vn-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.nav-clock {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 6.5px;
    letter-spacing: 0.25em;
    color: var(--acc);
    opacity: 0.5;
    white-space: nowrap;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg);
    color: var(--p);
    -webkit-font-smoothing: antialiased;
    touch-action: none;
    cursor: none;
    font-family: 'Noto Sans', sans-serif
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9100;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: .18;
    mix-blend-mode: overlay
}

#geo-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .35
}

#cd {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%)
}

#cd::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    width: 1px;
    height: 20px;
    background: var(--h);
    transform: translateX(-50%)
}

#cd::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    height: 1px;
    width: 20px;
    background: var(--h);
    transform: translateY(-50%)
}

#cr {
    position: fixed;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .4s var(--ease), height .4s var(--ease);
    border: 1px solid rgba(245, 245, 245, 0.2)
}

#cr.x {
    width: 52px;
    height: 52px;
    border-color: rgba(245, 245, 245, 0.4);
    background: rgba(245, 245, 245, 0.03)
}

#tip {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    padding: 5px 11px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--sep);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 7px;
    letter-spacing: .4em;
    color: rgba(245, 245, 245, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s ease;
    transform: translate(16px, -50%)
}

#tip.show {
    opacity: 1
}

#ld {
    position: fixed;
    inset: 0;
    background: #0d0d0d;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 1s ease;
}

#ld.out {
    transform: scale(1.1);
    opacity: 0;
    pointer-events: none;
}

.ld-geo {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ld-geo-line {
    position: absolute;
    background: rgba(245, 245, 245, 0.04);
}

.ld-geo-line:nth-child(1) {
    top: 25%;
    left: 0;
    right: 0;
    height: 1px;
    animation: lgl 1.8s ease .1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.ld-geo-line:nth-child(2) {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    animation: lgl 1.8s ease .3s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.ld-geo-line:nth-child(3) {
    top: 75%;
    left: 0;
    right: 0;
    height: 1px;
    animation: lgl 1.8s ease .5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.ld-geo-line:nth-child(4) {
    left: 25%;
    top: 0;
    bottom: 0;
    width: 1px;
    animation: lgv 1.8s ease .2s forwards;
    transform: scaleY(0);
    transform-origin: top;
}

.ld-geo-line:nth-child(5) {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    animation: lgv 1.8s ease .4s forwards;
    transform: scaleY(0);
    transform-origin: top;
}

.ld-geo-line:nth-child(6) {
    left: 75%;
    top: 0;
    bottom: 0;
    width: 1px;
    animation: lgv 1.8s ease .6s forwards;
    transform: scaleY(0);
    transform-origin: top;
}

@keyframes lgl {
    to {
        transform: scaleX(1);
    }
}

@keyframes lgv {
    to {
        transform: scaleY(1);
    }
}

.ld-center {
    position: relative;
    z-index: 10;
}

#ld-logo-img {
    width: clamp(160px, 18vw, 260px);
    height: auto;
    filter: brightness(1.2);
    animation: breathing 6s infinite ease-in-out;
}

@keyframes breathing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

.ld-v-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 7px;
    letter-spacing: 0.8em;
    font-family: 'Noto Sans', sans-serif;
    color: var(--p);
    opacity: 0.15;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 5;
}

.ld-v-text.left {
    left: clamp(15px, 3vw, 40px);
    transform: translateY(-50%) rotate(180deg);
}

.ld-v-text.right {
    right: clamp(15px, 3vw, 40px);
}

.ld-foot {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 80vw);
    z-index: 10;
}

.ld-status {
    font-size: 6px;
    letter-spacing: 0.5em;
    color: var(--acc);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.3;
    animation: blink 3s infinite;
}

.ld-progress {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.ld-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width 0.1s linear;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.45;
    }
}

#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--red);
    z-index: 700;
    transition: width var(--dur) var(--ease);
    opacity: .7
}

#cur {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease
}

#cur.show {
    opacity: 1;
    pointer-events: all
}

#vl {
    position: fixed;
    top: 0;
    bottom: 0;
    left: var(--cv);
    width: 1px;
    background: var(--sep);
    z-index: 5;
    pointer-events: none
}

#vr {
    position: fixed;
    top: 0;
    bottom: 0;
    right: var(--cv);
    width: 1px;
    background: var(--sep);
    z-index: 5;
    pointer-events: none
}

#col-l {
    position: fixed;
    left: 0;
    top: var(--nh);
    bottom: var(--fh);
    width: var(--cv);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: clamp(250px, 4vh, 36px);
    pointer-events: none
}

.col-dot {
    width: 1px;
    height: 12px;
    background: rgba(245, 245, 245, 0.15);
    border: none;
    cursor: none;
    transition: all .4s ease;
    padding: 6px;
    display: block;
    margin-bottom: 5px;
    pointer-events: all
}

.col-dot.a {
    height: 22px;
    background: var(--red)
}

.col-dot:hover {
    background: rgba(245, 245, 245, 0.35)
}

#col-r {
    position: fixed;
    right: 0;
    top: var(--nh);
    bottom: var(--fh);
    width: var(--cv);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--sep);
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(5px);
}

.col-r-logo {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: 7px;
    letter-spacing: .45em;
    color: rgba(245, 245, 245, 0.2);
    text-decoration: none;
    cursor: none;
    transition: color .3s;
    text-transform: uppercase
}

.col-r-logo:hover {
    color: rgba(245, 245, 245, 0.5)
}

.col-r-logo img {
    width: clamp(60px, 10vh, 120px);
    height: auto;
    transform: rotate(-90deg);
    opacity: .25;
    transition: opacity .3s;
    display: block
}

.col-r-logo img:hover {
    opacity: .6
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nh);
    z-index: 600;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--sep);
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px)
}

.nav-l {
    width: var(--cv);
    flex-shrink: 0;
    height: 100%;
    border-right: 1px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.nav-l::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--red);
    opacity: .5
}

.nav-logo-lnk {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    cursor: none
}

.nav-logo-img {
    height: 22px;
    width: auto;
    opacity: .5;
    transition: opacity .3s;
    display: block
}

.nav-logo-lnk:hover .nav-logo-img {
    opacity: 1
}

.nav-c {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 var(--px);
    overflow: hidden
}

.nav-r {
    flex-shrink: 0;
    height: 100%;
    border-left: 1px solid var(--sep);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--cv)
}

.lang-box {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none
}

.lang-cur {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 8px;
    letter-spacing: 0.45em;
    color: rgba(245, 245, 245, 0.3);
    text-transform: uppercase;
    transition: color 0.3s
}

.lang-box:hover .lang-cur {
    color: var(--h)
}

.lang-list {
    position: absolute;
    top: 100%;
    right: -1px;
    min-width: 70px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--sep);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    border-top: none
}

.lang-box:hover .lang-list {
    opacity: 1;
    pointer-events: all
}

.lang-opt {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: 8px;
    letter-spacing: .45em;
    color: rgba(245, 245, 245, 0.4);
    text-decoration: none;
    padding: 12px 0;
    text-align: center;
    transition: all .3s;
    display: block;
    cursor: none;
    border-bottom: 1px solid var(--sep2)
}

.lang-opt:last-child {
    border-bottom: none
}

.lang-opt:hover,
.lang-opt.on {
    color: var(--h);
    background: rgba(245, 245, 245, 0.05)
}

#pnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--fh);
    z-index: 600;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--sep);
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px)
}

.fn-l {
    width: var(--cv);
    height: 100%;
    flex-shrink: 0;
    border-right: 1px solid var(--sep);
    display: flex;
    align-items: center;
    justify-content: center
}

.fn-r {
    width: var(--cv);
    height: 100%;
    flex-shrink: 0;
    border-left: 1px solid var(--sep);
    display: flex;
    align-items: center;
    justify-content: center
}

.fn-c {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--px);
    overflow: hidden
}

#acc-toggle {
    background: none;
    border: none;
    cursor: none;
    color: var(--p);
    transition: all .3s var(--ease);
    display: flex;
    align-items: center;
    padding: 0;
    opacity: 0.5
}

#acc-toggle:hover {
    opacity: 1;
    transform: scale(1.1);
}

#acc-toggle svg {
    width: 15px;
    height: 15px;
    display: block
}

.conf-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 9px;
    letter-spacing: .2em;
    color: var(--p);
    text-decoration: none;
    cursor: none;
    transition: color .3s;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.8
}

.conf-link:hover {
    color: var(--h)
}

.sig-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.sig-wrap a {
    color: inherit;
}

.sig-lbl {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 9px;
    letter-spacing: .2em;
    color: var(--p);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.8
}

.sig-img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity .3s;
    cursor: none;
    filter: brightness(1.2)
}

.sig-img:hover {
    opacity: .8
}

#stage {
    position: fixed;
    top: var(--nh);
    bottom: var(--fh);
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 2
}

#track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    will-change: transform;
    transition: transform var(--dur) var(--ease)
}

.slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    overflow: hidden
}

.vcol {
    width: var(--cv);
    flex-shrink: 0;
    border-right: 1px solid var(--sep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: clamp(14px, 2.5vh, 24px) 0
}

.vtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 6px;
    letter-spacing: .45em;
    color: rgba(245, 245, 245, 0.22);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase
}

.vsnum {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: 8px;
    letter-spacing: .2em;
    color: rgba(245, 245, 245, 0.2);
    writing-mode: vertical-rl;
    transform: rotate(180deg)
}

.page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(16px, 4vh, 40px) var(--px) clamp(16px, 4vh, 40px);
    padding-right: calc(var(--cv) + var(--px));
    overflow: hidden;
    position: relative
}

.rv {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.23, 1, .32, 1)
}

.rv.d2 {
    transition-delay: .09s
}

.rv.d3 {
    transition-delay: .18s
}

.rv.d4 {
    transition-delay: .27s
}

.rv.d5 {
    transition-delay: .36s
}

.rv.d6 {
    transition-delay: .45s
}

.rv.d7 {
    transition-delay: .54s
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.ey {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: 8px;
    letter-spacing: .55em;
    color: rgba(245, 245, 245, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(12px, 2vh, 20px);
    text-transform: uppercase
}

.ey::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
    opacity: .7
}

.imp {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 4vw, 52px);
    color: var(--h);
    line-height: 1;
    letter-spacing: -.01em;
    text-transform: uppercase
}

.imp em {
    color: var(--red);
    font-style: normal
}

.bod {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--p);
    line-height: 1.95;
    letter-spacing: .025em
}

.sl {
    height: 1px;
    background: var(--sep);
    display: block;
    margin: clamp(12px, 2.2vh, 22px) 0
}

.sl-red {
    height: 1px;
    background: var(--red);
    display: block;
    margin: clamp(12px, 2.2vh, 22px) 0;
    max-width: 80px;
    opacity: .5
}

.mono {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 9px;
    letter-spacing: .4em;
    color: rgba(245, 245, 245, 0.2);
    text-transform: uppercase;
    line-height: 2.4
}

.ghost-n {
    position: absolute;
    right: clamp(12px, 2.5vw, 36px);
    bottom: clamp(12px, 2.5vh, 28px);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 15vw, 180px);
    color: rgba(245, 245, 245, 0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.02em
}

.tbl {
    width: 100%;
    border-collapse: collapse
}

.tbl tr {
    border-top: 1px solid var(--sep2)
}

.tbl tr:last-child {
    border-bottom: 1px solid var(--sep2)
}

.tbl td {
    padding: 10px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: clamp(11px, 1.3vw, 13px);
    color: var(--p);
    line-height: 1.65;
    vertical-align: top
}

.tbl td:first-child {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: 8px;
    letter-spacing: .3em;
    color: rgba(245, 245, 245, 0.28);
    white-space: nowrap;
    padding-right: 20px
}

.tbl tr:hover td {
    background: rgba(245, 245, 245, 0.02)
}

.ctbl {
    width: 100%;
    margin-top: clamp(15px, 2.5vh, 25px);
    border-top: 1px solid var(--sep);
    position: relative;
}

.ctbl-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 0 8px;
    border-bottom: 1px solid var(--sep);
    position: relative;
}

.ctbl-meta {
    position: absolute;
    top: -12px;
    right: 0;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 6.5px;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    opacity: 0.6;
}

.ctbl-col-a,
.ctbl-col-b {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 7.5px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctbl-col-a {
    color: rgba(255, 255, 255, 0.6);
}

.ctbl-col-b {
    color: rgba(255, 255, 255, 0.2);
}

.ctbl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 0;
    border-bottom: 1px solid var(--sep2);
    transition: all 0.4s var(--ease);
    position: relative;
    cursor: none;
}

.ctbl-row::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 20%;
    bottom: 20%;
    width: 1.5px;
    background: var(--red);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease);
}

.ctbl-row:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 12px;
}

.ctbl-row:hover::before {
    transform: scaleY(1);
}

.ctbl-a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(11px, 1.3vw, 13px);
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: color 0.3s;
}

.ctbl-b {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: clamp(10px, 1.2vw, 12px);
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
}

.ctbl-row:hover .ctbl-a {
    color: #fff;
}

.ctbl-row:hover .ctbl-b {
    color: rgba(255, 255, 255, 0.4);
}

.slide.active .ctbl-row {
    animation: ctblFadeIn 0.8s var(--ease) forwards;
    opacity: 0;
    transform: translateX(-4px);
}

@keyframes ctblFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ctbl-row:nth-child(1) {
    animation-delay: 0.4s !important;
}

.ctbl-row:nth-child(2) {
    animation-delay: 0.55s !important;
}

.ctbl-row:nth-child(3) {
    animation-delay: 0.7s !important;
}

.ctbl-row:nth-child(4) {
    animation-delay: 0.85s !important;
}

.ctbl-pair {
    display: flex;
    gap: 40px;
    width: 100%;
    margin-top: 20px;
}

.ctbl-pair .ctbl {
    margin-top: 0;
    flex: 1;
}

.two {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%
}

.spv {
    width: 1px;
    background: var(--sep);
    display: none;
    flex-shrink: 0;
    margin: 0 clamp(16px, 3vw, 40px)
}

.cpair {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 12px
}

.card {
    padding: clamp(12px, 2vh, 18px) clamp(12px, 1.8vw, 18px);
    background: var(--bg2);
    border-left: 2px solid rgba(220, 0, 63, 0.3);
    position: relative;
    transition: border-color .3s
}

.card:hover {
    border-left-color: var(--red)
}

.clbl {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: 8px;
    letter-spacing: .45em;
    color: rgba(245, 245, 245, 0.25);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase
}

.cbod {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: clamp(11px, 1.3vw, 13px);
    color: var(--p);
    line-height: 1.88
}

.pg-prev,
.pg-next {
    position: absolute;
    bottom: clamp(6px, 1.2vh, 14px);
    background: none;
    border: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: 9px;
    letter-spacing: .2em;
    color: rgba(245, 245, 245, 0.3);
    text-transform: uppercase;
    cursor: none;
    padding: 10px 0;
    z-index: 20;
    transition: color .3s
}

.pg-prev:hover,
.pg-next:hover {
    color: var(--h)
}

.pg-prev {
    left: var(--px)
}

.pg-next {
    right: calc(var(--cv) + var(--px))
}

.arr {
    display: inline-block;
    transition: transform .3s
}

.pg-next:hover .arr {
    transform: translateX(4px)
}

.pg-prev:hover .arr {
    transform: translateX(-4px)
}

.clink {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(11px, 1.4vw, 14px);
    letter-spacing: .35em;
    color: rgba(245, 245, 245, 0.3);
    text-decoration: none;
    transition: color .3s;
    display: block;
    margin-top: 20px;
    cursor: none;
    text-transform: uppercase
}

.clink:hover {
    color: var(--h)
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease
}

.modal.visible {
    pointer-events: all;
    opacity: 1
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

.modal-box {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: var(--bg2);
    border: 1px solid var(--sep);
    padding: clamp(24px, 5vw, 40px);
    z-index: 2;
    transform: translateY(16px);
    transition: transform .4s ease
}

.modal.visible .modal-box {
    transform: translateY(0)
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.modal-x {
    background: none;
    border: none;
    color: var(--p);
    font-size: 22px;
    line-height: 1;
    cursor: none;
    opacity: .4;
    transition: opacity .3s;
    padding: 0
}

.modal-x:hover {
    opacity: 1
}

.acc-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(280px, 26vw, 340px);
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--sep);
    padding: calc(var(--nh) + 24px) clamp(20px, 3vw, 32px) 40px;
    z-index: 599;
    transform: translateX(100%);
    transition: transform .6s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.acc-panel:not([hidden]) {
    transform: translateX(0)
}

.acc-grid {
    display: flex;
    flex-direction: column
}

.acc-btn,
.acc-row-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--sep);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--p);
    cursor: none;
    width: 100%;
    text-align: left;
    transition: opacity .3s
}

.acc-row-h {
    color: rgba(245, 245, 245, 0.3);
    pointer-events: none
}

.acc-btn:hover {
    opacity: .6
}

.acc-btn .st {
    font-size: 8px;
    letter-spacing: .3em;
    border: 1px solid var(--sep);
    padding: 3px 9px;
    color: rgba(245, 245, 245, 0.35);
    transition: all .3s
}

.acc-btn.active .st {
    color: var(--h);
    border-color: rgba(245, 245, 245, 0.4);
    background: rgba(245, 245, 245, 0.05)
}

.acc-foot {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: auto;
    padding-top: 28px
}

.acc-act {
    background: none;
    border: 1px solid var(--sep);
    padding: 7px 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 8px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--p);
    cursor: none;
    opacity: .5;
    transition: opacity .3s
}

.acc-act:hover {
    opacity: 1
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important
}

body.reduce-motion .rv {
    transform: translateY(0);
    opacity: 1
}

body.reduce-motion #track {
    transition: none !important
}

body.high-contrast {
    --bg: #000;
    --h: #fff;
    --p: #fff;
    --sep: rgba(255, 255, 255, 0.25)
}

body.text-zoom .imp {
    font-size: clamp(22px, 4vw, 56px)
}

body.text-zoom .bod {
    font-size: 16px
}

body.system-font,
body.system-font * {
    font-family: Helvetica, Arial, sans-serif !important
}

body.system-cursor,
body.system-cursor * {
    cursor: auto !important
}

body.system-cursor #cd,
body.system-cursor #cr {
    display: none !important
}

body.monochrome {
    filter: grayscale(1)
}

@media(max-width:767px) {
    :root {
        --cv: 28px;
        --px: 14px;
        --nh: 48px;
        --fh: 36px
    }

    .two {
        flex-direction: column;
        gap: 14px
    }

    .spv {
        display: none
    }

    .cpair {
        flex-direction: column
    }

    .imp {
        font-size: clamp(17px, 5.5vw, 26px)
    }

    .bod {
        font-size: 11px
    }

    .ghost-n {
        font-size: clamp(52px, 15vw, 72px)
    }
}

@media(min-width:768px) {
    .two {
        flex-direction: row;
        gap: 0
    }

    .two .col {
        flex: 1
    }

    .spv {
        display: block
    }

    .cpair {
        flex-direction: row
    }

    .cpair .card {
        flex: 1
    }

    .imp {
        font-size: clamp(20px, 3.5vw, 44px)
    }

    .bod {
        font-size: 13px
    }
}

.modal-box {
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    padding: 0;
    overflow: hidden;
    width: clamp(320px, 90vw, 580px);
}

.modal-head {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--sep2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg2);
    position: relative;
    z-index: 10;
}

.modal-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 30px 40px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--red) transparent;
}

.modal-scroll-area::-webkit-scrollbar {
    width: 1px;
}

.modal-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.modal-scroll-area::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 0;
    border: none !important;
}

.bod-strong {
    font-size: 13px;
    color: var(--h);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.modal-sect {
    margin-bottom: 25px;
}

.modal-st {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 8px;
}

.bod-sm {
    font-size: 11px;
    line-height: 1.8;
    color: var(--p);
    opacity: 0.8;
}

.contact-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--sep2);
}

.cl-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.cl-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clink-sm {
    font-size: 11px;
    color: var(--h);
    text-decoration: none;
    transition: opacity 0.3s;
}

.clink-sm:hover {
    opacity: 0.7;
}

.copy-btn-sm {
    background: none;
    border: none;
    padding: 5px;
    opacity: 0.4;
    transition: all 0.3s;
    cursor: none;
    display: flex;
    align-items: center;
}

.copy-btn-sm:hover {
    opacity: 1;
    transform: scale(1.1);
}

.icon-svg-xs {
    width: 12px;
    height: 12px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.clabel {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--acc);
    opacity: 0.4;
    width: 140px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.clink {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--h);
    cursor: none;
    transition: color 0.3s ease;
    text-decoration: none;
}

.clink:hover {
    color: var(--red);
}

.copy-btn,
.copy-btn-sm {
    background: none;
    border: none;
    padding: 0;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease;
    opacity: 0.3;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.copy-btn:hover,
.copy-btn-sm:hover {
    opacity: 1;
}

.copy-btn .icon-svg {
    width: 11px;
    height: 11px;
    opacity: 0.6;
    transition: all 0.3s;
    display: block;
}



.copy-btn:hover svg {
    opacity: 1;
}

.copy-btn.copied {
    border-color: var(--red);
    color: var(--red);
    background: rgba(220, 0, 63, 0.1);
}

.acc-overlay {
    z-index: 9500;
}

.glass {
    background: rgba(22, 22, 22, 0.7) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8) !important;
    padding: 40px !important;
}

.acc-grid {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}

.acc-row-h {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sep);
    margin-bottom: 5px;
}

.nfs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--sep2);
    cursor: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s;
}

.nfs-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.nfs-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--p);
    opacity: 0.5;
    font-weight: 400;
}

.nfs-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--p);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.acc-btn.active .nfs-val {
    color: var(--red);
}

.acc-foot {
    margin-top: 40px;
    text-align: center;
}

.acc-reset-btn {
    background: none;
    border: 1px solid var(--sep);
    color: var(--p);
    font-size: 9px;
    padding: 14px 28px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: none;
    transition: all 0.3s var(--ease);
    opacity: 0.6;
}

.acc-reset-btn:hover {
    opacity: 1;
    border-color: var(--red);
    color: #fff;
}

@media(max-width:767px) {
    .ctbl-pair {
        flex-direction: column;
        gap: 24px;
    }

    .v-nav {
        display: flex;
    }

    .v-num {
        font-size: 6px;
    }

    .ruler {
        opacity: 0.1;
    }

    .modal-box.glass {
        width: 95%;
        padding: 25px 20px !important;
        max-height: 90vh;
    }

    .acc-grid {
        margin-top: 20px;
    }

    .nfs-row {
        padding: 12px 0;
    }

    .nfs-lbl {
        font-size: 8px;
    }

    .nfs-val {
        font-size: 10px;
    }

    .acc-foot {
        margin-top: 20px;
    }

    .acc-reset-btn {
        padding: 10px 20px;
        width: 100%;
    }

    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-top: 15px;
    }

    .clabel {
        width: auto;
        margin-bottom: 2px;
    }

    .clink {
        font-size: 14px;
    }

    .copy-btn {
        width: 14px;
        height: 14px;
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .sig-img {
        height: 28px;
        height: 16px;
        opacity: 0.8;
    }
}