@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(10px, 1.2rem);
  font-weight: 600;
  color: #b9aa80;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--bl {
  color: var(--black);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco-1.png") no-repeat center / contain;
  width: max(80px, 12.8rem);
  height: max(81.2px, 13rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.common__ttl--bl::before {
  background: url("../img/ttl_deco-bl-1.png") no-repeat center / contain;
}

.common__ttl span {
  font-family: var(--font-yuji);
  font-size: max(24px, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco-2.png") no-repeat center / contain;
  width: max(48px, 7.2rem);
  height: max(2px, 0.3rem);
}

.common__ttl--bl span::after {
  background: url("../img/ttl_deco-bl-2.png") no-repeat center / contain;
}

.insta .common__ttl span::after {
  display: none;
}

.common__btn {
  width: max(167px, 21.2rem);
  height: max(48px, 6.1rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
  color: var(--white);
}

/*============================
	header
============================*/
.header.top {
  height: max(90rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: 34rem;
    padding-top: 4.5rem;
  }

  .header.top .header__logo {
    margin: 0 auto 5rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1000px) {
  .header.top {
    height: max(100rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding-left: 34rem;
  position: relative;
}

@media (max-width: 1000px) {
  .hero {
    height: max(100rem, 100vh);
  }
}

@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;
  left: auto !important;
  right: 15rem;
  bottom: 3.5rem !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    right: 5%;
  }
}

.hero .swiper-pagination-bullet {
  background-color: #b7b8b8;
  width: 9px !important;
  height: 9px !important;
  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(--red);
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  color: var(--white);
  padding: 8.5rem 0 6rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 6.5rem auto 5.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: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK {
  margin-top: 0.5rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  padding: 10rem 0 6.5rem;
  position: relative;
}

.policy::before {
  content: "";
  background: url("../img/deco-1.png") no-repeat center / contain;
  width: 27.2rem;
  height: 19.4rem;
  position: absolute;
  top: 7.5rem;
  right: -6rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy::before {
    width: 20rem;
    height: 14.3rem;
    top: 1rem;
    right: -3rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 4rem;
  padding-right: 6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 5rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 54.8rem;
  height: 37.8rem;
  position: absolute;
  right: -16rem;
  bottom: -2rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before {
    width: 45rem;
    height: 31rem;
    right: 0;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(20px, 3.9rem);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin: 0 0 3rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h2 {
    margin: -3.5rem 0 0 6.5rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    height: max(400px, 46.5rem);
  }

  .policy .common__btn {
    margin: 0;
  }
}

.policy__img-wrapper {
  width: 70rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 2rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  position: relative;
}

@media (max-width: 767px) {
  .policy__img-wrapper {
    width: 100%;
    margin: 0;
  }
}

.policy__img-wrapper::before {
  content: "";
  background: url("../img/deco-1.png") no-repeat center / contain;
  width: 27.2rem;
  height: 19.4rem;
  position: absolute;
  top: 14rem;
  right: -12.5rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__img-wrapper::before {
    display: none;
  }
}

.policy__img-1 {
  width: 100%;
}

.policy__img-2 {
  width: 62.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-right: -9rem;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .policy__img-2 {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  color: var(--white);
  padding: 14.5rem 0 14rem;
  position: relative;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 21.5rem;
  margin: 10rem auto 10.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 10rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem;
}

.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 {
    position: relative;
    z-index: 1;
  }
}

.menu__ttl-wrapper {
  width: 100%;
  writing-mode: vertical-rl;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    margin-top: -5rem;
  }
}

.menu__txt-wrapper h3 {
  font-family: var(--font-yuji);
  font-size: max(36px, 6.6rem);
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-left: 5rem;
}

.menu__txt-wrapper h3 span {
  font-family: var(--font-serif);
  font-size: max(10px, 1.2rem);
  text-transform: capitalize;
}

.menu__txt-wrapper h4 {
  font-size: max(16px, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.3;
  margin-top: 10rem;
}

.menu__txt-wrapper h4 strong {
  font-size: max(20px, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--black);
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 3rem 2rem 3rem 3rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    margin-right: -17rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper p {
    margin: 0 0 0 -17rem;
  }
}

.menu__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1) .menu__img::before {
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 49rem;
  height: 33.8rem;
  right: -12rem;
  bottom: -21rem;
}

.menu__list-item:nth-of-type(2) .menu__img::before {
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 47.2rem;
  height: 43.6rem;
  left: -9rem;
  bottom: -32rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img::before {
    width: 40rem;
    height: 27.6rem;
    right: auto;
    left: -2rem;
    bottom: -16rem;
  }

  .menu__list-item:nth-of-type(2) .menu__img::before {
    width: 40rem;
    height: 36.9rem;
    left: -2rem;
    bottom: -15rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding-top: 10.5rem;
  position: relative;
  z-index: 1;
}

.gallery::before,
.gallery::after {
  content: "";
  background: url("../img/deco-1.png") no-repeat center / contain;
  width: 34.4rem;
  height: 24.6rem;
  position: absolute;
  pointer-events: none;
}

.gallery::before {
  top: -9rem;
  left: 8.5rem;
}

.gallery::after {
  right: 3.5rem;
  bottom: -24rem;
}

@media (max-width: 767px) {
  .gallery::before,
  .gallery::after {
    width: 25rem;
    height: 17.9rem;
  }

  .gallery::before {
    top: -6rem;
    left: 2rem;
  }

  .gallery::after {
    right: 1rem;
    bottom: -20rem;
  }
}

.gallery__slider {
  height: 20rem;
  margin: 9rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 36.5rem 0 10rem;
  margin-top: -4rem;
  position: relative;
  clip-path: polygon(0 0, 100% 29rem, 100% 100%, 0% 100%);
}

@media (max-width: 767px) {
  .access {
    padding: 25rem 0 10rem;
    margin: 0;
    clip-path: polygon(0 0, 100% 15rem, 100% 100%, 0% 100%);
  }
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / cover;
  width: 100rem;
  height: 70rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 70rem;
    height: 49rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 4.5rem;
  margin: 9.5rem auto 8.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 47rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -3rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.8rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt {
    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;
  }
}

.top__map {
  height: 37rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 13rem 0 13.5rem;
}

.insta__contents {
  width: 87rem;
  margin: 12.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: 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;
  }
}
