@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  color: #FFF;
  background-color: RGBA(0, 0, 0, 0.6);
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px 0 40px;
}

.logo {
  opacity: 1;
  visibility: visible;
  max-width: 80px;
}

.logo.hidden {
  opacity: 0;
  visibility: hidden;
}

.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 16px;
  z-index: 100;
}

.hamburger span {
  display: block;
  margin-left: auto;
  height: 1px;
  background-color: #FFF;
  transition: 0.5s;
}

.hamburger span:first-of-type {
  width: 80px;
}

.hamburger span:nth-of-type(2) {
  width: 56px;
}

.hamburger span:last-of-type {
  width: 28px;
}

.hamburger.open span:first-of-type {
  transform: rotate(45deg) translate(5px, 13px);
  width: 42px;
}

.hamburger.open span:nth-of-type(2) {
  transform: translateX(65px) scale(0);
}

.hamburger.open span:last-of-type {
  transform: rotate(-45deg) translate(5px, -14px);
  width: 42px;
}

.menu-text {
  font-size: 11px;
  color: #FFF;
  padding-right: 10px;
  text-align: right;
  position: relative;
  z-index: 100;
}

.header-menu {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.5s;
}

.header-menu.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.header-menu__img {
  width: 50%;
}

.header-menu__img img {
  object-fit: cover;
}

.header-menu__inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-menu__logo {
  max-width: 100px;
  margin-top: 50px;
  margin-bottom: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  max-width: 350px;
  width: 100%;
  margin-bottom: 60px;
}

.nav__item {
  font-size: 14px;
  margin-bottom: 30px;
}

.nav__item:last-child {
  margin-bottom: 0;
}

.contact__inner {
  font-size: 14px;
  margin-bottom: 44px;
}

.teams {
  font-size: 14px;
  margin-bottom: 30px;
}

.privacy {
  font-size: 14px;
}

.contact__tel,
.contact__mail {
  display: block;
}

.reservation {
  display: block;
  width: 100%;
  max-width: 350px;
  height: 60px;
  border: solid 1px #FFF;
  font-size: 14px;
  line-height: 60px;
  text-align: center;
}

.video-wrap {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -3;
}

.video-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -2;
  transition: background-color 0.5s;
}

.video-mask.dark {
  background-color: rgba(0, 0, 0, 0.6);
}

.space {
  height: 960px;
}

.concept {
  margin: 150px auto 240px;
  max-width: 1140px;
  display: flex;
  gap: 110px;
  padding-inline: 20px;
}

.concept__img {
  max-width: 500px;
}

.concept__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section__title {
  font-family: 'Times', sans-serif;
  font-size: 42px;
  line-height: 58.8px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

.concept__title {
  margin-bottom: 40px;
}

.section__text {
  font-size: 14px;
}

.concept__text {
  font-size: 14px;
  line-height: 28px;
  padding-right: 14px;
  max-width: 490px;
}

.stay {
  display: flex;
  align-items: flex-start;
  margin-bottom: 240px;
}

.stay__text,
.stay__img {
  width: 50%;
}

.stay__text {
  position: sticky;
  top: 40px;
}

.stay__text-inner {
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 60px;
  padding-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stay__title {
  margin-bottom: 10px;
}

.room {
  display: flex;
  gap: 39px;
  padding: 40px 0;
  border-bottom: dotted 1px #FFF;
}

.room:last-child {
  border-bottom: none;
}

.room__title {
  font-family: 'Times', sans-serif;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 15px;
}

.room__text {
  max-width: 294px;
  font-size: 14px;
  line-height: 25.2px;
}

.room__information-list {
  padding-right: 18px;
}

.room__information-item {
  font-size: 14px;
  line-height: 25.2px;
}

.stay__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-left: 38.6px;
  padding-right: 41.4px;
}

.stay-img__title {
  font-family: 'Times', sans-serif;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
  padding: 15px 0;
  border-top: solid 1px #FFF;
  border-bottom: solid 1px #FFF;
}

.stay-img__image {
  max-width: 500px;
  margin-bottom: 30px;
}

.stay-img__image:last-child {
  margin-bottom: 90px;
}

.stay-img__inner:last-child .stay-img__image:last-child {
  margin-bottom: 0;
}

.restaurant {
  max-width: 1600px;
  margin: 0 auto 260px;
}

.restaurant__section-title {
  margin-bottom: 80px;
  text-align: center;
}

.restaurant__inner {
  display: flex;
}

.restaurant__inner:nth-child(odd) {
  flex-direction: row-reverse;
}

.restaurant__image,
.restaurant__text-box {
  width: 50%;
}

.restaurant__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  padding-right: 24px;
  max-width: 624px;
}

.restaurant__inner:nth-child(odd) .restaurant__text-box {
  padding-left: 20px;
  padding-right: 40px;
}

.restaurant__title {
  font-family: 'Times', sans-serif;
  font-size: 28px;
  margin-bottom: 40px;
}

.restaurant__text {
  font-size: 14px;
  line-height: 25.2px;
}

.restaurant__note {
  display: none;
}

.bar {
  margin-bottom: 120px;
}

.restaurant-grid__list {
  display: grid;
  gap: 20px;
  max-width: 1240px;
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  margin: 0 auto;
  padding-inline: 20px;
}

.grid-large {
  grid-row: span 4;
}

.grid-middle {
  grid-row: span 3;
}

.grid-small {
  grid-row: span 2;
}

.restaurant-grid__item {
  width: 100%;
}

.access {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 240px;
  gap: 140px;
}

.access__inner {
  max-width: 485px;
  padding-left: 20px;
}

.access__title {
  text-align: center;
  margin-bottom: 40px;
}

.access__address,
.access__tel,
.access__text {
  font-size: 14px;
  line-height: 22.4px;
}

.access__tel {
  display: block;
  margin-bottom: 40px;
}

.access__title-sub {
  font-size: 18px;
  line-height: 28.8px;
  margin-bottom: 10px;
}

.mb40 {
  margin-bottom: 40px;
}

.map {
  width: calc(895 / 1800 * 100%);
  height: 500px;
}

footer {
  padding-inline: 20px;
}

.footer__logo {
  max-width: 150px;
  text-align: center;
  margin: 0 auto 80px;
}

.btn {
  display: block;
  max-width: 360px;
  width: 100%;
  height: 60px;
  font-size: 14px;
  line-height: 60px;
  text-align: center;
  margin: 0 auto 240px;
  border: solid 1px #FFF;
}

small {
  display: block;
  font-size: 12px;
  text-align: center;
  margin: 0 auto 160px;
}

.news {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 600px;
  padding: 20px 69px 20px 30px;
  max-height: calc((22.4px * 2) + (20px * 1.15));
  overflow-y: scroll;
  transition: max-height 0.5s;
}

.news.is-open {
  max-height: calc((22.4px * 16) + (20px * 3));
}

.news__date {
  font-size: 14px;
  line-height: 22.4px;
  float: left;
  clear: both;
  margin-top: 20px;
}

.news__text {
  font-size: 14px;
  line-height: 22.4px;
  margin-left: 98px;
  margin-top: 20px;
}

.news__date:first-of-type,
.news__text:first-of-type {
  margin-top: 0;
}

.toggle-btn {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 16.5px;
  right: 40px;
  border-top: solid 2px #FFF;
  border-left: solid 2px #FFF;
  transform: rotate(45deg);
  transition: 0.5s;
}

.news.is-open .toggle-btn {
  transform: rotate(225deg);
}

@media screen and (max-width: 1024px) {

  .space {
    height: 546px;
  }

  .concept {
    gap: 43px;
    margin-bottom: 222px;
  }

  .concept__img {
    max-width: 484px;
  }

  .concept__text {
    max-width: 392px;
  }

  .stay__text-inner {
    padding: 70px 30px 30px;
  }

  .stay__title {
    margin-bottom: 0;
  }

  .room__text {
    max-width: 224px;
  }

  .restaurant-grid__list {
    grid-template-rows: repeat(12, auto);
  }

  .access {
    gap: 63px;
  }

  .access__inner {
    max-width: 369px;
    padding-left: 20px;
  }

  .access__title {
    text-align: right;
    padding-right: 37px;
  }

  .map {
    width: calc(592 / 1024 * 100%);
    height: 500px;
  }

}

@media screen and (max-width: 768px) {

  .logo {
    max-width: 60px;
  }

  .header__inner {
    padding: 20px 20px 0 20px;
  }

  .header-menu__inner {
    padding-inline: 20px;
    overflow-y: scroll;
    padding-bottom: 20px;
  }

  .nav-container {
    flex-direction: column;
    max-width: 100%;
  }

  .nav__item:last-child {
    margin-bottom: 30px;
  }

  .concept {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 80px;
  }

  .concept__text {
    padding-right: 14px;
    max-width: none;
  }

  .concept__img {
    max-width: none;
    padding-inline: 41px;
  }

  .section__title {
    font-size: 32px;
    line-height: 44.8px;
  }

  .stay {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .stay__text-inner {
    padding-inline: 20px;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .stay__text,
  .stay__img {
    width: 100%;
  }

  .stay__text {
    position: relative;
    top: 0;
  }

  .room {
    flex-direction: column;
    gap: 20px;
  }

  .room__text {
    max-width: none;
    padding-right: 14px;
  }

  .stay__img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stay-img__image {
    max-width: none;
    margin-bottom: 20px;
  }

  .stay-img__image:last-child {
    margin-bottom: 80px;
  }

  .restaurant {
    max-width: none;
    padding-inline: 20px;
    margin: 0 auto 80px;
  }

  .restaurant__section-title {
    margin-bottom: 40px;
  }

  .restaurant__inner {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }

  .restaurant__inner:nth-child(odd) {
    flex-direction: column-reverse;
  }

  .restaurant__image,
  .restaurant__text-box {
    width: 100%;
  }

  .restaurant__text-box {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    margin-bottom: 20px;
  }

  .restaurant__inner:nth-child(odd) .restaurant__text-box {
    padding-left: 0;
    padding-right: 0;
  }

  .restaurant__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .bar {
    margin-bottom: 80px;
  }

  .restaurant__note {
    display: block;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .restaurant-grid__list {
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .grid-large {
    grid-row: auto;
  }

  .grid-middle {
    grid-row: auto;
  }

  .grid-small {
    grid-row: auto;
  }

  .access {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    gap: 40px;
  }

  .access__inner {
    max-width: none;
    padding-inline: 20px;
  }

  .access__title {
    text-align: center;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .map {
    width: 100%;
    height: 400px;
  }

  .footer__logo {
    max-width: 100px;
    margin: 0 auto 40px;
  }

  .btn {
    margin: 0 auto 100px;
  }


  small {
    margin: 0 auto 100px;
  }

  .news {
    max-width: 100%;
    padding: 10px 69px 10px 20px;
    max-height: calc((22.4px * 2.5));
  }

  .news__date {
    float: none;
    clear: both;
    margin-top: 10px;
  }

  .news__text {
    margin-left: 0;
    margin-top: 10px;
  }

}