@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(36px, 7.4rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  position: relative;
}

.common__btn--wt a {
  background-color: var(--white);
  color: var(--brown);
}

.common__btn a::before {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.common__btn--wt a::before {
  border: solid 1px var(--brown);
}

.common__btn span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.4rem;
}

.common__btn span::before,
.common__btn span::after {
  content: "";
  display: block;
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(16px, 2.15rem);
  height: max(22.3px, 3rem);
}

.common__btn--wt span::before,
.common__btn--wt span::after {
  background: url("../img/btn_deco-br.png") no-repeat center / contain;
}

.common__btn span::after {
  transform: scale(-1, 1);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, var(--white), #231815);
  width: 100%;
  height: 21rem;
  mix-blend-mode: multiply;
  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;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 8rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .concept {
    padding: 8rem 0 10rem;
  }
}

.concept::after {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 59.3rem;
  height: 39.6rem;
  position: absolute;
  right: 5rem;
  bottom: -9.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::after {
    width: 45rem;
    height: 30rem;
    right: -5rem;
    bottom: -12rem;
  }
}

.concept__contents {
  width: 128rem;
  border: solid max(3px, 0.6rem) var(--white);
  display: flex;
  gap: 4rem 7.5rem;
  padding: 7rem 8rem 10rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 95%;
    flex-direction: column-reverse;
    padding: 4rem 4rem 8rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

.concept__txt-wrapper h2 {
  border-bottom: solid 1px var(--white);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 3rem;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(50px, 10rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3.5rem 0 8rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 46rem;
  height: 100%;
  border: solid max(2px, 0.4rem) var(--white);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 14rem 0 22.5rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center top / cover;
  width: 100%;
  height: 24.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    height: 20rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8.5rem;
  margin: 11rem auto 8.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 10rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 7rem;
  position: relative;
}

.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__list-item::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1)::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 38.4rem;
  height: 21.2rem;
  top: -26rem;
  left: -8.5rem;
}

.menu__list-item:nth-of-type(3)::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 37rem;
  height: 20.8rem;
  top: -12rem;
  right: -13.5rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1)::before {
    width: 30rem;
    height: 16.5rem;
    top: -14rem;
  }

  .menu__list-item:nth-of-type(3)::before {
    width: 30rem;
    height: 16.8rem;
    top: -10rem;
    right: -5rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  color: var(--brown);
  position: relative;
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 56.4rem;
  height: 56.6rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(36px, 7.4rem);
  font-weight: 400;
  font-style: italic;
  color: #c3a078;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 3rem -2rem;
  transform: rotate(-10deg);
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 span {
    width: max-content;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    margin-bottom: 3rem;
  }
}

.menu__img {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background-color: var(--black);
  padding: 9.5rem 0 14.5rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 8.5rem 0 11.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.8rem;
}

/*============================
	news
============================*/
.news {
  padding: 9.5rem 0 12rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7rem auto 7.5rem;
}

@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;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 10.5rem 0 24rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center top / cover;
  width: 100%;
  height: 24.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    height: 20rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7rem;
  margin: 8rem auto 10rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__map {
  display: block;
  width: 48rem;
  height: 42rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: -2rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    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;
  }
}
