/* コンポーネント専用スタイル - 夏らしいSUPデザイン */

/* 空のセクション対応 */
.empty-section {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

/* 持ち物セクション */
.items-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.items-category {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 150, 255, 0.08);
    border-left: 5px solid #00CCFF;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 15px;
    text-align: center;
}

.items-list {
    list-style: none;
}

.items-list li {
    padding: 8px 0;
    border-bottom: 1px solid #F0F8FF;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.items-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00CCFF;
    font-weight: bold;
}

.items-list li:last-child {
    border-bottom: none;
}

.item-note {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
    font-style: italic;
}

/* ニュースセクション */
.news-list {
    display: grid;
    gap: 20px;
}

.news-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 150, 255, 0.08);
    border-left: 5px solid #FF6B35;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-date {
    color: #0099FF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 10px;
}

.news-content {
    color: #555;
    line-height: 1.6;
}

.news-category {
    background: #ffffff;
    color: #0066CC;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

/* ギャラリーセクション */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 150, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 102, 204, 0.9));
    color: white;
    padding: 15px;
}

.gallery-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-caption {
    font-size: 12px;
    opacity: 0.9;
}

/* アクセスセクション */
.access-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 150, 255, 0.1);
    border: 2px solid #E3F2FD;
    max-width: 800px;
    margin: 0 auto;
}

/* メインアクセス情報 */
.main-access-info {
    margin-bottom: 40px;
}

.main-access-info .access-info {
    max-width: 600px;
    margin: 0 auto 20px;
}

/* 開催場所セクション */
.locations-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E3F2FD;
}

.locations-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0066CC;
    text-align: center;
    margin-bottom: 30px;
}

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

.location-card {
    background: #ffffff;
    border: 2px solid #E3F2FD;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 150, 255, 0.1);
}

.location-card:hover {
    border-color: #00CCFF;
    box-shadow: 0 8px 25px rgba(0, 150, 255, 0.2);
    transform: translateY(-3px);
}

.location-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F0F8FF;
}

.location-name {
    font-size: 20px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 8px;
}

.location-type {
    background: #00CCFF;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.location-description {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
}

.location-info {
    margin-bottom: 20px;
}

.location-address, .location-access {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.info-label {
    flex-shrink: 0;
    font-weight: 600;
    color: #0099FF;
    min-width: 80px;
}

.info-value {
    color: #555;
    line-height: 1.5;
}

.location-map-embed {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.1);
}

.location-map-embed iframe {
    width: 100%;
    height: 220px;
    border: none;
}

.location-map-link {
    text-align: center;
    margin-top: 20px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.access-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F0F8FF;
}

.access-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.access-label {
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 5px;
    display: block;
}

.access-value {
    color: #555;
    line-height: 1.6;
}

/* 予約セクション */
.final-cta {
    background: #ffffff;
    text-align: center;
}

.cta-text {
    font-size: 18px;
    color: #0066CC;
    margin-bottom: 30px;
    line-height: 1.7;
}

.reservation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.reservation-method {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 5px 25px rgba(0, 150, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #E3F2FD;
}

.reservation-method:hover {
    transform: translateY(-5px);
    border-color: #00CCFF;
    box-shadow: 0 10px 35px rgba(0, 150, 255, 0.2);
}

.reservation-label {
    font-size: 20px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 15px;
    display: block;
}

.reservation-instruction {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* 体験の流れセクション */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    color: #00CCFF;
    font-size: 24px;
    font-weight: bold;
}

.flow-step:last-child::after {
    display: none;
}

.step-number {
    background: #00CCFF;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 18px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* 初心者セクション */
.beginner {
    background: #ffffff;
}

.beginner-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 150, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.beginner-points {
    list-style: none;
    margin: 20px 0;
}

.beginner-points li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.beginner-points li::before {
    content: '🌊';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.beginner-message {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    color: #0066CC;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .reservation-methods {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .flow-step::after {
        display: none;
    }
    
    .items-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}