@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(28px, 4.2rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.common__ttl--wt,
.common__ttl--wt span {
  color: var(--white);
}

.spa .common__ttl span {
  text-transform: none;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(40px, 6.4rem);
  height: max(35.6px, 5.7rem);
}

.common__btn {
  width: max(200px, 35.5rem);
  height: max(50px, 7.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #2d0a05;
  position: absolute;
  top: max(5px, 1rem);
  left: max(4px, 0.6rem);
  pointer-events: none;
  z-index: -1;
}

.common__btn--wt::before {
  border: solid 1px var(--white);
}

.common__btn a {
  background-color: #2d0a05;
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: max(16px, 2.4rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: max(40px, 6rem);
  position: relative;
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(47px, 7.6rem);
  height: max(13px, 2.1rem);
  position: absolute;
  transform: translateY(-50%);
  top: 45%;
  right: 4rem;
  pointer-events: none;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  border-bottom: var(--border);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  width: 100%;
  height: 21rem;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: max(12px, 2rem);
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 3.5rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #d7d0c0;
  width: max(10px, 1.3rem) !important;
  height: max(10px, 1.3rem) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: #600f18;
}

/*============================
	news
============================*/
.news {
  border-bottom: var(--border);
  padding: 8rem 0;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 5rem auto 7rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  border-radius: 1.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  border-bottom: var(--border);
  color: var(--white);
  padding: 7.5rem 0 27rem;
}

@media (max-width: 767px) {
  .concept {
    padding: 7.5rem 0 15rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 14.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 3rem;
  }

  .concept .common__ttl {
    width: max-content;
    margin: 0 0 0 7.5rem;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}

.concept__txt-wrapper h3 strong {
  font-size: max(18px, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4.5rem 0 9rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

.concept__img::after {
  content: "";
  background: url("../img/concept_img-deco.png") no-repeat center / contain;
  width: 65.5rem;
  height: 47.8rem;
  position: absolute;
  transform: translateY(100%);
  left: -9rem;
  bottom: 5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept__img::after {
    display: block;
    margin: -5rem 0 0;
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
    z-index: 1;
  }
}

.concept__img img {
  border-radius: 1rem;
}

/*============================
	menu
============================*/
.menu {
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 8rem 0 9rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / cover;
  width: 70rem;
  height: 32.9rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
  margin: 6rem auto 7rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 8rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 10rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 11.5rem;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    padding-top: 16rem;
  }
}

.menu__txt-wrapper h3 {
  font-family: var(--font-en);
  font-size: 9rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  top: 3rem;
  left: -21rem;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper h3 {
  flex-direction: row-reverse;
  top: -2rem;
  left: auto;
  right: -21.5rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3,
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper h3 {
    position: static;
    margin-bottom: 2rem;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  transform: rotate(-5deg);
}

.menu__txt-wrapper h3::before {
  content: "";
  display: block;
  background-color: #2d0a05;
  width: 42rem;
  height: 2px;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3::before {
  width: 38.6rem;
}

.menu__txt-wrapper h4 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h4 strong {
  font-size: max(18px, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 64rem;
  height: 100%;
  border-radius: 1rem;
  flex-shrink: 0;
  margin-right: -11rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img-list {
  width: 62.5rem;
  display: flex;
  gap: 4rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img-list {
    width: 100%;
  }
}

.menu__img-list li {
  display: block;
  width: 50%;
  height: 40rem;
  border-radius: 1rem;
  overflow: hidden;
}

.menu__img-list li:nth-of-type(2) {
  margin-top: 4rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  border-bottom: var(--border);
  color: var(--white);
  padding: 7rem 0 10rem;
}

.gallery__txt {
  width: 78rem;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 5rem auto 0;
}

@media (max-width: 767px) {
  .gallery__txt {
    width: 90%;
  }
}

.gallery__slider {
  height: 26rem;
  margin: 8rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 35.6rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 0.5rem;
}

/*============================
	spa
============================*/
.spa {
  padding: 7rem 0 10rem;
  position: relative;
}

.spa::before {
  content: "";
  background: url("../img/spa_deco.png") no-repeat center / contain;
  width: 83.4rem;
  height: 46.6rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .spa::before {
    width: 60rem;
    height: 33.5rem;
  }
}

.spa__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 6rem;
  margin: 5rem auto 0;
}

@media (max-width: 767px) {
  .spa__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.spa__txt-wrapper {
  width: 100%;
}

.spa__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.spa__txt-wrapper h3 strong {
  font-size: max(18px, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.spa__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 9.5rem;
}

.spa__btn-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
}

.spa__btn {
  width: max(200px, 35.5rem);
  height: max(50px, 7.6rem);
  position: relative;
}

@media (max-width: 767px) {
  .spa__btn {
    margin: 0 auto;
  }
}

.spa__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #2d0a05;
  position: absolute;
  top: max(5px, 1rem);
  left: max(4px, 0.6rem);
  pointer-events: none;
  z-index: -1;
}

.spa__btn a {
  background-color: #2d0a05;
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}

.spa__btn a span {
  font-family: var(--font-en);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.spa__btn a::before {
  content: "";
  display: block;
  background: url("../img/insta_ft.png") no-repeat center / contain;
  width: max(24px, 3rem);
  height: max(24px, 3rem);
}

.spa__img-list {
  width: 74.5rem;
  display: flex;
  align-items: flex-end;
  margin-right: -11rem;
}

@media (max-width: 767px) {
  .spa__img-list {
    width: 100%;
    margin: 0;
  }
}

.spa__img-list li {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
}

.spa__img-list li:nth-of-type(1) {
  width: 32.5rem;
  margin-right: -5rem;
  position: relative;
  z-index: 1;
}

.spa__img-list li:nth-of-type(2) {
  width: 47.5rem;
  margin-bottom: 10rem;
}

@media (max-width: 767px) {
  .spa__img-list li:nth-of-type(1) {
    width: 40%;
    margin-right: -5%;
  }

  .spa__img-list li:nth-of-type(2) {
    width: 65%;
  }
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  border-top: var(--border);
  color: var(--white);
  padding: 8rem 0 10rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 10rem;
  margin: -1rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    margin: 6rem auto 0;
  }
}

.access__img {
  width: 46.5rem;
  height: 100%;
  border-radius: 1rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw + 6.5rem);
  overflow: hidden;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 5rem 0 10rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.9rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 500;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  border-top: var(--border);
  padding: 6rem 0 8.5rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 6rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 27.6rem;
  height: 27.6rem;
  border-radius: 1.2rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 56.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
