@charset "UTF-8";
/* =========== 基本設定 =========== */
:root {
  --c-text: #1e1e1e;
  --c-muted: #6b7280;
  --c-bg: #ffffff;
  --c-bg-alt: #d9d9d9;
  --c-key: #306ed2;
  --c-key-ink: #fff;
  --c-card-bg: #dbeafe;
  --c-card-gray-bg: #f5f5f5;
  --c-best: #f7931e;
  /* オレンジ枠 */
  --c-best-bg: #fcf2e8;
  /* クリーム背景 */
  --c-heiwajima: #f4621f;
  --c-haneda: #bbe26b;
  --c-kamata: #6db1ff;
  --radius: 16px;
  --container: 980px;
  --container-sm: 780px;
  --container-xs: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 2rem; /* 固定ヘッダーの高さに合わせて調整 */
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.container-sm {
  width: min(92%, var(--container-sm));
  margin-inline: auto;
}

.container-xs {
  width: min(92%, var(--container-xs));
  margin-inline: auto;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: inherit !important;
  }
  .pc-only {
    display: none !important;
  }
}
/* =========== 共通UI =========== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--c-key);
  color: var(--c-key-ink);
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn--ghost {
  background: var(--c-bg);
  color: var(--c-key);
  border: 2px solid var(--c-key);
  font-weight: 700;
  margin: auto;
}
.btn--white {
  border: none;
  background-color: #fff;
  color: inherit;
  font-weight: 700;
  margin: auto;
}
.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

/* =========== ヘッダー =========== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  transition: -webkit-backdrop-filter 0.2s ease;
  transition: backdrop-filter 0.2s ease;
  transition: backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 0.75rem 0;
}
.site-header .logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  height: 40px;
  justify-content: center;
}
.site-header .logo__title {
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.site-header.is-off-hero {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  height: 40px;
}
.gnav .gnav__list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav .gnav__lang {
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  margin-left: 1rem;
}

.gnav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.5rem 0;
  background: transparent;
}
.gnav-toggle__bar {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.gnav-sp {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 21, 34, 0.92);
  color: #fff;
  padding: 5rem 1.5rem 2rem;
  z-index: 40;
  height: 100vh;
  width: 100vw;
  overflow-y: auto;
}
.gnav-sp__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gnav-sp__close:hover, .gnav-sp__close:focus-visible {
  outline: none;
}
.gnav-sp__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gnav-sp__list a {
  color: inherit;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
}
.gnav-sp__lang {
  margin-top: 2rem;
  font-size: 1rem;
}
.gnav-sp.is-open {
  display: block;
}
.gnav-sp .logo__title {
  position: absolute;
  left: 1rem;
  top: 0.8rem;
}
.gnav-sp .gtranslate_wrapper {
  flex-direction: row;
}

body.is-nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .gnav {
    display: none;
  }
  .gnav-toggle {
    display: inline-flex;
  }
  .site-header .header-inner,
  .header-nav {
    gap: 1rem;
  }
}
.gtranslate_wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.25rem;
}
.gtranslate_wrapper a:first-child::before {
  content: "/";
  margin-right: 0.25rem;
  font-weight: normal;
}

.gtranslate_wrapper a:first-child::before {
  display: none;
}

/* =========== ページ/セクション =========== */
.page__content {
  padding: 1rem 0;
}
.page__content > *:first-child {
  margin-top: 0;
}

.section--center {
  text-align: center;
}

.section--flex {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.sec1-ttl {
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 40px);
  line-height: 1.2;
}

.sec-ttl {
  text-align: center;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 2rem 0;
}

.section-headline {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  max-width: 44%;
  margin: 2rem 0;
  min-width: 300px;
}
.section-headline__title {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
}
.section-headline__line {
  flex: 1;
  height: 1px;
  background: currentColor;
  position: relative;
}
.section-headline__line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.lead {
  text-align: left;
  flex: 1;
}

/* =========== 施設のスタイル/滞在エリア =========== */
.card-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.card-ttl {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}
.card-ttl::after {
  content: "";
  display: block;
  width: 3rem;
  height: 4px;
  background-color: var(--c-bg-alt);
  margin: 1rem auto 0;
}

.card-note {
  color: var(--c-muted);
  font-size: 0.95rem;
}
.card-note p {
  text-align: start;
  line-break: strict;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.cards:nth-of-type(odd) {
  direction: rtl;
}
.cards:nth-of-type(odd) > * {
  direction: ltr;
}
.cards.no-rtl:nth-of-type(odd) {
  direction: ltr;
}

.cards__list {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  direction: ltr;
  overflow: hidden;
}
.cards__list > * {
  height: 100%;
}
@media (max-width: 980px) {
  .cards__list {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .cards__list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .cards__list > * {
    flex: 0 0 min(80vw, 320px);
    scroll-snap-align: start;
    height: auto;
  }
}

@media (min-width: 981px) {
  .cards__list .card--extra {
    display: none;
  }
}
.card {
  margin-bottom: 2rem;
  background: var(--c-card-bg);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.card__thumb a {
  transition: opacity 0.2s ease;
}
.card__thumb a:hover, .card__thumb a:focus {
  opacity: 0.7;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title {
  font-size: 1.2rem;
  margin: auto;
}
.card__cta {
  margin-top: auto;
  display: flex;
}

.area-link {
  text-align: center;
  margin-bottom: 3rem;
}

.type-cards:nth-of-type(odd) {
  direction: ltr;
}
.type-cards .card {
  background: var(--c-card-gray-bg);
}

.type-heiwajima .card-ttl {
  padding: 0;
  margin-bottom: 1rem;
}
.type-heiwajima .card-ttl::after,
.type-heiwajima .btn {
  background-color: var(--c-heiwajima);
}

.type-kamata .card-ttl {
  padding: 0;
  margin-bottom: 1rem;
}
.type-kamata .card-ttl::after,
.type-kamata .btn {
  background-color: var(--c-kamata);
}

.type-haneda .card-ttl {
  padding: 0;
  margin-bottom: 1rem;
}
.type-haneda .card-ttl::after,
.type-haneda .btn {
  background-color: var(--c-haneda);
}

/* =========== ページ =========== */
.page-main {
  padding-top: 5rem;
}

.entry-title {
  font-size: 1.5rem;
  padding: 2rem;
  text-align: center;
  margin: 0;
}

/* =========== 施設一覧 =========== */
.archive-main {
  padding-top: 5rem;
}

.stay-area {
  color: #fff;
}
.stay-area__hero {
  min-height: 300px;
  margin-bottom: 2rem;
  background-size: cover;
  position: relative;
  isolation: isolate;
}
.stay-area__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.45) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.stay-area__hero > * {
  position: relative;
  z-index: 2;
}
.stay-area__overlay {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-right: 50%;
  padding: 4em;
  text-align: center;
}
@media (max-width: 980px) {
  .stay-area__overlay {
    width: 100%;
  }
}
.stay-area__title {
  margin: 0 0 1rem;
}
.stay-area__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  background-color: var(--c-bg-alt);
  margin: 1rem auto 0;
}
.stay-area__desc {
  text-align: left;
}
.stay-area__desc p {
  margin: 0;
}
@media (max-width: 980px) {
  .stay-area__desc {
    margin: auto;
  }
}

/* =========== アバウトページ =========== */
.mv {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16/2;
  margin-bottom: 2.5rem;
  max-width: var(--container);
  margin: auto;
  margin-bottom: 2rem;
}
.mv__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.mv::after {
  /* 黒10%マスク */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.mv__catch {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  z-index: 1;
}
@media (max-width: 980px) {
  .mv {
    aspect-ratio: auto;
    height: 90px;
  }
}

.page-about.section--flex {
  gap: 1rem;
}
@media (max-width: 980px) {
  .page-about.section--flex {
    flex-direction: column;
    gap: 0;
  }
}
.page-about__content {
  flex: 1 1 0;
  padding: 0 1rem;
  /* Gutenberg 基本整形 */
}
.page-about__content > *:first-child {
  margin-top: 0;
}
.page-about__content p {
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.9;
}
.page-about__content h2 {
  font-size: clamp(1.125rem, 2.3vw, 1.5rem);
  font-weight: 700;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.page-about__content strong {
  font-weight: 700;
}
.page-about__company {
  flex: 1 1 0;
  align-self: start;
  position: sticky;
  top: 88px;
  /* ヘッダー下で止める */
  padding: 0 1rem;
  width: 100%;
}
@media (max-width: 980px) {
  .page-about__company {
    position: static;
    flex-basis: 100%;
    margin-top: 1.5rem;
  }
}

/* 会社概要ボックス */
.company__ttl {
  font-size: clamp(1.125rem, 2.3vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.company__row {
  font-size: 0.8rem;
  display: flex;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.company__label {
  font-weight: 700;
}

.company__text {
  flex: 1;
}

.company__img {
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}
.company__img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.company__img img:hover {
  transform: scale(1.05);
}

.company__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

.company__name {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.company__url {
  font-size: 0.8rem;
  opacity: 0.85;
  font-style: italic;
  line-height: 1.2;
}

/* =========== ニュース =========== */
/* 一覧 */
.news-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.news-item {
  padding: 1rem 0;
}
.news-item__date {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  margin-bottom: 0.5rem;
  font-feature-settings: "tnum";
}
.news-item__link {
  display: inline-block;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
  max-width: 58ch;
  /* 行長制御（任意） */
  transition: opacity 0.2s ease;
}
.news-item__link:hover {
  opacity: 0.8;
}

/* ページネーション */
.pager {
  display: grid;
  place-items: center;
  /* 現在ページ */
  /* … 表示 */
}
.pager__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
.pager__link {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid var(--c-key);
  color: var(--c-key);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pager__link:hover {
  background: var(--c-card-bg);
}
.pager .is-current {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: var(--c-key);
  color: #fff;
  border: 1px solid var(--c-key);
  font-weight: 700;
}
.pager .is-dots {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  color: var(--c-key);
  border: 1px solid transparent;
}

/* =========== お知らせ =========== */
.single-main {
  padding-top: 5rem;
}

.news-single {
  max-width: 720px;
  margin: 0 auto;
}
.news-single__body {
  padding: 2rem 0;
}
.news-single__date {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #111;
  font-feature-settings: "tnum";
}
.news-single__ttl {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}
.news-single__content {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 4rem;
}
.news-single__content p {
  margin: 1.2rem 0;
}
.news-single__back {
  text-align: center;
}

/* =========== お問い合わせ =========== */
.smf-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.smf-form .smf-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.smf-form .smf-item input,
.smf-form .smf-item textarea {
  width: 100%;
  font-size: 1rem;
  background-color: #eee;
  transition: 0.3s ease;
  border-width: 0;
  box-sizing: border-box;
  border-width: 1px;
  border-color: #fff;
}
.smf-form .smf-item input:focus, .smf-form .smf-item input:hover,
.smf-form .smf-item textarea:focus,
.smf-form .smf-item textarea:hover {
  background-color: #fff;
  border-color: var(--c-kamata);
}
.smf-form .required-label .smf-item__label__text:after {
  content: "*";
  color: var(--c-heiwajima);
  margin-left: 0.1rem;
  font-size: 1rem;
}

.smf-action {
  margin-top: 2rem;
  text-align: center;
}
.smf-action .smf-button-control__control {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--c-key);
  color: var(--c-key-ink);
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
  font-weight: bold;
  font-size: 1rem;
}
.smf-action .smf-button-control__control:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* =========== フッター =========== */
.site-footer {
  background: #2d2d2d;
  color: #f5f5f5;
  padding: 3rem 0 2.5rem;
  margin-top: 4rem;
}
.site-footer a {
  color: inherit;
}
.site-footer .footer-heading {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 800;
  margin: 0 0 1rem;
}
.site-footer .footer-heading--secondary {
  margin-bottom: 1.25rem;
}
.site-footer .footer-layout {
  display: flex;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
}
.site-footer .footer-layout__primary {
  flex: 1 1 360px;
  max-width: 600px;
}
.site-footer .footer-layout__secondary {
  flex: 1 1 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.site-footer .footer-section + .site-footer .footer-section {
  margin-top: 2rem;
}
.site-footer .footer-section a {
  transition: opacity 0.2s ease;
}
.site-footer .footer-section a:hover, .site-footer .footer-section a:focus {
  opacity: 0.7;
}
.site-footer .footer-section__label {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.site-footer .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0.5rem;
}
.site-footer .footer-menu li {
  margin: 0;
}
.site-footer .footer-menu a {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.site-footer .footer-menu a:hover, .site-footer .footer-menu a:focus {
  opacity: 0.7;
  font-size: 1rem;
}
.site-footer .footer-menu--links {
  border-top: none;
  padding-top: 0;
}
.site-footer .footer-menu--links a {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 800;
}
.site-footer .footer-menu--links a:hover, .site-footer .footer-menu--links a:focus {
  opacity: 0.7;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.site-footer .footer-copy {
  margin: 0;
  font-size: 0.8rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .site-footer .footer-layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .has-hero-form .site-footer {
    padding-bottom: 8rem;
  }
}
/* =========== Hero Booking Form =========== */
.hero__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
  background: rgba(117, 117, 117, 0.568627451);
  color: #111;
  padding: 0.75rem;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  max-width: 880px;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hero__form .best-rate__icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -1.5rem;
  left: -1.5rem;
}
.hero__form.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero .hero__form {
  position: absolute;
}

.hero__form-embed {
  flex: 1 1 0%;
  min-width: 0;
}

.hero__form--beds {
  align-items: stretch;
}
.hero__form--beds .hero__form-embed {
  width: 100%;
}
.hero__form--beds .book-widget,
.hero__form--beds .book-widget-holder,
.hero__form--beds .book-row,
.hero__form--beds .book-col-12,
.hero__form--beds .book-widget-bg {
  width: 100%;
}
.hero__form--beds .book-widget-bg {
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0;
}
.hero__form--beds .book-widget-holder {
  padding: 0 !important;
}
.hero__form--beds .book-form-inline {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}
.hero__form--beds .book-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  margin: 0 !important;
  flex: 1 1 0;
}
.hero__form--beds .book-form-group .book-col-5,
.hero__form--beds .book-form-group .book-col-7 {
  width: 100%;
  padding: 0;
  color: #fff !important;
}
.hero__form--beds .book-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  display: block;
}
.hero__form--beds .book-container .book-row .book-col-12 {
  padding: 0 !important;
}
.hero__form--beds .book-container .book-row {
  margin: 0 !important;
}
.hero__form--beds .book-form-control {
  width: 100% !important;
  border-radius: 12px;
  border: 1px solid #e4e4e7;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  line-height: 1.2;
}
@media (max-width: 375px) {
  .hero__form--beds .book-form-control {
    font-size: 0.8rem;
  }
}
.hero__form--beds .book-form-group.book-va-bottom {
  margin-left: auto;
  flex: 0 0 auto;
}
.hero__form--beds .book-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: var(--c-key);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
}
.hero__form--beds .icon-book-calendar {
  display: none;
}

.is-hidden {
  display: none !important;
}

.hero__form-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.25rem;
  min-width: 80px;
  width: 100%;
}
.hero__form-item span {
  font-size: 0.8rem;
  color: #ffffff;
  text-align: center;
}
.hero__form-item input,
.hero__form-item select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  background: #fff;
}

div#book-guests-holder {
  max-width: 4rem;
}

.hero__submit {
  margin-left: auto;
  border-radius: 8px;
  border: none;
  background-color: var(--c-key);
  padding: 0.8rem 0;
  cursor: pointer;
  min-width: 64px;
}

@media (max-width: 768px) {
  .hero__form.is-hidden {
    display: block !important;
  }
  .hero__form {
    width: 100%;
    left: 0;
    bottom: 0;
    transform: none;
  }
  .hero__form .best-rate__icon {
    display: none;
  }
}
.hero-form-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1rem 1.2rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}
.hero-form-bar.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero__form--floating {
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
  margin: 0;
  width: min(92vw, 880px);
  max-width: 880px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.hero__form--floating .best-rate__icon {
  position: static;
  width: 50px;
  height: 50px;
  margin-right: auto;
  margin-bottom: -1.5rem;
  transform: translateY(-1.5rem);
}
@media (max-width: 640px) {
  .hero__form--floating .best-rate__icon {
    display: none;
  }
}

.hero__form--floating.hero__form--beds .book-form-group label {
  color: #1e1e1e;
}
.hero__form--floating.hero__form--beds .book-form-control {
  border-color: #d1d5db;
}

@media (max-width: 980px) {
  .hero-form-bar {
    padding-bottom: 0.75rem;
  }
  .hero__form--floating {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero__form--floating.hero__form--beds .book-form-inline {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .hero__form--floating.hero__form--beds .book-form-group {
    width: 100%;
    flex: 1 1 160px;
  }
}
@media (min-width: 769px) {
  div#ui-datepicker-div.float {
    top: auto !important;
    bottom: 4.2rem;
  }
}/*# sourceMappingURL=main.css.map */