/* =====================================================
   カレンダー（土曜日）
===================================================== */

/* 見出し */
.eo-fullcalendar .fc-day-header.fc-sat {
    background: #98E7FD;
}

/* 日付枠 */
.eo-fullcalendar .fc-bg .fc-sat {
    background: #EBFAFD;
}


/* =====================================================
   カレンダー（日曜日）
===================================================== */

/* 見出し */
.eo-fullcalendar .fc-day-header.fc-sun {
    background: #FDA4A7;
}

/* 日付枠 */
.eo-fullcalendar .fc-bg .fc-sun {
    background: #FDEDEE;
}


/* =====================================================
   エリアナビ（一覧・リスト・門司など）
===================================================== */

.area-nav {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
}

/* ナビリンク */
.area-nav a {
    display: inline-block !important;
    padding: 10px 15px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    border-bottom: 2px solid transparent !important;

    /* テーマの縦書きを解除 */
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    white-space: nowrap !important;
}

/* ホバー */
.area-nav a:hover {
    color: #007BFF !important;
    border-bottom: 2px solid #007BFF !important;
}

/* 現在のページ */
.area-nav a.current {
    color: #007BFF !important;
    font-weight: bold !important;
    border-bottom: 3px solid #007BFF !important;
}

/* PC文字サイズ */
@media (min-width:769px) {
    .area-nav a {
        font-size: 24px;
    }
}

/* スマホは横スクロール */
@media (max-width:768px) {

    .area-nav {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-left: 10px;
    }

}


/* =====================================================
   宿泊施設カード（ホバー）
===================================================== */

.wp-block-post-template > li > .wp-block-group {
    transition: all 0.3s ease !important;
}

.wp-block-post-template > li > .wp-block-group:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}


/* =====================================================
   アイキャッチ画像
===================================================== */

.wp-block-post-featured-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}


/* =====================================================
   詳細情報（客室数・朝食など）
===================================================== */

@media (min-width:769px) {

    .facility-info {
        white-space: nowrap;
    }

}

/* =====================================================
   投稿ページの「サイトを見る」ボタン
===================================================== */

.hotel-btn a {
    display: inline-block;
    padding: 10px 18px;
    margin-top: 10px;

    background: #007BFF;
    color: #fff !important;

    text-decoration: none !important;
    border-radius: 6px;

    font-size: 15px;

    transition: 0.3s;
}

/* ホバー */
.hotel-btn:hover a {
    background: #0056b3;
    transform: translateY(-2px);
}