/* ========================================
   リセット & 基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラー */
    --primary-color: #ffd700;
    --primary-dark: #e6c200;
    --secondary-color: #88b04b;
    --accent-color: #ff9800;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    
    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-green: linear-gradient(135deg, #88b04b 0%, #a8c66c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(136, 176, 75, 0.9) 100%);
    
    /* シャドウ */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* トランジション */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   ナビゲーション
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: var(--light-color);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--dark-color) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 80px;
    /* 
    背景パターン選択：
    
    ★ パターン4: 春の里山風景（現在選択中）
    - 菜の花と桜のダブル主役
    - 春らしい優しいグラデーション
    */
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6) 0%, rgba(255, 192, 203, 0.5) 50%, rgba(144, 238, 144, 0.6) 100%),
                url('../images/landscape-02.jpg');
    
    /*
    パターン1: 菜の花畑の写真
    - 菜の花畑と錦川清流線の実写
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.75) 0%, rgba(136, 176, 75, 0.8) 100%),
                url('../images/landscape-13.jpg');
    */
    
    /*
    パターン2: 列車と菜の花と桜の共演
    - より地域の特色が出る背景
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.7) 0%, rgba(255, 182, 193, 0.6) 50%, rgba(136, 176, 75, 0.7) 100%),
                url('../images/landscape-15.jpg');
    */
    
    /*
    パターン3: 菜の花畑の全景
    - 広がる菜の花畑の雰囲気
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.5) 0%, rgba(136, 176, 75, 0.6) 100%),
                url('../images/landscape-10.jpg');
    */
    
    /*
    パターン5: 明るく軽やかな春の雰囲気
    - 透明度を上げて写真を主役に
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 215, 0, 0.4) 50%, rgba(136, 176, 75, 0.3) 100%),
                url('../images/landscape-14.jpg');
    */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* パララックス効果 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* 春らしい装飾レイヤー */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* 桜の花びらと菜の花のイメージを表現 */
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.3) 0%, transparent 15%),
        radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 30% 70%, rgba(255, 192, 203, 0.25) 0%, transparent 18%),
        radial-gradient(circle at 70% 80%, rgba(255, 235, 59, 0.3) 0%, transparent 22%),
        radial-gradient(circle at 50% 40%, rgba(136, 176, 75, 0.15) 0%, transparent 25%);
    animation: floatFlowers 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatFlowers {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-30px) scale(1.05);
        opacity: 1;
    }
}

/* 舞い散る花びらエフェクト（オプション） */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background-image: 
        radial-gradient(circle, rgba(255, 182, 193, 0.6) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 215, 0, 0.5) 3px, transparent 3px),
        radial-gradient(circle, rgba(255, 192, 203, 0.4) 2px, transparent 2px);
    background-size: 150px 150px, 200px 200px, 180px 180px;
    background-position: 0 0, 50px 50px, 100px 100px;
    animation: fall 30s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(100%) rotate(360deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

/* タイトルラッパー */
.hero-title-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

/* 年度バッジ（左肩上） */
.year-badge {
    position: absolute;
    top: -30px;
    left: -80px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--dark-color);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border: 4px solid var(--white);
    z-index: 2;
    transform: rotate(-15deg);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: rotate(-15deg) scale(1);
    }
    50% {
        transform: rotate(-15deg) scale(1.05);
    }
}

/* キャッチフレーズ（上部） */
.hero-catchphrase {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.9),
        3px 3px 8px rgba(0, 0, 0, 0.95),
        -2px -2px 8px rgba(0, 0, 0, 0.85);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.3) 0%,
        rgba(255, 215, 0, 0.4) 100%
    );
    padding: 8px 30px;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid rgba(255, 215, 0, 0.6);
    backdrop-filter: blur(8px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--white);
    /* 白文字に強い縁取り効果 */
    text-shadow: 
        0 0 25px rgba(0, 0, 0, 0.9),
        0 0 45px rgba(0, 0, 0, 0.7),
        4px 4px 10px rgba(0, 0, 0, 0.95),
        -3px -3px 10px rgba(0, 0, 0, 0.85),
        0 5px 15px rgba(0, 0, 0, 0.8);
    /* さらに白の縁取り */
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    /* 背景ボックスで視認性を向上 */
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    padding: 15px 40px;
    border-radius: 15px;
    display: inline-block;
    border: 3px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);\n}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark-color);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    color: var(--dark-color);
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 215, 0, 0.9);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    border: 3px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.8);
}

.btn.large {
    font-size: 1.4rem;
    padding: 20px 50px;
}

.pulse {
    animation: pulse 2s ease infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease infinite;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 3px;
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 25px; opacity: 0.5; }
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   概要セクション
======================================== */
.about-section {
    background: var(--light-color);
    position: relative;
}

/* 菜の花の装飾 */
.about-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.about-section::after {
    content: '🌼';
    position: absolute;
    top: 30px;
    right: 5%;
    font-size: 4rem;
    opacity: 0.15;
    animation: sway 5s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.theme-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.theme-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-box i {
    color: var(--primary-color);
}

.theme-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.target-subjects h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.target-subjects i {
    color: var(--accent-color);
}

.subjects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.subject-tag {
    background: var(--gradient-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* ========================================
   スケジュールセクション
======================================== */
.schedule-section {
    background: linear-gradient(to bottom, var(--white) 0%, rgba(255, 250, 230, 0.5) 100%);
    position: relative;
}

/* お祭りの雰囲気を出す装飾 */
.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 215, 0, 0.3) 0px,
            rgba(255, 215, 0, 0.3) 20px,
            transparent 20px,
            transparent 40px,
            rgba(255, 182, 193, 0.3) 40px,
            rgba(255, 182, 193, 0.3) 60px,
            transparent 60px,
            transparent 80px
        );
    pointer-events: none;
    opacity: 0.6;
}

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

.schedule-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.schedule-card.highlight {
    background: var(--gradient-primary);
    color: var(--dark-color);
}

.schedule-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.schedule-card.highlight .schedule-icon {
    background: var(--white);
}

.schedule-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.schedule-card.highlight .schedule-icon i {
    color: var(--secondary-color);
}

.schedule-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.schedule-date {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.schedule-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.schedule-details p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.venue {
    font-weight: 700;
    margin-top: 15px;
}

/* ========================================
   募集要項セクション
======================================== */
.details-section {
    background: var(--light-color);
}

.location-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(136, 176, 75, 0.1);
    border-radius: 10px;
    text-align: center;
}

.details-content {
    display: grid;
    gap: 30px;
}

.detail-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.detail-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-box h3 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.detail-item p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--accent-color) !important;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(136, 176, 75, 0.1) 100%);
    border: 3px solid var(--primary-color);
}

.application-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.method-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.method-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.method-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.method-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.method-card .btn {
    margin-bottom: 15px;
}

.method-card small {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* 地図コンテナ */
.map-container {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 250, 230, 0.5);
    border-radius: 15px;
    border: 2px solid rgba(136, 176, 75, 0.3);
}

.map-container h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container h4 i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.map-wrapper {
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
}

/* イラスト地図 */
.map-illustration {
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.map-illustration svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.map-point {
    display: flex;
    gap: 15px;
    align-items: start;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.map-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.map-point i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.map-point strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.map-point p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.map-note {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--dark-color);
    display: flex;
    align-items: start;
    gap: 12px;
    line-height: 1.7;
}

.map-note i {
    color: #2196f3;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ========================================
   賞品セクション
======================================== */
.awards-section {
    background: var(--white);
}

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

.award-card {
    background: var(--light-color);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.award-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.award-card.gold::before {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.award-card.silver::before {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}

.award-card.bronze::before {
    background: linear-gradient(135deg, #cd7f32 0%, #e8b887 100%);
}

.award-medal {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.award-card.silver .award-medal {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}

.award-card.bronze .award-medal {
    background: linear-gradient(135deg, #cd7f32 0%, #e8b887 100%);
}

.award-medal i {
    font-size: 3rem;
    color: var(--white);
}

.award-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.award-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.award-details p {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.award-details i {
    font-size: 1.2rem;
}

.award-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.award-prize p {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
}

.awards-note {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.awards-note i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.awards-note p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ========================================
   撮影のヒントセクション
======================================== */
.tips-section {
    background: var(--white);
}

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

.tip-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.tip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.tip-icon i {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.tip-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tip-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.tips-note {
    background: #e7f3ff;
    border-left: 5px solid #2196f3;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.tips-note i {
    color: #2196f3;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.tips-note p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 0;
}

/* ========================================
   2025年実績セクション
======================================== */
.results-section {
    background: linear-gradient(135deg, 
        rgba(255, 250, 230, 1) 0%, 
        rgba(255, 248, 220, 1) 50%, 
        rgba(240, 255, 240, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

/* 春の花のパターン装飾 */
.results-section::before {
    content: '🌸 🌼 🌸 🌼 🌸 🌼 🌸 🌼 🌸';
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.08;
    white-space: nowrap;
    animation: scrollFlowers 40s linear infinite;
}

.results-section::after {
    content: '🌼 🌸 🌼 🌸 🌼 🌸 🌼 🌸 🌼';
    position: absolute;
    bottom: 10%;
    right: -100px;
    font-size: 2.5rem;
    opacity: 0.08;
    white-space: nowrap;
    animation: scrollFlowers 35s linear infinite reverse;
}

@keyframes scrollFlowers {
    0% {
        transform: translateX(0) translateY(-50%);
    }
    100% {
        transform: translateX(100vw) translateY(-50%);
    }
}

/* ポスター表示 */
.poster-container {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.contest-poster {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.contest-poster:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* ギャラリーセクション */
.gallery-section {
    margin: 60px 0;
}

.gallery-section h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    display: none;
    /* キャプションを非表示 */
}

/* 会場セクション */
.venue-section {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.venue-section h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.venue-image {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.venue-caption {
    padding: 25px;
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    line-height: 1.8;
}

/* ========================================
   注意事項セクション
======================================== */
.notice-section {
    background: var(--white);
}

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

.notice-important {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.notice-important i {
    color: #ffc107;
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-important p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    font-weight: 600;
}

.notice-accordion {
    display: grid;
    gap: 20px;
}

.notice-item {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.notice-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.notice-header:hover {
    background: var(--light-color);
}

.notice-header i:first-child {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.notice-header span {
    flex: 1;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.notice-header i:last-child {
    color: var(--gray);
    transition: transform 0.3s ease;
}

.notice-item.active .notice-header i:last-child {
    transform: rotate(180deg);
}

.notice-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 30px;
}

.notice-item.active .notice-body {
    max-height: 2000px;
    padding: 25px 30px;
}

.notice-body ul {
    list-style: none;
    padding: 0;
}

.notice-body li {
    padding: 12px 0 12px 25px;
    position: relative;
    color: var(--gray);
    line-height: 1.8;
    border-bottom: 1px solid var(--gray-light);
}

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

.notice-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.5rem;
}

/* ========================================
   CTAセクション
======================================== */
.cta-section {
    background: 
        linear-gradient(135deg, 
            rgba(255, 215, 0, 0.95) 0%, 
            rgba(255, 182, 193, 0.85) 50%,
            rgba(136, 176, 75, 0.95) 100%
        ),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="cta-pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="20" cy="60" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="60" cy="20" r="2.5" fill="rgba(255,255,255,0.25)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>');
    text-align: center;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

/* キラキラエフェクト */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 10%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 8%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.35) 0%, transparent 12%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 10%),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 15%);
    animation: sparkle 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-note {
    margin-top: 25px;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--primary-color);
}

.footer-info p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    padding: 8px 0;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-catchphrase {
        font-size: 1.6rem;
        letter-spacing: 2px;
        padding: 6px 25px;
    }

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

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

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-catchphrase {
        font-size: 1.3rem;
        letter-spacing: 1px;
        padding: 5px 20px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 2rem;
        -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.3);
        padding: 12px 30px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 12px 25px;
    }

    .hero-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .cta-content h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .year-badge {
        width: 80px;
        height: 80px;
        font-size: 0.85rem;
        top: -20px;
        left: -60px;
    }

    .hero-catchphrase {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        padding: 4px 15px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 1.6rem;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
        letter-spacing: 0.5px;
        padding: 10px 25px;
    }

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

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .btn.large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }

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

    .detail-box,
    .schedule-card,
    .award-card {
        padding: 30px 20px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-section h3,
    .venue-section h3 {
        font-size: 1.5rem;
    }

    .map-info {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* ========================================
   ポスター拡大モーダル
   ======================================== */
.poster-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.poster-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

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

.poster-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    z-index: 10001;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.poster-modal-close:hover {
    background: #f44336;
    color: white;
    transform: rotate(90deg);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .poster-modal-content {
        width: 95%;
        height: 85vh;
    }
    
    .poster-modal-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}