@charset "UTF-8";
:root {
  --font-family-zen: "Zen Kaku Gothic New", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --font-family-cormorant: "Cormorant Garamond", serif;
  --color-primary: #393a41;
  --color-secondary: #b65a5c;
  --color-white: #ffffff;
  --color-pink: #b65a5c;
  --color-blue: #788fff;
  --color-beige: #e6dfbe;
}

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

html {
  font-size: 16px;
}

body {
  background: #fff;
  font-family: var(--font-family-zen);
  color: #393a41;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

li {
  list-style: none;
}

/* ==============================
      View More ボタン（共通）
============================== */
.btn-view-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 152px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ffffff;
  text-decoration: none;
}
.btn-view-more .btn-view-more__text {
  font-family: var(--font-family-zen);
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1.7px;
  line-height: 1;
}
.btn-view-more .btn-view-more__arrow {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #fff;
  position: relative;
}
.btn-view-more .btn-view-more__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 1px;
  background-color: #ffffff;
  transform: rotate(-35deg);
  transform-origin: right center;
}
.btn-view-more .btn-view-more__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 1px;
  background-color: #ffffff;
  transform: rotate(35deg);
  transform-origin: right center;
}

.btn-view-more--pink {
  border-bottom: 1px solid var(--color-secondary);
}
.btn-view-more--pink .btn-view-more__text {
  color: var(--color-secondary);
}
.btn-view-more--pink .btn-view-more__arrow {
  background-color: var(--color-secondary);
}
.btn-view-more--pink .btn-view-more__arrow::before, .btn-view-more--pink .btn-view-more__arrow::after {
  background-color: var(--color-secondary);
}

/* ==============================
      ヘッダー
============================== */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 12px 32px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 0.5s ease;
}
header.scroll {
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
}
header .logo {
  display: block;
  width: 6vw;
}
header .logo img {
  width: 100%;
}
header nav {
  width: 57vw;
}
header nav ul {
  display: flex;
  justify-content: space-between;
}
header nav ul li {
  display: flex;
}
header nav ul li a {
  font-size: 1.1vw;
}
header .aside-menu {
  width: 24vw;
  display: flex;
  justify-content: space-between;
}
header .aside-menu .button {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .aside-menu .button a {
  font-size: 1.1vw;
  display: flex;
}
header .aside-menu .button a img {
  width: 100%;
}
header .aside-menu .button--tell {
  width: 45%;
  margin-right: 16px;
}
header .aside-menu .button--tell a {
  letter-spacing: 1.28px;
}
header .aside-menu .button--book {
  margin-right: 26px;
}
header .aside-menu .button--book a {
  color: #fff;
  letter-spacing: 1.2px;
}
header .aside-menu .toggle-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}
header .aside-menu .toggle-menu .line {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease;
}
header .aside-menu .toggle-menu::before, header .aside-menu .toggle-menu::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* ==============================
      空室検索・予約
============================== */
.search {
  width: 90%;
  max-width: 1280px;
  margin: -1.2% auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 「空室検索・予約」ラベル */
}
.search .search__label {
  flex: 1 0 0;
  min-width: 125px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #393a41;
  text-align: center;
  letter-spacing: 1.6px;
}
.search {
  /* 入力エリア全体 */
}
.search .search__body {
  display: flex;
  gap: 52px;
  align-items: flex-end;
  flex-shrink: 0;
  /* チェックイン/アウト */
}
.search .search__body .search__dates {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.search .search__body .search__dates .search__date-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search .search__body .search__dates .search__date-group label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #393a41;
  letter-spacing: 0;
}
.search .search__body .search__dates .search__date-group .search__date-box {
  border: 1px solid #b65a5c;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  gap: 4px;
  cursor: pointer;
}
.search .search__body .search__dates .search__date-group .search__date-box .date-piece {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 15px;
}
.search .search__body .search__dates .search__date-group .search__date-box .date-piece .date-piece__num {
  font-family: "Roboto", sans-serif;
  font-size: 11.36px;
  letter-spacing: 1.136px;
  line-height: 1.1;
  color: #393a41;
}
.search .search__body .search__dates .search__date-group .search__date-box .date-piece .date-piece__unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.1;
  color: #393a41;
}
.search .search__body .search__dates .search__date-group .search__date-box .date-piece .date-piece__unit--year {
  font-size: 11.36px;
  letter-spacing: 1.136px;
}
.search .search__body .search__dates .search__date-group .search__date-box .date-piece .date-piece__unit--md {
  font-size: 10.67px;
  letter-spacing: 1.067px;
}
.search .search__body .search__dates .search__date-group .search__date-box .date-piece .date-piece__weekday {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10.49px;
  letter-spacing: 1.049px;
  color: #393a41;
  line-height: 1.1;
}
.search .search__body .search__dates .search__date-group .search__date-box .date-piece .date-piece__weekday-circle {
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 13.29px;
  letter-spacing: 1.329px;
  color: #393a41;
  line-height: 1.1;
}
.search .search__body .search__dates {
  /* チルダ */
}
.search .search__body .search__dates .search__tilde {
  height: 32px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #393a41;
  flex-shrink: 0;
  overflow: hidden;
}
.search .search__body {
  /* 人数 */
}
.search .search__body .search__guests {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
}
.search .search__body .search__guests .search__guests-title {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #393a41;
  width: 100%;
}
.search .search__body .search__guests .search__guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search .search__body .search__guests .search__guests-row .guest {
  display: flex;
  align-items: center;
  gap: 6px;
}
.search .search__body .search__guests .search__guests-row .guest .guest__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13.33px;
  color: #393a41;
  line-height: normal;
}
.search .search__body .search__guests .search__guests-row .guest .guest__select {
  border: 1px solid #b65a5c;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 9px 16px;
  gap: 8px;
  cursor: pointer;
}
.search .search__body .search__guests .search__guests-row .guest .guest__select .guest__select-num {
  font-family: "Roboto", sans-serif;
  font-size: 11.36px;
  letter-spacing: 1.136px;
  color: #393a41;
  line-height: 1.1;
}
.search .search__body .search__guests .search__guests-row .guest .guest__select .guest__arrow {
  width: 9px;
  height: 4.5px;
  position: relative;
}
.search .search__body .search__guests .search__guests-row .guest .guest__select .guest__arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 4.5px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.search .search__body .search__guests .search__guests-row .guest .guest__unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13.33px;
  color: #393a41;
  line-height: normal;
}
.search {
  /* 検索ボタン */
}
.search .search__btn {
  background: #b65a5c;
  border-radius: 10px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.search .search__btn span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 6.4px;
  line-height: 1.7;
}

/* ==============================
      フッター
============================== */
.footer {
  position: relative;
  z-index: 1;
  background-color: #e6dfbe;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  /* ==============================
        BOOK ROOM セクション
  ============================== */
}
.footer #book-room {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 264px;
  overflow: hidden;
  background-image: url(../images/book-bg.jpg);
  background-size: cover;
  background-position: center;
}
.footer #book-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(129deg, rgba(166, 119, 79, 0.5) 16%, rgba(8, 6, 108, 0.5) 95%);
}
.footer #book-room .book-room__title {
  position: relative;
  font-family: var(--font-family-cormorant);
  font-size: 80px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
}
.footer #book-room .search {
  position: relative;
  width: 90%;
  max-width: 1300px;
}
.footer .footer__main {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 64px 0 0;
}
.footer .footer__address {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 33%;
}
.footer .footer__address .footer__brand {
  font-family: var(--font-family-zen);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.5px;
  color: var(--color-primary);
}
.footer .footer__address .footer__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .footer__address .footer__address-text {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: var(--color-primary);
}
.footer .footer__address .footer__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.footer .footer__address .footer__links .footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: var(--color-primary);
  text-decoration: none;
}
.footer .footer__address .footer__links .footer__link .footer__new-window {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.footer .footer__hotel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 20%;
  min-width: 200px;
}
.footer .footer__cafe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 20%;
  min-width: 200px;
}
.footer .footer__logo {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer__tel {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.footer .footer__tel .footer__tel-label {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: var(--color-primary);
  width: 48px;
}
.footer .footer__tel .footer__tel-btn {
  flex: 1;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: 36px;
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 3.2px;
  color: var(--color-primary);
  text-decoration: none;
}
.footer .footer__nav {
  width: 100%;
  margin-top: 16px;
}
.footer .footer__nav ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
  height: 170px;
}
.footer .footer__nav ul a {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.28px;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
}
.footer .footer__cafe-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
  font-family: var(--font-family-zen);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.12px;
  color: var(--color-primary);
}
.footer .footer__bottom {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--color-primary);
}
.footer .footer__bottom .footer__privacy {
  font-family: var(--font-family-zen);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.12px;
  color: var(--color-primary);
  text-decoration: none;
}
.footer .footer__bottom .footer__copyright {
  font-family: var(--font-family-zen);
  color: var(--color-primary);
}
.footer .footer__bottom .footer__copyright span:first-child {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
}
.footer .footer__bottom .footer__copyright span:last-child {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 1.12px;
}

/* ==============================
      レスポンシブ（SP）
============================== */
@media (max-width: 768px) {
  /* ヘッダー */
  header {
    padding: 8px 12px;
  }
  header .logo {
    width: 80px;
  }
  header nav {
    display: none;
  }
  header .aside-menu {
    width: auto;
  }
  header .aside-menu .button--tell,
  header .aside-menu .button--book {
    display: none;
  }
  header .aside-menu .toggle-menu {
    width: 30px;
    height: 30px;
  }
  /* BOOK ROOM */
  .footer #book-room {
    height: auto;
    padding: 40px 16px;
  }
  .footer #book-room .book-room__title {
    font-size: 60px;
    margin-bottom: 8px;
    width: 100vw;
  }
  .footer #book-room .search {
    width: 100%;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  .footer #book-room .search .search__label {
    min-width: auto;
  }
  .footer #book-room .search .search__body {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .footer #book-room .search .search__body .search__dates {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .footer #book-room .search .search__body .search__dates .search__date-group {
    width: 100%;
  }
  .footer #book-room .search .search__body .search__dates .search__date-group .search__date-box {
    width: 100%;
  }
  .footer #book-room .search .search__body .search__dates .search__tilde {
    display: none;
  }
  .footer #book-room .search .search__body .search__guests {
    width: 100%;
  }
  .footer #book-room .search .search__btn {
    width: 100%;
  }
  /* フッター */
  .footer .footer__main {
    flex-direction: column;
    padding: 40px 24px 0;
    gap: 48px;
  }
  .footer .footer__address {
    width: 100%;
  }
  .footer .footer__address .footer__map {
    width: 100%;
    height: auto;
  }
  .footer .footer__hotel {
    width: 100%;
  }
  .footer .footer__cafe {
    width: 100%;
  }
  .footer .footer__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px 24px 20px;
  }
}/*# sourceMappingURL=common.css.map */