@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  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.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(34px, 4.9rem);
  height: max(16px, 2.3rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.insta .common__ttl::before {
  display: none;
}

.common__btn {
  width: max(194px, 24.8rem);
  height: max(40px, 5.1rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding-left: 3rem;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(7px, 0.95rem);
  height: max(9.5px, 1.3rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), #623a00);
  width: 100%;
  height: 22.5rem;
  opacity: 0.7;
  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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 14px;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -2rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--black);
  width: 9px !important;
  height: 9px !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: #a00000;
}

/*============================
	news
============================*/
.news {
  padding: 13.5rem 0 15rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 27.2rem;
  height: 20rem;
  position: absolute;
  pointer-events: none;
}

.news::before {
  top: 8rem;
  right: 5rem;
}

.news::after {
  transform: scale(-1, 1);
  left: 4rem;
  bottom: 7.5rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 21rem;
    height: 15.4rem;
  }

  .news::before {
    top: 3rem;
    right: 2rem;
  }

  .news::after {
    left: 2rem;
    bottom: 5rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4rem 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: 2.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  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;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  color: var(--white);
  padding: 18rem 0 17.5rem;
}

.concept__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 5rem 6.5rem;
}

.concept__contents:nth-of-type(1) {
  flex-direction: row-reverse;
  margin-bottom: 7.5rem;
}

@media (max-width: 767px) {
  .concept__contents,
  .concept__contents:nth-of-type(1) {
    flex-direction: column-reverse;
  }
}

.concept__ttl-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .concept__ttl-wrapper {
    height: max(380px, 50rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.concept__ttl-wrapper::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 48.6rem;
  height: 32rem;
  position: absolute;
  top: -12.5rem;
  right: -12rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .concept__ttl-wrapper::before {
    width: 36rem;
    height: 23.7rem;
    top: -8rem;
    right: -6rem;
  }
}

.concept__ttl-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .concept__ttl-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.concept p {
  letter-spacing: 0.05em;
  line-height: 2.5;
}

.concept__txt-wrapper p {
  margin-bottom: 7rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 62.4rem;
  height: 100%;
  flex-shrink: 0;
}

.concept__contents:nth-of-type(2) .concept__img {
  width: 46rem;
}

@media (max-width: 767px) {
  .concept__img,
  .concept__contents:nth-of-type(2) .concept__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 14rem 0 22rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 32rem;
  height: 32rem;
  top: 5rem;
  right: 6.5rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center top / cover;
  width: 100%;
  height: 16.4rem;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 25rem;
    height: 25rem;
    top: 3rem;
    right: 2rem;
  }

  .menu::after {
    height: 10rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
  margin: 10rem auto 12rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 10rem 6.5rem;
  position: relative;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.menu__list-item:nth-of-type(3) {
  gap: 5rem 6.5rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__list-item:nth-of-type(3)::before {
  content: "";
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 32rem;
  height: 32rem;
  position: absolute;
  top: -11rem;
  left: -14.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(3)::before {
    width: 24rem;
    height: 24rem;
    top: -8rem;
    left: -10rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 3rem;
  }
}

.menu__txt-wrapper h3 {
  border-bottom: solid 1px var(--black);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img img:nth-of-type(2) {
  width: 25.5rem;
  height: auto;
  position: absolute;
  bottom: -6.5rem;
  right: -3.5rem;
}

@media (max-width: 767px) {
  .menu__img img:nth-of-type(2) {
    right: -2rem;
  }
}

.menu__img figcaption {
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: max(40px, 5.7rem);
  height: max(128px, 18.3rem);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -2rem;
  left: 4rem;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  left: auto;
  right: 4rem;
}

.menu__list-item:nth-of-type(3) .menu__img figcaption {
  background: url("../img/menu_txt-deco-r.png") no-repeat center / contain;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 9.5rem 0 14rem;
}

.gallery__slider {
  height: 21.2rem;
  margin: 8.5rem 0 10rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 29.1rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 9rem 0 16rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5.5rem;
  margin: 12rem auto 7rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 46rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -2.5rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 13.5rem 0 12.5rem;
}

.insta__contents {
  width: 94rem;
  margin: 7rem 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.5rem 3rem;
}

.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: 29.2rem;
  height: 29.2rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 44rem;
  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;
}
