/* Battle Record Landing Page Styles */

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

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #f1f8e9 0%, #dcedc8 50%, #c5e1a5 100%);
    overflow-x: hidden;
}

/* 装飾的な背景要素 */
.bg-decoration {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 204, 101, 0.15) 0%, transparent 70%);
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.2) 0%, transparent 70%);
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 10%;
    background: radial-gradient(circle, rgba(205, 220, 57, 0.15) 0%, transparent 70%);
}

/* フルスクリーンセクション共通スタイル */
.fullscreen-section {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.section-content {
    width: 100%;
    max-width: 1400px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(124, 179, 66, 0.2);
    border: 1px solid rgba(124, 179, 66, 0.4);
    color: #558B2F;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #7CB342 0%, #9CCC65 50%, #558B2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(124, 179, 66, 0.2));
}

.hero .tagline {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero .dates {
    font-size: 1.8rem;
    font-weight: bold;
    color: #558B2F;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 20px;
    padding: 20px 30px;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.1);
}

.stat-bubble .number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #7CB342, #9CCC65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-bubble .label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* 画像スライダーセクション */
.image-slider-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px;
    color: white;
}

.slide-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.slide-description {
    font-size: 1.1rem;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* プロジェクト目的セクション */
.purpose-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
}

.purpose-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #7CB342, #9CCC65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purpose-quote {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.purpose-link {
    display: inline-block;
    background: linear-gradient(135deg, #558B2F, #7CB342);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(85, 139, 47, 0.3);
}

.purpose-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(85, 139, 47, 0.4);
}

/* 選手紹介セクション */
.players-section {
    background: transparent;
}

.players-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #7CB342, #9CCC65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TBA スタイル */
.tba-container {
    text-align: center;
    padding: 40px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.tba-badge {
    display: inline-block;
    background: rgba(124, 179, 66, 0.15);
    color: #558B2F;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid rgba(124, 179, 66, 0.3);
}

.tba-text {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #7CB342, #9CCC65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(124, 179, 66, 0.2));
    animation: pulse 2s ease-in-out infinite;
}

.tba-subtitle {
    font-size: 1.2rem;
    color: #558B2F;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.8;
}

.tba-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.players-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.players-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.player-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.player-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #aed581, #7CB342);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.player-info {
    padding: 20px;
    text-align: center;
}

.player-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.player-team {
    color: #888;
    font-size: 1rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(124, 179, 66, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #7CB342;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

/* メインコンテンツグリッド - PC用に1画面に収める */
.info-section {
    background: rgba(255, 255, 255, 0.98);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 179, 66, 0.15);
    border-radius: 20px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(124, 179, 66, 0.08);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7CB342, #9CCC65);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(124, 179, 66, 0.15);
}

.glass-card h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7CB342, #9CCC65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
    flex-shrink: 0;
}

.glass-card ul {
    list-style: none;
}

.glass-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(124, 179, 66, 0.1);
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.glass-card li:last-child {
    border-bottom: none;
}

.glass-card li::before {
    content: '▸';
    color: #7CB342;
    font-weight: bold;
}

.highlight {
    color: #558B2F;
    font-weight: 600;
}

/* スケジュールセクション */
.schedule-section {
    background: linear-gradient(135deg, rgba(241, 248, 233, 0.95) 0%, rgba(220, 237, 200, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.schedule-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #7CB342, #9CCC65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.schedule-info {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.timeline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    flex: 0 0 130px;
    background: linear-gradient(135deg, #558B2F, #7CB342);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    box-shadow: 0 4px 15px rgba(85, 139, 47, 0.2);
}

.timeline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(85, 139, 47, 0.3);
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline-round {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

/* CTAセクション */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.08), rgba(156, 204, 101, 0.08));
    backdrop-filter: blur(10px);
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #333;
}

.hashtag {
    display: inline-block;
    background: linear-gradient(135deg, #558B2F, #7CB342);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(85, 139, 47, 0.3);
}

.hashtag:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(85, 139, 47, 0.4);
}

.coming-soon {
    display: inline-block;
    background: rgba(124, 179, 66, 0.15);
    color: #558B2F;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin: 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(124, 179, 66, 0.3);
}

/* フッター */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 0.9rem;
    min-height: auto;
}

/* Philosophy Page Styles */
.philosophy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 40px;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.philosophy-badge {
    display: inline-block;
    background: rgba(124, 179, 66, 0.25);
    border: 2px solid rgba(124, 179, 66, 0.5);
    color: #558B2F;
    padding: 12px 36px;
    border-radius: 35px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.2);
}

.philosophy-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #558B2F, #7CB342, #9CCC65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 12px rgba(124, 179, 66, 0.3));
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.philosophy-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #3d5a2f;
    line-height: 2;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.philosophy-section {
    background: transparent;
    padding: 80px 60px 80px 140px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

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

/* タイムライン縦線 */
.philosophy-section::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(124, 179, 66, 0.3), 
        rgba(156, 204, 101, 0.6), 
        rgba(205, 220, 57, 0.3));
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.philosophy-section:first-child::after {
    top: 50%;
}

.philosophy-section:last-child::after {
    bottom: 50%;
}

.philosophy-section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #558B2F, #7CB342, #9CCC65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    transition: all 0.4s ease;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.philosophy-section:hover .philosophy-section-title {
    transform: translateX(10px);
    filter: drop-shadow(0 4px 12px rgba(124, 179, 66, 0.3));
}

/* タイムラインマーカー */
.philosophy-marker {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #558B2F, #7CB342, #9CCC65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    box-shadow: 
        0 4px 20px rgba(124, 179, 66, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        0 0 0 8px rgba(124, 179, 66, 0.1);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.philosophy-section:hover .philosophy-marker {
    transform: translateY(-50%) scale(1.25) rotate(360deg);
    box-shadow: 
        0 8px 30px rgba(124, 179, 66, 0.7),
        0 0 0 6px rgba(255, 255, 255, 0.5),
        0 0 0 12px rgba(124, 179, 66, 0.2);
}

.philosophy-text {
    font-size: 1.35rem;
    font-weight: 500;
    color: #2d4a1f;
    line-height: 2.2;
    margin-bottom: 0;
    max-width: 1000px;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.03em;
}

/* イタリック体のテキスト用（イントロセクション） */
.philosophy-text[style*="italic"] {
    font-size: 1.5rem;
    font-weight: 400;
    color: #3d5a2f;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-text[style*="center"] {
    text-align: center;
}

/* 装飾的なアクセント */
.philosophy-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(156, 204, 101, 0.15) 0%, 
        rgba(124, 179, 66, 0.08) 40%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.6s ease;
    opacity: 0.6;
}

.philosophy-section:hover::before {
    width: 500px;
    height: 500px;
    opacity: 1;
    right: -150px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #558B2F, #7CB342);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(85, 139, 47, 0.3);
    margin-top: 40px;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(85, 139, 47, 0.4);
}

/* レスポンシブ - スマートフォン対応 */
@media (max-width: 768px) {
    /* 基本設定 */
    body {
        font-size: 14px;
    }
    
    /* フルスクリーンセクション */
    .fullscreen-section {
        min-height: auto;
        height: auto;
        padding: 40px 0;
    }
    
    .section-content {
        padding: 20px 15px;
    }
    
    /* ヒーローセクション */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero .tagline {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero .dates {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .stat-bubble {
        min-width: 90px;
        padding: 15px 20px;
    }
    
    .stat-bubble .number {
        font-size: 1.8rem;
    }
    
    .stat-bubble .label {
        font-size: 0.75rem;
    }
    
    /* 目的セクション */
    .purpose-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .purpose-quote {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .purpose-link {
        font-size: 0.95rem;
        padding: 14px 28px;
    }
    
    /* 招待選手セクション */
    .players-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .tba-container {
        padding: 30px 20px;
    }
    
    .tba-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .tba-text {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }
    
    .tba-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .tba-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    /* プレイヤーカード（コメントアウト用） */
    .player-card {
        min-width: 100%;
    }
    
    .players-wrapper {
        padding: 0 20px;
    }
    
    /* 大会情報グリッド */
    .info-section {
        padding: 40px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .glass-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .glass-card h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .icon-circle {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .glass-card li {
        font-size: 0.85rem;
        padding: 7px 0;
        line-height: 1.5;
    }
    
    .highlight {
        font-size: 0.85rem;
    }
    
    .coming-soon {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
    
    /* スケジュールセクション */
    .schedule-section {
        padding: 40px 0;
    }
    
    .schedule-section h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .schedule-info {
        font-size: 0.85rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .timeline-item {
        flex: none;
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .timeline-date {
        font-size: 0.9rem;
        margin-bottom: 6px;
        letter-spacing: 0.3px;
    }
    
    .timeline-round {
        font-size: 0.75rem;
    }
    
    /* CTAセクション */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .hashtag {
        font-size: 1.3rem;
        padding: 14px 30px;
        letter-spacing: 1px;
    }
    
    /* フッター */
    .footer {
        padding: 30px 20px;
        font-size: 0.8rem;
    }
    
    .footer p {
        line-height: 1.8;
    }
    
    /* Philosophy Page Responsive */
    .philosophy-hero {
        min-height: auto;
        padding: 50px 20px;
    }
    
    .philosophy-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .philosophy-title {
        font-size: 1.8rem;
        letter-spacing: 0.02em;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .philosophy-subtitle {
        font-size: 1rem;
        letter-spacing: 0.05em;
        margin-bottom: 30px;
    }
    
    .philosophy-section {
        padding: 40px 20px 40px 60px;
        min-height: auto;
        text-align: left;
    }
    
    .philosophy-section::after {
        left: 20px;
        width: 2px;
    }
    
    .philosophy-marker {
        left: 10px;
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }
    
    .philosophy-section::before {
        display: none;
    }
    
    .philosophy-section-title {
        font-size: 1.4rem;
        letter-spacing: 0.02em;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .philosophy-text {
        font-size: 0.95rem;
        line-height: 1.9;
    }
    
    .philosophy-text[style*="italic"] {
        font-size: 1.05rem;
    }
    
    .philosophy-content {
        padding: 0;
    }
    
    .back-button {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    
    /* 背景装飾の調整 */
    .bg-circle {
        display: none;
    }
}
