/*=====================
    Font Settings - Noto Serif JP
=====================*/
html,
body,
* {
    font-family: 'Noto Serif JP', serif;
}

h1, h2, h3, h4, h5, h6,
p, a, span, li, label, button, input, textarea, select {
    font-family: 'Noto Serif JP', serif;
}


/*=====================
    Booking Widget Text 中央寄せ
=====================*/
.booking_widget--text {
    text-align: center;
    margin: 0 auto;
    font-family: 'Noto Serif JP', serif;
}

.booking_widget--text p {
    text-align: center;
}

/*=====================
    Header Logo Size 8742
=====================*/
img.header-logo-8742 {
    max-width: 80%;
    height: auto;
}

/*=====================
    Footer Logo Size 8742
=====================*/
.footer-logo-8742 {
    max-width: 150px;
    height: auto;
}

.hero_banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

/*=====================
    Map Section 3847
=====================*/
.map-section-3847 {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-container-3847 {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container-3847 iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-container-3847 iframe:hover {
    filter: grayscale(0%);
}

/* タブレット */
@media screen and (max-width: 1024px) {
    .map-container-3847 {
        height: 400px;
    }
}

/* スマホ */
@media screen and (max-width: 768px) {
    .map-container-3847 {
        height: 300px;
    }
}
  .top_title {
    font-size: 40px;
    line-height: 1;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
  }
  
  /* スマホ */
  @media screen and (max-width: 768px) {
    .top_title {
      font-size: 24px;
      line-height: 1.2;
    }
  }

/*=====================
    Form Footer Buttons 3847
=====================*/
.form-footer-buttons-3847 {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.form-footer-btn-3847 {
    display: inline-block;
    padding: 18px 48px;
    font-size: 16px;
    font-family: 'Noto Serif JP', serif;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-reserve-3847,
.btn-contact-3847 {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reserve-3847:hover,
.btn-contact-3847:hover {
    background-color: #fff;
    color: #8b6e4a;
}

/* タブレット・スマホ */
@media screen and (max-width: 768px) {
    .form-footer-buttons-3847 {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .form-footer-btn-3847 {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 16px 32px;
    }
}

/*=====================
    空室検索ボタン無効化
=====================*/
.check-availabity--popup .button {
    pointer-events: none;
    cursor: default;
}

/*=====================
    Footer Background Overlay 7394
=====================*/
.main-footer {
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    pointer-events: none;
}

.main-footer--bg {
    z-index: 0;
}

.main-footer--contain {
    position: relative;
    z-index: 2;
}