/* 会場ページ専用スタイル */

.venue-page {
    padding-top: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* ヒーローセクション */
.venue-hero {
    padding: 120px 0 80px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(0, 180, 120, 0.1) 100%),
        radial-gradient(circle at 50% 50%, rgba(0, 208, 132, 0.05), transparent 70%);
    border-bottom: 1px solid rgba(0, 208, 132, 0.2);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.venue-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(0, 208, 132, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 208, 132, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.venue-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d084, #00f5a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    position: relative;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.venue-info .date-location {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.2), rgba(0, 180, 120, 0.2));
    padding: 15px 40px;
    border-radius: 12px;
    border: 2px solid rgba(0, 208, 132, 0.4);
    box-shadow: 0 4px 20px rgba(0, 208, 132, 0.2);
}

.venue-info .schedule-times {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.venue-info .schedule-info {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

.venue-info .date,
.venue-info .location {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-weight: 500;
}

.venue-info .date {
    color: #00d084;
    font-weight: 600;
}

/* スケジュールセクション */
.schedule-section {
    margin-bottom: 80px;
}

.schedule-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

.schedule-wrapper {
    background:
        linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8)),
        radial-gradient(circle at top right, rgba(0, 208, 132, 0.05), transparent);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 208, 132, 0.15);
    backdrop-filter: blur(10px);
}

/* スケジュールヘッダー */
.schedule-header {
    display: grid;
    grid-template-columns: 100px 1fr;
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.15) 0%, rgba(0, 180, 120, 0.15) 100%);
    border-bottom: 2px solid rgba(0, 208, 132, 0.3);
}

.time-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    padding: 20px 10px;
    border-right: 1px solid rgba(0, 208, 132, 0.2);
}

.room-headers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.room-header {
    text-align: center;
    padding: 15px;
    border-right: 1px solid rgba(0, 208, 132, 0.2);
}

.room-header:last-child {
    border-right: none;
}

.room-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d084;
    margin-bottom: 5px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.room-capacity {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* スケジュールボディ */
.schedule-body {
    background: rgba(0, 0, 0, 0.3);
}

.time-slot {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-bottom: 1px solid rgba(0, 208, 132, 0.1);
    min-height: 80px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: rgba(0, 208, 132, 0.03);
}

.time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    border-right: 1px solid rgba(0, 208, 132, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.sessions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.session {
    padding: 20px;
    border-right: 1px solid rgba(0, 208, 132, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.session::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.session:hover::before {
    opacity: 1;
}

.session:last-child {
    border-right: none;
}

.session:hover {
    background: rgba(0, 208, 132, 0.08);
    transform: translateY(-2px);
}

.session-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00d084;
    margin-bottom: 8px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.session-title {
    font-size: 1.2rem;
    color: #c0c0c0;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.session-title strong {
    display: block;
    margin-top: 8px;
    font-size: 0.9em;
    color: #00f5a0;
    font-weight: 600;
}

.session[colspan="3"] {
    grid-column: 1 / -1;
    padding: 30px;
}

/* ランチブレイク用スタイル */
.lunch-break {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(0, 180, 120, 0.1) 100%);
}

.lunch-break .session {
    background: rgba(0, 208, 132, 0.05);
}

.lunch-break .session-title {
    color: #00f5a0;
    font-weight: 600;
    font-size: 1.3rem;
}

/* 最後のEpic Games Japan用強調スタイル */
.keynote-session {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15) 0%, rgba(0, 180, 120, 0.15) 100%);
    border: 2px solid rgba(0, 208, 132, 0.3);
}

.keynote-session .session {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(0, 180, 120, 0.1) 100%);
}

.keynote-session .session-title {
    color: #00f5a0;
    font-weight: 700;
    font-size: 1.3rem;
}

.keynote-session .session-title strong {
    font-size: 1em;
    margin-top: 10px;
}

/* After Party用スタイル */
.after-party {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.12) 0%, rgba(0, 255, 160, 0.12) 100%);
}

.after-party .session {
    background: rgba(0, 208, 132, 0.08);
}

.after-party .session-title {
    color: #00f5a0;
    font-weight: 600;
    font-size: 1.3rem;
}

.after-party .session-title a {
    color: #00d084;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.after-party .session-title a:hover {
    color: #00f5a0;
}

/* ブースマップセクション */
.booth-section {
    margin-bottom: 80px;
}

.booth-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

.booth-map {
    background:
        linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8)),
        radial-gradient(circle at center, rgba(0, 208, 132, 0.05), transparent);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(0, 208, 132, 0.15);
    backdrop-filter: blur(10px);
}

/* 企業詳細セクション */
.company-details {
    margin-bottom: 120px;
    padding-bottom: 60px;
}

.company-details h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-item {
    background:
        linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8)),
        radial-gradient(circle at top right, rgba(0, 208, 132, 0.05), transparent);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 208, 132, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.company-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-item:hover::before {
    opacity: 1;
}

.company-item:hover {
    background:
        linear-gradient(145deg, rgba(32, 32, 32, 0.9), rgba(48, 48, 48, 0.9)),
        radial-gradient(circle at top right, rgba(0, 208, 132, 0.1), transparent);
    transform: translateY(-4px);
    box-shadow:
        0 15px 35px rgba(0, 208, 132, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 208, 132, 0.3);
}

.company-name {
    font-size: 1.5rem;
    color: #00d084;
    margin-bottom: 20px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 208, 132, 0.3);
    position: relative;
    z-index: 1;
}

.company-content {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.company-content h4 {
    color: #00d084;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.company-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.company-content .session-title {
    font-size: 1.15rem;
    color: #00f5a0;
    font-weight: 500;
    text-align: left;
}

.placeholder {
    color: #808080;
    font-size: 1.1rem;
}

.note {
    color: #a0a0a0;
    font-style: italic;
}

/* ナビゲーションのアクティブ状態 */
.nav-menu a.active {
    color: #00d084;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d084, #00f5a0);
}

/* モーダルスタイル */
.session-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.session-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background:
        linear-gradient(145deg, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.98)),
        radial-gradient(circle at top right, rgba(0, 208, 132, 0.1), transparent);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid rgba(0, 208, 132, 0.3);
    box-shadow: 0 20px 60px rgba(0, 208, 132, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 208, 132, 0.2);
    transform: rotate(90deg);
    color: #00d084;
}

.modal-company-name {
    font-size: 1.75rem;
    color: #00d084;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 208, 132, 0.3);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

.modal-body h4 {
    color: #00d084;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body .session-title-modal {
    font-size: 1.15rem;
    color: #00f5a0;
    font-weight: 500;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 208, 132, 0.5);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 208, 132, 0.7);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .venue-hero h1 {
        font-size: 2rem;
    }

    .venue-info {
        flex-direction: column;
        gap: 10px;
    }

    .company-item {
        padding: 20px;
    }

    .company-name {
        font-size: 1.25rem;
    }

    .company-content h4 {
        font-size: 1rem;
    }

    .schedule-header {
        grid-template-columns: 60px 1fr;
    }

    .time-slot {
        grid-template-columns: 60px 1fr;
    }

    .time {
        font-size: 0.8rem;
        padding: 15px 5px;
    }

    .room-name {
        font-size: 1.2rem;
    }

    .room-capacity {
        font-size: 0.75rem;
    }

    .session {
        padding: 15px 10px;
    }

    .session-number {
        font-size: 1.25rem;
    }

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

    .session-title strong {
        font-size: 0.8em;
        margin-top: 5px;
    }

    .keynote-session .session-title,
    .lunch-break .session-title,
    .after-party .session-title {
        font-size: 0.75rem;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-company-name {
        font-size: 1.4rem;
        padding-right: 30px;
    }

    .modal-body h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .room-headers {
        grid-template-columns: 1fr;
    }

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

    .room-header {
        border-bottom: 1px solid rgba(0, 208, 132, 0.1);
        border-right: none;
    }

    .session {
        border-bottom: 1px solid rgba(0, 208, 132, 0.1);
        border-right: none;
    }
}

/* 会場マップセクション */
.hall-map-section {
    margin-bottom: 80px;
}

.hall-map-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

.map-and-list {
    display: flex;
    gap: 40px;
    align-items: start;
}

.hall-map {
    background:
        linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8)),
        radial-gradient(circle at center, rgba(0, 208, 132, 0.05), transparent);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 208, 132, 0.15);
    backdrop-filter: blur(10px);
}

.hall-map img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* インタラクティブマップ */
.hall-map.interactive-map {
    background: #c5c5c5;
    border: 4px solid #0d4a2e;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 900px;
    margin: 0 auto;
}

.hall-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.office, .stage {
    background: #1a1a1a;
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.hall-a {
    border: 3px solid #0d4a2e;
    background: transparent;
    color: #0d4a2e;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.drink-corner {
    background: linear-gradient(135deg, #8b6914, #a0782d);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    margin: 0 auto 30px;
    width: fit-content;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drink-corner::before {
    content: '☕';
    font-size: 1.3rem;
}

.booths-area {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 25px;
    position: relative;
    height: 100%;
}

.booth-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.center-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 15px;
}

.center-top {
    display: flex;
    justify-content: center;
}

.center-middle {
    display: grid;
    grid-template-columns: auto auto;
    gap: 60px;
    align-items: start;
}

.center-left-column,
.center-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.center-bottom {
    display: flex;
    justify-content: center;
}

.booth {
    background: #0d4a2e;
    color: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 245, 160, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booth:hover::before,
.booth.active::before {
    opacity: 1;
}

.booth:hover,
.booth.active {
    background: #00d084;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 160, 0.8);
    z-index: 10;
}

.booth-small {
    height: 70px;
    width: 70px;
    flex-shrink: 0;
}

.booth-large {
    height: 140px;
    width: 70px;
    flex-shrink: 0;
}

/* 東京会場用の横長ブース */
.booth-wide {
    height: 70px;
    width: 140px;
    flex-shrink: 0;
}

.entrance {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    background: #4a4a4a;
    color: #e0e0e0;
    padding: 12px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #666;
}

.entrance::before {
    content: '▼';
    font-size: 1rem;
    color: #999;
}

/* 東京会場専用スタイル */
.tokyo-map {
    width: 850px !important;
    height: 830px !important;
    min-width: 850px !important;
    min-height: 830px !important;
    max-width: 850px !important;
    max-height: 830px !important;
    padding: 25px !important;
    position: relative;
    overflow: visible;
    display: block !important;
}

.tokyo-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.tokyo-corner-top {
    display: flex;
    gap: 8px;
}

.tokyo-stage {
    background: #8b7355;
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
}

.tokyo-office {
    background: #8b7355;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}

.tokyo-drink {
    transform: rotate(45deg);
    transform-origin: center;
    font-size: 0.85rem;
    padding: 8px 15px;
    white-space: nowrap;
    margin-top: 60px;
}

.tokyo-entrance {
    font-size: 1.5rem;
    font-weight: 600;
    background: #4a4a4a;
    color: #e0e0e0;
    padding: 12px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #666;
    margin-top: 110px;
}

.tokyo-entrance::before {
    content: '▶';
    font-size: 1rem;
}

.hall-label {
    border: 3px solid #0d4a2e;
    background: transparent;
    color: #0d4a2e;
    padding: 12px 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}

.tokyo-booths-area {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 15px;
    position: relative;
    flex: 1;
}

.tokyo-left-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding-top: 100px;
}

.tokyo-right-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding-top: 280px;
}

.tokyo-center-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tokyo-top-row {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.tokyo-bottom-row {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 80px;
}

.tokyo-inner-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-top: 50px;
}

.tokyo-inner-top {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tokyo-inner-bottom {
    display: flex;
    justify-content: center;
}

.tokyo-inner-middle {
    display: grid;
    grid-template-columns: auto auto;
    gap: 60px;
    align-items: start;
}

.tokyo-inner-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateX(-40px);
}

.tokyo-inner-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateX(40px);
}

.tokyo-map-wrapper {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 850px;
}

.venue-time-info {
    margin-top: 20px;
}

.venue-time-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 400;
}


.exhibitor-list {
    background:
        linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8)),
        radial-gradient(circle at top right, rgba(0, 208, 132, 0.05), transparent);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 208, 132, 0.15);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 300px;
}

.exhibitor-list h3 {
    font-size: 1.5rem;
    color: #00d084;
    margin-bottom: 20px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 208, 132, 0.3);
}

.exhibitor-numbered-list {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

.exhibitor-numbered-list li {
    color: #e0e0e0;
    padding: 12px 0 12px 40px;
    border-bottom: 1px solid rgba(0, 208, 132, 0.1);
    line-height: 1.6;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.exhibitor-numbered-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00d084, #00f5a0);
    color: #0a0a0a;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.exhibitor-numbered-list li:hover,
.exhibitor-numbered-list li.active {
    color: #00f5a0;
    background: rgba(0, 208, 132, 0.1);
    padding-left: 45px;
}

.exhibitor-numbered-list li:hover::before,
.exhibitor-numbered-list li.active::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 15px rgba(0, 245, 160, 0.6);
}

@media (max-width: 768px) {
    .map-and-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hall-map {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .exhibitor-list {
        padding: 20px;
    }

    .exhibitor-list h3 {
        font-size: 1.25rem;
    }

    .exhibitor-numbered-list li {
        font-size: 0.9rem;
        padding: 8px 0 8px 30px;
    }

    .exhibitor-numbered-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
}

/* スマホ対応 (768px以下) */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* ヒーローセクション */
    .venue-hero {
        padding: 80px 20px 40px;
    }

    .venue-hero h1 {
        font-size: 2rem;
    }

    .venue-info .date-location {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .venue-info .schedule-times {
        flex-direction: column;
        gap: 10px;
    }

    .venue-info .schedule-info {
        font-size: 0.9rem;
    }

    /* マップと出展企業一覧を縦並びに */
    .map-and-list {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    /* 東京会場マップ - スマホ対応 */
    .hall-map.interactive-map.tokyo-map {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 8px !important;
        padding-top: 10px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        position: relative !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    .tokyo-booths-area {
        transform: scale(0.5) !important;
        transform-origin: top left !important;
        margin-bottom: -400px !important;
        width: 850px !important;
        max-width: none !important;
    }

    .tokyo-map .booth-small {
        width: 80px;
        height: 80px;
        font-size: 1.35rem;
    }

    .tokyo-map .booth-large {
        width: 80px;
        height: 165px;
        font-size: 1.35rem;
    }

    .tokyo-map .booth-wide {
        width: 165px;
        height: 80px;
        font-size: 1.35rem;
    }

    .tokyo-corner {
        top: 20px;
        left: 330px;
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
        max-width: 200px;
    }

    .tokyo-corner-top {
        gap: 4px;
        flex-direction: row;
        display: flex;
    }

    .tokyo-stage {
        padding: 7px 16px;
        font-size: 0.45rem;
    }

    .tokyo-office {
        padding: 5px 9px;
        font-size: 0.45rem;
    }

    .tokyo-map .tokyo-drink {
        font-size: 0.45rem !important;
        padding: 3px 5px !important;
        margin-top: 28px !important;
        margin-left: 20px !important;
        transform: rotate(35deg) !important;
    }

    .tokyo-map .tokyo-drink::before {
        display: none !important;
    }

    .tokyo-entrance {
        font-size: 0.9rem;
        padding: 31px 15px;
    }

    .tokyo-entrance::before {
        font-size: 0.8rem;
    }

    .tokyo-left-column {
        padding-top: 100px;
    }

    .tokyo-right-column {
        padding-top: 280px;
        margin-left: -80px;
    }

    .tokyo-center-wrapper {
        gap: 18px;
    }

    .tokyo-top-row {
        gap: 12px;
    }

    .tokyo-bottom-row {
        gap: 12px;
        margin-top: 80px;
    }

    .tokyo-inner-area {
        gap: 15px;
        padding: 15px;
        margin-top: 50px;
        margin-left: -80px;
    }

    .tokyo-inner-top {
        gap: 5px;
    }

    .tokyo-inner-middle {
        gap: 30px;
        justify-content: center;
    }

    .tokyo-inner-left,
    .tokyo-inner-right {
        gap: 5px;
    }

    .tokyo-inner-bottom {
        margin-top: 5px;
    }

    .venue-time-info {
        margin-bottom: 20px;
        padding: 15px;
    }

    .venue-time-info p {
        font-size: 0.85rem;
        margin: 5px 0;
    }

    /* 大阪会場マップ */
    .hall-map.interactive-map:not(.tokyo-map) {
        max-width: 100%;
        height: auto;
        min-height: auto;
        padding: 8px;
        margin: 0 auto;
    }

    .hall-map.interactive-map:not(.tokyo-map) .booth-small {
        width: 45px;
        height: 45px;
        font-size: 0.7rem;
    }

    .hall-map.interactive-map:not(.tokyo-map) .booth-large {
        width: 45px;
        height: 90px;
        font-size: 0.7rem;
    }

    .hall-header {
        gap: 4px;
        padding: 6px;
    }

    .office, .hall-a, .stage {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .drink-corner {
        padding: 4px 8px;
        font-size: 0.6rem;
    }

    .booths-area {
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }

    .booth-column {
        gap: 8px;
    }

    .center-area {
        gap: 8px;
        padding: 8px;
    }

    .center-left-column,
    .center-right-column {
        gap: 8px;
    }

    .entrance {
        bottom: -35px;
        padding: 6px 20px;
        font-size: 1rem;
    }

    .entrance::before {
        font-size: 0.8rem;
    }

    /* 出展企業一覧 */
    .exhibitor-list {
        padding: 20px;
    }

    .exhibitor-list h3 {
        font-size: 1.25rem;
    }

    .exhibitor-numbered-list li {
        font-size: 0.9rem;
        padding: 10px 0 10px 35px;
    }

    /* スケジュール表 */
    .schedule-section {
        padding: 0 10px;
    }

    .schedule-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-header,
    .schedule-body {
        min-width: 100%;
        width: 100%;
    }

    .time {
        font-size: 0.75rem;
        padding: 8px 5px;
    }

    .session {
        padding: 8px;
        min-height: 60px;
    }

    .session-title {
        font-size: 0.75rem !important;
        line-height: 1.3;
    }

    .lunch-break .session-title,
    .keynote-session .session-title,
    .after-party .session-title {
        font-size: 0.75rem !important;
    }

    .room-name {
        font-size: 0.8rem;
    }

    /* 会場時間情報 */
    .venue-time-info p {
        font-size: 0.85rem;
    }
}

/* 極小スマホ対応 (500px以下) */
@media screen and (max-width: 500px) {
    /* 東京会場マップ - さらに縮小 */
    .hall-map.interactive-map.tokyo-map {
        padding: 5px !important;
        padding-top: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .tokyo-booths-area {
        transform: scale(0.4) !important;
        transform-origin: top left !important;
        margin-bottom: -480px !important;
        width: 850px !important;
        margin-left: 0 !important;
    }

    .tokyo-corner {
        top: 10px !important;
        left: 260px !important;
    }

    .tokyo-map .booth-small,
    .tokyo-map .booth-large,
    .tokyo-map .booth-wide {
        font-size: 1.45rem !important;
    }

    .tokyo-right-column {
        margin-left: -65px !important;
        padding-right: 0 !important;
    }

    .tokyo-inner-area {
        margin-left: -65px !important;
    }

    .tokyo-stage {
        font-size: 0.45rem !important;
    }

    .tokyo-office {
        font-size: 0.45rem !important;
    }

    .tokyo-map .tokyo-drink {
        font-size: 0.45rem !important;
        padding: 3px 5px !important;
    }

    .tokyo-map .tokyo-drink::before {
        display: none !important;
    }

    .tokyo-entrance {
        font-size: 0.9rem !important;
        padding: 31px 15px !important;
    }

    .tokyo-left-column {
        padding-right: 0 !important;
    }

    .tokyo-center-wrapper {
        padding: 0 !important;
    }

    /* 大阪会場マップ */
    .hall-map:not(.tokyo-map) {
        padding: 10px;
    }

    .booth {
        font-size: 0.75rem;
        padding: 8px;
    }

    .booth-small {
        width: 60px;
        height: 60px;
    }

    .booth-large {
        width: 60px;
        height: 125px;
    }

    .stage, .office, .hall-a {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .drink-corner {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
}
