/*
Theme Name: Hotel Garden
Theme URI: http://hotelgarden-ks.com/
Author: ClleanCode
Author URI: https://clleancode.com/
*/

/* フォント統一（アイコンフォント除外） */
*:not([class^="icon-"]):not([class*=" icon-"]),
*:not([class^="icon-"]):not([class*=" icon-"])::before,
*:not([class^="icon-"]):not([class*=" icon-"])::after {
    font-family: 'Noto Serif JP', serif !important;
}

/* アイコンフォント復元 */
[class^="icon-"],
[class*=" icon-"],
[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-family: 'icomoon' !important;
}

/* Aboutセクション左右レイアウト */
.about-section-4729 {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.about-image-4729 {
    width: 50%;
    overflow: hidden;
}

.about-image-4729 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-4729 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background-color: #f8f6f2;
    text-align: center;
}

.about-content-4729 h2 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: 20px 0 30px;
    color: #333;
}

.about-content-4729 h2 span {
    color: #c8a45a;
}

.about-btn-4729 {
    display: inline-block;
    padding: 15px 40px;
    background-color: #c8a45a;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.about-btn-4729:hover {
    background-color: #a8874a;
}

@media screen and (max-width: 768px) {
    .about-section-4729 {
        flex-direction: column;
    }
    
    .about-image-4729,
    .about-content-4729 {
        width: 100%;
    }
    
    .about-image-4729 {
        height: 300px;
    }
    
    .about-content-4729 {
        padding: 40px 20px;
    }
}

/* 客室スライダー画像（縦基準・アスペクト比維持） */
.rooms__slider .owl-carousel .item img {
    width: auto !important;
    height: 100% !important;
    max-height: 400px;
    object-fit: contain;
}

/* メインビジュアル動画 */
.main-video-3847 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ローダー非表示・サイドメニュー表示 */
.loader {
    display: none !important;
}

.sidebar,
.sidebar-right {
    opacity: 1 !important;
    visibility: visible !important;
}

/* お問い合わせセクション */
.contact-section-9182 {
    display: flex;
    width: 100%;
    min-height: 400px;
}

.contact-image-9182 {
    width: 50%;
    overflow: hidden;
}

.contact-image-9182 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content-9182 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background-color: #f8f6f2;
    text-align: center;
}

.contact-content-9182 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-content-9182 p {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
}

.contact-btn-9182 {
    display: inline-block;
    padding: 15px 40px;
    background-color: #c8a45a;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.contact-btn-9182:hover {
    background-color: #a8874a;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .contact-section-9182 {
        flex-direction: column;
    }
    
    .contact-image-9182,
    .contact-content-9182 {
        width: 100%;
    }
    
    .contact-image-9182 {
        height: 250px;
    }
    
    .contact-content-9182 {
        padding: 40px 20px;
    }
}

/* 地図セクション */
.map-section-8472 {
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    line-height: 0;
    margin-bottom: 50px;
}

.map-section-8472 iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-section-8472 iframe:hover {
    filter: grayscale(0%);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .map-section-8472 {
        height: 300px;
    }
}