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

/* 見出し */
.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);
}

/* =====================================
   Event Page Only（page-id-983）
===================================== */

/* コンテンツ幅 */
.page-id-983{
    --wp--style--global--content-size:1100px;
}

/* --------------------
   イベントタイトル
-------------------- */

.page-id-983 .tribe-events-widget-events-list__event-title{
    margin:0 0 6px;
    line-height:1.35;
    border-left:4px solid #0088cc;
    padding-left:12px;
}

.page-id-983 .tribe-events-widget-events-list__event-title-link{
    font-size:24px;
    font-weight:700;
    color:#1f2937;
    text-decoration:none;
    transition:.25s;
}

/* タイトルホバー（現在は効いていない） */
.page-id-983 .tribe-events-widget-events-list__event-title-link:hover{
    color:#0088cc;
    padding-left:6px;
}

/* --------------------
   日付
-------------------- */

.page-id-983 .tribe-events-widget-events-list__event-datetime{
    color:#777;
    font-size:14px;
    letter-spacing:.3px;
    margin-bottom:8px;
}

/* --------------------
   日付タグ
-------------------- */

.page-id-983 .tribe-events-widget-events-list__event-date-tag{
    transform:scale(1.15);
    margin-right:18px;
    font-size:1.2em;
    font-weight:700;
}

/* --------------------
   イベント1件
-------------------- */

.page-id-983 .tribe-events-widget-events-list__event{
    padding:24px 0;
    border-bottom:1px solid #ececec;
    transition:.25s;
}

/* イベント全体ホバー（現在は効いていない） */
.page-id-983 .tribe-events-widget-events-list__event:hover{
    background:#fafafa;
}

/* --------------------
   「カレンダーを表示」
-------------------- */

.page-id-983 .tribe-events-widget-events-list__view-more-link{
    display:inline-block;
    margin-top:25px;
    padding:10px 20px;
    border:1px solid #0088cc;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.page-id-983 .tribe-events-widget-events-list__view-more-link:hover{
    background:#0088cc;
    color:#fff;
}

/* --------------------
   スマホ
-------------------- */

@media (max-width:768px){

    .page-id-983{
        --wp--style--global--content-size:95%;
    }

    .page-id-983 .tribe-events-widget-events-list__event-title-link{
        font-size:20px;
    }

    .page-id-983 .tribe-events-widget-events-list__event{
        padding:18px 0;
    }

}