.section-description {
   text-align: center;
   font-size: 1.1rem;
   line-height: 1.8;
   margin-bottom: 3rem;
   color: var(--dark-color);
}

/* 画像カード */
.image-card {
   background: var(--white);
   border-radius: 15px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   margin-bottom: 2rem;
}

.image-wrapper {
   position: relative;
   overflow: hidden;
   border-radius: 10px;
   cursor: pointer;
   transition: transform 0.3s ease;
}

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

.responsive-image {
   width: 100%;
   height: auto;
   display: block;
   transition: opacity 0.3s ease;
}

.image-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.5);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
   opacity: 1;
}

.enlarge-text {
   color: var(--white);
   font-size: 1.5rem;
   font-weight: bold;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-note {
   margin-top: 1.5rem;
   padding: 1rem;
   background: rgba(255, 215, 0, 0.1);
   border-left: 4px solid var(--primary-yellow);
   border-radius: 5px;
}

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

.image-note p:last-child {
   margin-bottom: 0;
}

/* モーダル */
.modal {
   display: none;
   position: fixed;
   z-index: 10000;
   padding-top: 50px;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
   margin: auto;
   display: block;
   max-width: 95%;
   max-height: 90vh;
   width: auto;
   height: auto;
   object-fit: contain;
   animation: zoom 0.3s;
}

@keyframes zoom {
   from { transform: scale(0.8); }
   to { transform: scale(1); }
}

.modal-close {
   position: absolute;
   top: 20px;
   right: 40px;
   color: var(--white);
   font-size: 40px;
   font-weight: bold;
   cursor: pointer;
   transition: color 0.3s;
}

.modal-close:hover {
   color: var(--primary-yellow);
}

#modalCaption {
   margin: auto;
   display: block;
   width: 80%;
   max-width: 700px;
   text-align: center;
   color: var(--white);
   padding: 10px 0;
   height: 50px;
}

/* アクセス情報 */
.access-info {
   background: var(--light-color);
}

.access-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
   margin-top: 2rem;
}

.access-card {
   background: var(--white);
   padding: 2rem;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

.access-card:hover {
   transform: translateY(-5px);
}

.access-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
   color: var(--primary-green);
}

.access-card p {
   font-size: 1.1rem;
   line-height: 1.7;
   margin-bottom: 1.5rem;
}

.access-link {
   display: inline-block;
   background: linear-gradient(135deg, var(--primary-green), #4a9c3e);
   color: var(--white);
   padding: 0.8rem 2rem;
   border-radius: 25px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
}

.access-link:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(54, 124, 43, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
   .section-description {
       font-size: 1rem;
       margin-bottom: 2rem;
   }

   .image-card {
       padding: 1rem;
   }

   .enlarge-text {
       font-size: 1.2rem;
   }

   .access-grid {
       grid-template-columns: 1fr;
       gap: 1.5rem;
   }

   .modal-content {
       width: 95%;
   }

   .modal-close {
       top: 10px;
       right: 20px;
       font-size: 30px;
   }
}

@media (max-width: 576px) {
   .image-note {
       padding: 0.8rem;
   }

   .image-note p {
       font-size: 0.85rem;
   }

   .access-card {
       padding: 1.5rem;
   }

   .access-card h3 {
       font-size: 1.3rem;
   }

   .access-card p {
       font-size: 1rem;
   }
}

/* ==============================================
  モバイル専用: タブ式アクセス情報
============================================== */

/* デスクトップでは非表示 */
.event-details-mobile {
   display: none;
}

/* モバイルでは既存の開催情報を非表示、新UIを表示 */
@media (max-width: 768px) {
   .event-details {
       display: none;
   }
   
   .event-details-mobile {
       display: block;
       background: var(--white);
       padding: 3rem 0;
   }
}

/* 基本情報カード(モバイル版) */
.basic-info-mobile {
   margin-bottom: 2rem;
}

.info-card-mobile {
   background: var(--white);
   border-radius: 12px;
   padding: 1.5rem;
   margin-bottom: 1rem;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   border-left: 4px solid var(--primary-green);
}

.info-card-mobile h3 {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--primary-green);
   margin-bottom: 0.75rem;
}

.info-main {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--dark-color);
   margin-bottom: 0.5rem;
}

.info-sub {
   font-size: 0.95rem;
   color: #666;
   line-height: 1.6;
   margin-bottom: 0.25rem;
}

.info-note {
   font-size: 0.85rem;
   color: #999;
   margin-top: 0.5rem;
}

.section-subtitle {
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--primary-green);
   margin-bottom: 1rem;
   padding-bottom: 0.5rem;
   border-bottom: 2px solid var(--light-color);
}

/* アコーディオン */
.access-accordion {
   margin-top: 2rem;
}

.accordion-section {
   margin-bottom: 1rem;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.accordion-toggle {
   width: 100%;
   background: var(--white);
   border: none;
   padding: 1.25rem 1rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
   transition: all 0.3s ease;
   font-family: inherit;
   border-left: 4px solid var(--primary-green);
}

.accordion-toggle:hover {
   background: var(--light-color);
}

.accordion-toggle.active {
   background: linear-gradient(to right, rgba(54, 124, 43, 0.08) 0%, var(--white) 100%);
}

.toggle-header {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   flex: 1;
}

.tab-icon {
   font-size: 2rem;
   display: block;
}

.tab-text {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--dark-color);
}

.badge-recommended {
   position: absolute;
   top: 0.5rem;
   right: 0.5rem;
   background: linear-gradient(135deg, var(--primary-red), #ff1e3d);
   color: white;
   font-size: 0.65rem;
   padding: 0.2rem 0.5rem;
   border-radius: 10px;
   font-weight: 700;
}

.toggle-icon {
   font-size: 1.2rem;
   color: var(--primary-green);
   transition: transform 0.3s ease;
   font-weight: 700;
}

.accordion-toggle.active .toggle-icon {
   transform: rotate(180deg);
}

.accordion-content {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease;
   background: var(--white);
}

.accordion-content.show {
   max-height: 3000px;
   padding: 1.5rem 1rem;
}

/* ルート表示 */
.access-route {
   background: var(--light-color);
   padding: 1.5rem;
   border-radius: 12px;
   margin-bottom: 1.5rem;
}

.route-step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
}

.step-number {
   flex-shrink: 0;
   width: 32px;
   height: 32px;
   background: var(--primary-green);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1rem;
}

.step-content h4 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--dark-color);
   margin-bottom: 0.25rem;
}

.step-detail {
   font-size: 0.85rem;
   color: #666;
   margin: 0;
}

.route-arrow {
   text-align: center;
   color: var(--primary-green);
   font-size: 1.5rem;
   font-weight: 700;
   margin: 0.5rem 0;
}

/* 料金ボックス */
.price-box {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 1.5rem;
   border-radius: 12px;
   margin-bottom: 1.5rem;
}

.price-box h4 {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--primary-green);
   margin-bottom: 1rem;
   text-align: center;
}

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

.price-item {
   background: white;
   padding: 1rem;
   border-radius: 8px;
   text-align: center;
   border: 2px solid #e9ecef;
}

.price-item.recommended-price {
   border-color: var(--primary-yellow);
   position: relative;
   box-shadow: 0 4px 12px rgba(255, 222, 0, 0.3);
}

.price-label {
   display: block;
   font-size: 0.8rem;
   font-weight: 600;
   color: #666;
   margin-bottom: 0.5rem;
}

.price-value {
   display: block;
   font-size: 1rem;
   font-weight: 700;
   color: var(--primary-green);
   line-height: 1.4;
}

.price-note {
   display: block;
   margin-top: 0.5rem;
   font-size: 0.75rem;
   color: var(--primary-red);
   font-weight: 700;
}

/* 駐車場案内(モバイル版) */
.parking-guide-mobile {
   margin-bottom: 1.5rem;
}

.parking-guide-mobile h4 {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--primary-green);
   margin-bottom: 1rem;
}

.parking-option-mobile {
   background: white;
   border-radius: 10px;
   padding: 1rem;
   margin-bottom: 1rem;
   border-left: 4px solid #ddd;
}

.parking-option-mobile.priority-high {
   border-left-color: var(--primary-green);
   background: linear-gradient(to right, rgba(54, 124, 43, 0.05) 0%, white 100%);
}

.parking-option-mobile.priority-medium {
   border-left-color: var(--primary-yellow);
   background: linear-gradient(to right, rgba(255, 222, 0, 0.05) 0%, white 100%);
}

.parking-option-mobile.priority-low {
   border-left-color: #999;
   opacity: 0.7;
}

.parking-header {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   margin-bottom: 0.75rem;
}

.parking-badge {
   font-size: 0.7rem;
   padding: 0.25rem 0.5rem;
   border-radius: 10px;
   font-weight: 700;
   white-space: nowrap;
}

.parking-badge.first {
   background: var(--primary-green);
   color: white;
}

.parking-badge.second {
   background: var(--primary-yellow);
   color: var(--dark-color);
}

.parking-badge.not-recommended {
   background: #999;
   color: white;
}

.parking-header h5 {
   font-size: 1rem;
   font-weight: 700;
   margin: 0;
   color: var(--dark-color);
}

.parking-name {
   font-size: 0.85rem;
   color: #666;
   margin-bottom: 0.5rem;
}

.parking-features {
   list-style: none;
   padding: 0;
   margin: 0;
}

.parking-features li {
   font-size: 0.9rem;
   padding: 0.25rem 0;
   color: var(--dark-color);
}

.parking-tip {
   margin-top: 0.5rem;
   font-size: 0.85rem;
   color: var(--primary-green);
   font-weight: 600;
}

/* 駐車場セクションの区切り */
.parking-title-divider {
   text-align: center;
   margin: 1.5rem 0 1rem;
   position: relative;
}

.parking-title-divider span {
   background: var(--white);
   padding: 0 1rem;
   font-size: 0.9rem;
   font-weight: 600;
   color: #666;
   position: relative;
   z-index: 1;
}

.parking-title-divider::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   height: 1px;
   background: #ddd;
   z-index: 0;
}

/* 重要なお知らせボックス */
.important-notice {
   background: #fff3cd;
   border: 2px solid #ffc107;
   border-radius: 10px;
   padding: 1.25rem;
   margin-top: 1.5rem;
}

.important-notice h5 {
   font-size: 1rem;
   font-weight: 700;
   color: #856404;
   margin-bottom: 0.75rem;
}

.important-notice p {
   font-size: 0.9rem;
   color: #856404;
   margin-bottom: 0.5rem;
   line-height: 1.5;
}

.important-notice strong {
   color: var(--primary-red);
   font-weight: 700;
}

.fare-calculation {
   background: white;
   border-radius: 8px;
   padding: 1rem;
   margin-top: 1rem;
}

.calc-title {
   font-size: 0.85rem;
   font-weight: 600;
   color: #666;
   margin-bottom: 0.5rem;
}

.fare-calculation p {
   font-size: 0.9rem;
   margin-bottom: 0.25rem;
}

.fare-calculation .highlight {
   font-size: 1rem;
   font-weight: 700;
   color: var(--primary-green);
   margin-top: 0.5rem;
}

/* 料金表示シンプル版 */
.price-simple {
   font-size: 1rem;
   font-weight: 600;
   color: var(--primary-green);
   text-align: center;
   background: white;
   padding: 1rem;
   border-radius: 8px;
}

/* バス時刻表(共通エリア) */
.bus-schedule-common {
   margin-top: 2rem;
   padding-top: 2rem;
   border-top: 2px solid var(--light-color);
}

.bus-schedule-common h4 {
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--primary-green);
   margin-bottom: 0.5rem;
   text-align: center;
}

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

.schedule-image-wrapper {
   margin-bottom: 1rem;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.btn-schedule-download {
   display: block;
   background: var(--primary-green);
   color: white;
   text-align: center;
   padding: 1rem;
   border-radius: 10px;
   text-decoration: none;
   font-weight: 700;
   font-size: 1rem;
   transition: all 0.3s ease;
   box-shadow: 0 4px 12px rgba(54, 124, 43, 0.3);
}

.btn-schedule-download:hover {
   background: #4a9c3e;
   transform: translateY(-2px);
   box-shadow: 0 6px 16px rgba(54, 124, 43, 0.4);
}

/* 追加情報カード */
.additional-info-mobile {
   margin-top: 2rem;
   padding-top: 2rem;
   border-top: 2px solid var(--light-color);
}

.accommodation-links {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
}

.acc-link {
   display: block;
   background: var(--primary-green);
   color: white;
   text-align: center;
   padding: 0.875rem 1rem;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   font-size: 0.95rem;
   transition: all 0.3s ease;
}

.acc-link:hover {
   background: #4a9c3e;
   transform: translateY(-2px);
}

.instagram-link {
   display: inline-flex;
   align-items: center;
   color: #e4405f;
   font-weight: 700;
   text-decoration: none;
   font-size: 1rem;
   margin-top: 0.5rem;
}

/* レスポンシブ調整 */
@media (max-width: 480px) {
   .price-grid {
       grid-template-columns: 1fr;
   }
   
   .tab-icon {
       font-size: 1.5rem;
   }
}
.detail-card-area-map {
    grid-column: span 1;
}

@media (min-width: 1200px) {
    .detail-card-area-map {
        grid-column: span 2;
    }
}

.area-map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 1.5rem 0;
}

.area-map-wrapper:hover {
    transform: scale(1.02);
}

.area-map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.area-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.area-map-wrapper:hover .area-map-overlay {
    opacity: 1;
}

.area-map-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(54, 124, 43, 0.05);
    border-left: 4px solid var(--primary-green);
    border-radius: 5px;
}

.area-map-note p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.area-map-note p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .area-map-wrapper {
        margin: 1rem 0;
    }
    
    .area-map-note {
        padding: 0.8rem;
    }
    
    .area-map-note p {
        font-size: 0.85rem;
    }
}

/* ==============================================
   モバイル版: 料金カード
============================================== */

.fare-card-mobile {
    border-left-color: var(--primary-yellow);
    background: linear-gradient(to right, rgba(255, 222, 0, 0.03) 0%, var(--white) 100%);
}

.fare-table-mobile {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fare-item-mobile {
    background: var(--light-color);
    border-radius: 10px;
    padding: 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fare-item-mobile:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(54, 124, 43, 0.1);
}

.fare-recommended-mobile {
    background: linear-gradient(135deg, rgba(255, 222, 0, 0.15) 0%, rgba(255, 222, 0, 0.05) 100%);
    border: 2px solid var(--primary-yellow);
    position: relative;
}

.fare-recommended-mobile::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fare-recommended-mobile:hover::before {
    opacity: 0.1;
}

.fare-type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.fare-type {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.fare-type-header .fare-type {
    margin-bottom: 0;
}

.badge-recommend {
    background: var(--primary-red);
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.fare-amount {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fare-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #666;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 6px;
}

.fare-detail .amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.fare-detail .amount.highlight {
    font-size: 1.2rem;
    color: var(--primary-red);
}

.fare-tips-mobile {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(54, 124, 43, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.tip-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-color);
}

/* レスポンシブ調整 */
@media (max-width: 480px) {
    .fare-item-mobile {
        padding: 1rem;
    }
    
    .fare-type {
        font-size: 1rem;
    }
    
    .fare-detail {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
    
    .fare-detail .amount {
        font-size: 1rem;
    }
    
    .fare-detail .amount.highlight {
        font-size: 1.1rem;
    }
    
    .badge-recommend {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .tip-item {
        padding: 0.6rem;
    }
    
    .tip-item p {
        font-size: 0.85rem;
    }
}