@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-jose);
  font-size: max(18px, 3.2rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: -1rem;
}

.common__ttl--wt {
  color: var(--white);
  flex-direction: column;
}

.common__ttl--wt > span {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.common__ttl--wt > span::before,
.common__ttl--wt > span::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.common__ttl--wt span span {
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.common__btn {
  width: max(190px, 30rem);
  height: max(50px, 7rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  font-size: max(14px, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 3rem;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

.common__btn a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(8px, 1rem);
  height: max(11px, 1.3rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3.5rem;
  pointer-events: none;
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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 {
  padding: 8.5rem 0 9rem;
}

.concept__contents {
  width: 120rem;
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  border: solid 1px var(--black);
  padding: 8rem 10% 6rem;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    height: 100%;
    padding: 9rem 45rem 9rem 13rem;
    margin: 0 -35.5rem 9rem 0;
  }
}

.concept .common__ttl {
  width: max-content;
  margin: 0 auto;
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 7rem 0 3rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.concept__img {
  width: 67.5rem;
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/menu_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 14rem 0 20.5rem;
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__list {
  width: 82.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 17rem;
  margin: 14.5rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 100%;
  }
}

.menu__list-item {
  display: flex;
  gap: 6rem 11.5rem;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 4rem;
  }
}

.menu__txt-wrapper h3 {
  width: max-content;
  border-bottom: solid 1px var(--white);
  font-size: max(16px, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  padding-bottom: 1rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 4rem 0 7rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 67rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-left: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: #000;
  padding: 12rem 0 9.5rem;
}

.gallery__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .gallery__inner {
    width: 90%;
  }
}

.gallery__slider {
  height: 26rem;
  margin: 9.5rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 35.6rem;
  margin: 0 1px;
}

/*============================
	access
============================*/
.access {
  padding: 14rem 0 12rem;
}

@media (max-width: 767px) {
  .access {
    padding: 10rem 0 12rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 7.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 10rem 0 14rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 4rem 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }
}

@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 0 0 auto;
  }
}

.access__img-list {
  width: 50rem;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  margin: 2rem 0 0 -6.5rem;
}

@media (max-width: 767px) {
  .access__img-list {
    width: 100%;
    margin: 0;
  }
}

.access__img-list li {
  display: block;
  width: 31rem;
  height: 100%;
  position: relative;
}

.access__img-list li:nth-of-type(2) {
  margin: 17.5rem 0 0 -8rem;
}

@media (max-width: 767px) {
  .access__img-list li {
    width: 60%;
  }
}

.access__img-list li::before {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  position: absolute;
  top: -3.5rem;
  left: -3.5rem;
  pointer-events: none;
  z-index: -1;
}

.top__map {
  height: 37.2rem;
}

/*============================
	sister
============================*/
.sister {
  background: var(--bg-2);
  color: var(--white);
  padding: 11.5rem 0 10rem;
}

.sister__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .sister__inner {
    width: 90%;
  }
}

.sister p {
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  margin: 6rem auto 7.5rem;
}

@media (min-width: 768px) {
  .sister p {
    width: 55rem;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 45rem;
  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;
}
