@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(28px, 5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(36px, 6rem);
  height: max(36px, 6rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.7rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  background: url("../img/btn_deco.png") no-repeat center left / 100% 100%;
  width: calc(100% - 1rem);
  height: max(8px, 1.2rem);
  position: absolute;
  transform: translateX(-50%);
  top: max(3px, 0.5rem);
  left: 50%;
  pointer-events: none;
}

.common__btn a::after {
  transform: translateX(-50%) scale(-1, -1);
  top: auto;
  bottom: max(3px, 0.5rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding-left: 34rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.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: -4rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 9px !important;
  height: 9px !important;
  border: solid 1px var(--black);
  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: var(--black);
}

/*============================
	news
============================*/
.news {
  padding: 12.5rem 0 10.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 21rem;
  height: 10.4rem;
  top: 10rem;
  right: 11.5rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  width: 21.6rem;
  height: 12.2rem;
  left: 10.5rem;
  bottom: 5rem;
}

@media (max-width: 767px) {
  .news::before {
    top: 3rem;
    right: 3rem;
  }

  .news::after {
    left: 2rem;
    bottom: 2rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5rem auto 6rem;
}

@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(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 8rem 0 10rem;
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 7rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(440px, 44rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-top: 4rem;
  }
}

.policy__txt-wrapper::before {
  content: "";
  background: url("../img/policy_txt-wrapper.png") no-repeat center / contain;
  width: 33.2rem;
  height: 33.2rem;
  position: absolute;
  top: -15.5rem;
  right: -12rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before {
    width: 30rem;
    height: 30rem;
    top: -10rem;
    right: -8rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 auto;
  }
}

.policy__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 90%;
  }
}

.policy__img img:nth-of-type(2) {
  width: 34rem;
  margin: -11.5rem -7rem 0 auto;
}

@media (max-width: 767px) {
  .policy__img img:nth-of-type(2) {
    width: 50%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  color: var(--white);
  padding: 11rem 0 21rem;
  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: 35.4rem;
  height: 28.2rem;
  top: -12.5rem;
  left: 21rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 47.6rem;
  height: 30.9rem;
  top: -6rem;
  right: 8rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 28rem;
    height: 22.3rem;
    top: -8rem;
    left: -2rem;
  }

  .menu::after {
    width: 38rem;
    height: 24.6rem;
    top: -10rem;
    right: -6rem;
  }
}

.menu__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 8rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 2rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 19rem;
  height: 32.4rem;
  position: absolute;
  right: -9.5rem;
  bottom: -8rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before {
    width: 16rem;
    height: 27.3rem;
    right: -3rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 12.5rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	flow
============================*/
.flow {
  display: flex;
}

@media (max-width: 767px) {
  .flow {
    flex-direction: column-reverse;
  }
}

.flow__txt-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0 11.5rem 10rem;
}

@media (max-width: 767px) {
  .flow__txt-wrapper {
    padding: 8rem 5%;
  }
}

.flow__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 3.5rem 0 6rem;
}

.flow__img {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .flow__img {
    width: 88rem;
    clip-path: polygon(12rem 0%, 100% 0, 100% 100%, 0% 100%);
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 9.5rem 0 13rem;
}

.gallery__slider {
  height: 20rem;
  margin: 7rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 12.5rem 0 14rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 100%;
  height: 7rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.access::after {
  top: auto;
  bottom: 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9rem;
  margin: 8.5rem auto 5rem;
}

@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 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 500;
}

.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: 38rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 10.5rem 0 15.5rem;
}

.insta__contents {
  width: 87rem;
  margin: 9rem 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;
}


.policy__img p{
    width: 34rem;
    margin:0 -7rem 0 auto;
    font-size: 2.1rem;
    text-align: center;
}

@media (max-width: 767px) {
    .policy__img p{
        width: 50%;
        font-size: 1.9rem;
    }
}