@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(50px, 10rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  filter: drop-shadow(0 0 3rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 3rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 3rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 3rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 3rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 3rem rgba(113, 195, 207, 0.3));
}

.common__ttl--small {
  font-size: max(36px, 7.4rem);
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  filter: drop-shadow(0 0 1.5rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 1.5rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 1.5rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 1.5rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 1.5rem rgba(113, 195, 207, 0.3));
}

@media (max-width: 767px) {
  .common__ttl {
    filter: drop-shadow(0 0 1.5rem rgba(113, 195, 207, 1)) drop-shadow(0 0 1.5rem rgba(113, 195, 207, 1));
  }

  .common__ttl--small {
    filter: drop-shadow(0 0 1.5rem rgba(113, 195, 207, 1)) drop-shadow(0 0 1.5rem rgba(113, 195, 207, 1));
  }
}

.common__ttl::before {
  content: "";
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(65px, 12.7rem);
  height: max(86px, 16.8rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(80rem, 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: 11rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 9rem auto 7rem;
}

@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: 8rem 0;
}

.concept__txt-wrapper {
  width: 90rem;
  border: solid 2px var(--white);
  text-align: center;
  padding: 6.5rem 8rem 9rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
    padding: 8rem 5% 10rem;
  }
}

.concept__txt-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid max(3px, 0.5rem) var(--brown);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  filter: blur(1rem);
  z-index: -1;
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 5rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2.5rem 0 6rem;
}

.concept__img {
  display: block;
  width: 22rem;
  border: solid 2px var(--white);
  position: absolute;
  pointer-events: none;
}

.concept__img-1 {
  top: 6rem;
  right: -15rem;
}

.concept__img-2 {
  left: -13.5rem;
  bottom: 5rem;
}

@media (max-width: 767px) {
  .concept__img-1 {
    top: -4rem;
    right: -8rem;
  }

  .concept__img-2 {
    left: -8rem;
    bottom: -2rem;
  }
}

.concept__img::before {
  content: "";
  border: solid max(3px, 0.5rem) var(--brown);
  position: absolute;
  inset: 0;
  filter: blur(1rem);
}

/*============================
	menu
============================*/
.menu {
  padding: 11.5rem 0 17rem;
}

.menu__ttl-wrapper {
  background-color: var(--brown);
  padding: 1.6rem 0 2.7rem;
  position: relative;
}

.menu__ttl-wrapper::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 31.5rem;
  height: 38.5rem;
  position: absolute;
  transform: translateY(-50%);
  top: 55%;
  right: 26.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper::before {
    width: 25rem;
    height: 30.5rem;
    right: 5%;
  }
}

.menu__ttl {
  width: 110rem;
  font-family: var(--font-en);
  font-size: 15.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__ttl {
    width: 90%;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 13rem;
  margin: 15.5rem auto 14rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem 11rem;
}

.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: 4rem;
  }
}

.menu__txt-wrapper h3 {
  font-family: var(--font-en);
  font-size: 11.3rem;
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: max(2px, 0.3rem) var(--white);
  text-stroke: max(2px, 0.3rem) var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  filter: drop-shadow(0 0 1rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 1rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 1rem rgba(113, 195, 207, 0.3)) drop-shadow(0 0 1rem rgba(113, 195, 207, 0.3));
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    filter: drop-shadow(0 0 1.5rem rgba(113, 195, 207, 1)) drop-shadow(0 0 1.5rem rgba(113, 195, 207, 1));
  }
}

.menu__txt-wrapper h4 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  margin: 7.5rem 0 0;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h4 {
  margin: 4rem 0 3rem;
}

.menu__txt {
  font-size: max(14px, 2rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.1em;
  margin: 2rem 0;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__txt-wrapper li {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-left: calc(50% - 50vw);
}

@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;
  }
}

.menu__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  position: absolute;
  top: 2rem;
  left: -2rem;
  pointer-events: none;
}

.menu__list-item:nth-of-type(even) .menu__img::before {
  left: 2rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 9.5rem 0 10rem;
}

.gallery__slider {
  height: 22rem;
  margin: 8.5rem 0 7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
}

/*============================
	access
============================*/
.access {
  padding: 10rem 0 14.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6rem;
  margin: 9.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 49rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.4rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.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: 45rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11rem 0 18rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 11.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;
}
