@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}
.t_center{
    text-align: center;
    padding: 40px 10px;
}
/* Hero Section */
.hero {
    background: linear-gradient(168deg, #0046E8 0%, #0046E8 52%, #000 52%, #000 100%);
    padding: 30px 20px 80px;
    min-height: 100vh;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px 0;
    align-items: start;
}

/* è¦ªè¦ç´ ã«perspectiveã‚'æŒ‡å®š */
.hero-top-logo {
    grid-column: 1;
    grid-row: 1;
    padding: 50px 0 0 20px;
    width: 100%;
    max-width: 550px;
    position: relative;
    display: block;
    -webkit-perspective: 800px;
    perspective: 800px;
    overflow: visible;
}

/* å­è¦ç´ ï¼ˆç"»åƒï¼‰ã«ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã‚'é©ç"¨ */
.hero-top-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    -webkit-animation: spinFadeIn 2s ease-in-out forwards;
    animation: spinFadeIn 2s ease-in-out forwards;
}

@-webkit-keyframes spinFadeIn {
    0% {
        opacity: 0;
        -webkit-transform: rotateY(0deg) scaleX(1);
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        -webkit-transform: rotateY(180deg) scaleX(1.05);
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-transform: rotateY(360deg) scaleX(1);
    }
}

@keyframes spinFadeIn {
    0% {
        opacity: 0;
        transform: rotateY(0deg) scaleX(1);
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: rotateY(180deg) scaleX(1.05);
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: rotateY(360deg) scaleX(1);
    }
}

.hero-top-mv {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 150%;
    height: 100%;
    margin-left: -200px;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1s ease-out 2s forwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-top-mv img {
    width: 100%;
    height: auto;
}

.hero-news {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    height: 150px;
    padding-bottom: 600px;
}

.hero-news-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    letter-spacing: 12px;
    margin-bottom: -26px;
    color: #fff;
    font-weight: bold;
}

.character-left,
.character-right,
.logo-center {
    display: none;
}

/* Fade-in on scroll animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.section-black {
    background: #000;
    padding: 0px 20px 200px 20px;
    position: relative;
    margin-top: -100px;
}
.section-black-top {
    background: #000;
    padding: 120px 20px;
    position: relative;
    transform: skewY(4.86deg);
    margin-top: -80px;
}
.section-black-top h1 {
    position: absolute;
    top: -28px;
    left: 10px;
    right: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    font-weight: bold;
    color: #0046E8;
    letter-spacing: 20px;
    z-index: 1;
}

.section-blue {
    background: #0046E8;
    padding: 0px 20px 200px 20px;
    position: relative;
    margin-top: -100px;
}
.section-blue-top {
    background: #0046E8;
    padding: 120px 20px;
    position: relative;
    transform: skewY(4.86deg);
    margin-top: -80px;
}
.section-blue-top h1 {
    position: absolute;
    top: -28px;
    left: 10px;
    right: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    font-weight: bold;
    color: #000;
    letter-spacing: 20px;
    z-index: 1;
}

/* Spec Section */
.news-box {
    background: #fff;
    color: #000;
    padding: 20px 30px;
    max-width: 900px;
    max-height: 200px;
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        50px 100%,
        0 calc(100% - 50px)
    );
    filter: drop-shadow(12px 12px 0px #000);
}

/* スクロールバーのスタイル */
.news-box::-webkit-scrollbar {
    width: 8px;
}

.news-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 10px 0;
}

.news-box::-webkit-scrollbar-thumb {
    background: #0046E8;
    border-radius: 10px;
}

.news-box::-webkit-scrollbar-thumb:hover {
    background: #003bc0;
}

.news-item-new {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 8px;
}

.news-item-new:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-date-new {
    background: #0046E8;
    color: #fff;
    padding: 8px 24px;
    margin-right: 30px;
    font-size: 15px;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 1px;
}

.news-text-new {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #000;
}

/* Spec Section */
.spec-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.spec-wrapper,
.novelty-wrapper {
    position: relative;
    filter: drop-shadow(15px 15px 0px #000);
}

.section-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px;
    letter-spacing: 10px;
    margin-bottom: -30px;
    color: #fff;
    font-weight: bold;
}

.spec-box {
    background: #fff;
    color: #000;
    padding: 40px;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        50px 100%,
        0 calc(100% - 50px)
    );
}

.spec-item {
    color: #000;
    padding: 5px 0;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.6;
}

.spec-item span {
    display: inline-block;
    width: 135px;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background: #0046E8;
    margin-right: 15px;
    flex-shrink: 0;
    color: #ffffff;
}

.novelty-box {
    background: #fff;
    color: #000;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: bold;
    min-height: 500px;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        60px 100%,
        0 calc(100% - 60px)
    );
}

/* Member Section */
.member-content {
    max-width: 1400px;
    margin: 0 auto;
}

.member-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    letter-spacing: 12px;
    margin-bottom: 35px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.member-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.member-card {
    background: #fff;
    color: #000;
    padding: 16px 50px;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 600;
    transform: skewX(-15deg);
    position: relative;
}

.member-card.blue {
    background: #0046E8;
    color: #fff;
}

.xicon {
    position: absolute;
    bottom: 0;
    right: 10px;
}

.cn_text{
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    padding: 50px 0;
}


/* Sample Section */
.sample-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.sample-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    filter: drop-shadow(12px 12px 0px #000);
}

.sample-card {
    background: #f5f5f5;
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        0 0,
        calc(100% - 40px) 0,
        100% 40px,
        100% 100%,
        40px 100%,
        0 calc(100% - 40px)
    );
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sample-card:hover {
    transform: scale(1.05);
}

.sample-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sample-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ポップアップオーバーレイ */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ポップアップコンテンツ */
.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

/* 閉じるボタン */
.popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: #fff;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.popup-close:hover {
    background: #0046E8;
    color: #fff;
    transform: rotate(90deg);
}

/* ナビゲーションボタン */
.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.popup-nav:hover {
    background: #0046E8;
    color: #fff;
}

.popup-prev {
    left: 20px;
}

.popup-next {
    right: 20px;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    border-top: 1px solid #333;
}

footer p {
    margin: 8px 0;
}

@media (max-width: 1024px) {
    .hero {
        background: linear-gradient(165deg, #0046E8 0%, #0046E8 40%, #000 40%, #000 100%);
        padding: 40px 20px 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0;
    }
    
    .hero-top-logo {
        grid-column: 1;
        grid-row: 2;
        max-width: 60%;
        margin: -70% auto 0;
        z-index: 9;
    }
    
    .hero-top-mv {
        grid-column: 1;
        grid-row: 1;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-news {
        grid-column: 1;
        grid-row: 3;
    }
    
    .spec-content {
        grid-template-columns: 1fr;
    }
    
    .sample-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .character-left, .character-right {
        width: 200px;
        height: 250px;
        font-size: 80px;
    }
    
    .logo-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {

    .section-header {
        font-size: 60px;
        letter-spacing: 10px;
        margin-bottom: -20px;
    }
    .section-blue-top,
    .section-black-top {
        padding: 100px 20px;
    }

    .section-blue-top h1,
    .section-black-top h1 {
        top: -20px;
        font-size: 80px;
        letter-spacing: 10px;
    }
    .last{
        padding-bottom: 60px !important;
    }
    .hero {
        background: linear-gradient(165deg, #0046E8 0%, #0046E8 40%, #000 40%, #000 100%);
        padding: 10px 0 80px 0;
    }
        
    .hero-top-logo {
        height: 200px;
    }
    
    .hero-top-mv {
        min-height: 300px;
        margin-left: 0;
    }
    .hero-news-title {
        font-size: 48px; 
        letter-spacing: 4px;
        margin-bottom: -19px;
    }
    .news-box {
        padding: 15px 20px;
        max-height: 150px;
        clip-path: polygon(
            0 0,
            calc(100% - 30px) 0,
            100% 30px,
            100% 100%,
            30px 100%,
            0 calc(100% - 30px)
        );
    }
    
    .news-box::-webkit-scrollbar {
        width: 6px;
    }
    
    .news-item-new {
        padding: 6px 5px;
        margin-bottom: 6px;
    }
    .news-date-new,
    .news-text-new{
        font-size: 12px;
    }
    .hero-news {
        margin: 0 10px;
        height: 150px;
        padding-bottom: 300px;
    }
    .news-date-new {
        padding: 5px 8px;
        margin-right: 15px;
    }

    .character-left, .character-right {
        display: none;
    }
    
    .section-title, .member-title {
        font-size: 48px;
        letter-spacing: 5px;
    }
    .member-card {
        padding: 16px 50px;
        font-size: 15px;
        letter-spacing: 2px;
        font-weight: 600;
    }
    .spec-wrapper,
    .novelty-wrapper {
        position: relative;
        filter: drop-shadow(8px 8px 0px #000);
    }
    .spec-box, .novelty-box {
        padding: 20px;
        min-height: 100px;
        clip-path: polygon(
            0 0,
            calc(100% - 30px) 0,
            100% 30px,
            100% 100%,
            30px 100%,
            0 calc(100% - 30px)
        );
    }
    .spec-item {
        padding: 10px 0 5px 110px ;
        margin-bottom: 20px;
        font-size: 12px;
        position: relative;
    }

    .spec-item span {
        display: inline-block;
        width: 100px;
        text-align: center;
        font-weight: bold;
        padding: 10px;
        background: #0046E8;
        margin-right: 15px;
        flex-shrink: 0;
        color: #ffffff;
        position: absolute;
        left: 0;
        top: 0;
    }
    .sample-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 0;
        filter: drop-shadow(8px 8px 0px #000);
    }
    .sample-card {
        width: 155px;
        height: 155px;
        clip-path: polygon(
            0 0,
            calc(100% - 30px) 0,
            100% 30px,
            100% 100%,
            30px 100%,
            0 calc(100% - 30px)
        );
    }

    .sample-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        color: #fff;
        padding: 6px;
        text-align: center;
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 500;
    }

    .popup-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .popup-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .popup-prev {
        left: 10px;
    }

    .popup-next {
        right: 10px;
    }
}

/* ç"»åƒä¿è­· */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}


/* å³ã‚¯ãƒªãƒƒã‚¯ãƒ¡ãƒ‹ãƒ¥ãƒ¼é˜²æ­¢ã®è¦–è¦šçš„ãƒ•ã‚£ãƒ¼ãƒ‰ãƒãƒƒã‚¯ */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ãƒ†ã‚­ã‚¹ãƒˆã¯é¸æŠžå¯èƒ½ã«ã™ã‚‹ */
p, span, div:not(.hero-top-logo):not(.hero-top-mv):not(.sample-card) {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* é€æ˜Žãªã‚ªãƒ¼ãƒãƒ¼ãƒ¬ã‚¤ã§ç"»åƒã‚'ä¿è­· */
.hero-top-logo::after,
.hero-top-mv::after,
.sample-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 10;
}

.hero-top-logo,
.hero-top-mv,
.sample-card {
    position: relative;
}

/* ポップアップ内の画像はクリック可能にする */
.popup-overlay img {
    pointer-events: auto;
}

/* ポップアップのボタンもクリック可能にする */
.popup-close,
.popup-nav {
    pointer-events: auto;
}