@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-serif);
  font-size: max(24px, 3.2rem);
  font-weight: 900;
  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 {
  display: block;
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 25.2rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  border: solid 1px var(--brown);
  position: absolute;
  top: 2px;
  right: -3px;
  pointer-events: none;
}

.common__btn span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.common__btn span::before,
.common__btn span::after {
  content: "";
  display: block;
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: 4.9rem;
  height: 2.3rem;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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: 13rem 0 9.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 23.8rem;
  height: 13.6rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.news::before {
  top: 7rem;
  right: 5rem;
}

.news::after {
  transform: scale(-1, 1);
  left: 15rem;
  bottom: 2rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 18rem;
    height: 10.3rem;
  }

  .news::before {
    top: 3rem;
    right: 1rem;
  }

  .news::after {
    left: 1rem;
    bottom: 2rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5.5rem 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: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  padding-top: 1rem;
  margin-top: 1rem;
  position: relative;
}

.CMS-NEWS-LINK::before {
  content: "";
  background: url("../img/news_txt-deco.png") repeat-x center / contain;
  width: 100%;
  height: 3px;
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 0;
  pointer-events: none;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-2);
  padding: 10.5rem 0 14.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .policy {
    padding: 0 0 14rem;
  }
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 47.4rem;
  height: 25.6rem;
  right: -5.5rem;
  bottom: 0.5rem;
}

.policy::after {
  background: url("../img/policy_deco-2.png") no-repeat center / contain;
  width: 36rem;
  height: 32.8rem;
  left: 15.5rem;
  bottom: -19rem;
}

@media (max-width: 767px) {
  .policy::after {
    width: 30rem;
    height: 27.3rem;
    left: 2rem;
    bottom: -16rem;
  }
}

.policy__ttl-wrapper {
  background: url("../img/policy_bg.png") no-repeat right bottom / cover;
  width: 67rem;
  height: 44.8rem;
  display: flex;
  justify-content: center;
  padding-top: 5rem;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .policy__ttl-wrapper {
    background: url("../img/policy_bg.png") no-repeat center bottom / 105% auto;
    width: 100%;
    height: 51rem;
    flex-direction: column;
    padding: 0 5%;
    margin-bottom: 4rem;
    position: relative;
    top: auto;
    left: auto;
  }
}

.policy__ttl-wrapper h2 {
  font-family: var(--font-serif);
  font-size: max(14px, 2.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.15em;
  line-height: 2;
}

@media (min-width: 768px) {
  .policy__ttl-wrapper h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__img-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto 75px;
}

@media (max-width: 767px) {
  .policy__img-wrapper {
    width: 90%;
    margin: 0 auto 4rem;
  }
}

.policy__img-1 {
  display: block;
  width: 50rem;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 100%;
  }
}

.policy__txt-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 11.5rem;
  padding-right: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.policy__txt-wrapper p {
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin-bottom: 5rem;
}
.policy .common__btn {
  margin: 0;
}

.policy__img-2 {
  width: 50rem;
  height: 100%;
  flex-shrink: 0;
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .policy__img-2 {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 15.5rem 0 13rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 60rem;
  height: 45rem;
  top: 0;
  right: 0;
}

.menu::after {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 31.4rem;
  height: 14.6rem;
  left: 8.5rem;
  bottom: 6rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 45rem;
    height: 33.7rem;
  }

  .menu::after {
    width: 23rem;
    height: 10.7rem;
    left: 2rem;
    bottom: 3rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10rem 6rem;
  margin: 10rem auto;
  position: relative;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 31.4rem;
  height: 14.6rem;
  position: absolute;
  top: -20rem;
  left: -5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list::before {
    width: 23rem;
    height: 10.7rem;
    left: -3rem;
  }
}

.menu__list-item {
  width: 52rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 2rem;
  position: relative;
}

.menu__list-item:nth-of-type(1),
.menu__list-item:nth-of-type(2) {
  width: 100%;
  flex-direction: row;
  gap: 4rem;
}

.menu__list-item:nth-of-type(2) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(1),
  .menu__list-item:nth-of-type(2) {
    width: 100%;
    flex-direction: column-reverse;
    gap: 4rem;
  }
}

.menu__list-item:nth-of-type(2)::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 31.4rem;
  height: 14.6rem;
  position: absolute;
  right: -11.5rem;
  bottom: -12.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(2)::before {
    width: 23rem;
    height: 10.7rem;
    right: -3rem;
    bottom: -8rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper,
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    padding: 0 4rem;
    margin-top: -1rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 2rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: 13rem;
  flex-shrink: 0;
}

.menu__txt-wrapper p {
  line-height: 2;
}

.menu__img {
  width: 100%;
}

.menu__list-item:nth-of-type(1) .menu__img,
.menu__list-item:nth-of-type(2) .menu__img {
  width: 54rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(1) .menu__img,
  .menu__list-item:nth-of-type(2) .menu__img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 11rem 0;
  position: relative;
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco-1.png") no-repeat center / contain;
  width: 39.6rem;
  height: 23rem;
  position: absolute;
  top: -20.5rem;
  right: -4rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 30rem;
    height: 17.4rem;
    top: -10rem;
    right: -2rem;
  }
}

.gallery__inner {
  width: 107rem;
  display: flex;
  align-items: center;
  gap: 6rem 7rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .gallery__inner {
    display: block;
    width: 90%;
  }
}

.gallery__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  row-gap: 7rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .gallery__ttl-wrapper {
    margin: 0 auto;
  }
}

.gallery__slider {
  width: 100vw;
  height: 22.6rem;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery__slider {
    width: 100vw;
    height: 20rem;
    margin: 7rem calc(50% - 50vw) 8rem;
    overflow: hidden;
  }
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.8rem;
}

/*============================
	access
============================*/
.access {
  padding: 12.5rem 0 18rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 29.8rem;
  height: 13.8rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.access::before {
  top: 7.5rem;
  right: 8.5rem;
}

.access::after {
  left: 10.5rem;
  bottom: 10.5rem;
}

@media (max-width: 767px) {
  .access::before,
  .access::after {
    width: 23rem;
    height: 10.6rem;
  }

  .access::before {
    top: 3rem;
    right: 2rem;
  }

  .access::after {
    left: 2rem;
    bottom: 3rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 8.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 64rem;
  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;
  margin: -2.5rem 0 3.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4rem;
  }
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 37rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 12rem 0 18rem;
  position: relative;
  z-index: 1;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 31.4rem;
  height: 14.6rem;
  position: absolute;
  pointer-events: none;
}

.insta::before {
  top: 15.5rem;
  right: 5rem;
}

.insta::after {
  left: 8rem;
  bottom: 10.5rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 23rem;
    height: 10.7rem;
  }

  .insta::before {
    top: 5rem;
    right: 2rem;
  }

  .insta::after {
    left: 1rem;
    bottom: 2rem;
  }
}

.insta__contents {
  width: 87rem;
  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.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;
  }
}

/*============================
  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;
}
