@charset "UTF-8";
/* -------------------------------
//. header: ヘッダー
------------------------------- */
.l-header {
  width: 100%;
  height: 100px;
}
@media (max-width: 1280px) {
  .l-header {
    height: 88px;
  }
}
.l-header__inner {
  background-color: #101820;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
}
@media (max-width: 1280px) {
  .l-header__inner {
    justify-content: space-between;
    padding-right: 15px;
    padding-left: 15px;
    height: 88px;
  }
}

.l-header-logo {
  width: 230px;
}
.l-header-logo__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1280px) {
  .l-header-logo__link {
    gap: 4px;
  }
}
.l-header-logo__svg {
  margin-top: 8px;
  width: 200px;
}
@media (max-width: 1280px) {
  .l-header-logo__svg {
    width: 180px;
  }
}
.l-header-logo__hotel {
  color: #fff;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}
@media (max-width: 1280px) {
  .l-header-logo__hotel {
    font-size: 12px;
  }
}

.l-header-nav {
  font-size: 14px;
  width: calc(100% - 332px);
}
@media (max-width: 1280px) {
  .l-header-nav {
    background-color: #101820;
    margin-top: 88px;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
    width: 100%;
    height: calc(100% - 88px);
    z-index: -1;
  }
  .l-header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.l-header-nav__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-header-nav__item {
  cursor: pointer;
  display: block;
  position: relative;
}
@media (max-width: 1280px) {
  .l-header-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }
}
.l-header-nav__item--reserve {
  text-align: center;
  transition: opacity 0.3s;
  width: 120px;
}
.l-header-nav__item--reserve:hover {
  opacity: 0.9;
}
.l-header-nav__item--reserve .l-header-nav__link::after {
  content: none;
}
@media (max-width: 1280px) {
  .l-header-nav__item--reserve {
    width: 50%;
  }
}
.l-header-nav__item--reserve-01 {
  background-color: #ad9a77;
  margin-left: auto;
}
@media (max-width: 1280px) {
  .l-header-nav__item--reserve-01 {
    order: -2;
  }
}
.l-header-nav__item--reserve-02 {
  background-color: var(--accent-color);
}
@media (max-width: 1280px) {
  .l-header-nav__item--reserve-02 {
    order: -1;
  }
}
.l-header-nav__item--reserve-02 .l-header-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: inherit;
}
.l-header-nav__link {
  color: #fff;
  display: block;
  line-height: 100px;
  padding: 0 8px;
  position: relative;
  height: 100px;
}
@media (max-width: 1280px) {
  .l-header-nav__link {
    line-height: inherit;
    padding: 16px 10px;
    height: unset;
  }
}
.l-header-nav__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.5);
  transition: 0.3s;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.l-header-nav__link:hover {
  color: #fff;
}
.l-header-nav__link:hover::after {
  background-color: #333;
  transform: scale(1);
}
.l-header-nav__link i {
  margin-right: 4px;
}
.l-header-nav__link-parent {
  padding-right: 24px;
}
.l-header-nav__link-parent::before {
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 8px;
  transform: rotate(45deg);
  transition: 0.3s;
  width: 6px;
  height: 6px;
}
@media (max-width: 1280px) {
  .l-header-nav__link-parent::before {
    right: 24px;
  }
}
.l-header-nav__link-parent.active::before {
  top: calc(50% - 2px);
  transform: rotate(225deg);
}

.l-header-nav-sub {
  background-color: #1d252b;
  position: fixed;
  top: 0;
  right: -400px;
  transition: 0.6s;
  width: 350px;
  height: 100vh;
}
.l-header-nav-sub.active {
  right: 0;
}
@media (max-width: 1280px) {
  .l-header-nav-sub {
    background-color: unset;
    position: static;
    width: 100%;
    height: auto;
  }
}
.l-header-nav-sub__inner {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  width: 100%;
}
@media (max-width: 1280px) {
  .l-header-nav-sub__inner {
    margin-top: unset;
  }
}
.l-header-nav-sub .l-header-nav__link {
  line-height: inherit;
  padding: 16px 24px;
  height: inherit;
}
@media (max-width: 1280px) {
  .l-header-nav-sub .l-header-nav__link {
    padding: 16px 10px;
  }
}
.l-header-nav-sub .l-header-nav__link-parent::before {
  right: 24px;
}
.l-header-nav-sub .l-header-nav-dropdown {
  background-color: inherit;
  box-sizing: border-box;
  padding-left: 24px;
  top: 100%;
  width: 100%;
}
.l-header-nav-sub .l-header-nav-dropdown .l-header-nav-dropdown__link::after {
  margin-left: -24px;
  width: calc(100% + 24px);
}
@media (max-width: 768px) {
  .l-header-nav-sub .l-header-nav-dropdown .l-header-nav-dropdown__link::after {
    margin-left: unset;
    width: 100%;
  }
}

.js-dropdown-menu, .js-dropdown-menu-child {
  display: none;
}

.l-header-nav-dropdown {
  background-color: #101820;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 1;
}
@media (max-width: 1280px) {
  .l-header-nav-dropdown {
    box-sizing: border-box;
    padding-left: 16px;
    position: static;
  }
}
.l-header-nav-dropdown__link {
  color: #fff;
  cursor: pointer;
  display: block;
  padding: 12px 12px 12px 24px;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 1280px) {
  .l-header-nav-dropdown__link {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.l-header-nav-dropdown__link::before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 8px;
  transform: rotate(45deg);
  transition: 0.3s;
  width: 6px;
  height: 6px;
}
.l-header-nav-dropdown__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.5);
  transition: 0.3s;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.l-header-nav-dropdown__link:hover {
  color: #fff;
}
.l-header-nav-dropdown__link:hover::after {
  background-color: #333;
  transform: scale(1);
}
.l-header-nav-dropdown__link.active::before {
  transform: rotate(135deg);
}
.l-header-nav-dropdown__inner {
  padding-left: 16px;
}
@media (max-width: 1280px) {
  .l-header-nav-dropdown__inner {
    padding-left: 0;
  }
}
.l-header-nav-dropdown__inner .l-header-nav-dropdown {
  position: static;
}
.l-header-nav-dropdown__inner .l-header-nav-dropdown__link::after {
  margin-left: -16px;
  width: calc(100% + 16px);
}
@media (max-width: 768px) {
  .l-header-nav-dropdown__inner .l-header-nav-dropdown__link::after {
    margin-left: unset;
    width: 100%;
  }
}

.l-header-btn {
  background-color: transparent;
  border: 10px solid transparent;
  cursor: pointer;
  display: block;
  outline: none;
  padding: 8px;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.32s ease-out;
  width: 60px;
  height: 60px;
}
@media (max-width: 1280px) {
  .l-header-btn {
    top: 14px;
    right: 12px;
  }
}
.l-header-btn__line {
  background-color: #fff;
  position: absolute;
  left: 9px;
  transition: 0.32s;
  width: 22px;
  height: 2px;
}
.l-header-btn__line:nth-of-type(1) {
  top: 10px;
}
.l-header-btn__line:nth-of-type(2) {
  top: 19px;
}
.l-header-btn__line:nth-of-type(3) {
  bottom: 10px;
}
.l-header-btn.active .l-header-btn__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.l-header-btn.active .l-header-btn__line:nth-of-type(2) {
  opacity: 0;
  left: 50%;
}
.l-header-btn.active .l-header-btn__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

@media (max-width: 1280px) {
  body.is-fixed {
    height: 100%;
    overflow: hidden;
  }
}

.l-header-reservation {
  background-color: #121212;
  box-sizing: border-box;
  color: #fff;
  padding: 30px 30px 60px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.3s;
  width: 100%;
  z-index: 100;
}
@media (max-width: 1280px) {
  .l-header-reservation {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.l-header-reservation.active {
  transform: none;
}
.l-header-reservation #search-box-root {
  margin: auto;
  max-width: 1160px;
}
.l-header-reservation__close {
  cursor: pointer;
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
}
@media (max-width: 1280px) {
  .l-header-reservation__close {
    right: 10px;
    bottom: 10px;
  }
}
.l-header-reservation__close::before, .l-header-reservation__close::after {
  content: "";
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
.l-header-reservation__close::before {
  transform: rotate(45deg);
}
.l-header-reservation__close::after {
  transform: rotate(-45deg);
}

/* -------------------------------
//. footer: フッター
------------------------------- */
.l-footer {
  background-color: #101820;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  min-width: unset;
  padding: 60px 80px 100px;
  width: 100%;
}
@media (max-width: 1280px) {
  .l-footer {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 768px) {
  .l-footer {
    font-size: 13px;
    padding: 45px 30px 55px;
  }
}
.l-footer__inner {
  margin: auto;
  max-width: 1160px;
  width: 100%;
}
.l-footer__copyright {
  font-size: 12px;
  margin-top: 80px;
  opacity: 0.24;
  text-align: center;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    font-size: 10px;
    margin-top: 44px;
  }
}
.l-footer--hotel {
  padding-top: 36px;
}

.l-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 32px;
  margin-bottom: 64px;
  width: 100%;
}
@media (max-width: 1280px) {
  .l-footer-nav {
    justify-content: start;
    gap: 15px 8px;
  }
}
@media (max-width: 768px) {
  .l-footer-nav {
    gap: 8px;
    margin-bottom: 48px;
  }
}
@media (max-width: 1280px) {
  .l-footer-nav__item {
    width: calc((100% - 16px) / 3);
  }
}
@media (max-width: 768px) {
  .l-footer-nav__item {
    width: calc((100% - 8px) / 2);
  }
}
.l-footer-nav__item--wrap {
  width: 100%;
}
@media (max-width: 1280px) {
  .l-footer-nav__item--wrap {
    display: none;
  }
}
.l-footer-nav__link {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
.l-footer-nav__link:hover {
  color: #fff;
  text-decoration: underline;
}

.l-footer-ttl01 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  display: block;
  padding: 15px 0;
  width: 100%;
}

.l-footer-hotels {
  margin-bottom: 80px;
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer-hotels {
    margin-bottom: 48px;
  }
}
.l-footer-hotels__inner {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  padding: 0 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer-hotels__inner {
    gap: 40px 16px;
    padding: 0 8px;
  }
}
@media (max-width: 480px) {
  .l-footer-hotels__inner {
    gap: 16px;
    padding: 0 8px;
  }
}

@media (max-width: 768px) {
  .l-footer-area {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 480px) {
  .l-footer-area {
    width: 100%;
  }
}
.l-footer-area__ttl {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 12px 0;
}
@media (max-width: 768px) {
  .l-footer-area__ttl {
    font-size: 13px;
  }
}

.l-footer-area-list {
  font-size: 13px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .l-footer-area-list {
    font-size: 12px;
  }
}
.l-footer-area-list__item {
  margin-bottom: 10px;
  padding-left: 12px;
  position: relative;
}
.l-footer-area-list__item::before {
  content: "";
  border-top: 1px solid #a19bad;
  border-right: 1px solid #a19bad;
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
}
.l-footer-area-list__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
}
.l-footer-area-list__link:hover {
  color: #fff;
  text-decoration: underline;
}

.l-footer-relation {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .l-footer-relation {
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .l-footer-banner__inner {
    margin: auto;
    width: 238px;
  }
}
.l-footer-banner__arrow {
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: calc(50% - 30px);
  transition: 0.3s;
  width: 40px;
  height: 40px;
}
.l-footer-banner__arrow::before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  position: absolute;
  top: 11px;
  transition: 0.3s;
  width: 16px;
  height: 16px;
}
.l-footer-banner__arrow--prev {
  left: -40px;
}
.l-footer-banner__arrow--prev::before {
  left: 15px;
  transform: rotate(-135deg);
}
.l-footer-banner__arrow--next {
  right: -40px;
}
.l-footer-banner__arrow--next::before {
  right: 15px;
  transform: rotate(45deg);
}
.l-footer-banner__arrow:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.l-footer-banner__arrow:hover::before {
  border-color: #252525;
}
.l-footer-banner__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.l-footer-banner__dots li {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  width: 10px;
  height: 10px;
}
.l-footer-banner__dots li button {
  display: none;
}
.l-footer-banner__dots li.slick-active {
  background-color: #fff;
}

.l-footer-banner-item {
  padding: 0 6px;
  width: 238px;
}
@media (max-width: 768px) {
  .l-footer-banner-item {
    padding: 0;
  }
}
.l-footer-banner-item img {
  max-width: 100%;
  height: auto;
}

/* -------------------------------
//. 小物
------------------------------- */
@media (max-width: 640px) {
  .c-br-pc {
    display: none;
  }
}

.c-br-sp {
  display: none;
}
@media (max-width: 640px) {
  .c-br-sp {
    display: block;
  }
}

.c-br-sp-480 {
  display: none;
}
@media (max-width: 480px) {
  .c-br-sp-480 {
    display: block;
  }
}

@media (max-width: 1024px) {
  .c-br-1024 {
    display: none;
  }
}

@media (max-width: 768px) {
  .c-br-768 {
    display: none;
  }
}

@media (max-width: 480px) {
  .c-br-480 {
    display: none;
  }
}

/* -------------------------------
//. トップへ戻る
------------------------------- */
.c-page-top {
  background-color: #686869;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 15px;
  bottom: 15px;
  transition: background-color 0.3s;
  width: 46px;
  height: 46px;
  z-index: 90;
}
.c-page-top:hover {
  background-color: #8e7f64;
}
.c-page-top__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.c-page-top__link::before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 6px);
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
}

/* -------------------------------
//. 見出し
------------------------------- */
/* -------------------------------
//. ボタン
------------------------------- */
/* -------------------------------
//. リスト
------------------------------- */
/* -------------------------------
//. テーブル
------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
}