@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 4rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  display: block;
  font-family: var(--font-ttl);
  font-size: max(70px, 13.4rem);
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  margin: -1rem 0 -4.5rem;
        color: #494646;
}

.common__ttl--wt span {
  color: #494646;
}

.common__btn {
  width: max(160px, 20rem);
  height: max(40px, 4.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-size: max(12px, 1.4rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(8px, 1rem);
  position: relative;
}

.common__btn--wt a {
  background-color: transparent;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(30.8px, 3.7rem);
  height: max(5px, 0.6rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before,
.hero::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero::before {
  background: linear-gradient(0deg, var(--white) 30%, #40220f);
  height: 100%;
  mix-blend-mode: multiply;
}

.hero::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  height: 23rem;
  opacity: 0.5;
}

.hero__ttl {
  font-size: max(18px, 4rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  filter: drop-shadow(0 0 1rem rgba(33, 24, 21, 0.5)) drop-shadow(0 0 1rem rgba(33, 24, 21, 0.5));
  position: absolute;
  right: 19rem;
  bottom: 22%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(24px, 4rem);
    writing-mode: horizontal-tb;
    position: absolute;
    right: auto;
    left: 5%;
    bottom: 5%;
  }
}

.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;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-family: var(--font-en);
  font-size: max(12px, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 18rem;
  bottom: -3rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(80px, 16.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 7.5rem 0 9.5rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 9.5rem auto 7rem;
}

@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 {
  font-weight: 300;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
/*  background: var(--bg-3);*/
  padding: 13.5rem 0;
  position: relative;
}

.policy::before {
  /* content: ""; */
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 31.2rem;
  height: 26.2rem;
  position: absolute;
  right: 8.5rem;
  bottom: 5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 21rem;
    height: 17.6rem;
    right: 2rem;
    bottom: 2rem;
  }
}

.policy__list {
  width: 119rem;
  display: flex;
  flex-direction: column;
  row-gap: 27rem;
  margin: 0 auto 9.5rem;
}

@media (max-width: 767px) {
  .policy__list {
    width: 90%;
    row-gap: 10rem;
  }
}

.policy__list-item {
  display: flex;
}

.policy__list-item:nth-of-type(1) {
  flex-direction: row-reverse;
}

@media (max-width: 850px) {
  .policy__list-item {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .policy__list-item,
  .policy__list-item:nth-of-type(1) {
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
  padding: 6rem 4.5rem 4rem 22.5rem;
  position: relative;
}

.policy__list-item:nth-of-type(even) .policy__txt-wrapper {
  padding: 4.5rem 21.5rem 4.5rem 5rem;
  margin: 3.5rem -18rem 0 0;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    width: 70rem;
    height: max(500px, 50.4rem);
    writing-mode: vertical-rl;
    margin: 6rem 0 0 -17.5rem;
    position: relative;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper,
  .policy__list-item:nth-of-type(even) .policy__txt-wrapper {
    padding: 4rem;
    margin: 0;
  }
}

.policy__txt-wrapper::before {
  content: "";
  background-color: #947148;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.policy__txt-wrapper::after {
  font-size: 39.5rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 2px #d3ccbc;
  text-stroke: 2px #d3ccbc;
  line-height: 1;
  opacity: 0.8;
  position: absolute;
  top: -18rem;
}

.policy__list-item:nth-of-type(1) .policy__txt-wrapper::after {
  content: "串";
  right: -11.5rem;
}

.policy__list-item:nth-of-type(2) .policy__txt-wrapper::after {
  content: "楽";
  left: -10rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::after,
  .policy__list-item:nth-of-type(1) .policy__txt-wrapper::after,
  .policy__list-item:nth-of-type(2) .policy__txt-wrapper::after {
    font-size: 27rem;
    transform: none;
    top: -8rem;
    right: -6rem;
    left: auto;
  }
}

.policy__txt-wrapper h3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 1.3rem;
  margin: 0 0 4rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h3 {
    margin: 0 0 0 4rem;
  }
}

.policy__txt-wrapper h3 span {
  background-color: var(--brown);
  height: max-content;
  font-size: max(14px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 1.5rem 0.5rem 2rem;
}

.policy__txt-wrapper h3 span:nth-of-type(2) {
  font-size: max(18px, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 1.5rem 1.2rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 span,
  .policy__txt-wrapper h3 span:nth-of-type(2) {
    width: max-content;
    height: auto;
    line-height: 1.5;
    padding: 1rem 1.5rem;
  }
}

.policy__txt-wrapper p {
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 2;
  position: relative;
  z-index: 1;
}

.policy__img {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

.policy__img img {
  filter: var(--shadow);
}

.policy__img::before,
.policy__img::after {
  content: "";
  filter: drop-shadow(0 0 1rem rgba(33, 24, 21, 0.5));
  position: absolute;
  pointer-events: none;
}

.policy__list-item:nth-of-type(1) .policy__img::before {
  background: url("../img/policy_img-deco-1.png") no-repeat center / contain;
  width: 37.2rem;
  height: 30.6rem;
  left: -9rem;
  bottom: -25rem;
  z-index: 1;
}

.policy__list-item:nth-of-type(1) .policy__img::after {
  background: url("../img/policy_img-deco-2.png") no-repeat center / contain;
  width: 41.4rem;
  height: 29.6rem;
  right: -9rem;
  bottom: -34rem;
}

/* .policy__list-item:nth-of-type(2) .policy__img::before {
  background: url("../img/policy_img-deco-3.png") no-repeat center / contain;
  width: 30.6rem;
  height: 23.4rem;
  left: -1.5rem;
  bottom: -28.5rem;
  z-index: 1;
} */

@media (max-width: 767px) {
  .policy__list-item:nth-of-type(1) .policy__img::before {
    width: 28rem;
    height: 23rem;
    left: -4rem;
    bottom: -6rem;
  }

  .policy__list-item:nth-of-type(1) .policy__img::after {
    width: 30rem;
    height: 21.4rem;
    right: -4rem;
    bottom: -6rem;
  }

  .policy__list-item:nth-of-type(2) .policy__img::before {
    width: 21rem;
    height: 16rem;
    bottom: -6rem;
  }
}

@media (min-width: 768px) {
  .policy__btn {
    width: 102rem;
    margin: 0 auto;
  }

  .policy .common__btn {
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
/*  background: var(--bg-3);*/
  color: var(--white);
  padding: 10rem 0 13.5rem;
  background-color: #000;
}

.menu__list {
  width: 108rem;
  display: flex;
  flex-direction: column;
  row-gap: 12rem;
  margin: 12rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 9rem;
}

@media (max-width: 767px) {
  .menu__list-item {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.3rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.1em;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: max-content;
  font-family: var(--font-menu);
  font-size: max(40px, 7rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 2rem auto;
}

@media (min-width: 768px) {
  .menu__txt-wrapper h3 span {
    margin: -6rem 0 2rem auto;
  }
}

.menu__txt-wrapper h3 strong {
  font-size: max(20px, 3rem);
  font-weight: 500;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  padding-top: 3.5rem;
  margin: 3.5rem 0 4.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    margin: 3.5rem 8rem 4.5rem 0;
  }
}

.menu__txt-wrapper p::before {
  content: "";
  background-color: var(--white);
  width: calc(100% + 13.5rem);
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 45rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 8rem 0 9rem;
  position: relative;
}

.gallery::before {
  /* content: ""; */
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 31.8rem;
  height: 30.8rem;
  filter: var(--shadow);
  position: absolute;
  top: -14.5rem;
  right: 9rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 21rem;
    height: 20.3rem;
    top: -8rem;
    right: 2rem;
  }
}

.gallery__slider {
  background-color: #000;
  height: 33.4rem;
  padding: 4rem 0;
  margin: 8rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
/*  background: var(--bg-3);*/
  color: var(--white);
  padding: 9rem 0 10rem;
  position: relative;
  background-color: #000;
}

.access::before {
  /* content: ""; */
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 44.8rem;
  height: 34.6rem;
  filter: var(--shadow);
  position: absolute;
  top: -12.5rem;
  left: 7.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 32rem;
    height: 24.7rem;
    top: -10rem;
    left: 2rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8rem;
  margin: 9rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 60.5rem;
  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 5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5rem;
  }
}

.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));
  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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 8.5rem 0 8rem;
}

.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;
  }
}
