/* --- その他の施設セクション (other-facilities.css) --- */

.oth-fac-section {
    /* PCでの下余白を削り、次のセクションに近づける */
    padding: 80px 0 0; 
    background-color: #fff;
}

.oth-fac-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* タイトルエリア */
.oth-fac-header {
    text-align: center;
    margin-bottom: 50px;
}

/* 日本語タイトル */
.oth-fac-main-title {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0054a6;  /* レクストンブルー */
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

/* 英語タイトル（細いアンダーバー付） */
.oth-fac-title-en {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #0054a6;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid #0054a6;
    padding-bottom: 5px;
}

/* 2カラムグリッド設定 */
.oth-fac-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}

.oth-fac-item {
    width: calc(50% - 15px);
    text-align: center !important; 
}

/* 画像エリア */
.fac-item-img {
    width: 100%;
    margin: 0 auto 15px; 
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.fac-item-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.oth-fac-item:hover .fac-item-img img {
    transform: scale(1.05); 
}

/* 施設名 */
.fac-item-name {
    font-size: 20px;
    font-weight: 700;
    color: #0054a6;
    margin-bottom: 10px;
    text-align: center !important;
}

/* 施設概要 */
.fac-item-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center !important;
    display: block;
}

/* 補足情報（場所など） */
.fac-item-info {
    font-size: 14px;
    font-weight: 700;
    color: #0054a6;
    text-align: center !important;
}

/* --- レスポンシブ (SP表示) --- */
@media (max-width: 768px) {
    .oth-fac-section {
        /* 下のセクションと密着させるため下余白を最小化 */
        padding: 50px 0 40px;
    }

    .oth-fac-main-title {
        font-size: 26px;
    }
    
    .oth-fac-title-en {
        font-size: 12px;
        margin-bottom: 0;
    }

    /* 客観的判断により横2つ並びを維持 */
    .oth-fac-grid {
        gap: 30px 15px; /* 隙間をスマホサイズに最適化 */
    }

    .oth-fac-item {
        /* 横並びを維持 */
        width: calc(50% - 7.5px); 
        text-align: center !important;
    }

    .fac-item-name {
        font-size: 16px; /* 収まりを良くするため少し縮小 */
    }

    .fac-item-desc {
        font-size: 11px; /* 横並びでも可読性を保てるサイズ */
        line-height: 1.5;
        margin-bottom: 5px;
    }
    
    /* スマホでは改行を解除して自然に流し込む（はみ出し防止） */
    .fac-item-desc br {
        display: none;
    }

    .fac-item-info {
        font-size: 11px;
    }
}