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

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
    min-height: 100vh;
}

/* ヘッダー */
.header {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/20250628.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.event-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.05em;
    color: white;
}

.event-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    color: white;
}

.event-subtitle2 {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    font-style: italic;
    color: white;
}

/* メインコンテンツ */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* セクション共通スタイル */
section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

section h2 {
    font-size: 1.8rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #228B22;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #228B22;
}

/* イベント情報 */
.event-info {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
}

.event-info h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}
.event-info a {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.info-item p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: white;
}

.info-item p:first-of-type {
    color: white !important;
    font-weight: 500;
}

.access {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: white;
}

.access a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.3);
}

.access a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.note {
    font-size: 0.9rem;
    color: #ffd700;
    font-style: italic;
}

/* 出演者 */
.performer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.performer-category {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #228B22;
    text-align: center;
}

.performer-category img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    display: block;
    border: 3px solid #228B22;
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.performer-category:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(34, 139, 34, 0.4);
}

.performer-category h3 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.performer-category p {
    color: #2d3748;
    line-height: 1.6;
    font-size: 1rem;
}

.performer-category ul {
    list-style: none;
}

.performer-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.1rem;
    color: #2d3748;
}

.performer-category li:last-child {
    border-bottom: none;
}

/* メッセージ */
.message {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    color: white;
}

.message h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.message-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.message-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: white;
}

/* チケット情報 */
.tickets {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.tickets h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f7fafc;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info strong {
    color: #f7fafc;
}

/* 主催 */
.organizer {
    background: #2d3748;
    color: white;
    text-align: center;
}

.organizer h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.organizer p {
    font-size: 1.2rem;
    color: #eeeeee;
    text-align: center;
    margin-bottom: 0.5rem;
}

.anniversary {
    font-size: 1rem !important;
    color: #99cc99 !important;
    font-weight: 600;
    margin-top: 1rem !important;
}

/* フッター */
.footer {
    background: #2d3748;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}

/* イベント画像 */
.event-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.3);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header {
        padding: 2rem 1rem;
    }
    
    .event-image {
        max-width: 100%;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .event-subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .performer-list {
        grid-template-columns: 1fr;
    }
    
    .performer-category img {
        width: 120px;
        height: 120px;
    }
    
    .access a {
        padding: 0.25rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .event-image {
        max-width: 100%;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-subtitle {
        font-size: 0.9rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .info-item, .performer-category {
        padding: 1rem;
    }
    
    .performer-category img {
        width: 130px;
        height: 130px;
    }
    
    .access a {
        padding: 0.2rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}

/* ホバーエフェクト */
.info-item:hover,
.performer-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* スクロールバー */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #228B22;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #32CD32;
}

/* 閉じるボタン */
.close-button {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.close-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
}

.close-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(34, 139, 34, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .close-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .close-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* 同時開催イベント */
.simultaneous-events {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
}

.simultaneous-events h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.event-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.event-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
}

.event-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

/* ご案内 */
.notice {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    color: white;
}

.notice h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.notice-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.notice-content li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
    color: white;
}

.notice-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.notice-content li:last-child {
    border-bottom: none;
} 