/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ロード画面 */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    max-width: 800px;
    width: 90%;
    background: var(--black);
    border: 1px solid var(--gray);
    box-shadow: 
        0 0 0 1px rgba(57, 255, 20, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.9),
        inset 0 0 50px rgba(57, 255, 20, 0.02);
    position: relative;
    overflow: hidden;
}

.loading-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    z-index: 10;
}

.loading-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 1px solid var(--gray);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loading-logo {
    font-family: 'Orbitron', 'Rajdhani', monospace;
    font-size: 1.2rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(57, 255, 20, 0.5),
        0 0 20px rgba(57, 255, 20, 0.3);
}

.loading-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.loading-terminal {
    background: #0a0a0a;
    padding: 30px;
    min-height: 200px;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--neon-green);
    position: relative;
    overflow: hidden;
}

.loading-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(57, 255, 20, 0.02) 2px,
            rgba(57, 255, 20, 0.02) 4px
        );
    pointer-events: none;
    opacity: 0.3;
}

.loading-terminal-content {
    position: relative;
    z-index: 1;
}

.loading-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: loadingLineFadeIn 0.3s ease-out forwards;
}

@keyframes loadingLineFadeIn {
    to {
        opacity: 1;
    }
}

.loading-prompt {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
    font-weight: 600;
}

.loading-command {
    color: var(--white);
    margin-left: 10px;
}

.loading-log {
    color: var(--lighter-gray);
    margin-left: 0;
}

.loading-log.success {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.loading-log.info {
    color: #00aaff;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
}

.loading-cursor {
    display: inline-block;
    color: var(--neon-green);
    font-weight: 600;
    animation: loadingCursorBlink 1s step-end infinite;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

@keyframes loadingCursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.loading-progress {
    padding: 25px 30px;
    background: var(--dark-gray);
    border-top: 1px solid var(--gray);
    position: relative;
}

.loading-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray);
    border: 1px solid rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(57, 255, 20, 0.1);
    margin-bottom: 15px;
}

.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--neon-green) 0%, 
        rgba(57, 255, 20, 0.8) 50%, 
        var(--neon-green) 100%);
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    box-shadow: 
        0 0 20px rgba(57, 255, 20, 0.6),
        0 0 40px rgba(57, 255, 20, 0.3);
}

.loading-progress-text {
    text-align: center;
    font-family: 'Orbitron', 'Rajdhani', monospace;
    font-size: 0.9rem;
    color: var(--neon-green);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 10px rgba(57, 255, 20, 0.5),
        0 0 20px rgba(57, 255, 20, 0.3);
}

:root {
    --neon-green: #39FF14;
    --neon-green-dark: #00FF41;
    --neon-green-light: #7AFF7A;
    --black: #000000;
    --dark-gray: #0A0A0A;
    --gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --lighter-gray: #666666;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --border-color: #1A1A1A;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 4px 16px rgba(57, 255, 20, 0.15);
    --glow: 0 0 15px rgba(57, 255, 20, 0.3);
    --glow-subtle: 0 0 8px rgba(57, 255, 20, 0.2);
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: var(--white);
    background-color: var(--black);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', 'Rajdhani', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(57, 255, 20, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--neon-green);
    color: var(--black);
    box-shadow: 
        0 0 30px rgba(57, 255, 20, 0.5),
        0 0 60px rgba(57, 255, 20, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.3),
        0 0 50px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.btn-outline {
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(57, 255, 20, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-outline:hover::after {
    left: 100%;
}

.btn-outline:hover {
    background-color: var(--neon-green);
    color: var(--black);
    box-shadow: 
        0 0 30px rgba(57, 255, 20, 0.5),
        0 0 60px rgba(57, 255, 20, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: var(--white);
    padding: 160px 20px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(57, 255, 20, 0.03) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(57, 255, 20, 0.3),
        0 0 40px rgba(57, 255, 20, 0.1),
        0 0 60px rgba(57, 255, 20, 0.05);
    letter-spacing: 0.12em;
    font-family: 'Orbitron', 'Rajdhani', 'Noto Sans JP', sans-serif;
    animation: titlePulse 3s ease-in-out infinite;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(57, 255, 20, 0.3),
            0 0 40px rgba(57, 255, 20, 0.1),
            0 0 60px rgba(57, 255, 20, 0.05);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(57, 255, 20, 0.5),
            0 0 60px rgba(57, 255, 20, 0.2),
            0 0 90px rgba(57, 255, 20, 0.1);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: var(--lighter-gray);
    font-weight: 400;
    letter-spacing: 0.08em;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero .btn {
    margin: 0 15px 15px 15px;
    min-width: 180px;
}

/* セクション */
.featured-products {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--black) 0%, #050505 50%, var(--black) 100%);
    position: relative;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* チート起動ローダーセクション */
.loader-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--black) 0%, #0a0a0a 50%, var(--dark-gray) 100%);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    position: relative;
    overflow: hidden;
}

.loader-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.terminal-window {
    max-width: 900px;
    margin: 0 auto;
    background: var(--black);
    border: 1px solid var(--gray);
    box-shadow: 
        0 0 0 1px rgba(57, 255, 20, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.9),
        inset 0 0 50px rgba(57, 255, 20, 0.02);
    position: relative;
    overflow: hidden;
}

.terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    z-index: 10;
}

.terminal-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 1px solid var(--gray);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.terminal-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
}

.control-btn.close {
    background: #ff5f56;
    border-color: #ff5f56;
}

.control-btn.minimize {
    background: #ffbd2e;
    border-color: #ffbd2e;
}

.control-btn.maximize {
    background: #27c93f;
    border-color: #27c93f;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', 'Rajdhani', monospace;
    font-size: 0.85rem;
    color: var(--lighter-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 
        0 0 8px rgba(57, 255, 20, 0.8),
        0 0 16px rgba(57, 255, 20, 0.4);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 
            0 0 8px rgba(57, 255, 20, 0.8),
            0 0 16px rgba(57, 255, 20, 0.4);
    }
    50% {
        opacity: 0.6;
        box-shadow: 
            0 0 12px rgba(57, 255, 20, 1),
            0 0 24px rgba(57, 255, 20, 0.6);
    }
}

.status-text {
    font-family: 'Orbitron', 'Rajdhani', monospace;
    font-size: 0.75rem;
    color: var(--neon-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.terminal-body {
    background: #0a0a0a;
    padding: 25px 30px;
    height: 450px;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--neon-green);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(57, 255, 20, 0.02) 2px,
            rgba(57, 255, 20, 0.02) 4px
        );
    pointer-events: none;
    opacity: 0.3;
}

.terminal-content {
    position: relative;
    z-index: 1;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.terminal-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: lineFadeIn 0.3s ease-out forwards;
    flex-shrink: 0;
}

@keyframes lineFadeIn {
    to {
        opacity: 1;
    }
}

.terminal-prompt {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
    font-weight: 600;
}

.terminal-command {
    color: var(--white);
    margin-left: 10px;
}

.terminal-log {
    color: var(--lighter-gray);
    margin-left: 0;
}

.terminal-log.success {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.terminal-log.error {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
}

.terminal-log.warning {
    color: #ffaa00;
    text-shadow: 0 0 8px rgba(255, 170, 0, 0.4);
}

.terminal-log.info {
    color: #00aaff;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
}

.terminal-cursor {
    display: inline-block;
    color: var(--neon-green);
    font-weight: 600;
    animation: cursorBlink 1s step-end infinite;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    .terminal-window {
        max-width: 100%;
    }

    .terminal-body {
        padding: 20px 20px;
        height: 350px;
        font-size: 0.8rem;
    }

    .terminal-title {
        font-size: 0.75rem;
    }

    .status-text {
        font-size: 0.7rem;
    }
}

.products-section {
    padding: 80px 20px;
    background-color: var(--black);
}

/* セクションタイトル */
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    color: var(--white);
    position: relative;
    padding-bottom: 25px;
    letter-spacing: 0.12em;
    font-family: 'Orbitron', 'Rajdhani', 'Noto Sans JP', sans-serif;
    text-shadow: 
        0 0 20px rgba(57, 255, 20, 0.2),
        0 0 40px rgba(57, 255, 20, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 
        0 0 10px rgba(57, 255, 20, 0.5),
        0 0 20px rgba(57, 255, 20, 0.3);
    animation: lineExpand 1s ease-out 0.5s both;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

/* 製品グリッド */
.featured-products {
    position: relative;
}

.products-grid-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.products-grid-wrapper::before,
.products-grid-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.products-grid-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
}

.products-grid-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
}

.products-grid {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: fit-content;
}

.products-grid.auto-scroll {
    animation: autoScroll 30s linear infinite;
    will-change: transform;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.products-grid .product-card {
    flex: 0 0 320px;
    min-width: 320px;
    max-width: 320px;
}

/* カテゴリーセクション内の製品グリッド */
.category-section .products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.category-section .products-grid .product-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .category-section .products-grid .product-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .category-section .products-grid .product-card {
        flex: 0 0 100%;
    }
}

.product-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #0f0f0f 100%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 0 1px var(--gray);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray);
    position: relative;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(57, 255, 20, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: left 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(5deg) rotateY(-5deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px var(--neon-green),
        0 0 40px rgba(57, 255, 20, 0.3),
        inset 0 0 30px rgba(57, 255, 20, 0.05);
    border-color: var(--neon-green);
}

.product-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.product-card:hover::after {
    left: 100%;
    opacity: 1;
    transition: left 0.8s ease, opacity 0.8s ease;
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--gray);
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s;
    filter: brightness(0.9) contrast(1.1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-description {
    color: var(--lighter-gray);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 20px;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    text-shadow: 
        0 0 10px rgba(57, 255, 20, 0.4),
        0 0 20px rgba(57, 255, 20, 0.2);
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.product-card:hover .product-price {
    text-shadow: 
        0 0 15px rgba(57, 255, 20, 0.6),
        0 0 30px rgba(57, 255, 20, 0.4),
        0 0 50px rgba(57, 255, 20, 0.2);
    transform: scale(1.05);
}

.product-link {
    display: block;
    text-align: center;
    padding: 16px;
    background-color: transparent;
    color: var(--neon-green);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    z-index: 2;
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(57, 255, 20, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: -1;
}

.product-link:hover::before {
    left: 100%;
}

.product-link:hover {
    background-color: var(--neon-green);
    color: var(--black);
    box-shadow: 
        0 0 25px rgba(57, 255, 20, 0.6),
        0 0 50px rgba(57, 255, 20, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* サービス説明セクション（審査用・統一デザイン） */
.service-description-white {
    padding: 100px 20px;
    background-color: var(--dark-gray);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.description-content-white {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    color: var(--white);
}

.description-content-white h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}

.description-content-white h3:first-of-type {
    margin-top: 0;
}

.description-content-white p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--lighter-gray);
    font-size: 1rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.description-content-white ul {
    margin-left: 30px;
    margin-bottom: 30px;
    color: var(--lighter-gray);
}

.description-content-white li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.description-content-white a {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s;
}

.description-content-white a:hover {
    color: var(--neon-green-light);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

/* 特徴セクション */
.features {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--dark-gray) 0%, #0a0a0a 50%, var(--dark-gray) 100%);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(57, 255, 20, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(57, 255, 20, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, var(--black) 0%, #050505 100%);
    padding: 60px 50px;
    border-radius: 0;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 0 1px var(--gray);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray);
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px var(--neon-green),
        0 0 40px rgba(57, 255, 20, 0.3),
        inset 0 0 30px rgba(57, 255, 20, 0.05);
}

.feature-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.5));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.8)) drop-shadow(0 0 40px rgba(57, 255, 20, 0.4));
    transform: scale(1.15) rotate(5deg);
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.15) rotate(5deg);
    }
    50% {
        transform: scale(1.25) rotate(5deg);
    }
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.feature-card p {
    color: var(--lighter-gray);
    font-weight: 400;
    line-height: 1.8;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

/* ページヘッダー */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 120px 20px 100px;
    text-align: center;
    border-bottom: 1px solid var(--gray);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(57, 255, 20, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', 'Rajdhani', 'Noto Sans JP', sans-serif;
}

.page-description {
    font-size: 1rem;
    color: var(--lighter-gray);
    font-weight: 400;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
    opacity: 0.8;
}

/* 製品詳細ページ */
.product-detail-section {
    padding: 100px 20px;
    background-color: var(--black);
}

.product-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-header {
    margin-bottom: 40px;
}

.back-link {
    color: var(--lighter-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.back-link:hover {
    color: var(--neon-green);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray);
}

.product-detail-image {
    width: 100%;
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--gray);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.product-detail-name {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-detail-description {
    font-size: 1rem;
    color: var(--lighter-gray);
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 500;
    color: var(--neon-green);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
    letter-spacing: 0.04em;
}

.product-features {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray);
    max-width: 1200px;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 1px;
    background: var(--neon-green);
    box-shadow: var(--glow-subtle);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--lighter-gray);
    font-size: 0.95rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 1.8;
    border-bottom: 1px solid var(--gray);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li.feature-section-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--neon-green);
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--neon-green);
    margin-top: 10px;
}

.features-list li.feature-section-title::before {
    display: none;
}

.features-list li.feature-spacer {
    height: 10px;
    padding: 0;
    border-bottom: none;
}

.features-list li.feature-spacer::before {
    display: none;
}

.features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.9rem;
    opacity: 0.8;
}

.product-variations {
    margin-top: 60px;
}

.variations-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.variation-card {
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.variation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-green);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.variation-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.variation-card:hover::before {
    transform: scaleX(1);
    box-shadow: var(--glow-subtle);
}

.variation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.variation-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.variation-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--neon-green);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    text-shadow: 0 0 6px rgba(57, 255, 20, 0.15);
}

.variation-description {
    font-size: 0.9rem;
    color: var(--lighter-gray);
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.variation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.variation-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--lighter-gray);
    font-size: 0.9rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.variation-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.9rem;
    opacity: 0.8;
}

.variation-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.error-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--lighter-gray);
    font-size: 1.1rem;
}

.category-section {
    margin-bottom: 80px;
}

#products-container {
    display: block;
}

.category-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 1px;
    background: var(--neon-green);
    box-shadow: var(--glow-subtle);
}

/* Aboutページ */
.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 40px;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--neon-green);
    box-shadow: var(--glow-subtle);
}

.about-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.about-section p {
    margin-bottom: 20px;
    color: var(--lighter-gray);
    line-height: 1.9;
    font-weight: 400;
    font-size: 0.95rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

/* お支払方法ページ */
.payment-content {
    padding: 80px 20px;
}

.payment-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
}

.payment-intro p {
    color: var(--lighter-gray);
    line-height: 1.9;
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.payment-card {
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--neon-green);
    box-shadow: var(--glow-subtle);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.payment-card-header h2 {
    font-size: 1.4rem;
    color: var(--white);
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.payment-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--neon-green);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.payment-card-body {
    color: var(--lighter-gray);
}

.payment-card-body p {
    line-height: 1.8;
    font-weight: 400;
    font-size: 0.95rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    margin: 0;
}

.payment-card-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    color: var(--lighter-gray);
    line-height: 1.8;
    font-weight: 400;
    font-size: 0.95rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.payment-card-body li {
    margin-bottom: 8px;
}

.payment-card-body li:last-child {
    margin-bottom: 0;
}

.payment-card-body strong {
    color: var(--white);
    font-weight: 600;
}

.payment-warning {
    margin-top: 15px;
    color: var(--neon-green);
    font-weight: 500;
    font-size: 0.95rem;
}

.payment-note {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    border-left: 3px solid var(--neon-green);
}

.payment-note h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.payment-note ul {
    list-style: none;
    padding: 0;
}

.payment-note li {
    color: var(--lighter-gray);
    line-height: 1.9;
    font-weight: 400;
    font-size: 0.95rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.payment-note li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 600;
}

.payment-cta {
    text-align: center;
    margin-top: 60px;
}

/* ガイドページ */
.guide-content {
    padding: 80px 20px;
}

.guide-section {
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--neon-green);
    box-shadow: var(--glow-subtle);
}

.step-number {
    display: inline-block;
    background: var(--neon-green);
    color: var(--black);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.step-card p {
    color: var(--lighter-gray);
    line-height: 1.9;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 0.95rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.guide-link {
    color: var(--neon-green);
    text-decoration: none;
    border-bottom: 1px solid var(--neon-green);
    transition: all 0.3s ease;
    font-weight: 500;
}

.guide-link:hover {
    color: var(--neon-green-light);
    border-bottom-color: var(--neon-green-light);
}

.warning-box {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-left: 3px solid #ffc107;
}

.warning-box h3 {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.warning-box ul {
    list-style: none;
    padding: 0;
}

.warning-box li {
    color: var(--lighter-gray);
    line-height: 1.9;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 0.95rem;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    padding-left: 20px;
    position: relative;
}

.warning-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--lighter-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--gray);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 400;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
    opacity: 0.8;
}

.text-center {
    text-align: center;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 20px 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 0.875rem;
    }

    .products-grid-wrapper::before,
    .products-grid-wrapper::after {
        width: 100px;
    }

    .products-grid {
        gap: 20px;
    }

    .products-grid .product-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features {
        padding: 80px 20px;
    }

    .hero .btn {
        display: block;
        margin: 15px 0;
        width: 100%;
    }

    .about-content {
        padding: 60px 20px;
    }

    .about-section {
        padding: 30px 20px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .payment-content {
        padding: 60px 20px;
    }

    .payment-intro {
        padding: 30px 20px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-card {
        padding: 30px 20px;
    }

    .payment-card-header h2 {
        font-size: 1.2rem;
    }

    .payment-note {
        padding: 30px 20px;
    }

    .guide-content {
        padding: 60px 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .warning-box {
        padding: 30px 20px;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .variations-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .product-card {
        border-width: 1px;
    }

    .feature-card {
        padding: 40px 30px;
    }
}
