/*===================== 
    Booking Bar Fix 8742
=====================*/

.booking-bar-inner.site-bg-primary {
    background: #c19b76;
    background-color: #c19b76;
    opacity: 1;
    position: relative;
    z-index: 10;
}

/*===================== 
    Hero Video Section 8742
=====================*/

.hero-video-section-8742 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video-wrapper-8742 {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video-8742 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay-8742 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-video-content-8742 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-video-logo-8742 {
    margin-bottom: 20px;
}

.hero-video-logo-8742 img {
    max-width: 300px;
    height: auto;
}

.hero-video-tagline-8742 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* レスポンシブ */
@media only screen and (max-width: 991px) {
    .hero-video-section-8742 {
        height: 70vh;
    }

    .hero-video-logo-8742 img {
        max-width: 220px;
    }

    .hero-video-tagline-8742 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .hero-video-section-8742 {
        height: 60vh;
    }

    .hero-video-logo-8742 img {
        max-width: 180px;
    }

    .hero-video-tagline-8742 {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

/*===================== 
    Logo Size Fix
=====================*/

/* ロゴサイズを大きく */
.logo-header {
    width: 220px;
}

.logo-header-inner img {
    max-width: 100%;
    max-height: 100%;
}

@media only screen and (max-width: 991px) {
    .logo-header {
        width: 180px;
    }
}

@media only screen and (max-width: 576px) {
    .logo-header {
        width: 150px;
    }
}

/*===================== 
    Header Buttons Style 8742
=====================*/

/* ヘッダーボタンコンテナ - 既存スタイルを上書き */
.header-buttons-8742 {
    display: flex;
    float: right;
    height: 70px;
    align-items: center;
    gap: 15px;
}

.header-buttons-8742 .extra-cell {
    display: inline-block;
    padding-left: 0;
    vertical-align: middle;
}

/* お問い合わせボタン - アウトラインスタイル */
.header-btn-contact-8742 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    writing-mode: horizontal-tb;
}

.header-btn-contact-8742:hover,
.header-btn-contact-8742:focus {
    color: #150e07;
    background-color: #fff;
    border-color: #fff;
    text-decoration: none;
}

/* 予約ボタン - 塗りスタイル（目立たせる） */
.header-btn-reserve-8742 {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: #c19b76;
    border: 1px solid #c19b76;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    writing-mode: horizontal-tb;
}

.header-btn-reserve-8742:hover,
.header-btn-reserve-8742:focus {
    color: #fff;
    background-color: #a18378;
    border-color: #a18378;
    text-decoration: none;
}

/* スクロール後のスタイル */
.is-fixed .header-btn-contact-8742 {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.is-fixed .header-btn-contact-8742:hover,
.is-fixed .header-btn-contact-8742:focus {
    color: #150e07;
    background-color: #fff;
    border-color: #fff;
}

/*===================== 
    Responsive Styles
=====================*/

/* タブレット */
@media only screen and (max-width: 991px) {
    .header-buttons-8742 {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background-color: #150e07;
        padding: 10px;
        gap: 10px;
        justify-content: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        height: auto;
        float: none;
    }

    .header-buttons-8742 .extra-cell {
        display: block;
        flex: 1;
        max-width: 200px;
    }

    .header-btn-contact-8742,
    .header-btn-reserve-8742 {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 15px;
        font-size: 13px;
    }

    .header-btn-contact-8742 {
        border-color: rgba(255, 255, 255, 0.4);
    }
}

/* スマートフォン */
@media only screen and (max-width: 576px) {
    .header-buttons-8742 {
        padding: 8px 10px;
        gap: 8px;
    }

    .header-btn-contact-8742,
    .header-btn-reserve-8742 {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/*===================== 
    Footer Styles 8742
=====================*/

/* フッターCTAセクション */
.footer-cta-section-8742 {
    padding: 30px 0;
}

.footer-cta-text-8742 h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-cta-text-8742 p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-cta-btn-8742 {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* フッターお問い合わせボタン - 白アウトライン */
.footer-btn-contact-8742 {
    display: inline-block;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-btn-contact-8742:hover,
.footer-btn-contact-8742:focus,
.footer-dark .footer-top a.footer-btn-contact-8742:hover,
.footer-dark .footer-top a.footer-btn-contact-8742:focus,
.footer-dark .footer-top a.footer-btn-contact-8742:active {
    color: #150e07;
    background-color: #fff;
    border-color: #fff;
    text-decoration: none;
}

/* フッター予約ボタン - 白い塗りボタン */
.footer-btn-reserve-8742 {
    display: inline-block;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #150e07;
    background-color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-btn-reserve-8742:hover,
.footer-btn-reserve-8742:focus,
.footer-dark .footer-top a.footer-btn-reserve-8742:hover,
.footer-dark .footer-top a.footer-btn-reserve-8742:focus,
.footer-dark .footer-top a.footer-btn-reserve-8742:active {
    color: #150e07;
    background-color: #c19b76;
    border-color: #c19b76;
    text-decoration: none;
}

/* フッターロゴサイズ */
.footer-logo-img-8742 {
    max-width: 200px;
    height: auto;
}

/* フッターレスポンシブ */
@media only screen and (max-width: 991px) {
    .footer-cta-text-8742 {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-cta-btn-8742 {
        justify-content: center;
    }
}

@media only screen and (max-width: 576px) {
    .footer-cta-text-8742 h4 {
        font-size: 20px;
    }

    .footer-cta-btn-8742 {
        flex-direction: column;
        gap: 10px;
    }

    .footer-btn-contact-8742,
    .footer-btn-reserve-8742 {
        padding: 12px 25px;
        font-size: 14px;
        text-align: center;
    }
}

/*===================== 
    Map & Photo Section 8742
=====================*/

.map-photo-section-8742 {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-photo-wrapper-8742 {
    display: flex;
    width: 100%;
    height: 500px;
}

.map-photo-left-8742 {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.map-photo-left-8742 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-photo-right-8742 {
    width: 50%;
    height: 100%;
}

.map-photo-right-8742 iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%);
}

/* 地図ホバーでカラーに */
.map-photo-right-8742:hover iframe {
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

/* レスポンシブ */
@media only screen and (max-width: 991px) {
    .map-photo-wrapper-8742 {
        flex-direction: column;
        height: auto;
    }

    .map-photo-left-8742,
    .map-photo-right-8742 {
        width: 100%;
        height: 350px;
    }
}

@media only screen and (max-width: 576px) {
    .map-photo-left-8742,
    .map-photo-right-8742 {
        height: 280px;
    }
}

/*===================== 
    News Date Style 8742
=====================*/
.news-date-8742 {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 20px;
    margin-bottom: 8px;
}
