@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(10px, 1.2rem);
  font-weight: 300;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-family: var(--font-al);
  font-size: max(30px, 5rem);
  font-weight: 400;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(20px, 2.7rem);
  height: max(28.9px, 3.9rem);
  margin-bottom: 1.5rem;
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(180px, 32rem);
  height: max(50px, 7rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 2px var(--black);
  font-size: max(12px, 1.8rem);
  padding: max(3px, 0.5rem);
  position: relative;
}

.common__btn--wt a {
  border: solid 2px var(--white);
  color: var(--white);
}

.common__btn a::before {
  content: "";
  background-color: var(--black);
  width: 13rem;
  height: 1px;
  position: absolute;
  transform: translate(50%, -50%);
  top: 50%;
  right: 0;
  pointer-events: none;
}

.common__btn--wt a::before {
  background-color: var(--white);
}

.common__btn span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
}

.common__btn--wt span {
  border: solid 1px var(--white);
}

@media (min-width: 768px) {
  .news .common__btn {
    width: max(160px, 20rem);
    height: max(45px, 6rem);
  }

  .news .common__btn a {
    font-size: max(12px, 1.6rem);
  }

  .news .common__btn a::before {
    width: 7.4rem;
    right: -1rem;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 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;
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(35, 24, 7, 0), var(--black));
  width: 100%;
  height: 18rem;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/*============================
	policy
============================*/
.policy {
  padding: 7rem 0 11rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 45rem 0 17rem;
  }
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center / cover;
  width: 130rem;
  height: 74rem;
  top: 0;
  left: 0;
}

.policy::after {
  background: url("../img/policy_deco-2.png") no-repeat center / cover;
  width: 50.4rem;
  height: 31.8rem;
  left: 7rem;
  bottom: 4rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy::before {
    width: 90rem;
    height: 51.2rem;
  }

  .policy::after {
    width: 32rem;
    height: 20.2rem;
    left: -4rem;
    bottom: -4rem;
  }
}

.policy__contents {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    width: 50rem;
    padding-left: 8rem;
    margin-left: auto;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(18px, 3rem);
  font-weight: 500;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-left: auto;
  }
}

.policy__txt-wrapper h2 span {
  display: block;
  margin: 6rem 3rem 0 0;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 span {
    margin: 2rem 0 0 6rem;
  }
}

.policy__txt-wrapper p {
  line-height: 2;
  margin: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    margin: 15rem 0 4rem;
  }

  .policy .common__btn {
    margin: 0;
  }
}

.policy__txt-wrapper p span {
  font-family: var(--font-al);
  font-size: 10.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  position: absolute;
  transform: rotate(-16deg);
  top: -12rem;
  left: -12rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p span {
    top: -32rem;
    left: -2rem;
  }
}

/*============================
	menu
============================*/
.menu {
  color: var(--white);
  position: relative;
}

.menu__ttl {
  display: block;
  width: 11.2rem;
  mix-blend-mode: soft-light;
  position: absolute;
  top: 46rem;
  left: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__ttl {
    top: 60rem;
    right: 0;
    left: auto;
  }
}

.menu__list {
  width: 100%;
}

.menu__list-item {
  background: var(--bg-2);
  padding: 19rem 0 22.5rem;
  position: relative;
  overflow: hidden;
}

.menu__list-item:nth-of-type(2) {
  background: url("../img/menu_bg.jpg") no-repeat center / cover;
  padding: 21rem 0;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(2) {
    flex-direction: column-reverse;
    padding: 20rem 0;
  }
}

.menu__list-item::before,
.menu__list-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1)::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 34.8rem;
  height: 31.4rem;
  mix-blend-mode: soft-light;
  top: -8.5rem;
  left: 52rem;
}

.menu__list-item:nth-of-type(1)::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 39.8rem;
  height: 41rem;
  mix-blend-mode: soft-light;
  right: -1.5rem;
  bottom: -13.5rem;
}

.menu__list-item:nth-of-type(2)::before {
  background: linear-gradient(90deg, rgba(35, 24, 7, 0), var(--black));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1)::before {
    width: 30rem;
    height: 27rem;
    top: -5rem;
    right: 2rem;
    left: auto;
  }

  .menu__list-item:nth-of-type(1)::after {
    width: 30rem;
    height: 30.9rem;
    bottom: -8rem;
  }

  .menu__list-item:nth-of-type(2)::before {
    background: var(--black);
    opacity: 0.5;
  }
}

.menu__contents {
  width: 100rem;
  display: flex;
  gap: 7rem;
  margin: 0 auto;
}

.menu__list-item:nth-of-type(2) .menu__contents {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__contents,
  .menu__list-item:nth-of-type(2) .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 45rem;
  }
}

.menu .common__ttl {
  width: max-content;
}

.menu__txt-wrapper h4 {
  font-size: max(14px, 2rem);
  font-weight: 500;
  margin-top: 5rem;
}

.menu__txt-wrapper p {
  line-height: 2;
  margin: 1.5rem 0 7rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 69.5rem;
  height: 100%;
  flex-shrink: 0;
  margin: 3.5rem calc(50% - 50vw) 0 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  pointer-events: none;
  z-index: -1;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 7.5rem 0 12rem;
}

.gallery__slider {
  height: 34.5rem;
  margin: 9rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 55.2rem;
}

/*============================
	access
============================*/
.access {
  padding: 6.5rem 0 15.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 11.5rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img-wrapper {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img-wrapper {
    width: 100%;
  }
}

.access__img {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .access__img {
    margin-bottom: 6rem;
  }
}

.access__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
  z-index: -1;
}

.access__list {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .access__list {
    margin-bottom: 6rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 0;
}

.access__list dt {
  width: max(75px, 16rem);
  font-weight: 400;
}

.access__list dt:first-of-type {
  border-top: solid 1px var(--black);
}

.access__list dd {
  width: calc(100% - max(75px, 16rem));
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }

  .access__list dd:first-of-type {
    border-top: 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: 45rem;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-3);
  color: var(--white);
  padding: 11rem 0 9rem;
}

.news__inner {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7.4rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 15.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	insta
============================*/
.insta {
  padding: 10rem 0;
  position: relative;
}

.insta__ttl {
  display: block;
  width: 14rem;
  mix-blend-mode: soft-light;
  position: absolute;
  right: -4.5rem;
  bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .insta__ttl {
    right: -5rem;
    bottom: 1rem;
  }
}

.insta__contents {
  width: 78.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.3rem 4.7rem;
}

.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: 23rem;
  height: 23rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
