@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
}

* {
  color: #131313;
}

* {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

.l-header {
  width: 100%;
  height: 100svh;
  position: relative;
  background-color: #fdfdfd;
  /*スクロールダウン全体の場所*/
  /*Scrollテキストの描写*/
  /* 線の描写 */
  /*高さ・位置・透過が変化して線が上から下に動く*/
}
.l-header #slider {
  width: 100%;
  height: 100% !important;
}
.l-header .scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}
.l-header .scrolldown1 span {
  /*描画位置*/
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.l-header .scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.l-header__messages {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5em;
}
.l-header__messages--line {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.l-header__messages--line:last-of-type {
  justify-content: flex-end;
}
.l-header__messages--line span {
  pointer-events: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeUp 1.5s ease-out forwards;
  transform: translateY(2em);
  color: #fff;
  writing-mode: vertical-rl;
  text-shadow: -2px -2px 3px rgba(35, 35, 35, 0.3);
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.l-nav {
  width: 100vw;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  padding: 0 40px;
  transition: 0.5s;
}
@media (max-width: 767.8px) {
  .l-nav {
    height: 100px;
    padding: 0 20px;
  }
}
.l-nav.active {
  background-color: #fff;
}
.l-nav.active .l-nav--logo a img.white {
  display: none;
}
.l-nav.active .l-nav--logo a img.black {
  display: block;
}
.l-nav.active .openbtn {
  display: block;
}
.l-nav.active .openbtn span {
  background-color: #131313;
}
.l-nav--logo {
  height: 90%;
}
@media (max-width: 767.8px) {
  .l-nav--logo {
    height: 70px;
  }
}
.l-nav--logo a {
  display: block;
  height: 100%;
}
.l-nav--logo a img {
  transition: 0.5s;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  height: 100%;
}
.l-nav--logo a img.white {
  display: block;
}
.l-nav--logo a img.black {
  display: none;
}
.l-nav--links {
  display: flex;
  align-items: center;
  gap: 1em;
}
@media (max-width: 767.8px) {
  .l-nav--links {
    display: none;
  }
}
.l-nav--links .anchor {
  display: block;
}
.l-nav--links .anchor::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #CCAB09;
  position: absolute;
  inset: 110% auto auto 0;
  scale: 0 1;
  transition: 0.5s;
}
.l-nav--links a {
  color: #fff;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.2;
  transition: 0.5s;
  letter-spacing: 0.1em;
  position: relative;
}
.l-nav--links a:hover::before {
  scale: 1;
}
.l-nav--links .reserve-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #CCAB09;
  display: grid;
  place-items: center;
  border: 2px solid #CCAB09;
  transition: 0.5s;
}
.l-nav--links .reserve-btn:hover {
  color: #CCAB09;
  background-color: #fff;
}
.l-nav--links .reserve-btn:hover a {
  color: #CCAB09 !important;
}
.l-nav--links--sp {
  display: none;
}
.l-nav--links--sp.active {
  display: flex;
  width: 100%;
  height: calc(100lvh - 100px);
  position: fixed;
  inset: 100px auto 0 auto;
  background-color: #fff;
  z-index: 3;
  flex-direction: column;
  font-size: 2rem;
  padding-top: 50px;
}
.l-nav--links--sp a {
  color: #131313;
}
.l-nav--links--sp .reserve-btn {
  width: 200px;
  border-radius: 50px;
  height: 50px;
}
.l-nav.scrolled {
  background-color: #fff;
}
.l-nav.scrolled .white {
  display: none;
}
.l-nav.scrolled .black {
  display: block;
}
.l-nav.scrolled a {
  color: #131313;
}
.l-nav.scrolled .reserve-btn a {
  color: #fff;
}
@media (max-width: 767.8px) {
  .l-nav.scrolled .openbtn {
    display: block;
  }
}
.l-nav.scrolled .openbtn span {
  background-color: #131313;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  display: none;
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
  width: 100%;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
  width: 85%;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
  width: 70%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 80%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  transform: translateY(-6px) rotate(135deg);
  width: 80%;
}

.l-front-page {
  width: 100%;
  height: 100%;
  position: relative;
}
.l-front-page .first-content {
  margin: 80px auto 0;
  max-width: 1080px;
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1023.8px) {
  .l-front-page .first-content {
    width: 90%;
  }
}
@media (max-width: 767.8px) {
  .l-front-page .first-content {
    width: 80%;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    align-items: unset;
  }
}
.l-front-page .first-content .texts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767.8px) {
  .l-front-page .first-content .texts {
    display: contents;
  }
}
.l-front-page .first-content .texts h2 {
  text-align: left;
  font-size: 3rem;
}
.l-front-page .first-content .texts p {
  font-size: 1.5rem;
}
@media (max-width: 767.8px) {
  .l-front-page .first-content .texts p {
    order: 3;
  }
}
@media (max-width: 767.8px) {
  .l-front-page .first-content .map {
    margin: 0 auto;
    width: 50%;
  }
  .l-front-page .first-content .map img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.l-front-page .second-content {
  margin: 80px auto 0;
  background-color: rgb(10, 1, 1);
}
.l-front-page .second-content .main-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 90vh;
}
.l-front-page .second-content .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-front-page .second-content .main-img::after {
  position: absolute;
  inset: auto auto 0 0;
  content: "";
  width: 100%;
  height: 30%;
  background: rgb(10, 1, 1);
  background: linear-gradient(0deg, rgb(10, 1, 1) 0%, rgb(10, 1, 1) 60%, rgba(10, 1, 1, 0.4178046218) 80%, rgba(10, 1, 1, 0) 100%);
}
@media (max-width: 767.8px) {
  .l-front-page .second-content .main-img {
    margin-bottom: -300px;
  }
}
.l-front-page .second-content .bottom-contents {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1080px;
  margin: -300px auto 0;
  padding-bottom: 80px;
}
@media (min-width: 768px) and (max-width: 1023.8px) {
  .l-front-page .second-content .bottom-contents {
    width: 90%;
    gap: 2rem;
  }
}
@media (max-width: 767.8px) {
  .l-front-page .second-content .bottom-contents {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 2rem;
  }
}
.l-front-page .second-content .bottom-contents .sub-img {
  width: 100%;
}
@media (max-width: 767.8px) {
  .l-front-page .second-content .bottom-contents .sub-img {
    order: 2;
  }
}
.l-front-page .second-content .bottom-contents .sub-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-front-page .second-content .bottom-contents .texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767.8px) {
  .l-front-page .second-content .bottom-contents .texts {
    display: contents;
  }
}
.l-front-page .second-content .bottom-contents .texts h2, .l-front-page .second-content .bottom-contents .texts h3, .l-front-page .second-content .bottom-contents .texts p {
  color: #fff !important;
}
.l-front-page .second-content .bottom-contents .texts h2 {
  font-size: 3rem;
}
@media (max-width: 767.8px) {
  .l-front-page .second-content .bottom-contents .texts h2 {
    order: 1;
  }
}
.l-front-page .second-content .bottom-contents .texts h3 {
  line-height: 2;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 767.8px) {
  .l-front-page .second-content .bottom-contents .texts h3 {
    order: 3;
  }
}
.l-front-page .second-content .bottom-contents .texts p {
  font-size: 1.2rem;
}
@media (max-width: 767.8px) {
  .l-front-page .second-content .bottom-contents .texts p {
    order: 4;
  }
}
.l-front-page .third-content .main-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 90vh;
}
.l-front-page .third-content .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-front-page .third-content .main-img::after {
  position: absolute;
  inset: auto auto 0 0;
  content: "";
  width: 100%;
  height: 30%;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0.6839110644) 80%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .main-img {
    margin-bottom: -300px;
  }
}
.l-front-page .third-content .bottom-contents {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1080px;
  margin: -300px auto 0;
  padding-bottom: 80px;
}
@media (min-width: 768px) and (max-width: 1023.8px) {
  .l-front-page .third-content .bottom-contents {
    width: 90%;
    gap: 2rem;
  }
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .bottom-contents {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 2rem;
  }
}
.l-front-page .third-content .bottom-contents .sub-img {
  width: 100%;
}
.l-front-page .third-content .bottom-contents .sub-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .bottom-contents .sub-img {
    order: 2;
  }
}
.l-front-page .third-content .bottom-contents .texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .bottom-contents .texts {
    display: contents;
  }
}
.l-front-page .third-content .bottom-contents .texts h2 {
  font-size: 3rem;
  font-weight: 400;
  text-shadow: 1px 2px 10px rgba(255, 255, 255, 0.3);
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .bottom-contents .texts h2 {
    order: 1;
  }
}
.l-front-page .third-content .bottom-contents .texts h3 {
  line-height: 2;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .bottom-contents .texts h3 {
    order: 3;
  }
}
.l-front-page .third-content .bottom-contents .texts p {
  font-size: 1.2rem;
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .bottom-contents .texts p {
    order: 4;
  }
}
.l-front-page .third-content .floor-map {
  max-width: 1080px;
  margin: 80px auto;
  display: flex;
  gap: 2rem;
  align-items: baseline;
}
@media (min-width: 768px) and (max-width: 1023.8px) {
  .l-front-page .third-content .floor-map {
    width: 90%;
  }
}
@media (max-width: 767.8px) {
  .l-front-page .third-content .floor-map {
    width: 80%;
    flex-direction: column;
  }
}
.l-front-page .third-content .floor-map img {
  width: 100%;
}
.l-front-page .fourth-content h2 {
  display: block;
  max-width: 1080px;
  margin: 0 auto 50px;
  font-size: 3rem;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1023.8px) {
  .l-front-page .fourth-content h2 {
    width: 90%;
  }
}
@media (max-width: 767.8px) {
  .l-front-page .fourth-content h2 {
    width: 80%;
  }
}
.l-front-page .fourth-content iframe {
  filter: grayscale(100%);
}
.l-front-page .fourth-content a {
  text-align: center;
  display: block;
  font-size: 1.3rem;
}

.l-footer {
  margin-top: 50px;
  width: 100%;
  background-color: #808080;
  text-align: center;
}
.l-footer small {
  color: #fff;
}

.autoplay-slick {
  position: relative;
}
.autoplay-slick .slick-item {
  aspect-ratio: 16/9;
}
.autoplay-slick .slick-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: #333; /*伸びる背景色の設定*/
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*左に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: #333; /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767.8px) {
  html {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */