@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 4rem);
  font-weight: 400;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(12px, 1.8rem);
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 4.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-left: 2rem;
  position: relative;
}

.common__btn--wt a {
  background-color: transparent;
  border: solid 1px var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/arw.png") no-repeat center / contain;
  width: max(7px, 0.8rem);
  height: max(10.7px, 1.3rem);
}

/*============================
  header
============================*/
.header.top {
  height: max(72rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: 34rem;
    padding-top: 6.5rem;
  }

  .header.top .header__logo {
    margin: 0 auto 6.5rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .header.top {
    height: max(80rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(72rem, 100vh);
  padding-left: 34rem;
  position: relative;
}

@media (max-width: 1100px) {
  .hero {
    height: max(80rem, 100vh);
  }
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.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: 14px;
  transform: translateY(100%) !important;
  left: auto !important;
  right: 15rem;
  bottom: -4.5rem !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    right: 5%;
  }
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 9px !important;
  height: 9px !important;
  border: solid 1px var(--black);
  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: var(--black);
}

/*============================
	insta
============================*/
.insta {
  padding: 12.5rem 0 10rem;
}

.insta__contents {
  width: 87rem;
  margin: 5rem 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.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	policy
============================*/
.policy {
  padding: 15.5rem 0 14rem;
  position: relative;
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: var(--bg-2);
  inset: 0;
  clip-path: polygon(0 10rem, 100% 0, 100% calc(100% - 10rem), 0% 100%);
  z-index: -1;
}

.policy::after {
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 51.3rem;
  height: 40.8rem;
  right: 8rem;
  bottom: -20.5rem;
}

@media (max-width: 767px) {
  .policy::before {
    clip-path: polygon(0 8rem, 100% 0, 100% calc(100% - 8rem), 0% 100%);
  }

  .policy::after {
    width: 43rem;
    height: 34.2rem;
    right: 1rem;
    bottom: -13rem;
  }
}

.policy__contents {
  width: 120rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5rem 9.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__bg {
  background: url("../img/policy_txt-bg.jpg") repeat center / 100% auto;
  width: 100%;
  padding: 6rem 5rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__bg {
    height: 100%;
    padding: 7rem 6.5rem;
  }
}

.policy__bg::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: solid 1px #3d1c04;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-left: 2.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    height: max(420px, 42rem);
  }
}

.policy__img {
  width: 64rem;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  flex-shrink: 0;
  margin-left: -1rem;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    gap: 3rem;
    margin: 0;
  }
}

.policy__img img:nth-of-type(1) {
  grid-column: 1 / 3;
}

/*============================
	menu
============================*/
.menu {
  padding: 10.5rem 0 16.5rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 31.2rem;
  height: 8.8rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  top: 7rem;
  left: 10rem;
}

.menu::after {
  right: 6rem;
  bottom: 13.5rem;
}

@media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 25rem;
    height: 7rem;
  }

  .menu::before {
    top: 3rem;
    left: 1rem;
  }

  .menu::after {
    right: 1rem;
    bottom: 3rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 12rem;
  margin: 9rem auto 13.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 6rem;
}

.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: 5.5rem;
  }
}

.menu__txt-wrapper h3 {
  border-bottom: solid 1px var(--black);
  font-size: max(16px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.15em;
  line-height: 2;
}

.menu__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img::before {
  content: "";
  background-color: #562b08;
  width: 31.5rem;
  height: 31.5rem;
  opacity: 0.3;
  position: absolute;
  left: -10rem;
  bottom: -9rem;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(even) .menu__img::before {
  left: auto;
  right: -6rem;
  bottom: -6rem;
}

.menu__list-item:nth-of-type(1) .menu__img::after {
  content: "";
  background: url("../img/menu_img-deco.png") no-repeat center / contain;
  width: 26.6rem;
  height: 18.2rem;
  position: absolute;
  right: -4rem;
  bottom: -4.3rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__img::before {
    left: -6rem;
    bottom: -6rem;
  }

  .menu__list-item:nth-of-type(1) .menu__img::after {
    right: -2rem;
  }
}

.menu__img figcaption {
  background: url("../img/menu_txt-bg.jpg") no-repeat center / cover;
  width: max(45px, 6.5rem);
  height: max(107.3px, 15.5rem);
  font-size: max(20px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: max(4px, 0.6rem) max(4px, 0.6rem) 0 var(--black);
  position: absolute;
  top: -0.7rem;
  right: -1.6rem;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  right: auto;
  left: -1.6rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 12.5rem 0 9rem;
}

.gallery__slider {
  height: 20rem;
  margin: 6rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	group
============================*/
.group {
  padding: 11.5rem 0 14.5rem;
}

.group__list {
  inline-size: 110rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 8rem 3.7rem;
  margin: 7.5rem auto 0;
}

@media (max-width: 767px) {
  .group__list {
    inline-size: 90%;
    grid-template-columns: 1fr;
  }
}

.group__list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}

.group__img {
  display: block;
  width: 100%;
  grid-row: 1;
  margin-bottom: 3rem;
}

.group__txt-wrapper {
  width: 100%;
  grid-row: 2;
}

.group__txt-wrapper h3 {
  font-weight: 400;
  letter-spacing: 0;
}

.group__txt-wrapper h3 strong {
  display: inline-block;
  font-size: max(14px, 2rem);
  font-weight: 400;
  margin-left: 0.5rem;
}

.group__txt-wrapper p {
  letter-spacing: 0.1em;
  margin: 1.5rem 0 4.5rem;
}

.group__btn {
  width: 100%;
  height: max(40px, 5.4rem);
  grid-row: 3;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 12.5rem 0 15rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7rem;
  margin: 8rem auto 7.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 50rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 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));
}

.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;
  }
}

.top__map {
  height: 42rem;
}
