@charset "UTF-8";
.note-wrap {
  background-color: #fff;
}

/* ================================================
   lookUp View More ボタン
================================================ */
.lookUp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 320px;
  height: 54px;
  margin-top: 2.5em;
  background: linear-gradient(180deg, #d1b084 0%, #b3946a 100%);
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 0.05em;
}
.lookUp-btn__arrow {
  position: absolute;
  right: 1.2em;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}
@media screen and (max-width: 767px) {
  .lookUp-btn {
    width: 80%;
    margin-inline: auto;
    height: 46px;
    font-size: 18px;
    margin-bottom: 36px;
  }
}

.tower {
  position: relative;
}
.tower h3 {
  position: absolute;
  color: #fff;
  top: 30px;
  left: 0;
  right: 0;
  padding: 0 20px;
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tower h3 {
    top: 20px;
    font-size: 20px;
    text-shadow: 0px 0px 5px #000;
  }
}

/* ================================================
   NAV PARALLAX
   背景画像: position:fixed（完全画面固定）
   セクション切り替え: opacity クロスフェード
================================================ */
#nav-parallax{
  margin-top: 0;
}
.p-home > section:not(.nav-parallax),
.note-wrap, .footer {
  position: relative;
  z-index: 3;
}

.nav-parallax {
  position: relative;
}
@media screen and (max-width: 767px) {
  .nav-parallax {
    margin-top: 6rem;
  }
}
.nav-parallax__bg {
  position: fixed;
  top: -10%; /* 上下に拡張してパララックスの端を隠す */
  left: 0;
  right: 0;
  bottom: -10%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: -2;
  will-change: transform, opacity;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .nav-parallax__bg {
    display: none;
  }
}
.nav-parallax__bg--horizontal {
  top: 0;
  bottom: 0;
  left: -10%;
  right: -10%;
  background-position: center bottom;
}
.nav-parallax__captions {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .nav-parallax__captions {
    display: none;
  }
}
.nav-parallax__caption {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  line-height: 1.6;
}
.nav-parallax__panel {
  position: relative;
  height: 150vh;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .nav-parallax__panel {
    height: auto;
  }
}
.nav-parallax__panel-photo {
  display: none;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .nav-parallax__panel-photo {
    display: block;
    position: relative;
    width: 100%;
    height: 65vw;
    overflow: hidden;
  }
}
.nav-parallax__panel-photo-inner {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .nav-parallax__panel[data-index="1"] .nav-parallax__panel-photo-inner {
    top: 0;
    bottom: 0;
    left: -10%;
    right: -10%;
  }
}
.nav-parallax__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  z-index: 1;
}
.nav-parallax__content--right {
  right: 9.5%;
  left: auto;
}
.nav-parallax__content--left {
  left: 9.5%;
  right: auto;
}
@media screen and (max-width: 767px) {
  .nav-parallax__content {
    position: relative;
    width: 100%;
    background: #EEE6DA;
    padding: 3rem 2rem 4rem;
    margin: 0 auto;
    left: auto !important;
    right: auto !important;
    top: auto;
    bottom: auto;
    transform: none;
  }
}
.nav-parallax__content-body {
  background: #EEE6DA;
  padding: 5rem 5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .nav-parallax__content-body {
    padding: 0;
  }
}
.nav-parallax__en {
  font-family: "Baskervville", serif;
  font-size: 32px;
  color: #BCA27B;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .nav-parallax__en {
    font-size: 22px;
  }
}
.nav-parallax__jp {
  font-size: 26px;
  color: #563622;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .nav-parallax__jp {
    font-size: 18px;
  }
}
.nav-parallax__desc {
  font-size: 20px;
  color: #563622;
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .nav-parallax__desc {
    font-size: 13px;
    line-height: 1.8;
  }
}
.nav-parallax__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 54px;
  background: #CCB087;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 0.05em;
  transition: all 0.25s;
}
@media screen and (max-width: 767px) {
  .nav-parallax__btn {
    height: 46px;
    font-size: 18px;
  }
}
.nav-parallax__arrow {
  position: absolute;
  right: 1.2em;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}
