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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Sans', 'Helvetica', sans-serif;
    background-color: var(--color-black);
    color: #FFFFFF;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   カラー変数
   ============================================ */
:root {
    --color-black: #0A0A0A;
    --color-white: #FFFFFF;
    --color-red: #E53D3D;
    --color-bg: #0D0820;
    --color-gradient-start: #1055D7;
    --color-gradient-mid: #118EA4;
    --color-gradient-end: #11983A;
    --color-blue: #1055D7;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(16, 85, 215, 0.15);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* ============================================
   グラデーション
   ============================================ */
.gradient-visible {
    background: linear-gradient(90deg, rgba(16, 85, 215, 1) 0%, rgba(17, 142, 164, 1) 50%, rgba(17, 152, 58, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-full {
    background: linear-gradient(90deg, rgba(34, 111, 255, 1) 0%, rgba(66, 193, 188, 1) 50%, rgba(71, 255, 127, 1) 100%);
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--color-black) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: var(--transition-base);
    position: relative;
    padding: 8px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #226FFF 0%, #47FF7F 100%);
    transition: width var(--transition-base);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-nav a:hover {
    background: linear-gradient(90deg, #226FFF 0%, #42C1BC 50%, #47FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav a.nav-active {
    background: linear-gradient(90deg, rgba(34, 111, 255, 1) 0%, rgba(66, 193, 188, 1) 50%, rgba(71, 255, 127, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav a:active,
.header-nav a:focus-visible {
    background: linear-gradient(90deg, #226FFF 0%, #42C1BC 50%, #47FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a:has(.btn-register),
a:has(.btn-register-large) {
    text-decoration: none;
}

.btn-register {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #E53D3D 0%, #C42B2B 100%);
    border: none;
    cursor: pointer;
    font-family: 'Helvetica', sans-serif;
    transform: skewX(-8deg);
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(229, 61, 61, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: skewX(-8deg) translateY(-3px);
    box-shadow: 0 12px 32px rgba(229, 61, 61, 0.4);
}

.btn-badge {
    background-color: var(--color-white);
    color: var(--color-red);
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap; /* 「無料」を縦折り返しさせない */
    writing-mode: horizontal-tb;
}

.btn-text {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.btn-arrow {
    flex-shrink: 0;
}

.btn-arrow-small {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
}

/* 「もっと見る」はFigma上で下向き矢印 */
.btn-more .btn-arrow-small {
    transform: rotate(90deg);
}

/* SP専用 MENU テキスト */
.menu-text {
    display: none;
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-white);
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* 画面読み上げ用（視覚的に非表示） */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* SPだけで改行を入れたい時に使う（例: CONCEPTの説明文） */
br.sp-only {
    display: none;
}

/* PCだけで改行を入れたい時に使う（例: CONCEPTのメッセージ本文） */
br.pc-only {
    display: block;
}

/* SP専用 参加登録ボタン（FV上） */
.mobile-register-btn {
    display: none;
}

/* ============================================
   ファーストビューセクション
   ============================================ */
.fv-section {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 120px 80px;
    overflow: hidden;
}

.fv-background {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: 872px;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: -1;
}

.fv-background {
    background-image: url('images/loop_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fv-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .fv-bg-video {
        display: none;
    }
}

.fv-content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.fv-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.fv-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 130px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--color-white);
    text-align: left;
}

.fv-taglines {
    display: flex;
    flex-direction: column;
    gap: 4px; /* SPで使用（PCは下のmediaで上書き） */
    align-items: flex-end; /* Figma: 右寄せで段差を作る */
}

.fv-taglines--pc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fv-taglines--sp {
    display: none; /* PCはSVGを使う */
}

.fv-taglines-image {
    width: 640px; /* Figma書き出しサイズ（fv_taglines_pc.svg） */
    max-width: 100%;
    height: auto;
    display: block;
}

/* PCでSVG（Figma 6:57）を使う場合、重複するテキスト要素は非表示にする */
@media (min-width: 769px) {
    .fv-main .fv-title,
    .fv-main .fv-powered {
        display: none;
    }
}

.fv-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px 10px 15px;
    background: linear-gradient(90deg, #1055D7 0%, #118EA4 50%, #11983A 100%);
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: var(--color-white);
    transform: skewX(-8deg);
}

.fv-tagline > span {
    display: block;
    transform: skewX(8deg);
}

/* SP側はテキスト帯を表示（PCはSVG） */
@media (max-width: 768px) {
    .fv-taglines--pc {
        display: none;
    }

    .fv-taglines--sp {
        display: flex;
    }
}


.fv-powered {
    font-family: 'Helvetica', sans-serif;
    font-size: 20px; /* Figma */
    font-weight: 400; /* Figma */
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--color-white);
    text-align: right;
    align-self: flex-end;
    width: 100%;
    max-width: 100%;
}

.fv-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
    align-items: flex-start;
}

.fv-date-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 30px;
}

.fv-date-main {
    font-family: 'Helvetica', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--color-white);
    display: flex;
    align-items: baseline;
}

.fv-date-day {
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fv-date-time {
    font-family: 'Helvetica', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.fv-venue-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.fv-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 8px 10px;
    position: relative;
    transform: skewX(-10deg);

    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

.fv-label::before,
.fv-label::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 120%;
    background-color: var(--color-white);
    top: 50%;
    transform: translateY(-50%);
}

.fv-label::before {
    left: 0;
}

.fv-label::after {
    right: 0;
}

.fv-venue-name {
    font-family: 'Helvetica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.fv-venue-name img {
    width: 240px;
    height: auto;
}

.fv-label img {
    width: 14px;
    height: auto;
}

.btn-register-large {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 10px 90px;
    background-color: var(--color-red);
    border: none;
    cursor: pointer;
    font-family: 'Hiragino Sans', sans-serif;
    transform: skewX(-8deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-register-large:hover {
    transform: skewX(-8deg) translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.4);
    filter: brightness(1.1);
}

.btn-register-large .btn-text {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.btn-register-large .btn-text-line {
    display: inline;
}

/* ============================================
   セクション共通スタイル
   ============================================ */
section {
    padding: 40px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.section-label {
    font-family: 'Helvetica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.section-title-wrapper {
    height: 38px;
    overflow: hidden;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, rgba(16, 85, 215, 1) 0%, rgba(17, 142, 164, 1) 50%, rgba(17, 152, 58, 1) 100%) 1;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.section-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, rgba(34, 111, 255, 1) 0%, rgba(66, 193, 188, 1) 50%, rgba(71, 255, 127, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    text-shadow: 0 0 60px rgba(16, 85, 215, 0.3);
}

/* ============================================
   Benefits（本イベント限定特典）セクション
   ============================================ */
.benefits-section {
    background-color: transparent;
    padding: 40px 0 0;
}

.benefits-section .section-container {
    background-color: var(--color-bg);
    padding: 60px 40px;
    overflow: visible;
}

.benefits-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.benefits-label {
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--color-white);
    opacity: 1;
}

/* リボンバナー（borderトリック方式） */
.benefits-ribbon {
    display: inline-block;
    position: relative;
    text-align: center;
    isolation: isolate;
}

/* 左側のリボン端 */
.benefits-ribbon::before {
    content: '';
    position: absolute;
    width: 10px;
    bottom: -15px;
    left: -50px;
    z-index: -2;
    border: 32px solid var(--color-gradient-start);
    border-left-color: transparent;
}

/* 右側のリボン端 */
.benefits-ribbon::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: -15px;
    right: -50px;
    z-index: -2;
    border: 32px solid var(--color-gradient-end);
    border-right-color: transparent;
}

/* 前面リボン帯 */
.benefits-ribbon__text {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0 60px;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 64px;
    color: var(--color-white);
    letter-spacing: 1.28px;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);
}

/* 左の折り返し */
.benefits-ribbon__text::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px #0a3d8a;
}

/* 右の折り返し */
.benefits-ribbon__text::after {
    position: absolute;
    content: '';
    top: 100%;
    right: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-left: solid 20px #085a28;
}

/* カード */
.benefits-cards {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    overflow: visible;
}

.benefits-card {
    flex: 1;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: visible;
}

.benefits-card__image {
    width: 320px;
    max-width: 100%;
    height: 174px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefits-card__text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 0;
    line-height: 0;
    text-align: center;
    color: #0f0f0f;
    letter-spacing: 0.8px;
}

.benefits-card__label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.benefits-card__label-accent {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-card__number {
    font-family: 'DIN Alternate', 'Helvetica', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-card__text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* 吹き出しバッジ（SVG背景） */
.benefits-card__badge {
    position: absolute;
    top: 50px;
    right: -50px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: 'Hiragino Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.4px;
    z-index: 3;
}

.benefits-card__badge-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.benefits-card__badge small {
    font-size: 16px;
    letter-spacing: 0.32px;
}

.benefits-card__badge-line {
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   What's NEW セクション
   ============================================ */
.whats-new-section {
    background-color: transparent;
    padding: 40px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.whats-new-section .section-container {
    background-color: var(--color-bg);
    padding: 40px;
    position: relative;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-right: 60px; /* 右側のスクロールインジケータ分の余白 */
    max-height: 300px;
    overflow-y: auto;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
}

.news-date {
    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: #42C1BC;
    flex-shrink: 0;
    min-width: 120px;
}

.news-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

.news-scroll-indicator {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 8px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: 999px;
}

/* ============================================
   CONCEPT セクション
   ============================================ */
.concept-section {
    padding: 0 0 40px;
    /* Figma(63:14): 透明パネル越しに背景の曲線が見える */
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.concept-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 80px 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 24px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px rgba(16, 85, 215, 0.05);
}

.concept-content .section-header {
    margin-bottom: 0; /* カード内はgapで管理（Figma準拠） */
}

.concept-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Figma Frame 7 gap */
    width: 100%;
}

.concept-logo {
    width: 601px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.concept-logo img {
    width: 100%;
    height: auto;
}

.concept-subtitle {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-align: center;
}

.concept-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
    text-align: center;
}

.concept-messages {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.concept-message-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.7;
    background: linear-gradient(90deg, rgba(34, 111, 255, 1) 0%, rgba(66, 193, 188, 1) 50%, rgba(71, 255, 127, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.concept-message {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-align: center;
}

/* ============================================
   CONTENTS セクション
   ============================================ */
.contents-section {
    background-color: transparent;
    padding: 0 0 80px;
}

.contents-section .section-container {
    padding: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* Figma: 外側gap */
}

.contents-panel {
    width: 1200px; /* Figma: 固定幅 */
    max-width: 100%;
    background-color: var(--color-bg);
    padding: 60px 40px; /* Figma: padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Figma: パネル内gap */
}

.contents-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* Figma: カード間gap */
    width: 100%;
}

.content-card {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

/* 偶数番目のカードは画像とテキストを逆に */
.content-card:nth-child(even) {
    flex-direction: row-reverse;
}

.content-image {
    width: 480px;
    height: 280px;
    background-color: var(--color-white);
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    border-radius: 4px;
}

.content-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.content-card:hover .content-image {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 60px rgba(16, 85, 215, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.content-card:hover .content-image::after {
    opacity: 1;
}

/* 画像上の斜めタグ */
.content-image-tag {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 30px 5px 20px;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-white);
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    z-index: 1;
}

.content-image-tag--learn {
    background: linear-gradient(135deg, #1055D7 0%, #0D45B0 100%);
}

.content-image-tag--deepen {
    background: linear-gradient(135deg, #118EA4 0%, #0D7589 100%);
}

.content-image-tag--connect {
    background: linear-gradient(135deg, #11A47A 0%, #0D8564 100%);
}

.content-image-tag--pitch {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.content-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
    flex-shrink: 0;
}

/* サブタイトル（グラデーションテキスト） */
.content-subtitle {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.06em;
    background: linear-gradient(90deg, #226fff 0%, #47ff7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* タイトルとサブタイトルをグループ化 */
.content-info .content-subtitle + .content-title {
    margin-top: -20px;
}

.content-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

.content-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

.contents-footer {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-align: center;
    white-space: pre-line; /* Figmaの改行をそのまま反映 */
    margin: 0;
}

/* Award Panel (独立パネル) */
.award-panel {
    width: 1200px;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 80px 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.award-panel .section-header {
    margin-bottom: 0;
}

.award-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.award-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    background: linear-gradient(90deg, #1055d7 0%, #118ea4 50%, #11983a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 10px;
    border-bottom: 1px solid #1055d7;
}

.award-tagline {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
    text-align: center;
}

.award-image {
    width: 600px;
    max-width: 100%;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: auto;
    display: block;
}

.award-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.8px;
    color: var(--color-white);
    text-align: center;
    width: 100%;
}

.award-main-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-align: center;
}

.award-notes {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-align: center;
}

/* Award Judges */
.award-finalists {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.award-finalists-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.8px;
    color: var(--color-white);
    text-align: center;
}

.award-finalists-grid {
    display: grid;
    grid-template-columns: repeat(4, 240px);
    gap: 20px;
    justify-content: center;
}

.award-finalist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 240px;
}

.award-finalist-card .speaker-trigger {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-finalist-card .speaker-trigger:hover {
    transform: translateY(-8px) scale(1.03);
}

.award-finalist-card .speaker-trigger:hover .award-finalist-image {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(16, 85, 215, 0.25);
}

.award-finalist-image {
    width: 240px;
    height: 253px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-finalist-image .speaker-arrow-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    display: block;
}

.award-finalist-logo {
    width: 100%;
    aspect-ratio: 880 / 480;
    overflow: hidden;
}

.award-finalist-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-finalist-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.award-finalist-position {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.64px;
    color: var(--color-white);
}

.award-finalist-name {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    line-height: 1.7;
}

.award-finalist-name-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1.38px;
    color: var(--color-white);
}

.award-finalist-name-suffix {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.96px;
    color: var(--color-white);
}

.award-judges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.award-judges-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.8px;
    color: var(--color-white);
    text-align: center;
}

.award-judges-grid {
    display: grid;
    grid-template-columns: repeat(4, 240px);
    gap: 20px;
    justify-content: center;
}

.award-judge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 240px;
}

.award-judge-image {
    width: 240px;
    height: 253px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-judge-card .speaker-trigger {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-judge-card .speaker-trigger:hover .award-judge-image {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(16, 85, 215, 0.25);
}

.award-judge-card .speaker-trigger:hover {
    transform: translateY(-8px) scale(1.03);
}

.award-judge-image .speaker-arrow-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    display: block;
}

.award-judge-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.award-judge-position {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.96px;
    color: var(--color-white);
}

.award-judge-name {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    line-height: 1.7;
}

.award-judge-name-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.44px;
    color: var(--color-white);
}

.award-judge-name-suffix {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.96px;
    color: var(--color-white);
}

.award-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.award-cta-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
    text-align: center;
}

.award-cta-text--gradient {
    background: linear-gradient(90deg, #226fff 0%, #42c1bc 50%, #47ff7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-cta-deadline {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #226fff 0%, #42c1bc 50%, #47ff7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.award-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 120px;
    background: transparent;
    border: 1px solid var(--color-white);
    transform: skewX(-6deg);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.award-info-btn:hover {
    opacity: 0.7;
    transform: skewX(-6deg) translateY(-2px);
}

.award-info-btn span {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-white);
    transform: skewX(6deg);
}

.award-info-btn-arrow {
    transform: skewX(6deg);
    flex-shrink: 0;
}

.btn-award {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 80px;
    background: linear-gradient(90deg, #1055d7 0%, #118ea4 50%, #11983a 100%);
    transform: skewX(-6deg);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-award:hover {
    transform: skewX(-6deg) translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(16, 85, 215, 0.4);
    filter: brightness(1.1);
}

.btn-award-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-white);
    transform: skewX(6deg);
}

.btn-award-arrow {
    transform: skewX(6deg);
}

.btn-award-arrow-diamond {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-white);
    transform: skewX(6deg) rotate(45deg);
    position: relative;
    flex-shrink: 0;
}

.btn-award-arrow-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: translate(-70%, -50%) rotate(-45deg);
}

/* Speakers Panel (独立パネル) */
.speakers-panel {
    width: 1200px;
    max-width: 100%;
    background-color: var(--color-bg);
    padding: 60px 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.speakers-panel .speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 20px;
    width: 100%;
}

.btn-sponsor {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 140px;
    background-color: var(--color-blue);
    border: none;
    cursor: pointer;
    margin: 0 auto;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-white);
    transform: skewX(-8deg);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-sponsor:hover {
    transform: skewX(-8deg) translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(16, 85, 215, 0.4);
    filter: brightness(1.1);
}
/* ============================================
   PRESENTS セクション
   ============================================ */
.presents-section {
    padding: 0 0 40px;
}

.presents-section .section-container {
    padding: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* Figma: PRESENTS全体 gap */
}

.presents-panel {
    width: 1200px;
    max-width: 100%;
    background: linear-gradient(90deg, rgba(34, 111, 255, 1) 0%, rgba(66, 193, 188, 1) 50%, rgba(71, 255, 127, 1) 100%);
    padding: 60px 40px; /* Figma: Frame 8 padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px; /* Figma: Frame 8 gap */
}

.presents-panel .section-header {
    margin-bottom: 0;
}

.presents-panel .section-title {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
    border-image: none;
    border-bottom: 1px solid var(--color-white); /* Figma: stroke white */
}

.presents-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
}

.present-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.present-image {
    width: 360px;
    height: 196px;
    background-color: #666666;
    position: relative;
    background-size: cover;
    background-position: center;
    border: none;
    display: block;
}

.present-image::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 13L13 3M9 3H13V7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.present-trigger {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
}

.present-trigger:focus-visible .present-image {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.present-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.present-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.present-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.presents-cta {
    padding: 20px 120px; /* Figma btn: padding */
    margin: 0 auto;
}

/* ============================================
   PRESENTS 右ドロワーモーダル
   ============================================ */
.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.present-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.present-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.present-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.present-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 33vw; /* 指定: 画面右側に33% */
    background: var(--color-white);
    transform: translateX(100%) scale(0.95);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1920px) {
    .present-modal__drawer {
        width: 25vw; /* 指定: 1920px以上は25% */
    }
}

.present-modal.is-open .present-modal__drawer {
    transform: translateX(0) scale(1);
}

.present-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Figma: gap */
    padding: 40px 30px; /* Figma: padding */
    min-height: 100%;
}

.present-modal__image {
    width: 100%;
    height: auto;
    aspect-ratio: 453 / 246.63;
    background-color: #666666;
    background-size: cover;
    background-position: center;
}

.present-modal__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 0 40px;
}

.present-modal__title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.present-modal__body {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
    white-space: pre-line;
}

.present-modal__close {
    width: min(414px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border: 1px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-black);
    margin-top: auto;
}

.present-modal__close-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 768px) {
    .present-modal__drawer {
        width: 80vw; /* SP: 右側に80% */
        max-width: 80%;
    }
}

/* ============================================
   SPEAKERS 右ドロワーモーダル（PRESENTSと同一挙動）
   ============================================ */
.speaker-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   SP MENU モーダル（右ドロワー）
   ============================================ */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.menu-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.menu-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(300px, 80vw); /* Figma: 300 / 画面比で約80% */
    background: var(--color-bg);
    transform: translateX(100%) scale(0.95);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

.menu-modal.is-open .menu-modal__drawer {
    transform: translateX(0) scale(1);
}

.menu-modal__content {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Figma */
    padding: calc(21px + env(safe-area-inset-top, 0px)) 16px 30px; /* Figma + safe area */
    min-height: 100%;
}

.menu-modal__close-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-modal__close {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-white);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-modal__nav {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Figma */
}

.menu-modal__link {
    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--color-white);
    text-decoration: none;
}

.menu-modal__link:hover,
.menu-modal__link:active,
.menu-modal__link:focus-visible {
    background: linear-gradient(90deg, #226FFF 0%, #42C1BC 50%, #47FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NOTE: SPメニューは「現在地の常時ハイライト」をしない（Figma仕様: default白 / hover・activeでグラデ） */

/* タップ直後に一瞬だけ見せる用（JSで付与） */
.menu-modal__link.is-pressed {
    background: linear-gradient(90deg, rgba(34, 111, 255, 1) 0%, rgba(66, 193, 188, 1) 50%, rgba(71, 255, 127, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speaker-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.speaker-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.speaker-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 33vw;
    background: var(--color-white);
    transform: translateX(100%) scale(0.95);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1920px) {
    .speaker-modal__drawer {
        width: 25vw;
    }
}

.speaker-modal.is-open .speaker-modal__drawer {
    transform: translateX(0) scale(1);
}

.speaker-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 40px 30px;
    min-height: 100%;
}

.speaker-modal__image {
    width: 100%;
    aspect-ratio: 265 / 279;
    background-color: #666666;
    background-size: cover;
    background-position: center;
}

.speaker-modal__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 40px;
}

.speaker-modal__name {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.speaker-modal__title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
    white-space: pre-line;
}

.speaker-modal__body {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
    white-space: pre-line;
}

.speaker-modal__close {
    width: min(414px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border: 1px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-black);
    margin-top: auto;
}

.speaker-modal__close-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 768px) {
    .speaker-modal__drawer {
        width: 80vw; /* SP: 右側に80% */
        max-width: 80%;
    }
}

/* ============================================
   Session Modal (タイムテーブル詳細)
   ============================================ */
.session-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.session-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.session-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.session-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50vw;
    max-width: 700px;
    background: var(--color-white);
    transform: translateX(100%) scale(0.95);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

.session-modal.is-open .session-modal__drawer {
    transform: translateX(0) scale(1);
}

.session-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 30px;
    min-height: 100%;
}

.session-modal__header {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.session-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: white;
    white-space: nowrap;
}

.session-modal__venue {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    white-space: nowrap;
}

.session-modal__title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #0f0f0f;
    margin: 0;
}

.session-modal__speaker {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
}

.session-modal__image {
    width: 200px;
    height: 211px;
    object-fit: cover;
    flex-shrink: 0;
}

.session-modal__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #0f0f0f;
}

.session-modal__company {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.06em;
    white-space: pre-line;
}

.session-modal__name-row {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.session-modal__name {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
}

.session-modal__suffix {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
}

.session-modal__text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.06em;
    white-space: pre-line;
}

.session-modal__close {
    width: min(414px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border: 1px solid #0f0f0f;
    background: transparent;
    cursor: pointer;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    margin-top: auto;
    transform: skewX(-6deg);
}

@media (max-width: 768px) {
    .session-modal__drawer {
        width: 85vw;
        max-width: none;
    }

    .session-modal__speaker {
        flex-direction: column;
        gap: 20px;
    }

    .session-modal__image {
        width: 100%;
        height: auto;
        aspect-ratio: 200 / 211;
    }

    .session-modal__badge {
        font-size: 16px;
    }

    .session-modal__venue {
        font-size: 16px;
    }

    .session-modal__title {
        font-size: 15px;
    }

    .session-modal__company {
        font-size: 14px;
    }

    .session-modal__name {
        font-size: 20px;
    }

    .session-modal__text {
        font-size: 14px;
    }
}

/* ============================================
   Networking Modal
   ============================================ */
/* ============================================
   Funding Lounge Modal（右ドロワー）
   ============================================ */
.funding-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.funding-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.funding-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.funding-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 33vw;
    background: var(--color-white);
    transform: translateX(100%) scale(0.95);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1920px) {
    .funding-modal__drawer {
        width: 25vw;
    }
}

.funding-modal.is-open .funding-modal__drawer {
    transform: translateX(0) scale(1);
}

.funding-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 30px;
    min-height: 100%;
}

.funding-modal__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.funding-modal__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 0 40px;
}

.funding-modal__title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #1055d7 0%, #118ea4 50%, #11983a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.funding-modal__tagline {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #0f0f0f;
}

.funding-modal__body {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #0f0f0f;
}

.funding-modal__notes {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #0f0f0f;
}

.funding-modal__close {
    width: min(414px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border: 1px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-black);
    margin-top: auto;
    transform: skewX(-6deg);
}

.funding-modal__close svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .funding-modal__drawer {
        width: 80vw;
        max-width: 80%;
    }

    .funding-modal__tagline {
        font-size: 20px;
    }
}

.networking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.networking-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.networking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.networking-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 33vw;
    background: var(--color-white);
    transform: translateX(100%) scale(0.95);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1920px) {
    .networking-modal__drawer {
        width: 25vw;
    }
}

.networking-modal.is-open .networking-modal__drawer {
    transform: translateX(0) scale(1);
}

.networking-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 30px;
    min-height: 100%;
}

.networking-modal__image {
    width: 100%;
    height: auto;
}

.networking-modal__image img {
    width: 100%;
    height: auto;
    display: block;
}

.networking-modal__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 0 40px;
}

.networking-modal__title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.networking-modal__body {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.networking-modal__notes {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.networking-modal__close {
    width: min(414px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border: 1px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-black);
    margin-top: auto;
}

.networking-modal__close svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .networking-modal__drawer {
        width: 80vw;
        max-width: 80%;
    }
}

/* ============================================
   Award Modal（センターポップアップ）
   ============================================ */
.award-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.award-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.award-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.award-modal__dialog {
    position: relative;
    width: 90%;
    max-width: 840px;
    max-height: 90vh;
    background: var(--color-white);
    transform: scale(0.95) translateY(20px);
    transition: transform var(--transition-base);
    overflow: hidden;
}

.award-modal.is-open .award-modal__dialog {
    transform: scale(1) translateY(0);
}

.award-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-modal__close-icon {
    font-size: 32px;
    color: #0f0f0f;
    line-height: 1;
}

.award-modal__close:hover .award-modal__close-icon {
    color: var(--color-blue);
}

.award-modal__content {
    padding: 40px 60px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.award-modal__title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.7;
    background: linear-gradient(90deg, #1055D7 0%, #118EA4 50%, #11983A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.award-modal__section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.award-modal__heading {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0f0f0f;
    letter-spacing: 0.06em;
    line-height: 1.7;
}

.award-modal__text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #0f0f0f;
    letter-spacing: 0.06em;
    line-height: 1.7;
}

.award-modal__text p {
    margin: 0;
}

.award-modal__list {
    margin: 0;
    padding-left: 24px;
    list-style-type: decimal;
}

.award-modal__list li {
    margin-bottom: 0;
    line-height: 1.7;
}

.award-modal__list strong {
    font-weight: 600;
}

.award-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 120px;
    border: 1px solid #0f0f0f;
    background: transparent;
    color: #0f0f0f;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transform: skewX(-6deg);
    transition: all var(--transition-base);
}

.award-modal__btn:hover {
    background: #0f0f0f;
    color: var(--color-white);
}

.award-modal__btn span {
    transform: skewX(6deg);
}

.award-modal__btn svg {
    transform: skewX(6deg);
}

@media (max-width: 768px) {
    .award-modal__dialog {
        width: 95%;
        max-height: 85vh;
    }

    .award-modal__content {
        padding: 30px 20px 50px;
        gap: 30px;
    }

    .award-modal__title {
        font-size: 22px;
    }

    .award-modal__heading {
        font-size: 14px;
    }

    .award-modal__text {
        font-size: 14px;
    }

    .award-modal__btn {
        padding: 16px 40px;
        font-size: 14px;
        gap: 12px;
    }

    .award-modal__close {
        top: 10px;
        right: 10px;
    }
}

/* ============================================
   SPEAKERS セクション
   ============================================ */
.speakers-section {
    background-color: transparent;
    padding: 40px 0;
}

.speakers-section .section-container {
    background-color: var(--color-bg);
    border-radius: 10px;
}

/* PC: ブロック以外は透明（Figma） */
@media (min-width: 769px) {
    .speakers-section .section-container {
        padding: 60px 40px;
    }
}

/* SPEAKERS内の参加登録ボタンはセンター配置（Figma準拠） */
.speakers-section .btn-register-large {
    margin: 0 auto;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 20px; /* row-gap: 80px, column-gap: 20px */
    margin-bottom: 50px;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.speaker-image {
    width: 265px;
    height: 279px;
    background-color: var(--color-white);
    background-size: cover;
    background-position: center;
    position: relative;
    display: block; /* span化してもサイズが効くように */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-trigger:hover .speaker-image {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(16, 85, 215, 0.25);
}

.speaker-arrow-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    display: block;
}

/* Coming Soon用のスタイル */
.speaker-card--coming-soon {
    pointer-events: none;
}

.speaker-image-placeholder {
    width: 265px;
    height: 279px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-white);
    text-align: center;
}

.speaker-trigger {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.speaker-trigger--disabled {
    display: block;
    padding: 0;
}

.speaker-trigger:hover {
    transform: translateY(-8px) scale(1.03);
}

.speaker-trigger:hover .speaker-image {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.speaker-trigger:hover .speaker-info {
    filter: brightness(1.1);
}

.speaker-trigger:focus-visible .speaker-image {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.speaker-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    transition: filter 0.3s ease;
}

.speaker-name {
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-family: 'Hiragino Sans', sans-serif;
    line-height: 1.7;
    color: var(--color-white);
    white-space: nowrap;
}

.speaker-name-main {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.speaker-name-suffix {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.speaker-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 120px;
    border: 1px solid var(--color-white);
    background: transparent;
    cursor: pointer;
    margin: 0 auto 50px;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-white);
    width: 414px;
    transform: skewX(-8deg);
}

/* ============================================
   NETWORKING セクション
   ============================================ */
.networking-section {
    background-color: transparent;
    padding: 40px 0;
}

/* ============================================
   Hackathon（ハッカソン）パネル
   ============================================ */
.hackathon-panel {
    width: 1200px;
    max-width: 100%;
    margin-top: 80px;
}

.hackathon-banner {
    background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);
    padding: 40px;
}

.hackathon-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.hackathon-label {
    color: var(--color-white);
    opacity: 1;
    font-size: 20px;
    letter-spacing: 4px;
}

.hackathon-title-wrapper {
    border-image: none;
    border-bottom: 1px solid var(--color-white);
}

.hackathon-title {
    font-size: 40px;
    letter-spacing: 4px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
}

.hackathon-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hackathon-image-logo {
    width: 360px;
    height: 280px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hackathon-image-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hackathon-image-photo {
    width: 480px;
    height: 280px;
    background: var(--color-white);
    overflow: hidden;
    flex-shrink: 0;
}

.hackathon-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hackathon-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
}

.hackathon-headline {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 2;
    color: var(--color-white);
    letter-spacing: 0.96px;
}

.hackathon-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    color: #0f0923;
    letter-spacing: 0.8px;
}

.hackathon-note {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #0f0923;
    letter-spacing: 0.64px;
}

.networking-panel {
    width: 1200px;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 80px 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.networking-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.networking-image {
    width: 480px;
    height: 280px;
    background-color: var(--color-white);
    overflow: hidden;
    flex-shrink: 0;
}

.networking-image img {
    width: 480px;
    height: 320px;
    object-fit: cover;
    object-position: center 29.79px;
    display: block;
    margin-top: -29.79px;
    max-width: none;
}

.networking-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.networking-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: var(--color-white);
    width: 100%;
}

.networking-subtitle {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
    width: 100%;
}

.networking-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.networking-main-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--color-white);
    width: 100%;
}

.networking-notes {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--color-white);
    width: 100%;
}

/* Networking セクション専用のタイトルスタイル */
.networking-section .section-title-wrapper {
    height: 40px;
    padding: 0 40px;
}

.networking-section .section-title {
    font-size: 50px;
    letter-spacing: 0.06em;
}

/* NETWORKING内の参加登録ボタンはセンター配置 */
.networking-section .btn-register-large {
    margin: 0 auto;
}

/* ============================================
   AWARD セクション
   ============================================ */
.award-section {
    background-color: transparent;
    padding: 40px 0;
}

.award-section .section-title-wrapper {
    height: 50px;
    padding: 0 40px;
}

.award-section .section-title {
    font-size: 50px;
    letter-spacing: 0.04em;
}

/* AWARD内の参加登録ボタンはセンター配置 */
.award-section .btn-register-large {
    margin: 0 auto;
}

/* ============================================
   Funding Lounge セクション
   ============================================ */
.funding-lounge-section {
    background-color: transparent;
    padding: 40px 0;
}

.funding-lounge-panel {
    width: 1200px;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 80px 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.funding-lounge-panel .section-header {
    margin-bottom: 0;
}

.funding-lounge-title-wrapper {
    height: 40px;
    padding: 0 40px;
    border-bottom: 1px solid var(--color-blue);
}

.funding-lounge-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    background: linear-gradient(90deg, #1055D7 0%, #11983A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.funding-lounge-tagline {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-align: center;
}

.funding-lounge-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.funding-lounge-image {
    width: 480px;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--color-white);
}

.funding-lounge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.funding-lounge-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--color-white);
    line-height: 2;
}

.funding-lounge-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.funding-lounge-notes {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* Funding Lounge内の参加登録ボタン */
.funding-lounge-section .btn-register-large {
    margin: 60px auto 0;
}

/* ============================================
   CVC Booster セクション
   ============================================ */
.cvc-booster-section {
    background-color: transparent;
    padding: 40px 0;
}

.cvc-booster-panel {
    width: 1200px;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 80px 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cvc-booster-panel .section-header {
    margin-bottom: 0;
}

.cvc-booster-title-wrapper {
    height: 40px;
    padding: 0 40px;
    border-bottom: 1px solid var(--color-blue);
}

.cvc-booster-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.cvc-booster-tagline {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-align: center;
}

.cvc-booster-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.cvc-booster-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--color-white);
}

.cvc-booster-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.64px;
}

.cvc-booster-image {
    width: 480px;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--color-white);
}

.cvc-booster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cvc-booster-section .btn-register-large {
    margin: 60px auto 0;
}

/* ============================================
   ATTENDEES セクション
   ============================================ */
.attendees-section {
    /* Figma(76:442): 透明パネル越しに背景の曲線が見える */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    padding: 40px 0;
}

.attendees-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 60px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 24px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.attendees-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-align: center;
}

.attendees-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.attendee-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 30px;
    background-color: var(--color-white);
    width: 100%;
    max-width: 850.77px;
    margin: 0 auto;
    transform: skewX(-8deg);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.attendee-card:hover {
    transform: skewX(-8deg) translateX(8px);
    box-shadow: -8px 4px 20px rgba(16, 85, 215, 0.15);
}

.attendee-card > * {
    transform: skewX(8deg);
    transform-origin: left center;
}

.attendee-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-black);
}

.attendee-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--color-black);
}

/* ============================================
   TIMETABLE セクション
   ============================================ */
.timetable-section {
    background-color: var(--color-bg);
    padding: 40px 0;
}

.timetable-container {
    position: relative;
}

.timetable-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.timetable-scroll-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-hint-text {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

.scroll-hint-arrow {
    width: 20px;
    height: 20px;
    animation: scroll-hint-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.timetable-wrapper {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.timetable-time-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 90px;
    flex-shrink: 0;
    padding-right: 16px;
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--color-bg);
}

.time-slot {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--color-white);
    height: 360px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.3) 0px,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px,
            transparent 60px
        );
    background-size: 12px 1px, 6px 100%;
    background-position: right top, right top;
    background-repeat: no-repeat, no-repeat;
}

.time-slot.time-header {
    height: 59px;
    border-right: none;
    background: none;
}

.timetable-stages {
    display: flex;
    gap: 4px;
    flex: none;
}

.timetable-stage {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 220px;
    flex: none;
}

.stage-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-bg);
    text-align: center;
}

.stage-a {
    background-color: #1055d7;
}

.stage-b {
    background-color: #118ea4;
}

.stage-c {
    background-color: #11983a;
}

.stage-d {
    background-color: #f8d839;
}

.stage-e {
    background-color: #f89939;
}

.stage-event {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--color-white);
    position: relative;
}

.stage-event.strong {
    background-color: rgba(255, 255, 255, 0.2);
}

.stage-event.networking {
    gap: 16px;
}

.event-time {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

.event-networking-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

.event-arrow-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
}

.networking-trigger {
    border: none;
    margin: 0;
    width: 100%;
    text-align: inherit;
    font: inherit;
    cursor: pointer;
}

.networking-trigger:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: -2px;
}

.stage-empty {
    background: transparent;
}

.stage-fill {
    flex: 1;
}

/* Timetable event card styles (white cards) */
.stage-event-card {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    position: relative;
    transition: background-color 0.2s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.stage-event-card::-webkit-scrollbar {
    width: 3px;
}

.stage-event-card::-webkit-scrollbar-track {
    background: transparent;
}

.stage-event-card::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.stage-event-card {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.stage-event-card--compact {
    background-color: #f5f5f5;
    border-color: transparent;
    border-bottom-color: #0D0820;
    justify-content: center;
    align-items: flex-start;
    padding: 4px 10px;
}

.stage-event-card--compact .event-session-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.stage-event-card--compact .event-time-inline {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    color: #555;
}

.stage-event-card--compact .event-session-title {
    margin: 0;
    font-size: 11px;
}

.stage-event-card.is-clickable {
    cursor: pointer;
}

.stage-event-card.is-clickable:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.stage-event-card.is-clickable:hover .event-speaker-photo,
.stage-event-card.is-clickable:hover .event-accordion-btn {
    opacity: 0.6;
}

.event-session-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.event-time-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: white;
    white-space: nowrap;
}

.event-time-badge.badge-a { background-color: #1055d7; }
.event-time-badge.badge-b { background-color: #118ea4; }
.event-time-badge.badge-c { background-color: #11983a; }
.event-time-badge.badge-d { background-color: #f8d839; color: #666; }
.event-time-badge.badge-e { background-color: #f89939; }
.event-time-badge.badge-f { background-color: #e53d3d; }

.event-session-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #0f0f0f;
}

.event-session-subtitle {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #0f0f0f;
}

.event-pitch-companies {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #0f0f0f;
}

.event-detail-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #0f0923;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #0f0923;
    width: 100%;
    white-space: nowrap;
}

/* Compact accordion button (Figma: circular + icon) */
.event-accordion-btn {
    position: sticky;
    bottom: 0;
    align-self: flex-end;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: white;
    border: 1px solid #0f0923;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stage-event-card.is-clickable:hover .event-accordion-btn {
    transform: rotate(90deg);
}

/* Speaker photo (circular) */
.event-speaker-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.event-speaker-photos {
    display: flex;
    gap: 10px;
}

/* Speaker company text on card */
.event-speaker-company {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.48px;
    color: #0f0f0f;
    white-space: pre-line;
    margin: 0;
}

/* Speaker name on card */
.event-speaker-name {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    color: #0f0f0f;
    line-height: 1.7;
}

.event-speaker-name .name-main {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.96px;
}

.event-speaker-name .name-suffix {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.84px;
}

/* Speaker divider line */
.event-speaker-divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid #0f0f0f;
    margin: 0;
}

/* Compact variant for cards with many speakers */
.event-session-info--compact {
    gap: 3px !important;
}

.event-session-info--compact .event-speaker-photos {
    gap: 5px;
}

.event-session-info--compact .event-speaker-photo {
    width: 36px;
    height: 36px;
}

.event-session-info--compact .event-speaker-company {
    font-size: 10px;
    line-height: 1.2;
}

.event-session-info--compact .event-speaker-name {
    gap: 2px;
}

.event-session-info--compact .event-speaker-name .name-main {
    font-size: 12px;
}

.event-session-info--compact .event-speaker-name .name-suffix {
    font-size: 10px;
}

.event-session-info--compact .event-speaker-divider {
    margin: 1px 0;
}

.stage-f { background-color: #e53d3d; }

.timetable-stage--wide { width: 440px; flex: none; }

.stage-subcols {
    display: flex;
    gap: 4px;
}

.stage-subcol {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.timetable-note {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   APPLY NOW セクション
   ============================================ */
.apply-section {
    background-color: transparent;
    padding: 40px 0;
}

.apply-section .section-container {
    padding: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* Figma: outer gap */
}

.apply-panel {
    width: 1200px; /* Figma: fixed */
    max-width: 100%;
    background-color: var(--color-bg); /* Figma: bg */
    padding: 40px 60px; /* Figma: panel padding */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* Figma: panel gap */
}

.apply-panel .section-header {
    margin-bottom: 0;
}

.apply-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Figma: row gap */
    width: 100%;
}

.apply-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.1); /* Figma: fill_CK8YMO */
    padding: 30px 40px; /* Figma: row padding */
}

.apply-label {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--color-white);
    width: 200px; /* Figma: label width */
    flex-shrink: 0;
}

.apply-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Figma: inner gap */
}

.apply-body-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--color-white);
    margin: 0;
}

.apply-body-sub {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--color-white);
    margin: 0;
    white-space: pre-line;
}

.apply-body-note {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--color-white);
    margin: 0;
    white-space: pre-line;
}

/* APPLY NOW（補足）内の強調行：Figma指定グラデ */
.apply-body-note .apply-note-accent {
    background: linear-gradient(90deg, #226FFF 0%, #42C1BC 50%, #47FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apply-fee {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--color-red);
    margin: 0;
}

.apply-cta {
    padding: 20px 120px; /* Figma btn: padding */
    margin: 0 auto;
}

/* ============================================
   SPONSOR セクション
   ============================================ */
.sponsor-section {
    background-color: transparent;
    padding: 40px 0 80px; /* Figma: outer padding 40 0 80 */
}

.sponsor-section .section-container {
    padding: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* 親Frameのgap */
}

.sponsor-panel {
    width: 1200px; /* Figma: fixed 1200 */
    max-width: 100%;
    background-color: var(--color-bg); /* Figma: bg */
    padding: 40px; /* Figma: padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; /* Figma: gap */
}

.sponsor-panel .section-header {
    margin-bottom: 0;
}

.sponsor-tiers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
    width: 100%;
}

.sponsor-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0; /* Figma: tier padding */
    width: 100%;
}

.tier-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.tier-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.sponsor-logo {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Figma tier-specific logo sizes */
.sponsor-tier--platinum .sponsor-logo {
    width: 440px;
    height: 240px;
}

.sponsor-tier--platinum .sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sponsor-tier--gold .sponsor-logo {
    width: 360px;
    height: 196px;
}

.sponsor-tier--gold .sponsor-logo img {
    width: 360px;
    height: auto;
}

.sponsor-tier--silver .sponsor-logo,
.sponsor-tier--bronze .sponsor-logo,
.sponsor-tier--partner .sponsor-logo {
    width: 265px;
    height: 144.28px;
}

.sponsor-tier--startup .sponsor-logo {
    height: 144.28px;
}

.sponsor-tier--silver .sponsor-logo img,
.sponsor-tier--bronze .sponsor-logo img,
.sponsor-tier--startup .sponsor-logo img,
.sponsor-tier--partner .sponsor-logo img,
.sponsor-tier--special-thanks .sponsor-logo img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sponsor-tier--startup .tier-logos {
    display: grid;
    grid-template-columns: repeat(3, 265px);
    gap: 20px;
    width: 835px;
    max-width: 100%;
}

.sponsor-tier--startup .sponsor-logo {
    width: 265px;
    height: 145px;
}

.sponsor-tier--special-thanks .tier-logos {
    display: grid;
    grid-template-columns: repeat(4, 190px);
    gap: 20px;
    width: 820px;
    max-width: 100%;
}

.sponsor-tier--special-thanks .sponsor-logo {
    width: 190px;
    height: 103px;
}


/* ============================================
   EVENT GUIDE セクション
   ============================================ */
.event-guide-section {
    background-color: transparent;
    padding: 40px 0;
}

.event-guide-section .section-container {
    padding: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* Figma: outer gap */
}

.event-guide-panel {
    width: 1200px; /* Figma: fixed */
    max-width: 100%;
    background-color: var(--color-bg); /* Figma: bg */
    padding: 40px 60px; /* Figma: panel padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* Figma: panel gap */
}

.event-guide-panel .section-header {
    margin-bottom: 0;
}

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

.guide-label {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--color-white);
    width: 200px;
    flex-shrink: 0;
}

.guide-value {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--color-white);
    flex: 1;
}

.guide-value-red {
    color: var(--color-red);
}

/* ============================================
   ACCESS セクション
   ============================================ */
.access-section {
    background-color: transparent;
    padding: 40px 0;
}

.access-section .section-container {
    background-color: var(--color-bg);
    border-radius: 10px;
}

/* PC: ブロック以外は透明（Figma） */
@media (min-width: 769px) {
    .access-section .section-container {
        padding: 60px 40px;
    }
}

.access-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.access-item {
    display: flex;
    gap: 40px;
    padding: 30px 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

.access-label {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--color-white);
    width: 200px;
    flex-shrink: 0;
}

.access-value {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--color-white);
    flex: 1;
}

.access-transport {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.transport-line {
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 4px 0 4px 20px;
    border-left: 4px solid;
}

.transport-tokyo-metro {
    border-color: #8A38F5;
}

.transport-toei {
    border-color: #11983A;
}

.transport-info {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--color-white);
}

.access-map {
    width: 100%;
    height: 413.77px;
    background-color: var(--color-white);
    margin-top: 10px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   ABOUT セクション
   ============================================ */
.about-section {
    padding: 40px 0 120px;
    background-color: transparent; /* Figma: 白はパネル側 */
}

.about-section .section-container {
    padding: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px; /* Figma: outer gap */
}

.about-panel {
    width: 1200px; /* Figma: fixed 1200 */
    max-width: 100%;
    background-color: var(--color-white); /* Figma: white frame */
    padding: 40px 40px 60px; /* Figma: padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* Figma: gap */
}

.about-sponsor-cta {
    margin: 0 auto;
}

.about-section .section-label {
    color: var(--color-black);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 801px;
    margin: 0 auto;
}

.about-image {
    width: 320px;
    height: 120px;
    background-color: var(--color-white);
    background-size: cover;
    background-position: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.about-title {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

.about-description {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 2; /* Figma: 2em */
    letter-spacing: 0.06em;
    color: var(--color-black);
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background-color: var(--color-black);
    padding: 60px 30px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 323px;
    height: 28px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-contact {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-contact-label {
    color: var(--color-white);
    font-family: 'Helvetica', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.footer-contact-email {
    color: var(--color-white);
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
    transition: opacity 0.3s ease;
}

.footer-contact-email:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons {
    width: 90px;
    height: 31px;
    display: block;
}

.footer-bottom {
    background-color: #0A3E6F;
    padding: 20px 30px;
    text-align: center;
}

.footer-copyright {
    font-family: 'Hiragino Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--color-white);
}

/* ============================================
   レスポンシブ対応（SP版: 390px）
   ============================================ */
@media (max-width: 768px) {
    /* 全体のセクション */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* ヘッダー */
    .header {
        padding: 0;
        max-width: 100vw;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px 16px;
    }

    .logo img {
        width: 231px;
        height: 20px;
    }

    .header-nav {
        display: none; /* SP版ではハンバーガーメニューに変更予定 */
    }

    .header-btn {
        display: none; /* SP版ではヘッダー内のボタンは非表示 */
    }

    .menu-text {
        display: block;
    }

    /* SP専用 参加登録ボタン（FV上） */
    .mobile-register-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
        background: var(--color-black);
    }

    .mobile-register-btn .btn-register {
        padding: 20px 40px;
        width: 100%;
        justify-content: center;
        transform: skewX(-8deg);
        border-radius: 0;
        gap: 10px;
    }

    .mobile-register-btn .btn-register > * {
        transform: skewX(8deg);
    }

    .mobile-register-btn .btn-text {
        font-size: 20px;
        letter-spacing: 0.06em;
    }

    /* ファーストビュー */
    .fv-section {
        padding: 80px 0 50px;
        min-height: 750px;
    }

    .fv-background {
        position: fixed;
        top: 60px;
        height: 640px;
        background-image: none;
    }

    /* SPでも動画を表示 */
    .fv-bg-video {
        display: block;
    }

    /* PC用の背景設定をスマホでも適用 */

    br.sp-only {
        display: block;
    }

    br.pc-only {
        display: none;
    }

    .fv-content {
        padding: 0 16px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .fv-title {
        display: none;
    }

    .fv-main {
        align-items: center;
        width: 100%;
    }

    .fv-taglines {
        align-items: center;
        width: 100%;
    }

    .fv-taglines--sp .fv-taglines-image {
        width: 100%;
        max-width: 358px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .fv-info {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 30px 20px 40px;
        /* Figma(91:222): 背景の曲線がうっすら透けるガラス表現 */
        background: rgba(15, 9, 35, 0.28);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 20px;
        overflow: hidden;
    }

    .fv-date-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .fv-date-main {
        font-size: 26px;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .fv-date-day {
        font-size: 48px;
    }

    .fv-date-time {
        font-size: 26px;
        letter-spacing: 0.08em;
        text-align: center;
    }

    .fv-powered {
        display: none;
    }

    .fv-venue-row {
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .fv-label {
        font-size: 14px;
        padding: 4px 7px;
    }

    .fv-label img {
        width: 17px;
        height: auto;
        display: block;
    }

    .fv-venue-name {
        font-size: 28px;
        letter-spacing: 0.06em;
    }

    .fv-venue-name img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .btn-register-large {
        padding: 20px 40px;
        width: 327px; /* Figma SP (158:317) */
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
        gap: 10px; /* Figma */
    }

    .btn-register-large .btn-text {
        font-size: 20px;
        display: inline-flex; /* SPも1行表示 */
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.15;
        gap: 0;
        white-space: nowrap;
    }

    .btn-register-large .btn-text-line {
        display: inline;
    }

    .fv-section .btn-register-large {
        display: flex; /* Figma SPはFV内にCTAあり */
    }

    /* 参加登録CTAはSPでも1行表示（Figma準拠） */

    .btn-register-large .btn-arrow {
        width: 17px;
        height: 17px;
    }

    /* Benefits（本イベント限定特典） */
    .benefits-section {
        padding: 0;
    }

    .benefits-section .section-container {
        padding: 40px 16px;
    }

    .benefits-inner {
        gap: 24px;
    }

    .benefits-label {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .benefits-ribbon::before {
        left: -25px;
        bottom: -10px;
        border-width: 18px;
    }

    .benefits-ribbon::after {
        right: -25px;
        bottom: -10px;
        border-width: 18px;
    }

    .benefits-ribbon__text {
        font-size: 14px;
        letter-spacing: 0.64px;
        white-space: normal;
        line-height: 36px;
        padding: 0 24px;
    }

    .benefits-ribbon__text::before {
        border-bottom-width: 10px;
        border-right-width: 12px;
    }

    .benefits-ribbon__text::after {
        border-bottom-width: 10px;
        border-left-width: 12px;
    }

    .benefits-cards {
        flex-direction: column;
        gap: 16px;
    }

    .benefits-card {
        padding-bottom: 24px;
    }

    .benefits-card__image {
        width: 220px;
        height: 120px;
    }

    .benefits-card__label {
        font-size: 14px;
    }

    .benefits-card__label-accent {
        font-size: 14px;
    }

    .benefits-card__number {
        font-size: 32px;
    }

    .benefits-card__badge {
        top: 10px;
        right: -10px;
        width: 80px;
        height: 80px;
        font-size: 13px;
    }

    .benefits-card__badge small {
        font-size: 11px;
    }

    /* What's NEW (Figma: outer padding-bottom 40, inner padding 40 16) */
    .whats-new-section {
        padding: 0 0 40px;
        margin-top: 0;
    }

    .whats-new-section .section-container {
        padding: 40px 16px;
    }

    .whats-new-section .section-header {
        margin-bottom: 0;
    }

    .news-list {
        padding-right: 0; /* SPはスクロールインジケータを出さない */
        max-width: 100%;
    }

    .news-scroll-indicator {
        display: none;
    }

    .news-item {
        gap: 12px;
    }

    .news-date {
        min-width: auto;
        font-size: 15px;
    }

    .news-title {
        font-size: 15px;
    }

    /* CONCEPT (Figma: outer 0 16 40 / card padding 40 20 / gap 40) */
    .concept-section {
        padding: 0 16px 40px;
    }

    .concept-section .section-container {
        padding: 0;
    }

    .concept-content {
        padding: 40px 20px;
        gap: 40px;
        border-radius: 10px;
    }

    .concept-top {
        gap: 20px;
    }

    .concept-logo {
        width: 300px;
        height: 26px;
    }

    .concept-subtitle {
        font-size: 50px;
    }

    .concept-description {
        font-size: 18px;
        line-height: 2;
        white-space: pre-line;
    }

    .concept-message-title {
        font-size: 30px;
        line-height: 1.7;
    }

    .concept-message {
        font-size: 18px;
        line-height: 1.7;
        letter-spacing: 0.04em;
    }

    /* CONTENTS (Figma: outer padding-bottom 60 / inner padding 40 16) */
    .contents-section {
        padding: 0 0 60px;
    }

    .contents-section .section-container {
        padding: 40px 20px; /* What’s NEWと同じ余白感に揃える */
        gap: 50px;
    }

    .contents-panel {
        padding: 0;
        background: transparent;
        gap: 40px;
    }

    .contents-grid {
        gap: 60px;
    }

    .content-card {
        flex-direction: column;
        gap: 30px;
        align-items: stretch; /* Figma: テキスト領域は横いっぱい（fill） */
        justify-content: flex-start;
    }

    .content-card:nth-child(even) {
        flex-direction: column;
    }

    .content-info {
        width: 100%;
        flex: none;
    }

    .content-title,
    .content-description {
        width: 100%;
    }

    .content-image {
        width: 100%;
        height: 208.83px;
    }

    .content-badge {
        font-size: 18px;
    }

    .content-image-tag {
        font-size: 18px;
        padding: 8px 24px 8px 16px;
    }

    .content-subtitle {
        font-size: 16px;
    }

    .content-info {
        gap: 30px;
    }

    .content-info .content-subtitle + .content-title {
        margin-top: -10px;
    }

    .content-title {
        font-size: 30px;
    }

    .content-description {
        font-size: 16px;
        line-height: 2;
    }

    .contents-footer {
        font-size: 20px;
        letter-spacing: 0.06em;
        line-height: 2;
    }

    /* Award Panel SP */
    .award-panel {
        width: 100%;
        padding: 40px 16px;
        gap: 40px;
        border-radius: 10px;
    }

    .award-title {
        font-size: 28px;
        letter-spacing: 0.02em;
    }

    .award-tagline {
        font-size: 18px;
    }

    .award-image {
        width: 100%;
    }

    .award-description {
        font-size: 16px;
        text-align: left;
    }

    .award-main-text {
        font-size: 16px;
        text-align: left;
    }

    .award-notes {
        font-size: 14px;
        text-align: left;
    }

    .award-cta-text {
        font-size: 16px;
    }

    .btn-award {
        padding: 16px 30px;
        gap: 16px;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .btn-award-text {
        font-size: 16px;
        white-space: nowrap;
    }

    .btn-award-arrow {
        width: 24px;
        height: 24px;
    }

    .award-info-btn {
        padding: 16px 40px;
        gap: 12px;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .award-info-btn span {
        font-size: 14px;
    }

    /* Award Finalists SP */
    .award-finalists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }

    .award-finalist-card {
        width: 100%;
    }

    .award-finalist-image {
        width: 100%;
        height: 0;
        padding-bottom: calc(253 / 240 * 100%);
    }

    .award-finalist-position {
        font-size: 13px;
    }

    .award-finalist-name-text {
        font-size: 18px;
    }

    .award-finalist-name-suffix {
        font-size: 14px;
    }

    /* Award Judges SP */
    .award-judges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }

    .award-judge-card {
        width: 100%;
        gap: 20px;
    }

    .award-judge-image {
        width: 100%;
        height: 0;
        padding-bottom: calc(253 / 240 * 100%);
    }

    .award-judge-info {
        gap: 16px;
    }

    .award-judge-position {
        font-size: 13px;
    }

    .award-judge-name-text {
        font-size: 18px;
    }

    .award-judge-name-suffix {
        font-size: 14px;
    }

    /* Speakers Panel SP */
    .speakers-panel {
        width: 100%;
        padding: 40px 20px;
        gap: 40px;
    }

    .speakers-panel .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    /* SPEAKERS (Figma: outer 0 0 40 / inner padding 40 16 60 / list gap 10) */
    .speakers-section {
        padding: 0 0 40px;
    }

    .speakers-section .section-container {
        padding: 40px 16px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px; /* Figma: header -> list */
        width: 100%;
    }

    .speakers-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* SPは2カラム固定 */
        gap: 30px 10px; /* row-gap: 30px, column-gap: 10px */
        margin-bottom: 0 !important;
        width: 100%;
        justify-items: center;
    }

    .speakers-grid + .speakers-grid {
        margin-top: 0 !important;
    }

    .speaker-card {
        width: 100%;
        max-width: 174px; /* Figma: image widthに合わせる */
    }

    .speaker-trigger,
    .speaker-trigger--disabled {
        width: 100%;
    }

    .speaker-image {
        width: 100%;
        height: 183px; /* Figma */
    }

    .speaker-image-placeholder {
        width: 100%;
        height: 183px;
    }

    .coming-soon-text {
        font-size: 16px;
    }

    .speaker-card {
        gap: 20px;
    }

    .speaker-title {
        font-size: 12px;
        line-height: 1.5;
    }

    .speaker-name-main {
        font-size: 16px;
    }

    .speaker-name-suffix {
        font-size: 12px;
    }

    .btn-more {
        width: 327px;
        padding: 20px 40px; /* SPは1行で収まるように（Figma見た目に合わせる） */
        white-space: nowrap;
        margin: 0 auto; /* SPは余計な下marginを消す */
    }

    /* SPEAKERS CTA は共通SPルールに統一（重複上書きしない） */

    /* Footer (Figma SP: links=3, social icons 110x41) */
    .footer-links a:nth-child(4) {
        display: none;
    }

    .social-icons {
        width: 110px;
        height: 41px;
    }

    /* セクション共通 */
    .section-container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .section-header {
        gap: 10px;
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 18px;
    }

    .section-title-wrapper {
        height: 32px;
        padding: 0 10px;
        overflow: hidden;
        align-items: flex-start;
    }

    .section-title {
        font-size: 40px;
        padding: 0;
        line-height: 1;
    }

    /* What's NEW */
    .whats-new-section {
        padding: 40px 0;
    }

    .whats-new-section .section-container {
        padding: 40px 20px;
    }

    .news-list {
        gap: 0;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }

    .news-date {
        font-size: 15px;
        min-width: auto;
    }

    .news-title {
        font-size: 15px;
    }

    .news-scroll-indicator {
        display: none;
    }

    /* CONCEPT */
    .concept-section {
        padding: 60px 16px;
    }

    .concept-content {
        padding: 40px 20px;
        gap: 40px;
    }

    .concept-logo {
        width: 300px;
        height: auto;
    }

    .concept-logo img {
        width: 300px;
        height: auto;
    }

    .concept-subtitle {
        font-size: 50px;
    }

    .concept-description {
        font-size: 18px;
    }

    .concept-message-title {
        font-size: 28px;
    }

    .concept-message {
        font-size: 18px;
        line-height: 1.7;
    }

    /* CONTENTS */
    .contents-section {
        padding: 0 0 60px;
    }

    .contents-section .section-container {
        padding: 0 16px;
        gap: 60px;
    }

    .contents-panel {
        width: 100%;
        padding: 60px 10px;
        gap: 60px;
    }

    .contents-grid {
        gap: 40px;
    }

    .content-card {
        flex-direction: column !important;
        gap: 20px;
    }

    .content-image {
        width: 100%;
        height: 208.83px;
    }

    .content-info {
        gap: 16px;
        width: 100%;
    }

    .content-badge {
        font-size: 16px;
    }

    .content-image-tag {
        font-size: 16px;
        padding: 8px 20px 8px 14px;
    }

    .content-subtitle {
        font-size: 15px;
    }

    .content-info .content-subtitle + .content-title {
        margin-top: -8px;
    }

    .content-title {
        font-size: 24px;
    }

    .content-description {
        font-size: 15px;
    }

    .contents-footer {
        font-size: 20px;
        line-height: 2;
    }

    /* Award Panel Tablet */
    .award-panel {
        width: 100%;
        padding: 40px 20px;
        gap: 40px;
        border-radius: 12px;
    }

    .award-title {
        font-size: 32px;
    }

    .award-tagline {
        font-size: 20px;
    }

    .award-main-text {
        font-size: 18px;
    }

    .award-notes {
        font-size: 14px;
    }

    /* Speakers Panel Tablet */
    .speakers-panel {
        width: 100%;
        padding: 40px 20px;
        gap: 40px;
    }

    .speakers-panel .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .btn-sponsor {
        padding: 20px 30px;
        width: 100%;
        justify-content: center;
        font-size: 20px;
    }

    /* PRESENTS */
    .presents-section {
        padding: 0 0 40px;
    }

    .presents-section .section-container {
        padding: 0;
        gap: 50px; /* Figma: outer gap */
    }

    .presents-panel {
        width: 100%;
        padding: 40px 16px 80px; /* Figma: padding */
        gap: 50px;
        border-radius: 20px 20px 0 0;
        background: linear-gradient(180deg, rgba(34, 111, 255, 1) 0%, rgba(66, 193, 188, 1) 50%, rgba(71, 255, 127, 1) 100%);
    }

    .presents-grid {
        flex-direction: column;
        gap: 60px; /* Figma: list gap */
        margin-bottom: 0;
    }

    .present-image {
        width: 100%;
        height: 196px;
    }

    /* SPのPRESENTS画像右上アイコンは黒の↗ */
    .present-image::after {
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 13L13 3M9 3H13V7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .present-title {
        font-size: 28px;
    }

    /* SPEAKERS: duplicate SP overrides removed (handled above) */

    /* フッター */
    .footer {
        padding: 60px 30px;
    }

    .footer-logo img {
        width: 323px;
        height: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-contact-label {
        font-size: 14px;
    }

    .footer-contact-email {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 20px 16px;
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .footer-copyright {
        font-size: 10px;
    }

    /* NETWORKING */
    .networking-section {
        padding: 0 0 40px;
    }

    /* Hackathon Panel */
    .hackathon-panel {
        margin-top: 40px;
    }

    .hackathon-banner {
        padding: 30px 16px;
    }

    .hackathon-inner {
        gap: 30px;
    }

    .hackathon-label {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hackathon-title-wrapper {
        height: 28px;
        padding: 0 20px;
    }

    .hackathon-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .hackathon-images {
        flex-direction: column;
    }

    .hackathon-image-logo {
        width: 100%;
        height: 120px;
    }

    .hackathon-image-photo {
        width: 100%;
        height: 180px;
    }

    .hackathon-headline {
        font-size: 18px;
    }

    .hackathon-description {
        font-size: 15px;
    }

    .hackathon-note {
        font-size: 13px;
    }

    .networking-panel {
        padding: 40px 16px;
        gap: 40px;
    }

    .networking-panel .section-title-wrapper {
        height: auto;
        padding: 0 10px 8px;
    }

    .networking-panel .section-title {
        font-size: 18px;
        letter-spacing: 0.02em;
        white-space: normal;
        text-align: center;
    }

    .networking-content {
        flex-direction: column;
        gap: 20px;
    }

    .networking-image {
        width: 100%;
        height: auto;
        aspect-ratio: 480 / 280;
    }

    .networking-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 480 / 280;
        object-fit: cover;
        object-position: center;
        margin-top: 0;
    }

    .networking-text {
        gap: 10px;
    }

    .networking-title {
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: 0.02em;
    }

    .networking-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .networking-description {
        gap: 20px;
    }

    .networking-main-text {
        font-size: 15px;
        line-height: 2;
    }

    .networking-notes {
        font-size: 13px;
        line-height: 2;
    }

    .networking-section .section-title-wrapper {
        height: 18px;
        padding: 0 10px;
    }

    .networking-section .section-title {
        font-size: 20px;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    /* AWARD */
    .award-section {
        padding: 0 0 40px;
    }

    .award-section .section-title-wrapper {
        height: 22px;
        padding: 0 10px;
    }

    .award-section .section-title {
        font-size: 22px;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    /* Funding Lounge */
    .funding-lounge-section {
        padding: 0 0 40px;
    }

    .funding-lounge-panel {
        width: 100%;
        padding: 40px 16px;
        gap: 40px;
        border-radius: 10px;
    }

    .funding-lounge-title-wrapper {
        height: 28px;
        padding: 0 20px;
    }

    .funding-lounge-title {
        font-size: 28px;
        letter-spacing: 0.6px;
    }

    .funding-lounge-tagline {
        font-size: 16px;
        letter-spacing: 0.02em;
    }

    .funding-lounge-content {
        flex-direction: column;
        gap: 30px;
    }

    .funding-lounge-image {
        width: 100%;
        height: 200px;
    }

    .funding-lounge-text {
        gap: 20px;
    }

    .funding-lounge-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .funding-lounge-notes {
        font-size: 14px;
    }

    /* CVC Booster */
    .cvc-booster-section {
        padding: 0 0 40px;
    }

    .cvc-booster-panel {
        width: 100%;
        padding: 40px 16px;
        gap: 40px;
        border-radius: 10px;
    }

    .cvc-booster-title-wrapper {
        height: 28px;
        padding: 0 20px;
    }

    .cvc-booster-title {
        font-size: 32px;
        letter-spacing: 0.6px;
    }

    .cvc-booster-tagline {
        font-size: 16px;
        letter-spacing: 0.02em;
    }

    .cvc-booster-content {
        flex-direction: column;
        gap: 30px;
    }

    .cvc-booster-image {
        width: 100%;
        height: 200px;
    }

    .cvc-booster-description {
        font-size: 14px;
        line-height: 1.8;
    }

    /* ATTENDEES */
    .attendees-section {
        padding: 0 0 40px; /* Figma */
    }

    .attendees-section .section-container {
        padding: 40px 16px 80px; /* Figma */
    }

    .attendees-content .section-title-wrapper {
        max-width: 100%;
        box-sizing: border-box;
    }

    .attendees-title {
        font-size: 20px;
        line-height: 2;
        font-weight: 600;
        letter-spacing: 0.04em;
    }

    .attendees-content {
        gap: 40px; /* Figma */
        padding: 40px 20px; /* Figma(81:1894 / 158:342) */
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .attendees-list {
        gap: 10px; /* Figma */
    }

    .attendee-card {
        padding: 20px;
        max-width: 100%;
    }

    .attendee-title {
        font-size: 18px;
    }

    .attendee-description {
        font-size: 15px;
        line-height: 1.5;
        letter-spacing: 0.04em;
    }

    /* TIMETABLE */
    .timetable-section {
        padding: 40px 0; /* Figma */
    }

    .timetable-time-column {
        width: 60px;
        padding-right: 12px;
    }

    .time-slot {
        min-width: 60px;
        height: 360px;
        padding: 10px 0;
        font-size: 13px;
    }

    .timetable-time-column .time-slot:first-child {
        height: 59px;
        min-height: 59px;
        padding: 10px 0;
        border-right: none;
        background: none;
    }

    .timetable-stage {
        width: 180px;
    }

    .stage-header {
        font-size: 18px;
        padding: 5px 10px;
        box-sizing: border-box;
    }

    .stage-event {
        min-height: 126px;
        padding: 14px 10px;
    }

    .stage-event.large {
        min-height: 168px;
        padding: 16px 10px;
    }

    .stage-event.tall {
        min-height: 258px;
        padding: 10px;
    }

    .stage-event.full {
        min-height: 737px;
        padding: 10px;
    }

    .event-time {
        font-size: 15px;
    }

    .event-title {
        font-size: 15px;
    }

    .stage-empty {
        min-height: 0;
    }

    .stage-event-card {
        padding: 10px;
    }

    .event-time-badge {
        font-size: 12px;
    }

    .event-session-title,
    .event-session-subtitle {
        font-size: 12px;
    }

    .event-detail-btn {
        font-size: 11px;
        padding: 6px 10px;
        gap: 10px;
    }

    .event-speaker-photo {
        width: 40px;
        height: 40px;
    }

    .event-speaker-company {
        font-size: 10px;
    }

    .event-speaker-name .name-main {
        font-size: 13px;
    }

    .event-speaker-name .name-suffix {
        font-size: 11px;
    }

    .event-accordion-btn {
        width: 28px;
        height: 28px;
        bottom: 0;
    }

    .timetable-stage--wide {
        width: 320px;
    }

    .timetable-note {
        font-size: 14px;
        padding: 0 16px;
    }

    /* SPONSOR */
    .sponsor-section {
        padding: 40px 0; /* Figma */
    }

    .sponsor-section .section-container {
        padding: 40px 16px; /* Figma */
        gap: 60px; /* Figma */
    }

    .sponsor-panel {
        width: 100%;
        padding: 0;
        background: transparent;
        gap: 60px; /* Figma */
    }

    .sponsor-tier {
        padding: 40px 0;
        gap: 40px; /* Figma */
    }

    .tier-title {
        font-size: 30px;
    }

    .tier-logos {
        gap: 10px;
    }

    .sponsor-logo {
        height: auto;
    }

    .sponsor-logo img {
        width: 100%;
    }

    .sponsor-tier--platinum .sponsor-logo,
    .sponsor-tier--gold .sponsor-logo {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 360 / 196;
    }

    .sponsor-tier--silver .sponsor-logo,
    .sponsor-tier--bronze .sponsor-logo,
    .sponsor-tier--partner .sponsor-logo {
        width: calc((100% - 10px) / 2);
        max-width: 174px;
        aspect-ratio: 174 / 94.73;
    }

    .sponsor-tier--startup .tier-logos {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .sponsor-tier--startup .sponsor-logo {
        width: 100%;
        height: auto;
        aspect-ratio: 265 / 145;
    }

    .sponsor-tier--special-thanks .tier-logos {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .sponsor-tier--special-thanks .sponsor-logo {
        width: 100%;
        height: auto;
        aspect-ratio: 190 / 103;
    }

    /* EVENT GUIDE */
    .event-guide-section {
        padding: 40px 0;
    }

    .event-guide-section .section-container {
        padding: 40px 16px; /* Figma */
        gap: 60px; /* Figma */
    }

    .event-guide-panel {
        width: 100%;
        padding: 0;
        background: transparent;
        gap: 60px;
    }

    .event-guide-panel .section-title-wrapper {
        max-width: 100%;
        box-sizing: border-box;
    }

    .guide-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    .guide-label {
        width: 100%;
        font-size: 15px;
    }

    .guide-value {
        font-size: 18px;
    }

    /* ACCESS */
    .access-section {
        padding: 40px 0; /* Figma */
    }

    .access-section .section-container {
        padding: 40px 16px; /* Figma */
    }

    .access-item {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .access-label {
        width: 100%;
        font-size: 15px;
    }

    .access-value {
        font-size: 15px;
    }

    .access-transport {
        gap: 30px;
    }

    .transport-line {
        padding: 4px 0 4px 10px;
        border-left-width: 3px;
    }

    .transport-info {
        font-size: 15px;
    }

    .access-map {
        height: 240px;
    }

    /* ABOUT */
    .about-section {
        padding: 40px 16px 80px; /* Figma */
    }

    .about-section .section-container {
        padding: 0;
        gap: 50px;
    }

    .about-panel {
        width: 100%;
        padding: 40px 30px; /* Figma */
        gap: 60px;
    }

    .about-content {
        gap: 60px;
    }

    .about-image {
        width: 240px;
        height: 90px;
    }

    .about-title {
        font-size: 20px;
    }

    .about-description {
        font-size: 16px;
    }

    /* APPLY NOW */
    .apply-section {
        padding: 40px 0;
    }

    .apply-section .section-container {
        padding: 0 16px;
        gap: 50px;
    }

    .apply-panel {
        width: 100%;
        padding: 40px 16px; /* Figma */
        gap: 60px;
        background: transparent;
    }

    .apply-panel .section-title-wrapper {
        max-width: 100%;
        box-sizing: border-box;
    }

    .apply-list {
        gap: 10px; /* Figma */
        width: 100%;
    }

    .apply-item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px; /* Figma */
        padding: 20px; /* Figma */
        background-color: rgba(255, 255, 255, 0.1); /* Figma: fill_U0SSQA */
    }

    .apply-label {
        width: 100%;
        font-size: 15px; /* Figma */
        line-height: 1.5;
        letter-spacing: 0.1em;
    }

    .apply-body {
        width: 100%;
        gap: 20px; /* Figma */
    }

    .apply-body-title {
        font-size: 18px; /* Figma */
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: 0.04em;
    }

    .apply-body-sub {
        font-size: 16px; /* Figma */
        font-weight: 300;
        line-height: 1.5;
        letter-spacing: 0.04em;
        white-space: pre-line;
    }

    .apply-fee {
        font-size: 18px; /* Figma */
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: 0.04em;
        color: var(--color-red);
    }

    .apply-body-note {
        font-size: 16px; /* Figma (269:330): 16 */
        font-weight: 300;
        line-height: 1.7;
        letter-spacing: 0.04em;
        white-space: pre-line;
        color: var(--color-white); /* Figma: #fff */
    }

    .apply-cta {
        width: 327px;
        padding: 20px 40px; /* Figma */
    }
}

