*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand-red: #e60012;
    --brand-red-dark: #b3000e;
    --bg-main: #0a0a0a;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.2);
    --border-solid: rgba(255, 255, 255, 1);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

li {
    list-style: none;
}

a:hover {
    opacity: inherit !important;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--brand-red-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;

}

/* ═══════════════════════════════════
           HOLO BACKGROUND CANVAS
        ═══════════════════════════════════ */
#holo-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

/* ═══════════════════════════════════
           CURSOR
        ═══════════════════════════════════ */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ffee00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid #ffee00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 56px;
    height: 56px;

    background-color: #ffee00;
    border-color: rgba(229, 255, 0, 0.9);
}

/* ═══════════════════════════════════
           CARD FLIP LOADER
        ═══════════════════════════════════ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    pointer-events: all;
    perspective: 1200px;
    background: #000;
}

/* 左右2枚のカードパネル */
.card-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.card-panel-left {
    left: 0;
    transform-origin: left center;
    box-shadow: inset -2px 0 20px rgba(255, 60, 0, 0.4);
}

.card-panel-right {
    right: 0;
    transform-origin: right center;
    box-shadow: inset 2px 0 20px rgba(255, 60, 0, 0.4);
}

/* パネル表面：ホロカード質感 */
.card-panel-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #8a0008;
}

/* ホロ虹グラデ（パネル全面） */
.card-panel-inner::before {
    display: none;
}

@keyframes holoPanelShift {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }

    50% {
        background-position: 100% 50%;
        filter: hue-rotate(15deg);
    }

    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

/* スキャンライン */
.card-panel-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(255, 80, 40, 0.07) 3px,
            rgba(255, 80, 40, 0.07) 4px);
    pointer-events: none;
}

/* ロゴ（左パネルに表示） */
.loader-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.loader-logo-wrap img {
    width: 220px;
    max-width: 38vw;
    display: block;
}

/* 中央の縦ライン（カード合わせ目） */
.card-seam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent, rgba(22, 0, 0, 0.736) 20%,
            rgb(20, 0, 0) 80%, transparent);
    z-index: 9999999998;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ── 開くアニメーション ── */
#page-loader.flip-open .card-panel-left {
    animation: cardFlipLeft 0.55s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

#page-loader.flip-open .card-panel-right {
    animation: cardFlipRight 0.55s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

#page-loader.flip-open .card-seam {
    animation: seamFade 0.2s 0.3s forwards;
}

@keyframes cardFlipLeft {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(-100deg);
        opacity: 0;
    }
}

@keyframes cardFlipRight {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(100deg);
        opacity: 0;
    }
}

@keyframes seamFade {
    to {
        opacity: 0;
    }
}

/* ロゴフェードイン */
.loader-logo-wrap {
    opacity: 0;
    animation: loaderLogoIn 0.25s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes loaderLogoIn {
    to {
        opacity: 1;
    }
}

/* ホロシマー（ロゴ周辺を光らせる） */
.loader-shimmer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 120, 0, 0.20) 0%,
            rgba(255, 40, 0, 0.12) 40%,
            transparent 70%);
    animation: shimmerPulse 0.8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmerPulse {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    to {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* ═══════════════════════════════════
           PROGRESS BAR
        ═══════════════════════════════════ */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0080, #ffcc00, #00ffc8, #0080ff, #cc00ff);
    background-size: 200% 100%;
    animation: holoShift 3s linear infinite;
    z-index: 999998;
    width: 0%;
    transition: width 0.1s linear;
}

@keyframes holoShift {
    to {
        background-position: -200% 0;
    }
}

/* ═══════════════════════════════════
           SECTION LABEL & H2
        ═══════════════════════════════════ */
.section-label {
    font-family: var(--font-mono);
    font-size: 16px;
    letter-spacing: 0.3em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
}

.section-label.visible::before {
    transform: scaleX(1);
}

.section-h2 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 40px;
}

.section-h2.en-lang {
    font-size: clamp(24px, 4vw, 28px);
}

/* ═══════════════════════════════════
           HEADER
        ═══════════════════════════════════ */
.header {
    background-color: var(--brand-red-dark);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    transition: background-color 0.4s, backdrop-filter 0.4s;
}

.header.scrolled {
    background-color: rgba(179, 0, 14, 0.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
}

.header-inner .logo {
    width: 175px;
}

.header-inner .logo img {
    width: 100%;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-section ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-section ul li a {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
}

.nav-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-section ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-section .lang {
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    letter-spacing: 0.15em;
    border-radius: 15px;
    padding: 7px 30px 5px 15px;
}

.lang a {
    text-decoration: none;
    color: #fff;
}

.lang .active {
    background-color: #fff;
    padding: 0 2px;
    color: var(--brand-red-dark);
    border-radius: 5px;
    font-weight: bold;
}

.lang .active a {
    color: var(--brand-red-dark);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1000001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* ═══════════════════════════════════
           HERO
        ═══════════════════════════════════ */
.hero-area {
    display: flex;
    justify-content: center;
    padding: 165px 15px 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
}

.hero-area-description {
    width: 40%;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 16px;
    letter-spacing: 0.3em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #fff;
}

.hero-h1 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-white);
    margin-bottom: 24px;
}

.en-lang {
    font-family: var(--font-mono) !important;
}

.hero-h1.en-lang {
    font-size: clamp(40px, 6vw, 54px);
    text-transform: uppercase;
}

.hero-h1 .line {
    display: block;
    overflow: hidden;
}

.hero-h1 .line span {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: lineReveal 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.hero-h1 .line:nth-child(1) span {
    animation-delay: 1.0s;
}

.hero-h1 .line:nth-child(2) span {
    animation-delay: 1.1s;
}

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-h1 em {
    font-style: normal;
    color: #000;
}

.hero-sub {
    font-size: 16px;
    line-height: 2.0;
    color: #fff;
    max-width: 600px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 2.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: var(--text-white);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 18px 40px;
    text-decoration: none;
    border: 1px solid #000;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.btn-black::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-black:hover::before {
    transform: translateX(0);
}

.btn-black:hover {
    color: #000;
    border-color: #fff;
}

.btn-black span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #fff;
    color: var(--text-white);
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 18px 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-outline:hover::before {
    transform: translateX(0);
}

.btn-outline:hover {
    color: var(--brand-red-dark);
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

.hero-area-images {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 35px;
}

.imgItem {
    position: relative;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateX(40px) scale(0.97);
    animation: heroImgIn 1.0s 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.kv-pc-show {
    display: block !important;
}

.kv-sp-show {
    display: none !important;
}



@keyframes heroImgIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.imgItem img {
    width: 100%;
    display: block;
}

.imgItem::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border-right: 1px solid var(--border-solid);
    border-bottom: 1px solid var(--border-solid);
    z-index: -1;
}

/* ═══════════════════════════════════
           SCROLL ANIMATIONS
        ═══════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════
           ABOUT
        ═══════════════════════════════════ */
#about {
    width: 100%;
    max-width: 1280px;
    padding: 100px 15px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-white);
    font-weight: 500;
    display: block;
    margin-top: 0px;
    font-size: 21px;
}

.about-image {
    width: 100%;
    height: 500px;
    background: #000;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 110%;
    opacity: 0.8;
    will-change: transform;
    transition: transform 0.1s linear;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border-right: 1px solid var(--border-solid);
    border-bottom: 1px solid var(--border-solid);
    z-index: -1;
}

.sp-show-img {
    display: none;
}

/* ═══════════════════════════════════
           TRUST
        ═══════════════════════════════════ */
#trust {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 15px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.trust-item {
    border: 1px solid var(--border-color);
    background-color: #000;
    padding: 40px 30px;
    height: 320px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trust-item:hover {
    border-color: var(--text-white);
    transform: translateY(-6px);
}

.trust-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trust-item:hover::after {
    left: 130%;
}

.trust-text {
    font-size: 18px;
    line-height: 1.6;
}

.t-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.t-bg-img::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.t-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-item-des {
    position: relative;
    z-index: 2;
}

.trust-item .t-num {
    font-family: var(--font-display);
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.trust-item:hover .t-num {
    color: #fff;
}

.trust-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ═══════════════════════════════════
           TITLES
        ═══════════════════════════════════ */
#titles {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 15px;
}

.titles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.title-card {
    background: #000;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.title-card:hover {
    border-color: var(--text-white);
    transform: translateY(-6px);
}

.title-text {
    font-size: 18px;
    line-height: 1.6;
}

.title-img {
    width: 100%;
    height: 225px;
    padding: 25px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.title-img img {
    width: 100%;
    max-width: 275px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
}

.title-card:hover .title-img img {
    transform: scale(1.06);
}

.title-info {
    padding: 32px;
}

.title-info h3 {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.title-info p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}


/* ═══════════════════════════════════
           SHOP
        ═══════════════════════════════════ */
#shop {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 15px;
}

.shop-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-white);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.shop-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    padding: 36px 32px;
    background: #000;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shop-card:hover {
    border-color: var(--text-white);
    transform: translateY(-6px);
}

.shop-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shop-card:hover::after {
    left: 130%;
}

.shop-name {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 2;
}

.shop-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.shop-link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════
           EVENT & NEWS
        ═══════════════════════════════════ */
#news {
    width: 100%;
    max-width: 1280px;
    padding: 100px 15px;
    margin: 0 auto;
}

.en-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.event-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    background: #000;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.event-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.event-comi-con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-comi-con::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.event-comi-con img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-des {
    position: relative;
    z-index: 2;
}

.ec-title {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.ec-sub {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.si-badge {
    border: 1px solid #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-family: var(--font-mono);
}

.news-list {
    border-top: 1px solid var(--border-color);
}

.news-item {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    transition: padding-left 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
}

.news-item:hover {
    padding-left: 12px;
    opacity: 0.75;
}

.news-item a {
    border-radius: 20px;
    background-color: #000;
    color: #fff;
    border: 1px solid var(--border-color);
    font-size: 12px;
    font-family: var(--font-mono);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: auto;
    transition: background 0.3s, color 0.3s;
}

.news-item a:hover {
    background: #fff;
    color: #000;
}

.ni-date {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    min-width: 120px;
}

.ni-text {
    font-size: 15px;
    margin-right: 15px;
    color: var(--text-white);
}

/* ═══════════════════════════════════
           CONTACT
        ═══════════════════════════════════ */
#contact {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background-color: #000;
}

.contact-inner {
    margin: 0 auto;
    padding-top: 70px;
    width: 100%;
    max-width: 1280px;
}

.contact-inner .section-label {
    justify-content: center;
}

.contact-inner .section-label::before {
    display: none;
}

.contact-h2 {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
}

.contact-sub {
    font-size: 16px;
    line-height: 2.0;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-align: center;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 20px 50px;
    text-decoration: none;
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.btn-red:hover {
    background: transparent;
    color: #fff;
}

.btn-red span {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════
           FOOTER
        ═══════════════════════════════════ */
.footer {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--brand-red-dark);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

.footer-logo img {
    width: 100%;
    max-width: 155px;
}

.footer-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.footer-nav ul li a {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #fff;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════
           RESPONSIVE0
        ═══════════════════════════════════ */
@media screen and (max-width: 1385px) {
    .hero-area {
        padding: 95px 15px 100px;
    }

    .kv-pc-show {
        display: none !important;
    }

    .kv-sp-show {
        display: block !important;
    }
}

@media screen and (max-width: 992px) {

    .trust-grid,
    .titles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .en-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media screen and (max-width: 798px) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    #page-loader .loader-logo img {
        max-width: calc(100% - 30%);
    }

    .hero-area {
        padding: 70px 20px 80px;
    }

    #about,
    #trust,
    #titles,
    #shop,
    .contact-inner {
        padding: 65px 20px 0;
    }

    #news {
        padding: 65px 20px 50px;
    }

    .hero-h1.en-lang {
        font-size: clamp(26px, 6vw, 54px);
        text-transform: uppercase;
    }

    .section-h2 {
        margin-bottom: 30px;
    }

    .header-inner {
        /*  padding: 15px 20px; */
    }

    .header-inner .logo {
        width: 140px;
    }

    .hamburger {
        display: block;
    }

    .nav-section {
        position: fixed;
        top: 71px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 71px);
        background: var(--brand-red-dark);
        border-top: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 30px 20px;
        transition: right 0.4s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 1000000;
    }

    .nav-section.is-open {
        right: 0;
    }

    .nav-section .nav {
        width: 100%;
    }

    .nav-section ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-section ul li a {
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-section .lang {
        margin-top: 24px;
        padding: 0;
        font-size: 14px;
    }

    .hero-area {
        margin-top: 75px;
        padding: 25px 20px 80px;
        height: 85vh;
    }

    .hero-area-description {
        width: calc(100% - 10%);
        position: absolute;
        bottom: 5%;
        left: 20px;
        padding: 20px 20px 0;
        background-color: #00000057;
        border: 1px solid var(--border-color);
        z-index: 10;
    }

    .hero-h1 {
        font-size: 2rem;
        line-height: 1.4;
    }

    .hero-h1 em {
        color: #fff;
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .hero-sub br {
        display: none;
    }

    .hero-eyebrow {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .hero-eyebrow::before {
        width: 25px;
    }

    .hero-btns {
        display: none;
        flex-direction: column;
        gap: 12px;
    }

    .btn-black,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-area-images {
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
    }

    .imgItem {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .imgItem::after {
        display: none;
    }

    .hero-area-images .imgItem img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        display: none;
    }

    .sp-show-img {
        display: block;
        width: 100%;
    }

    .sp-show-img img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .trust-grid,
    .shop-grid,
    .titles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .trust-item {
        height: auto;
        padding: 30px 20px;
    }

    .title-img {
        height: 180px;
    }

    .en-grid {
        gap: 60px;
    }

    .event-card {
        padding: 30px 20px;
        height: 250px;
    }

    .ec-title {
        font-size: 28px;
    }

    .news-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .news-item a {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .contact-h2 {
        font-size: 40px;
    }

    .btn-red {
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px !important;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    #holo-canvas {
        display: none;
    }
}




/* ═══════════════════════════════════
   CONTACT FORM 7  — Treka Treka style
═══════════════════════════════════ */

.page-inner {
    width: 100%;
    max-width: 1280px;
    margin: 100px auto 25px;
    padding: 0 15px;
}

.contact-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-white);
}

.contact-form-section {
    padding: 35px 0 35px;
    background: var(--brand-red-dark);
    position: relative;
}

/*  
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.0) 15%,
        rgba(255,200,80,0.55) 40%,
        rgba(255,80,80,0.65)  50%,
        rgba(255,200,80,0.55) 60%,
        rgba(255,255,255,0.0) 85%,
        transparent 100%
    );
}
  */
.contact-form-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.tt-contact-form {
    background: #000;
    border: 1px solid var(--border-color);
    padding: 52px 48px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.tt-contact-form::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 80, 0, 0.12) 0%,
            rgba(255, 200, 0, 0.07) 40%,
            transparent 70%);
    pointer-events: none;
}

.tt-contact-form::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(255, 80, 40, 0.025) 3px,
            rgba(255, 80, 40, 0.025) 4px);
    pointer-events: none;
}

.tt-form-row {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    line-height: 15px;
}

.tt-form-label {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-white);
}

.tt-form-label span {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    padding: 2px 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #000;
    background: var(--text-white);
    font-family: var(--font-mono);
}

.tt-form-input,
.tt-form-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.tt-form-textarea {
    min-height: 180px;
    resize: vertical;
}

.tt-form-input::placeholder,
.tt-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.tt-form-input:focus,
.tt-form-textarea:focus {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);
}

.tt-form-submit {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tt-submit-btn,
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 18px 48px;
    border: 1px solid #000;
    color: #fff;
    background: var(--brand-red-dark);
    /* color: var(--brand-red-dark); */
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.tt-submit-btn::before,
.wpcf7-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.tt-submit-btn:hover::before,
.wpcf7-submit:hover::before {
    transform: translateX(0);
}

/* .tt-submit-btn:hover,
.wpcf7-submit:hover {
    color: #fff;
}
  */
.wpcf7-not-valid-tip {
    display: block;
    margin-top: 8px;
    color: rgba(255, 200, 80, 0.9);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.tt-form-input.wpcf7-not-valid,
.tt-form-textarea.wpcf7-not-valid {
    border-color: rgba(255, 200, 80, 0.7);
}

.wpcf7-response-output {
    margin: 32px 0 50px !important;
    padding: 16px 24px !important;
    border: 1px solid var(--border-color) !important;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    border-radius: 0;
}

.wpcf7-mail-sent-ok.wpcf7-response-output {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.wpcf7-mail-sent-ng.wpcf7-response-output,
.wpcf7-validation-errors.wpcf7-response-output {
    border-color: rgba(255, 200, 80, 0.6) !important;
}

.wpcf7-spinner {
    display: block;
    margin: 16px auto 0;
}

@media screen and (max-width: 798px) {
    .tt-contact-form {
        padding: 32px 20px;
    }

    .tt-submit-btn,
    .wpcf7-submit {
        width: 100%;
        min-width: unset;
    }
}





/* ═══════════════════════════════════
   page-contents
═══════════════════════════════════ */
.page-contents {}

.page-contents__inner {
    width: 100%;
    max-width: 1280px;
    margin: 25px auto;
}

.page-contents .section-label {
    font-size: clamp(18px, 4vw, 28px);
    letter-spacing: 0;
    margin-bottom: 15px;
}

.page-contents__text {
    padding-left: 45px;
    margin-bottom: 45px;
    line-height: 200%;
}

.page-contents__text p {
    margin-bottom: 5px;
}

@media screen and (max-width: 798px) {
    .page-contents .section-label {
        padding-left: 15px;
        margin-bottom: 5px;
        background: #fff;
        color: #b3000e;
        padding: 7px 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .page-contents .section-label::before {
        display: none;
    }

    .page-contents__text {
        padding-right: 10px;
        padding-left: 15px;
        line-height: 185%;
        margin-bottom: 15px;
    }
}