@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  display: block;
  font-size: max(28px, 5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}

.common__btn {
  width: max(173px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(88rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3;
}

.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: 11rem 0;
}

.concept__contents {
  width: 90rem;
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 4rem 5.5rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    flex-direction: column;
  }
}

.concept .common__ttl {
  margin: 0 0 8rem;
}

@media (max-width: 767px) {
  .concept .common__ttl {
    text-align: left;
    margin: 0;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.06em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  display: block;
  width: 100%;
  margin-bottom: 9rem;
  position: relative;
}

.concept__img span {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #c98c00;
  border-top: none;
  border-bottom: none;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

.concept__img span::before,
.concept__img span::after {
  content: "";
  background: var(--grad);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.concept__img span::after {
  top: auto;
  bottom: 0;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 15rem 0 17rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 13.5rem;
  margin: 12.5rem auto 10.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem;
}

.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%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 1rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    padding-top: 5rem;
    padding-left: 4rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: max(90px, 14.4rem);
  margin-bottom: 3rem;
}

.menu__txt-wrapper p {
  line-height: 2.5;
}

.menu__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
}

@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 {
  padding: 12rem 0 14rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 9.5rem 0 11.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 22.5rem 0 20rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access .common__ttl {
  text-align: left;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 4rem 0 6.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 0;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 43rem;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 13rem 0 18.5rem;
}

.insta__contents {
  width: 82rem;
  margin: 8rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.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;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.hero__message {
	position: absolute;
	top: 32%;
	left: 6%;
	z-index: 4;
	pointer-events: none;
}

.hero__message p {
	font-size: max(24px, 3rem);
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.12em;
	text-shadow: 0 0 12px rgba(0, 0, 0, 0.65);
}

@media (max-width: 767px) {
	.hero__message {
		top: 36%;
		left: 6%;
	}

	.hero__message p {
		font-size: max(18px, 3.2rem);
		line-height: 1.9;
		letter-spacing: 0.08em;
	}
}