/* 御渡りセクションの新しいレイアウト */
.owatari-main-content {
    margin-top: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1150px;
    margin: 0 auto;
}

.text-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.point-content h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.point-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* コンパクトな画像ギャラリー */
.image-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.image-overlay-compact {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.sub-images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sub-image-compact {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sub-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.sub-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
}

/* YouTube動画セクション */
.video-showcase {
    margin-top: 3rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-header h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.video-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.video-container-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.video-wrapper-main {
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


.video-info {
    padding: 1rem;
}

.video-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.video-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.video-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .owatari-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .point-item {
        padding: 0.8rem;
    }
    
    .point-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .point-content h4 {
        font-size: 0.9rem;
    }
    
    .point-content p {
        font-size: 0.8rem;
    }
    
    .main-image {
        height: 180px;
    }
    
    .sub-image {
        height: 100px;
    }
    
    .video-container-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-wrapper-main iframe {
        height: 250px;
    }
    
    .video-header h3 {
        font-size: 1.3rem;
    }
}

/* 御渡り画像ギャラリーのスタイル */
.owatari-gallery {
    margin-top: 3rem;
    padding: 2rem 0;
}

.owatari-gallery h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.gallery-intro {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.image-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main-image-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.main-image-container:hover {
    transform: translateY(-5px);
}

.main-showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.main-image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.sub-images-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sub-image-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sub-image-item:hover {
    transform: scale(1.02);
}

.sub-showcase-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.sub-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.8rem;
    text-align: center;
}

.sub-image-caption span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .image-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .main-showcase-image {
        height: 250px;
    }
    
    .sub-images-grid {
        flex-direction: row;
        gap: 1rem;
    }
    
    .sub-image-item {
        flex: 1;
    }
    
    .sub-showcase-image {
        height: 150px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
    
    .owatari-gallery h3 {
        font-size: 1.5rem;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', 'YuMincho', 'Yu Mincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'HG明朝E', 'ＭＳ 明朝', 'MS Mincho', serif;
    line-height: 1.7;
    color: #333;
    background: url('../images/背景.png') center/200% fixed, #fafafa;
}

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

/* 御渡りセクション専用コンテナ */
.owatari-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    background: #000000;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 0;
}

.logo-image {
    height: 26px;
    width: auto;
    margin-top: 2px;
    max-height: 26px;
    max-width: 48px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-image {
        height: 22px !important;
        width: auto !important;
        margin-top: 5px !important;
        margin-bottom: 0px !important;
        max-height: 22px !important;
        max-width: 42px !important;
        object-fit: contain !important;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 7px 4px;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle span {
    width: 16px;
    height: 2px;
    background: white;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-3px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-3px, -4px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(36, 40, 49, 0.5), rgba(26, 30, 38, 0.5)), url('../images/ヒーロービュー001.jpeg');
    background-size: cover;
    background-position: 44% center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 4rem;
    padding-left: 0;
    margin-left: -2rem;
}

.hero-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #242831;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #242831, #1a1e26);
    margin: 1rem auto;
}

/* English subtitle styles */
.section-title-en {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.feature-title-en {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
    font-family: 'Arial', sans-serif;
}

/* About Section */
.about {
    background: transparent;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 0;
    box-shadow: 
        0 20px 40px rgba(36, 40, 49, 0.08),
        0 8px 16px rgba(36, 40, 49, 0.04),
        0 4px 8px rgba(36, 40, 49, 0.02);
    transition: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
}

.about-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    opacity: 0.7;
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.about-image-section {
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
    text-align: center;
}

.about-shrine-image {
    width: 100%;
    max-width: 1000px;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    transition: all 0.4s ease;
    filter: brightness(0.98) contrast(1.05) saturate(1.1);
    box-shadow: 
        0 20px 40px rgba(36, 40, 49, 0.12),
        0 8px 16px rgba(36, 40, 49, 0.08);
    margin: 0 auto;
    display: block;
}

.about-shrine-image:hover {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.08) saturate(1.15);
    box-shadow: 
        0 24px 48px rgba(36, 40, 49, 0.14),
        0 12px 24px rgba(36, 40, 49, 0.10);
}

.about-text-section {
    padding: 1rem 2rem 2rem 2rem;
    position: relative;
    text-align: center;
}

.about-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    font-weight: 400;
    margin: 0;
    position: relative;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

/* 祭りの構成セクション */
.festival-overview {
    margin-top: 3rem;
    padding: 0 2rem;
}

.overview-title {
    text-align: center;
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 600;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.overview-item {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.overview-image {
    height: 180px;
    overflow: hidden;
}

.overview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-item:hover .overview-img {
    transform: scale(1.05);
}

.overview-content {
    padding: 1.5rem;
}

.overview-content h4 {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-date {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

.overview-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overview-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.overview-link:hover {
    color: #1d4ed8;
}



/* 見どころセクションのコンテナを拡大 */
.highlights .container {
    max-width: 1200px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin: 4rem auto 0 auto;
    padding: 0 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #ffffff;
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

/* 新しい見どころセクションスタイル */

/* 各項目のアクセントカラー */
.feature:nth-child(1):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #1d4ed8);
    border-radius: 0 2px 2px 0;
}

.feature:nth-child(2):before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #10b981, #059669);
    border-radius: 2px 0 0 2px;
}

.feature:nth-child(3):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #f59e0b, #d97706);
    border-radius: 0 2px 2px 0;
}

.feature-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 3rem;
}

.feature:nth-child(even) .feature-link {
    flex-direction: row-reverse;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 50%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.95) contrast(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature:hover .feature-image {
    transform: scale(1.02);
    filter: brightness(1) contrast(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-content {
    width: 50%;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-shadow: none;
}

.feature-title-en {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #111827;
    font-weight: 500;
    margin: 0;
    position: relative;
    opacity: 1;
    display: block;
}

/* Festival Details Page Styles */

/* AOS Animation Library CSS */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* Hero Section */
.festival-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.7) 0%, 
        rgba(55, 65, 81, 0.6) 50%, 
        rgba(17, 24, 39, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #f59e0b;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.hero-title {
    /* SEO用H1タグ - 視覚的には非表示、スクリーンリーダーには読める */
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.page-title {
    /* SEO用H1タグ - 視覚的には非表示、スクリーンリーダーには読める */
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    opacity: 0.9;
    color: #fbbf24;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
    opacity: 0.7;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Main Content */
.festival-main {
    background: #fafafa;
    position: relative;
}

.festival-section {
    padding: 6rem 0;
    position: relative;
}

.yoimiya-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.honmiya-section {
    background: white;
}

.owatari-section {
    position: relative;
    color: white;
    overflow: hidden;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header.center {
    text-align: center;
}

.section-number {
    font-size: 4rem;
    font-weight: 900;
    color: #e5e7eb;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 1;
}

.section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.title-ja {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-title.white .title-ja {
    color: white;
}

.title-en {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title.white .title-en {
    color: rgba(255, 255, 255, 0.7);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.9);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.content-layout.reverse .content-text {
    order: 1;
}

.content-layout.reverse .main-visual {
    order: 2;
}

/* Content Text */
.content-text {
    padding: 2rem 0;
}

.description {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Main Visual Styles */
.main-visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 380px;
    margin-bottom: 2rem;
}

.stack-image {
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stack-image.primary {
    width: 75%;
    height: 85%;
    top: 0;
    left: 0;
    z-index: 2;
    object-fit: cover;
}

.stack-image.secondary {
    width: 60%;
    height: 65%;
    bottom: 5%;
    right: 5%;
    z-index: 1;
    object-fit: cover;
    opacity: 0.95;
}

.main-visual:hover .stack-image.primary {
    transform: translate(-10px, -10px) scale(1.02);
}

.main-visual:hover .stack-image.secondary {
    transform: translate(10px, 10px) scale(1.05);
}

/* Image Collage */
.image-collage {
    position: relative;
    height: 380px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.collage-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-sub1,
.collage-sub2 {
    position: absolute;
    width: 140px;
    height: 110px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.collage-sub1 {
    top: 15px;
    right: 15px;
}

.collage-sub2 {
    bottom: 15px;
    right: 15px;
}

.collage-sub1:hover,
.collage-sub2:hover {
    transform: scale(1.05);
}

/* Visual Overlay */
.visual-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.time-badge {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.time-badge.honmiya {
    background: rgba(245, 158, 11, 0.9);
}

.time-badge i {
    font-size: 1rem;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #f59e0b;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    margin-top: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    height: 300px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: #fafafa;
}

.divider-line {
    width: 200px;
    height: 1px;
    background: #d1d5db;
}

.divider-ornament {
    margin: 0 2rem;
    color: #f59e0b;
    font-size: 1.5rem;
}

/* Video Container */
.video-container {
    margin-top: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    margin-left: 4px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.video-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Districts Showcase */
.districts-showcase {
    margin-top: 4rem;
    text-align: center;
}

.showcase-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* New District Introduction Cards */
.districts-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.district-intro-card {
    background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.district-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.district-intro-card.special-district {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.district-image-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.district-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.district-intro-card:hover .district-image {
    transform: scale(1.05);
}

.district-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.district-badge.special {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.special-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.district-content {
    padding: 1.5rem;
}

.district-name-new {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.district-reading {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6b7280;
    margin-left: 0.5rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.district-time-new {
    font-size: 0.9rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
    background: #fef3c7;
    padding: 0.3rem 0.8rem;
        display: inline-block;
}

.district-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1rem;
}

.special-note-new {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.4rem 1rem;
        font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Districts Summary */
.districts-summary {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.summary-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
        border-left: 4px solid #3b82f6;
    max-width: 600px;
    text-align: left;
}

.summary-card h4 {
    font-size: 1.2rem;
    color: #1e40af;
    margin-bottom: 1rem;
    font-weight: 700;
}

.summary-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1f2937;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.district-card {
    background: white;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.district-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f59e0b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #f59e0b;
}

.district-card:hover::before {
    transform: scaleX(1);
}

.district-card.special {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.district-card.special::before {
    background: #dc2626;
}

.district-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.district-time {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.special-note {
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: 600;
    background: #fef2f2;
    padding: 0.25rem 0.75rem;
    display: inline-block;
}

.districts-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Owatari Section */
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-bg {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: brightness(0.4);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.8) 0%, 
        rgba(55, 65, 81, 0.6) 50%, 
        rgba(17, 24, 39, 0.9) 100%);
}

.owatari-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.content-card.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 3rem;
    max-width: 1150px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.heritage-badge {
    background: rgba(245, 158, 11, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.content-card.glass .lead-text {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.owatari-features {
    margin: 2rem 0;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.feature-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* この定義は削除 - トップページの見どころセクションと重複 */

.climax-section {
    margin-top: 3rem;
    text-align: center;
}

.climax-section h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.climax-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: #f59e0b;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.cta-btn.primary:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Schedule Section */
.schedule {
    background-color: #f8f9fa;
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 750px;
    margin: 0 auto;
}

.schedule-item {
    background: white;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.schedule-item h3 {
    color: #242831;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.schedule-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.time-detail {
    color: #666;
    font-size: 0.85rem !important;
}

.event-list {
    list-style: none;
    padding-left: 0;
}

.event-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.event-list li::before {
    content: '◉';
    color: #242831;
    position: absolute;
    left: 0;
}

/* Schedule Timeline */
.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item.highlight {
    background-color: #f8f9fa;
    padding: 1rem;
    border: 2px solid #242831;
}

.timeline-item .time {
    font-weight: bold;
    color: #242831;
    min-width: 80px;
    font-size: 1rem;
}

.timeline-item .event {
    margin-left: 1.5rem;
    font-size: 1rem;
    color: #333;
}

.schedule-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}

.schedule-note-inline {
    font-size: 0.7rem;
    color: #999;
    font-weight: 400;
    margin-left: 0.5rem;
}

.star-highlight {
    color: #ffd700;
    font-weight: bold;
    margin-left: 0.3rem;
}

.owatari-note {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 0.8rem;
    margin-top: 1rem;
}

.owatari-note p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    text-align: left;
}

/* Schedule Tabs for Mobile */
.schedule-tabs {
    display: flex !important;
    flex-direction: row !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.tab-btn {
    flex: 1 1 50% !important;
    padding: 0.8rem 0 !important;
    background: #f8f9fa;
    border: none !important;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center !important;
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 50% !important;
    border-radius: 0 !important;
    box-sizing: border-box;
}

.tab-btn.active {
    background: #000000;
    color: white;
}

.tab-btn:hover {
    background: #e9ecef;
}

.tab-btn.active:hover {
    background: #333;
}

.mobile-only {
    display: none;
}

.schedule-content.hidden {
    display: none !important;
}

.schedule-content {
    display: block;
}

/* Instagram Section */
.instagram {
    background-color: transparent !important;
}

.instagram-scroll-container {
    overflow-x: auto;
    padding: 0 1rem;
    margin: 0 auto 2rem auto;
    max-width: 1200px;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
}

.instagram-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.instagram-scroll-container::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
}

.instagram-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.5);
    transition: background 0.3s ease;
}

.instagram-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 114, 128, 0.7);
}

.instagram-grid-scrollable {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: fit-content;
}

.instagram-row {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.instagram-item {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(147, 51, 234, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.instagram-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.instagram-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-item:hover .instagram-image {
    transform: scale(1.05);
}

.instagram-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-text p:first-child {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #242831;
}

.instagram-text p:last-child {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.instagram-icon {
    margin-right: 0.5rem;
}

/* Access Section */
.access {
    background-color: #f8f9fa;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 850px;
    margin: 0 auto;
}

.access-info h3 {
    color: #242831;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.address p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.access-info h4 {
    color: #242831;
    font-size: 1.1rem;
    margin: 2rem 0 1rem 0;
}

.access-list {
    list-style: none;
    padding-left: 0;
}

.access-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.access-list li::before {
    content: '▶';
    color: #242831;
    position: absolute;
    left: 0;
}

.map-container {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info h3 {
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

.footer-info p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.footer-links p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Feature Links */
.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    transform: translateY(-3px);
}

/* Detail Page Styles */
.detail-section {
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-text h2 {
    color: #242831;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #242831;
    padding-bottom: 0.5rem;
}

.detail-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detail-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .detail-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .detail-section {
        padding: 2rem 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .nav-list {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav {
        position: relative;
    }
    
    .nav.nav-active .nav-list {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 15, 15, 0.97) 100%) !important;
        backdrop-filter: blur(30px);
        padding: 80px 0 2rem 0;
        gap: 0;
        z-index: 9999;
        width: 100vw;
        height: 100vh;
        margin: 0;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: center;
        animation: fadeInMenu 0.3s ease-out;
    }
    
    .nav.nav-active .nav-list li {
        width: 90%;
        max-width: 400px;
        margin: 0.5rem 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        transform: translateX(0);
        animation: slideInFromLeft 0.4s ease-out forwards;
        opacity: 0;
    }
    
    .nav.nav-active .nav-list li:nth-child(1) { animation-delay: 0.1s; }
    .nav.nav-active .nav-list li:nth-child(2) { animation-delay: 0.15s; }
    .nav.nav-active .nav-list li:nth-child(3) { animation-delay: 0.2s; }
    .nav.nav-active .nav-list li:nth-child(4) { animation-delay: 0.25s; }
    .nav.nav-active .nav-list li:nth-child(5) { animation-delay: 0.3s; }
    .nav.nav-active .nav-list li:nth-child(6) { animation-delay: 0.35s; }
    
    .nav.nav-active .nav-list li:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .nav.nav-active .nav-list li a {
        display: block;
        padding: 1.2rem 2rem;
        color: rgba(255, 255, 255, 0.95) !important;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        text-align: center;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .nav.nav-active .nav-list li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .nav.nav-active .nav-list li a:hover::before {
        left: 100%;
    }
    
    .nav.nav-active .nav-list li a:hover {
        color: #ffffff !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* メニューアニメーション */
    @keyframes fadeInMenu {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* メニュークローズアニメーション */
    .nav.nav-closing .nav-list {
        animation: fadeOutMenu 0.2s ease-in forwards;
    }
    
    @keyframes fadeOutMenu {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-20px);
        }
    }
    
    /* Instagram埋め込みのコンパクト表示 */
    .owatari-instagram-section {
        margin: 2rem 0;
        display: flex;
        justify-content: center;
    }
    
    .owatari-instagram-section .instagram-media {
        max-width: 400px !important;
        min-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title-en {
        font-size: 0.6rem;
        margin-top: 0.3rem;
        letter-spacing: 0.08em;
    }
    
    .feature-title-en {
        font-size: 0.6rem;
        margin-top: 0.2rem;
        letter-spacing: 0.06em;
    }
    
    .hero {
        background-position: 44% center;
        background-size: cover;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .about-container {
        padding: 0 0.8rem;
    }
    
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image-section {
        padding: 0;
        text-align: center;
    }
    
    .about-shrine-image {
        height: 140px;
        border-radius: 0;
        width: 100vw;
        max-width: none;
        margin: 0;
        display: block;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    
    .about-text-section {
        padding: 1rem 1.5rem 2rem 1.5rem;
        text-align: center;
    }
    
    /* 祭りの構成セクション - スマホ版 */
    .festival-overview {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .overview-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-image {
        height: 140px;
    }
    
    .overview-content {
        padding: 1rem;
    }
    
    .overview-content h4 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .overview-date {
        font-size: 0.75rem;
    }
    
    .overview-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .about-intro {
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .about-description {
        gap: 1rem;
    }
    
    .about-description p {
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.6;
    }
    
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 0.3rem;
    }
    
    .feature {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 
            0 32px 64px rgba(36, 40, 49, 0.12),
            0 16px 32px rgba(36, 40, 49, 0.08),
            0 6px 12px rgba(36, 40, 49, 0.04),
            inset 0 2px 0 rgba(255,255,255,1),
            inset 0 -1px 0 rgba(0,0,0,0.03);
    }
    
    .feature h3 {
        font-size: 1.3rem;
        font-weight: 750;
        padding: 1.2rem 1.2rem 0 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .feature h3::after {
        left: 1.2rem;
        width: 25px;
        height: 2.5px;
        opacity: 1;
        transform: translateX(0);
    }
    
    .feature p {
        font-size: 0.8rem;
        padding: 0.3rem 1.2rem 1.2rem 1.2rem;
        opacity: 1;
    }
    
    .features {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .feature {
        flex-direction: column !important;
        gap: 0.2rem;
        padding: 2rem;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    
    .feature:nth-child(even) {
        flex-direction: column !important;
    }
    
    .feature-link {
        flex-direction: column !important;
        gap: 0.2rem;
    }
    
    .feature:nth-child(even) .feature-link {
        flex-direction: column !important;
    }
    
    .feature-image {
        width: 100%;
        height: 220px;
    }
    
    .feature-content {
        width: 100%;
        padding: 1rem 0;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        font-weight: 700;
        color: #1f2937;
        text-shadow: none;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #111827;
        font-weight: 500;
    }
    
    /* スマホ版のアクセントカラー調整 */
    .feature:nth-child(2):before {
        left: 0;
        right: auto;
    }
    
    .feature::before {
        opacity: 1;
    }
    
    .feature::after {
        opacity: 1;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-item {
        padding: 1rem;
    }
    
    .schedule-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.3rem;
    }
    
    .schedule-item p {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .time-detail {
        font-size: 0.65rem !important;
    }
    
    .timeline-item .time {
        font-size: 0.7rem;
        min-width: 65px;
    }
    
    .timeline-item .event {
        font-size: 0.7rem;
        margin-left: 1rem;
    }
    
    .timeline-item {
        padding: 0.5rem 0;
    }
    
    .timeline-item.highlight {
        padding: 0.7rem;
    }
    
    .schedule-note {
        font-size: 0.65rem;
        margin-top: 0.8rem;
    }
    
    .schedule-note-inline {
        font-size: 0.6rem;
        display: block;
        margin-left: 0;
        margin-top: 0.3rem;
    }
    
    .owatari-note {
        padding: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .owatari-note p {
        font-size: 0.7rem;
    }
    
    .tab-btn {
        padding: 0.6rem 0 !important;
        font-size: 0.8rem !important;
    }
    
    .instagram-scroll-container {
        padding: 0 0.5rem;
        margin: 0 auto 1.5rem auto;
    }
    
    .instagram-grid-scrollable {
        gap: 0.8rem;
    }
    
    .instagram-row {
        gap: 0.8rem;
    }
    
    .instagram-item {
        width: 150px;
        height: 150px;
    }
    
    
    .instagram-text p:first-child {
        font-size: 0.95rem;
    }
    
    .instagram-text p:last-child {
        font-size: 0.8rem;
    }
    
    .instagram {
        background-color: transparent !important;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .access-info h3 {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
    }
    
    .access-info h4 {
        font-size: 0.85rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .address p {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .access-list li {
        font-size: 0.7rem;
        padding: 0.3rem 0;
        padding-left: 2rem;
    }
    
    .footer {
        padding: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-info h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-info p {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }
    
    .footer-links p {
        font-size: 0.7rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .header-content {
        padding: 0.02rem 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-image {
        padding-top: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .feature, .schedule-item {
        padding: 1.5rem;
    }
}

/* Festival Details Page Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Body Reset Mobile */
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    /* Hero Section Mobile */
    .festival-hero {
        height: 50vh;
        min-height: 350px;
        padding-top: 60px; /* Account for fixed header */
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-title .title-main {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-title .title-sub {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-top: 0.8rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    /* Festival Sections Mobile */
    .festival-section {
        padding: 2rem 0;
    }
    
    /* Section Headers Mobile */
    .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .section-number {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .section-title .title-ja {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    
    .section-title .title-en {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-top: 0.5rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    /* Content Layout Mobile */
    .content-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-layout.reverse {
        grid-template-columns: 1fr;
    }
    
    .content-layout.reverse .content-text {
        order: 2;
    }
    
    .content-layout.reverse .main-visual {
        order: 1;
    }
    
    .content-text {
        padding: 0 1rem;
    }
    
    .description {
        margin-bottom: 1.5rem;
    }
    
    .lead-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .description p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    /* Image Stack Mobile */
    .image-stack {
        height: 200px;
        margin-bottom: 1rem;
        margin: 0 1rem 1rem 1rem;
    }
    
    .stack-image.primary {
        width: 88%;
        height: 160px;
    }
    
    .stack-image.secondary {
        width: 70%;
        height: 120px;
        right: 5%;
        bottom: 10px;
    }
    
    /* Image Collage Mobile */
    .image-collage {
        height: 220px;
        margin: 0 1rem 1rem 1rem;
    }
    
    .collage-main {
        width: 90%;
        height: 180px;
    }
    
    .collage-sub1 {
        width: 42%;
        height: 80px;
        right: 5%;
        top: 15px;
    }
    
    .collage-sub2 {
        width: 38%;
        height: 65px;
        right: 0;
        bottom: 15px;
    }
    
    /* Feature Cards Mobile */
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.2rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card h4 {
        font-size: 0.9rem;
        margin: 0.6rem 0 0.4rem 0;
        font-weight: 600;
    }
    
    .feature-card p {
        font-size: 0.75rem;
        line-height: 1.4;
        color: #6b7280;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
    }
    
    .card-icon i {
        font-size: 0.9rem;
    }
    
    /* Gallery Grid Mobile */
    .gallery-section {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .gallery-item {
        height: 180px;
        overflow: hidden;
    }
    
    .gallery-item.large {
        height: 200px;
    }
    
    .gallery-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .gallery-overlay span {
        font-size: 0.8rem;
    }
    
    /* Video Container Mobile */
    .video-container {
        margin-top: 2rem;
    }
    
    .video-wrapper {
        height: 200px;
    }
    
    .video-caption {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        padding: 0 0.5rem;
    }
    
    /* Districts Showcase Mobile */
    .districts-showcase {
        margin-top: 2.5rem;
    }
    
    .showcase-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .showcase-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .districts-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .district-intro-card {
        margin: 0 1rem;
    }
    
    .district-image-placeholder {
        height: 160px;
    }
    
    .district-content {
        padding: 1.2rem;
    }
    
    .district-name-new {
        font-size: 1.3rem;
    }
    
    .district-reading {
        font-size: 0.7rem;
    }
    
    .district-time-new {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .district-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .special-note-new {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .district-badge {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .special-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .districts-summary {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .summary-card h4 {
        font-size: 1.3rem;
    }
    
    .summary-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Owatari Section Mobile */
    .owatari-section {
        padding: 3rem 0;
    }
    
    .owatari-content {
        margin-top: 2rem;
    }
    
    .content-card.glass {
        padding: 2rem;
        margin: 0 0.5rem;
        max-width: 100%;
    }
    
    .heritage-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .heritage-badge i {
        font-size: 0.7rem;
        margin-right: 0.3rem;
    }
    
    .owatari-features {
        margin: 1.5rem 0;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .feature-icon {
        margin-bottom: 0.8rem;
        align-self: center;
    }
    
    .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Stats Row Mobile */
    .stats-row {
        flex-direction: row;
        justify-content: space-around;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .climax-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .climax-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 200px;
        text-align: center;
    }
    
    /* Time Badges Mobile */
    .time-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .time-badge i {
        font-size: 0.65rem;
        margin-right: 0.2rem;
    }
    
    .visual-overlay {
        position: relative;
    }
    
    /* Section Divider Mobile */
    .section-divider {
        margin: 2rem 0;
    }
    
    .divider-ornament i {
        font-size: 1.3rem;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .owatari-container {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    /* Header Mobile */
    .header {
        padding: 0.2rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .header-content {
        padding: 0;
    }
    
    .logo-image {
        height: 30px;
        width: auto;
        max-height: 30px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 0.8rem;
    }
    
    .owatari-container {
        padding: 0 0.3rem;
    }
    
    .festival-hero {
        height: 45vh;
        min-height: 300px;
        padding-top: 45px;
    }
    
    .hero-content {
        padding-top: 0.3rem;
    }
    
    .hero-title .title-main {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .hero-title .title-sub {
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-top: 0.6rem;
        padding: 0 1.5rem;
    }
    
    .section-title .title-ja {
        font-size: 1.3rem;
    }
    
    .section-title .title-en {
        font-size: 0.7rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        padding: 0 1.5rem;
    }
    
    .content-card.glass {
        margin: 0 0.3rem;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .districts-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .district-intro-card {
        margin: 0 0.5rem;
    }
    
    .district-content {
        padding: 1rem;
    }
    
    .district-name-new {
        font-size: 1.3rem;
    }
    
    .district-time-new {
        font-size: 0.75rem;
    }
    
    .district-description {
        font-size: 0.75rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .image-stack {
        height: 180px;
        margin: 0 0.5rem 1rem 0.5rem;
    }
    
    .stack-image.primary {
        height: 140px;
    }
    
    .stack-image.secondary {
        height: 100px;
    }
    
    .image-collage {
        height: 180px;
        margin: 0 0.5rem 1rem 0.5rem;
    }
    
    .collage-main {
        height: 140px;
    }
    
    .collage-sub1 {
        height: 60px;
    }
    
    .collage-sub2 {
        height: 50px;
    }
    
    .feature-card {
        padding: 0.8rem;
    }
    
    .feature-card h4 {
        font-size: 0.85rem;
    }
    
    .feature-card p {
        font-size: 0.7rem;
    }
    
    .gallery-item {
        height: 160px;
    }
    
    .gallery-item.large {
        height: 180px;
    }
}

/* Festival Subsection Styles */
.festival-subsection {
    margin: 5rem 0;
    position: relative;
}

.festival-subsection:first-child {
    margin-top: 0;
}

.subsection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.festival-subsection.reverse .subsection-content {
    direction: rtl;
}

.festival-subsection.reverse .subsection-content > * {
    direction: ltr;
}

.subsection-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.subsection-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.subsection-image:hover .subsection-img {
    transform: scale(1.05);
}

.subsection-text {
    padding: 2rem;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #242831, #1a1e26);
}


.subsection-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.subsection-text p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive for Festival Subsections */
@media (max-width: 768px) {
    .festival-subsection {
        margin: 2.5rem 0;
    }
    
    .subsection-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .festival-subsection.reverse .subsection-content {
        direction: ltr;
    }
    
    .subsection-image {
        order: 1;
    }
    
    .subsection-img {
        height: 200px;
    }
    
    .subsection-text {
        order: 2;
        padding: 1rem;
        text-align: center;
    }
    
    .subsection-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .subsection-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
    }
    
    
    .subsection-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .festival-subsection {
        margin: 2rem 0;
    }
    
    .subsection-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .subsection-img {
        height: 180px;
    }
    
    .subsection-text {
        padding: 0.8rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    
    .subsection-text p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
    }
}

/* Video Section Styles */
.video-section .subsection-content-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-text-content {
    padding: 2rem;
}

.video-container-subsection {
    position: relative;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.video-wrapper-subsection {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper-subsection iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

/* Gallery Section Styles */
.gallery-section .subsection-content-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-text-content {
    padding: 2rem;
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item-square {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item-square:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-square:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-square:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive for Video and Gallery Sections */
@media (max-width: 768px) {
    .video-section .subsection-content-video {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .video-text-content {
        order: 1;
        padding: 1rem;
        text-align: center;
    }
    
    .video-container-subsection {
        order: 2;
    }
    
    .video-wrapper-subsection {
        padding-bottom: 56.25%;
    }
    
    .video-caption {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-section .subsection-content-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-text-content {
        order: 1;
        padding: 1rem;
        text-align: center;
    }
    
    .image-gallery-grid {
        order: 2;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
    
    .gallery-overlay span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .video-section .subsection-content-video {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .video-text-content {
        padding: 0.8rem;
    }
    
    .video-caption {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .gallery-section .subsection-content-gallery {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .gallery-text-content {
        padding: 0.8rem;
    }
    
    .image-gallery-grid {
        gap: 0.6rem;
    }
    
    .gallery-overlay span {
        font-size: 0.7rem;
    }
}

/* Special Layout Styles */
.special-layout .subsection-content-special {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.special-image-layout {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 300px;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.special-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover .special-main-img {
    transform: scale(1.05);
}

.accent-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.special-accent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accent-image-wrapper:hover .special-accent-img {
    transform: scale(1.08);
}

.image-badge, .accent-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
}

.accent-badge {
    background: rgba(255, 215, 0, 0.9);
    color: #1a1a1a;
}

/* Climax Section Layout */
.climax-section-layout .subsection-content-climax {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.climax-image-layout {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    height: 350px;
}

.climax-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image-wrapper:hover .climax-hero-img {
    transform: scale(1.03);
}

.climax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.climax-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.stat-divider {
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.climax-badge {
    background: rgba(255, 215, 0, 0.95);
    color: #1a1a1a;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for Special Layouts */
@media (max-width: 768px) {
    .special-layout .subsection-content-special {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .special-image-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        height: auto;
        gap: 0.8rem;
    }
    
    .main-image-wrapper {
        height: 200px;
    }
    
    .accent-image-wrapper {
        height: 120px;
    }
    
    .image-badge, .accent-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .climax-section-layout .subsection-content-climax {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-image-wrapper {
        height: 250px;
    }
    
    .climax-overlay {
        padding: 1.5rem;
    }
    
    .climax-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .climax-badge {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .special-layout .subsection-content-special {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .special-image-layout {
        gap: 0.6rem;
    }
    
    .main-image-wrapper {
        height: 180px;
    }
    
    .accent-image-wrapper {
        height: 100px;
    }
    
    .climax-section-layout .subsection-content-climax {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-image-wrapper {
        height: 200px;
    }
    
    .climax-overlay {
        padding: 1rem;
    }
    
    .climax-stats {
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .climax-badge {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* New Owatari Section Styles */
.owatari-section-new {
    background: #fafafa;
    padding: 6rem 0;
}

/* Header Styles */
.owatari-header-new {
    text-align: center;
    margin-bottom: 1rem;
}

/* Main Image Styles */
.owatari-main-image {
    text-align: center;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.owatari-main-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owatari-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* マッセイメイン画像スタイル */
.massei-main-image {
    text-align: center;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.massei-main-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.massei-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 総担ぎメイン画像スタイル */
.soukatsugi-main-image {
    text-align: center;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.soukatsugi-main-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.soukatsugi-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.owatari-title-new {
    position: relative;
    display: inline-block;
}

.title-ja-new {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 0.5rem;
    position: relative;
}

.title-ja-new::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #1f2937;
}

.title-en-new {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.8rem;
}

/* Message Section Styles */
.owatari-message-section {
    text-align: center;
    margin: 1rem 0 2rem 0;
    padding: 1rem;
}

.owatari-main-message {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.owatari-sub-messages {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.owatari-sub-messages p {
    font-size: 0.8rem !important;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* Gallery Grid Styles */
.owatari-gallery-new {
    margin-bottom: 5rem;
}

.owatari-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.owatari-image-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owatari-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.owatari-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.owatari-image-item:hover .owatari-img-new {
    transform: scale(1.05);
}

/* Description Section */
.owatari-description-new {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.owatari-desc-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    display: inline-block;
}

.owatari-desc-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #6b7280;
}

.owatari-desc-content {
    padding: 2rem;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.owatari-desc-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    text-align: left;
}

.owatari-desc-content-plain {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.owatari-desc-text-plain {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive for New Owatari Section */
@media (max-width: 768px) {
    .owatari-section-new {
        padding: 3rem 0;
    }
    
    .owatari-header-new {
        margin-bottom: 2.5rem;
    }
    
    .title-ja-new {
        font-size: 1.3rem;
    }
    
    .title-ja-new::after {
        width: 40px;
    }
    
    .owatari-main-image {
        margin: 1.5rem 0;
        max-width: 100%;
    }
    
    .owatari-main-img {
        max-height: 280px;
        border-radius: 0;
    }
    
    .massei-main-image,
    .soukatsugi-main-image {
        margin: 1.5rem 0;
        max-width: 100%;
    }
    
    .massei-main-img,
    .soukatsugi-main-img {
        max-height: 280px;
        border-radius: 0;
    }
    
    .title-en-new {
        font-size: 0.8rem;
    }
    
    .owatari-message-section {
        margin: 2rem 0 2.5rem 0;
        padding: 1.5rem 1rem;
    }
    
    .owatari-main-message {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .owatari-sub-messages p {
        font-size: 0.7rem !important;
    }
    
    .owatari-gallery-new {
        margin-bottom: 3rem;
    }
    
    .owatari-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .owatari-image-item {
        border-radius: 0;
        aspect-ratio: 1;
    }
    
    .owatari-desc-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .owatari-desc-title::after {
        width: 30px;
    }
    
    .owatari-desc-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .owatari-desc-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .owatari-desc-content-plain {
        padding: 0;
        margin: 0 1rem;
    }
    
    .owatari-desc-text-plain {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .owatari-section-new {
        padding: 2rem 0;
    }
    
    .owatari-header-new {
        margin-bottom: 2rem;
    }
    
    .title-ja-new {
        font-size: 1.3rem;
    }
    
    .title-en-new {
        font-size: 0.75rem;
        margin-top: 0.6rem;
    }
    
    .owatari-main-image {
        margin: 1rem 0;
        padding: 0 0.25rem;
    }
    
    .owatari-main-img {
        max-height: 220px;
        border-radius: 0;
    }
    
    .massei-main-image,
    .soukatsugi-main-image {
        margin: 1rem 0;
        padding: 0 0.25rem;
    }
    
    .massei-main-img,
    .soukatsugi-main-img {
        max-height: 220px;
        border-radius: 0;
    }
    
    .owatari-message-section {
        margin: 1.5rem 0 2rem 0;
        padding: 1rem 0.5rem;
    }
    
    .owatari-main-message {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .owatari-sub-messages p {
        font-size: 0.65rem !important;
    }
    
    .owatari-gallery-new {
        margin-bottom: 2.5rem;
    }
    
    .owatari-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .owatari-desc-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .owatari-desc-content {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .owatari-desc-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .owatari-desc-content-plain {
        padding: 0;
        margin: 0 0.5rem;
    }
    
    .owatari-desc-text-plain {
        font-size: 0.85rem;
        line-height: 1.6;
        text-align: center;
    }
}

/* Massei Section Styles */
.massei-section-new {
    background: #fafafa;
    padding: 6rem 0;
}

.massei-header-new {
    text-align: center;
    margin-bottom: 1rem;
}

.massei-title-new {
    position: relative;
    display: inline-block;
}

.massei-title-new .title-ja-new {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 0.5rem;
    position: relative;
}

.massei-title-new .title-ja-new::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #1f2937;
}

.massei-title-new .title-en-new {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.8rem;
}

.massei-message-section {
    text-align: center;
    margin: 1rem 0 2rem 0;
    padding: 1rem;
}

.massei-main-message {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.massei-sub-messages {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.massei-sub-messages p {
    font-size: 0.8rem !important;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.massei-gallery-new {
    margin-bottom: 5rem;
}

.massei-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.massei-image-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.massei-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.massei-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.massei-image-item:hover .massei-img-new {
    transform: scale(1.05);
}

.massei-description-new {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.massei-desc-content-plain {
    padding: 0;
    margin: 0 0.5rem;
}

.massei-desc-text-plain {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
}

/* Soukatsugi Section Styles */
.soukatsugi-section-new {
    background: #fafafa;
    padding: 6rem 0;
}

.soukatsugi-header-new {
    text-align: center;
    margin-bottom: 1rem;
}

.soukatsugi-title-new {
    position: relative;
    display: inline-block;
}

.soukatsugi-title-new .title-ja-new {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 0.5rem;
    position: relative;
}

.soukatsugi-title-new .title-ja-new::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #1f2937;
}

.soukatsugi-title-new .title-en-new {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.8rem;
}

.soukatsugi-message-section {
    text-align: center;
    margin: 1rem 0 2rem 0;
    padding: 1rem;
}

.soukatsugi-main-message {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.soukatsugi-sub-messages {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.soukatsugi-sub-messages p {
    font-size: 0.8rem !important;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.soukatsugi-gallery-new {
    margin-bottom: 5rem;
}

.soukatsugi-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.soukatsugi-image-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.soukatsugi-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.soukatsugi-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.soukatsugi-image-item:hover .soukatsugi-img-new {
    transform: scale(1.05);
}

.soukatsugi-description-new {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.soukatsugi-desc-content-plain {
    padding: 0;
    margin: 0 0.5rem;
}

.soukatsugi-desc-text-plain {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
}

/* Instagram Embed Sections */
.owatari-instagram-section,
.massei-instagram-section,
.soukatsugi-instagram-section {
    max-width: 600px;
    margin: 3rem auto 0 auto;
    display: flex;
    justify-content: center;
}

/* Responsive Styles for Massei and Soukatsugi */
@media (max-width: 768px) {
    .massei-section-new,
    .soukatsugi-section-new {
        padding: 3rem 0;
    }

    .massei-title-new .title-ja-new,
    .soukatsugi-title-new .title-ja-new {
        font-size: 1.3rem;
    }

    .massei-message-section,
    .soukatsugi-message-section {
        padding: 1rem 0.5rem;
    }

    .massei-main-message,
    .soukatsugi-main-message {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .massei-sub-messages p,
    .soukatsugi-sub-messages p {
        font-size: 0.65rem !important;
    }

    .massei-gallery-new,
    .soukatsugi-gallery-new {
        margin-bottom: 2.5rem;
    }

    .massei-grid-new,
    .soukatsugi-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        max-width: 340px;
        margin: 0 auto;
    }

    .massei-desc-content-plain,
    .soukatsugi-desc-content-plain {
        padding: 0;
        margin: 0 0.5rem;
    }

    .massei-desc-text-plain,
    .soukatsugi-desc-text-plain {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .owatari-instagram-section,
    .massei-instagram-section,
    .soukatsugi-instagram-section {
        max-width: 100%;
        margin: 2rem auto 0 auto;
        padding: 0 1rem;
    }
}

/* Timeline Page Styles */
.timeline-hero {
    background: #f8f9fa;
    padding: 6rem 0 4rem;
    border-bottom: 1px solid #e5e7eb;
}

.hero-content-timeline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-timeline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.timeline-main {
    background: #ffffff;
    padding: 4rem 0;
}

.timeline-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline Navigation */
.timeline-nav {
    position: sticky;
    top: 160px;
    height: fit-content;
}

.timeline-nav-inner {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 50%, #d1d5db 100%);
}

.timeline-day-header {
    margin: 3rem 0 2rem 0;
    padding-left: 3rem;
}

.timeline-day-header:first-child {
    margin-top: 0;
}

.timeline-day-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.3rem;
}

.timeline-day-header .day-title {
    font-size: 0.67rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Noto Serif JP', serif;
}

.timeline-nav-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #6b7280;
    margin: 2.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-nav-item:hover,
.timeline-nav-item.active {
    color: #1f2937;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-nav-item:hover .timeline-dot,
.timeline-nav-item.active .timeline-dot {
    background: #6366f1;
    transform: scale(1.3);
    border-color: #ffffff;
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.4);
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.nav-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.nav-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.2;
}

/* Timeline Content */
.timeline-content {
    padding: 2rem 0;
}

.timeline-section {
    margin-bottom: 6rem;
    scroll-margin-top: 120px;
}

.timeline-section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-time {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
        margin-bottom: 1rem;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.content-text p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.content-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-img {
    width: 95%;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.image-caption {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Responsive Design - Large Desktop */
@media (max-width: 1200px) {
    .timeline-layout {
        grid-template-columns: 240px 1fr;
        gap: 4rem;
    }
    
    .section-content {
        gap: 3rem;
    }
}

/* Timeline Mobile Styles - Only for actual mobile devices */
@media (max-width: 580px) {
    .timeline-hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-content-timeline {
        padding: 0 1rem;
    }
    
    .hero-title-timeline {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .timeline-main {
        padding: 1.5rem 0;
        overflow-x: hidden;
    }
    
    .timeline-layout {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }
    
    /* SP版タイムラインナビゲーション - 左側オーバーレイ */
    .timeline-nav {
        position: fixed;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        width: 120px;
        max-height: 70vh;
        background: none;
        border: none;
        border-radius: 0;
        z-index: 100;
        padding: 1.5rem 0;
        box-shadow: none;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    /* JavaScript制御で表示されるクラス */
    .timeline-nav.show {
        opacity: 1;
        visibility: visible;
    }
    
    .timeline-nav::-webkit-scrollbar {
        display: none;
    }
    
    .timeline-nav-inner {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        position: relative;
    }
    
    .timeline-line {
        position: absolute;
        left: 6px;
        top: 1.8rem;
        bottom: 1.8rem;
        width: 1px;
        background: linear-gradient(to bottom, #e5e7eb, #d1d5db, #e5e7eb);
    }
    
    /* SP版日付ヘッダー - ドットとテキスト表示 */
    .timeline-day-header {
        margin: 0 0 1.2rem 0;
        padding: 0.6rem 0;
        background: none;
        color: #1f2937;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .timeline-day-header::before {
        content: '';
        width: 12px;
        height: 12px;
        background: #9ca3af;
        border-radius: 50%;
        display: block;
        border: 2px solid #ffffff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        margin-right: 0.15rem;
        flex-shrink: 0;
    }
    
    .timeline-day-header h3,
    .timeline-day-header .day-title {
        display: inline;
        font-size: 0.47rem;
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
        writing-mode: vertical-rl;
        text-orientation: upright;
    }
    
    .timeline-nav-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0;
        padding: 0.8rem 0;
        background: none;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
        cursor: pointer;
        width: 100%;
    }
    
    .timeline-nav-item:hover .timeline-dot,
    .timeline-nav-item.active .timeline-dot {
        background: #6366f1;
        transform: scale(1.3);
        border-color: #ffffff;
        box-shadow: 0 2px 12px rgba(99, 102, 241, 0.4);
    }
    
    .timeline-dot {
        width: 12px;
        height: 12px;
        margin: 0 0.15rem 0 0;
        background: #9ca3af;
        border: 2px solid #ffffff;
        border-radius: 50%;
        flex-shrink: 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    
    .nav-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
        margin-left: 0.05rem;
        writing-mode: horizontal-tb;
    }
    
    .nav-title {
        font-size: 0.55rem;
        font-weight: 600;
        line-height: 1.2;
        margin: 0;
        color: #1f2937;
        writing-mode: vertical-rl;
        text-orientation: upright;
        white-space: nowrap;
    }
    
    .nav-subtitle {
        display: none;
    }
    
    /* SP版コンテンツ */
    .timeline-content {
        padding: 0 1rem 0 1rem;
        width: 100%;
        margin-right: 80px;
    }
    
    /* SP版セクションヘッダー */
    .section-header-main {
        padding: 2rem 0 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title-main {
        font-size: 1.33rem;
    }
    
    .section-subtitle-main {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-content.reverse {
        direction: ltr;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-time {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .content-text {
        gap: 1.2rem;
    }
    
    .lead-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .content-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .section-img {
        height: 220px;
    }
    
    .image-caption {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .timeline-section {
        margin-bottom: 3rem;
        scroll-margin-top: 140px;
    }
}

/* Timeline styles cleaned up - removed redundant 480px breakpoint */

/* セクション区切りのスタイル */
.yoimiya-section {
    background: #ffffff;
    color: #333;
}

.honmiya-section {
    background: #ffffff;
    color: #333;
    margin-top: 0;
}

/* セクションヘッダー */
.section-header-main {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.section-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle-main {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.6;
}

/* アンカーリンクのスクロール位置調整 */
#owatari, #massei, #soukatsugi, #honmiya {
    scroll-margin-top: 140px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #owatari, #massei, #soukatsugi, #honmiya {
        scroll-margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .section-img {
        height: 180px;
    }
    
    #owatari, #massei, #soukatsugi, #honmiya {
        scroll-margin-top: 100px;
    }
}

/* 極小画面対応 */
@media (max-width: 380px) {
    .nav.nav-active .nav-list li {
        width: 95% !important;
        margin: 0.3rem 0 !important;
    }
    
    .nav.nav-active .nav-list li a {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .nav.nav-active .nav-list {
        padding: 70px 0 1rem 0 !important;
    }
}
