@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(32px, 5.6rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(6px, 0.65rem);
  height: max(10px, 1.1rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 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: 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;
}

/*============================
	news
============================*/
.news {
  padding: 13.5rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 11rem;
}

@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: 3rem;
}

@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(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 19.5rem 0 11.5rem;
  position: relative;
  z-index: 1;
}

.concept::before,
.concept::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 32.4rem;
  height: 40.4rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.concept::after {
  transform: scale(-1, -1);
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .concept::before,
  .concept::after {
    width: 24rem;
    height: 29.9rem;
  }
}

.concept__inner {
  width: 93rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    display: flex;
    column-gap: 6.5rem;
  }
}

.concept__txt-wrapper h2 {
  display: block;
  width: 28.8rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper p {
    margin: 2rem 0 4rem;
  }
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 4rem auto 0;
  }
}

.concept__img {
  width: calc(100% - 3rem);
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 13.5rem 0 14rem;
  position: relative;
  z-index: 1;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 38.6rem;
  height: 32.6rem;
  position: absolute;
  top: -7rem;
  right: 11rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 30rem;
    height: 25.3rem;
    top: -7rem;
    right: 2rem;
  }
}

.menu__txt {
  width: max-content;
  border-top: solid 1px var(--white);
  border-bottom: solid 1px var(--white);
  font-size: max(14px, 2rem);
  letter-spacing: 0.1em;
  padding: 2.2rem 0;
  margin: 6.5rem auto 0;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin: 5rem auto 13rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 8rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 7rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
  gap: 4rem 10rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 5rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 22.8rem;
  height: 19.4rem;
  top: -21rem;
  left: -1.8rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 23.8rem;
  height: 37.8rem;
  top: 3rem;
  right: -14rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
    top: -10rem;
    right: -2rem;
    left: auto;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
    top: -3rem;
    right: -3rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: 25.4rem;
  margin-bottom: 3rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
  width: 14.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__img {
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(1) .menu__img {
  width: 57.5rem;
  margin: -11.5rem -4rem 0 0;
}

.menu__list-item:nth-of-type(2) .menu__img {
  width: 72rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img,
  .menu__list-item:nth-of-type(2) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 12rem 0 14.5rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 9rem 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 20.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access .common__ttl {
  text-align: left;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 4.5rem 0 6rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.2rem 0;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.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;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.top__map {
  height: 43rem;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 13.5rem 0 18.5rem;
  position: relative;
  z-index: 1;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 32.4rem;
  height: 40.4rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.insta::after {
  transform: scale(-1, -1);
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 24rem;
    height: 29.9rem;
  }
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
