@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-ab);
  font-size: max(36px, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery .common__ttl {
    flex-direction: row;
  }
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco-news.png") no-repeat center / contain;
  width: 10.2rem;
  height: 6.5rem;
}

.menu .common__ttl::before {
  background: url("../img/ttl_deco-menu.png") no-repeat center / contain;
  width: 18.1rem;
  height: 7.7rem;
}

.gallery .common__ttl::before {
  background: url("../img/ttl_deco-gallery.png") no-repeat center / contain;
  width: 9.5rem;
  height: 7.7rem;
}

.access .common__ttl::before {
  background: url("../img/ttl_deco-access.png") no-repeat center / contain;
  width: 9.2rem;
  height: 7.6rem;
}

.insta .common__ttl::before {
  background: url("../img/ttl_deco-insta.png") no-repeat center / contain;
  width: 14.1rem;
  height: 11.5rem;
}

.common__btn {
  width: max(210px, 35rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	header
============================*/
.header.top {
  height: max(90rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: 34rem;
  }

  .header.top .header__logo {
    margin: 0 auto 9rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    padding-left: 4rem;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
  }

  .header.top .header__nav-list li::before {
    background: url("../img/current-top.png") no-repeat center / contain;
    width: 17.2rem;
    height: 1.2rem;
    transform: translate(-100%, -50%);
    top: 50%;
    left: -1rem;
  }
}

@media (max-width: 900px) {
  .header.top {
    height: max(95rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: 0 0 5rem 34rem;
  position: relative;
}

@media (max-width: 900px) {
  .hero {
    height: max(95rem, 100vh);
  }
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.hero::before,
.hero::after {
  content: "";
  background-color: #232220;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero::after {
  background-color: #e0d9c9;
  opacity: 0.4;
}

.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(15px, 2rem);
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 1rem !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    transform: translate(-50%, 100%) !important;
    bottom: -3rem !important;
  }
}

.hero .swiper-pagination-bullet {
  background-color: #d6a54b;
  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: #b33723;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  color: var(--white);
  padding: 39rem 0 14rem;
  margin-top: -29rem;
  position: relative;
}

@media (max-width: 767px) {
  .news {
    padding: 10rem 0 15rem;
    margin-top: 0;
  }
}

.news::before {
  content: "";
  background: var(--bg-2);
  width: 100%;
  height: 12rem;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.news::before {
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transform: translateY(-100%);
  top: 1px;
}

.news__inner {
  width: 104rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 7rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.news__inner::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 102.8rem;
  height: 102.8rem;
  position: absolute;
  left: -57rem;
  bottom: -5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .news__inner::before {
    width: 60rem;
    height: 60rem;
    left: -20rem;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7rem;
  flex-shrink: 0;
}

.news__btn {
  width: max-content;
  margin: 0 auto;
}

.news__btn a {
  border-bottom: solid 1px var(--white);
  font-size: max(12px, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 5.5rem;
  padding: 0 0.4rem 1.5rem 1.5rem;
}

.news__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw-news.png") no-repeat center / contain;
  width: max(10px, 1.8rem);
  height: max(13.5px, 2.5rem);
}

@media (min-width: 768px) {
  .news__btn {
    margin: 0;
  }

  .news__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 16rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.CMS-NEWS-TIME {
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-3);
  color: var(--white);
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  padding: 21rem 0 17.5rem;
  margin-top: -14rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy {
    clip-path: polygon(0 7%, 100% 0%, 100% 93%, 0% 100%);
    padding: 21rem 0 17.5rem;
  }
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 44.6rem;
  height: 44.6rem;
  position: absolute;
  top: -4rem;
  right: -10rem;
  pointer-events: none;
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    width: 44rem;
  }
}

.policy__txt-wrapper h2 {
  font-family: var(--font-ab);
  font-size: max(3.6px, 6rem);
  font-weight: 400;
}

.policy__txt-wrapper p {
  font-weight: 500;
  line-height: 2;
  margin: 2.5rem 0 4rem;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0;
  }
}

.policy__img {
  display: block;
  width: 120rem;
  position: absolute;
  top: 3rem;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__img {
    opacity: 0.6;
  }
}

/*============================
	menu
============================*/
.menu {
  padding-bottom: 11.5rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 94rem;
  height: 107rem;
  position: absolute;
  top: -16.5rem;
  right: -2rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 60rem;
    height: 68.3rem;
  }
}

.menu__list {
  width: 108rem;
  display: flex;
  flex-direction: column;

  margin: 8.5rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 8rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.menu__list-item:nth-of-type(2) {
  margin: 8.5rem 0 11rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd),
  .menu__list-item:nth-of-type(2) {
    flex-direction: column-reverse;
    margin: 0;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::before,
.menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 39.8rem;
  height: 18.8rem;
  position: absolute;
  top: 2rem;
  left: -25rem;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
  transform: scale(-1, 1);
  top: 4.5rem;
  left: auto;
  right: -24rem;
}

.menu__txt-wrapper h3 {
  display: block;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper h3 {
  width: 57rem;
  margin: -1rem -7rem 2.5rem 0;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 {
  width: 42.2rem;
  margin: -3rem 0 3rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 {
  width: 47rem;
  margin: -0.2rem 0 2.5rem 0;
}

.menu__txt-wrapper p {
  font-weight: 500;
  line-height: 2;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 70.7rem;
  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);
}

.menu__list-item:nth-of-type(2) .menu__img {
  width: 69rem;
}

.menu__list-item:nth-of-type(3) .menu__img {
  width: 70rem;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img,
  .menu__list-item:nth-of-type(2) .menu__img,
  .menu__list-item:nth-of-type(3) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  color: var(--white);
  padding-top: 7rem;
}

@media (max-width: 767px) {
  .gallery {
    padding: 8rem 0;
  }
}

.gallery__ttl-wrapper {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 5.5rem;
}

@media (max-width: 767px) {
  .gallery__ttl-wrapper {
    width: max-content;
  }
}

@media (min-width: 768px) {
  .gallery__ttl-wrapper .common__ttl {
    margin: 0 0 0 -3.5rem;
  }
}

.gallery__ttl-wrapper .common__btn {
  margin: 0;
}

.gallery__slider {
  height: 22.6rem;
}

@media (max-width: 767px) {
  .gallery__slider {
    margin-bottom: 6rem;
  }
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 5.5rem 0 6.7rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 102.8rem;
  height: 102.8rem;
  position: absolute;
  right: -37.5rem;
  bottom: -15rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 60rem;
    height: 60rem;
    right: -20rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9rem;
  margin: 5rem auto 8rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 59rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 7.5rem 0 6.5rem;
  position: relative;
}

.insta::before {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 39.8rem;
  height: 18.8rem;
  position: absolute;
  left: -3rem;
  bottom: 8.4rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 25rem;
    height: 11.8rem;
    left: -3rem;
    bottom: 3rem;
  }
}

.insta__contents {
  width: 88.7rem;
  margin: 7.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: 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;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	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;
}
