/* ========================================
   施設案内ページ
   ======================================== */

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

/* ページヒーロー */
.page-hero {
    background: linear-gradient(135deg, #E8733A, #C45E2A);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h2 {
    font-size: 36px;
    margin: 0 0 10px 0;
}

.page-hero p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

/* セクションタイトル */
.section-title {
    font-size: 28px;
    color: #2C3E50;
    text-align: center;
    margin: 0 0 50px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #E8733A;
}

/* ========================================
   場内マップ
   ======================================== */

.map-section {
    padding: 60px 20px;
    background: #FAFAFA;
}

.map-container {
    text-align: center;
}

.camp-map {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
}

.map-placeholder {
    background: #F0F0F0;
    border: 2px dashed #CCC;
    border-radius: 8px;
    padding: 60px 20px;
    color: #999;
}

.map-placeholder span {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 18px;
    margin: 5px 0;
}

.placeholder-note {
    font-size: 13px !important;
    color: #BBB !important;
}

/* ========================================
   施設セクション
   ======================================== */

.facilities-section {
    padding: 60px 20px;
}

/* 施設行（左右交互レイアウト） */
.facility-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.facility-row.reverse {
    flex-direction: row-reverse;
}

/* MONEちゃん側 */
.mone-side {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
}

.mone-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mone-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transition: transform 0.3s;
}

.mone-img:hover {
    transform: scale(1.05) rotate(-3deg);
}

/* MONEちゃんの吹き出し */
.mone-speech {
    background: white;
    border: 2px solid #E8733A;
    border-radius: 20px;
    padding: 12px 18px;
    font-size: 15px;
    color: #555;
    font-weight: 500;
    text-align: center;
    position: relative;
    max-width: 220px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 吹き出しの三角（左側のMONEは右向き、右側のMONEは左向き） */
.mone-speech.left::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #E8733A;
}

.mone-speech.left::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom-color: white;
    z-index: 1;
}

.mone-speech.right::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #E8733A;
}

.mone-speech.right::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom-color: white;
    z-index: 1;
}

/* 施設カード側 */
.facility-side {
    flex: 1;
}

/* 施設カード */
.facility-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.facility-card.featured {
    border: 2px solid #E8733A;
}

/* 写真スライダー */
.facility-photos {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #F5F5F5;
}

.photo-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F0F0;
    color: #999;
    min-width: 100%;
}

.placeholder-slide span {
    font-size: 60px;
    margin-bottom: 10px;
}

.placeholder-slide p {
    margin: 3px 0;
    font-size: 14px;
}

/* スライダーボタン */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slide-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* 施設情報 */
.facility-info {
    padding: 25px;
}

.facility-info h4 {
    font-size: 22px;
    color: #2C3E50;
    margin: 0 0 8px 0;
}

.featured-badge {
    display: inline-block;
    background: #E8733A;
    color: white;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.facility-description {
    color: #555;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.facility-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-details li {
    padding: 6px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #F0F0F0;
}

.facility-details li:last-child {
    border-bottom: none;
}

/* ========================================
   CTAセクション
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #2C3E50, #3D5166);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-mone-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.cta-section h3 {
    font-size: 30px;
    margin: 0 0 10px 0;
}

.cta-section p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.btn-reserve {
    display: inline-block;
    background: #E8733A;
    color: white;
    padding: 16px 48px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.btn-reserve:hover {
    background: #D35C1E;
    transform: translateY(-2px);
}

/* ========================================
   フッター
   ======================================== */

footer {
    background: #2C3E50;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   レスポンシブ
   ======================================== */

@media (max-width: 768px) {
    .facility-row,
    .facility-row.reverse {
        flex-direction: column;
    }

    .mone-side {
        flex: none;
        width: 100%;
    }

    .mone-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .mone-img {
        width: 100px;
        height: 100px;
    }

    .mone-speech {
        max-width: none;
        flex: 1;
    }

    .mone-speech.left::after,
    .mone-speech.right::after {
        top: 50%;
        left: -12px;
        transform: translateY(-50%);
        border: 8px solid transparent;
        border-right-color: #E8733A;
    }

    .mone-speech.left::before,
    .mone-speech.right::before {
        top: 50%;
        left: -9px;
        transform: translateY(-50%);
        border: 7px solid transparent;
        border-right-color: white;
    }

    .page-hero h2 {
        font-size: 26px;
    }
}
