/* 背景スライダー */
.background-swiper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100%;
}

/* コンテンツエリア */
.content {
  width: 80%;
  height: 100vh;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content .left {
  width: 63%;
  max-width: 960px;
  height: 72vh;
  max-height: 720px;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
}

.menu {
  margin-bottom: 20px;
}
.menu button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

/* スライドごとのコンテンツエリア */
.text {
}
.text > div {
  display: none;
}
.text > div p {
  color: #eee9e6;
}
.text > div a {
  display: inline-block;
  font-size: 18px;
  color: #eee9e6;
  margin-bottom: 32px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid #eee9e6;
}
.text > div a:hover {
  opacity: 0.65;
}
.text > div.active {
  display: block;
}

.content .right {
  width: 36%;
  max-width: 560px;
  height: 72vh;
  max-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.progressbar {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 2px;
  background: rgba(238, 233, 230, 0.65);
  overflow: hidden;
}

.progressbar span {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(238, 233, 230, 1);
  transform: scaleX(0);
  transform-origin: left center;
  transition-timing-function: linear;
}

@media screen and (max-width: 1280px) {
  .content {
    width: 95%;
  }
  .content .left {
    width: 74%;
    height: 85vh;
  }
  .content .right {
    width: 25%;
    height: 85vh;
  }
}

@media screen and (max-width: 767px) {
  .content {
    width: 100%;
    padding: 0 32px;
  }

  .content .left {
    height: 85vh;
    padding-left: 0;
    justify-content: flex-end;
  }

  .content .left .text > div p {
    display: none;
  }

  .text > div a {
    margin-bottom: 64px;
  }

  .content .left .hotels {
    padding-left: 20px;
  }

  .content .right {
    height: 85vh;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .progressbar {
    display: none;
  }
}
