@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-yuji);
  font-size: max(21px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  font-family: var(--font-serif);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  color: #8a8a8a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl--bl,
.common__ttl--bl span {
  color: var(--black);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(30px, 5rem);
  height: max(31.8px, 5.3rem);
}

.common__btn {
  width: max(180px, 24rem);
  height: max(45px, 6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-size: max(12px, 1.4rem);
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--bl a {
  background-color: var(--black);
  border: none;
}

.common__btn a::after {
  content: "";
  background-color: var(--brown);
  width: max(6px, 0.7rem);
  height: max(11.1px, 1.3rem);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 2rem;
  pointer-events: none;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 75%);
  width: 100%;
  height: 20rem;
  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;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 8.5rem 0 17rem;
}

.insta__contents {
  width: 87rem;
  margin: 6.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;
  }
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  padding: 13rem 0 19rem;
  position: relative;
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 25.2rem;
  height: 24.8rem;
  position: absolute;
  right: 6rem;
  bottom: 3.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    right: 2rem;
    bottom: 3.5rem;
  }
}

.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: 5rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 10rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(500px, 50rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: -5.5rem 0 16rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 3.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  padding-top: 5.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    padding: 0 0 0 4rem;
  }
}

.policy__txt-wrapper p::before {
  content: "";
  background: url("../img/policy_txt-deco.png") repeat-x center / auto 100%;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p::before {
    background: url("../img/policy_txt-deco-sp.png") repeat-y center / 100% auto;
    width: 3px;
    height: 100%;
  }
}

.policy .common__btn {
  margin: 0;
}

.policy__img {
  width: 69.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

.policy__img img:nth-of-type(2) {
  width: 35rem;
  height: auto;
  margin: -5rem -10rem 0 auto;
}

@media (max-width: 767px) {
  .policy__img img:nth-of-type(2) {
    width: 50%;
    margin: -8rem -5% 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 10rem 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: 19rem;
  height: 10.8rem;
  top: 6rem;
  right: 10rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 55rem;
  height: 56.2rem;
  left: -6rem;
  bottom: -12rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 15rem;
    height: 8.5rem;
    top: 3rem;
    right: 3rem;
  }

  .menu::after {
    width: 40rem;
    height: 40.9rem;
    bottom: -12rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 14rem;
  margin: 7rem auto 8rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__ttl-wrapper {
  display: flex;
  justify-content: space-between;
  padding-left: 5rem;
}

.menu__list-item:nth-of-type(odd) .menu__ttl-wrapper {
  flex-direction: row-reverse;
  padding: 0 5rem 0 0;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper,
  .menu__list-item:nth-of-type(odd) .menu__ttl-wrapper {
    flex-direction: column;
    padding: 0;
    margin-bottom: 4rem;
  }

  .menu__ttl {
    margin: 0 auto 6rem;
  }
}

.menu__ttl h3 {
  font-family: var(--font-yuji);
  font-size: max(28px, 5.4rem);
  font-weight: 400;
  color: #b5aa69;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 0 3rem;
  position: relative;
}

.menu__ttl h3 span {
  font-family: var(--font-serif);
  font-size: max(10px, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .menu__ttl h3 span {
    font-size: max(10px, 1.6rem);
  }
}

.menu__ttl h3::before {
  content: "";
  background: url("../img/menu_ttl-deco.png") no-repeat center / contain;
  width: max(2px, 0.3rem);
  height: max(204px, 30.6rem);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 4rem 11rem;
}

.menu__list-item:nth-of-type(odd) .menu__txt-wrapper {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    margin-top: -7rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper,
  .menu__list-item:nth-of-type(odd) .menu__txt-wrapper {
    flex-direction: column;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    max-width: 55rem;
    margin-top: 12.5rem;
  }
}

@media (max-width: 767px) {
  .menu .common__btn {
    margin: 0 5% 0 auto;
  }
}

.menu__img {
  display: block;
  height: 100%;
  flex-shrink: 0;
}

.menu__img-1 {
  width: 82rem;
}

.menu__img-2 {
  width: 44rem;
}

@media (max-width: 767px) {
  .menu__img-1,
  .menu__img-2 {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 6rem 0 10rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 5.5rem 0 7.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	news
============================*/
.news {
  background: url("../img/news_bg.jpg") no-repeat center / cover;
  padding: 6rem 0 8rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7rem auto 4.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-TIME {
  margin-bottom: 0.5rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  padding: 8.5rem 0 12rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.access::before {
  background: url("../img/access_deco-1.png") no-repeat center / cover;
  width: 111.2rem;
  height: 69rem;
  left: 0;
  bottom: 0;
}

.access::after {
  background: url("../img/access_deco-2.png") no-repeat center / cover;
  width: 73.2rem;
  height: 50.6rem;
  right: -30rem;
  bottom: -29rem;
}

@media (max-width: 767px) {
  .access::before {
    width: 70rem;
    height: 43.4rem;
  }

  .access::after {
    width: 50rem;
    height: 34.5rem;
    right: -20rem;
    bottom: -14rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6.5rem;
  margin: 7.5rem auto 6.5rem;
}

@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;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -2.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 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;
  }
}
