@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::after {
  content: "";
  display: block;
  background-color: var(--brown);
  width: max(50px, 8rem);
  height: 2px;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background-color: var(--white);
  color: var(--black);
}

/*============================
  header
============================*/
@media (min-width: 768px) {
  .header.top .header__logo {
    width: 21rem;
    top: 7rem;
    left: 10rem;
  }
}

@media (max-width: 767px) {
  .header.top .header__logo {
    width: max(56px, 8rem);
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(78rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(35, 24, 21, 1));
  width: 100%;
  height: 18rem;
  mix-blend-mode: multiply;
  opacity: 0.3;
  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;
}

/*============================
	policy
============================*/
.policy {
  padding: 7.5rem 0 13.5rem;
  position: relative;
}

.policy::before {
  content: "";
  background-color: var(--black);
  width: 100%;
  height: 15rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.policy__ttl-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__ttl-wrapper {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.policy__ttl-wrapper h2 {
  font-size: max(24px, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
}

@media (min-width: 768px) {
  .policy__ttl-wrapper h2 {
    line-height: 2;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-top: 16rem;
  }
}

.policy__ttl-wrapper h2 strong {
  font-weight: 400;
  color: var(--brown);
}

.policy__ttl-wrapper h2::before {
  content: "";
  width: 31.1rem;
  height: 31.1rem;
  border: solid 2px var(--white);
  border-radius: 50%;
  position: absolute;
  top: 2.5rem;
  right: -11rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__ttl-wrapper h2::before {
    width: 27rem;
    height: 27rem;
    top: -14rem;
    right: auto;
    left: -6rem;
  }
}

.policy__contents-1 {
  width: 97rem;
  display: flex;
  gap: 6rem 9rem;
  margin: 0 auto;
}

.policy__contents-2 {
  width: 104rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 6rem 12.5rem;
  margin: 22rem auto 0;
}

@media (max-width: 767px) {
  .policy__contents-1,
  .policy__contents-2 {
    width: 90%;
    flex-direction: column-reverse;
  }

  .policy__contents-2 {
    margin: 12rem auto 0;
  }
}

.policy__txt-wrapper {
  width: 100%;
  position: relative;
}

.policy__txt-wrapper::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.policy__contents-1 .policy__txt-wrapper::before {
  background: url("../img/policy_txt-deco-1.png") no-repeat center / contain;
  width: 64.4rem;
  height: 62.4rem;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.policy__contents-2 .policy__txt-wrapper::before {
  background: url("../img/policy_txt-deco-2.png") no-repeat center / contain;
  width: 78.4rem;
  height: 80.2rem;
  transform: translate(-50%, -50%);
  top: 42%;
  left: 30%;
}

@media (max-width: 767px) {
  .policy__contents-1 .policy__txt-wrapper::before {
    width: 64.4rem;
    height: 62.4rem;
  }

  .policy__contents-2 .policy__txt-wrapper::before {
    top: 50%;
    left: 47%;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(18px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 auto 6.5rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h3 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .policy__contents-1 .policy__txt-wrapper h3 {
    margin-top: -4rem;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 {
    margin: 0 auto 4rem;
  }
}

.policy__txt-wrapper h3 span {
  display: block;
  background-color: var(--white);
  width: max-content;
  height: max-content;
  padding: 0.5rem 0;
}

.policy__txt-wrapper h3 span:not(:last-of-type) {
  margin-left: 1.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 span {
    padding: 0 1rem;
  }

  .policy__txt-wrapper h3 span:not(:last-of-type) {
    margin: 0 0 1.5rem;
  }
}

.policy__txt-wrapper p {
  line-height: 2;
}

.policy__contents-2 .policy__txt-wrapper p {
  margin-bottom: 29.5rem;
}

@media (max-width: 767px) {
  .policy__contents-2 .policy__txt-wrapper p {
    margin-bottom: 6rem;
  }
}

.policy__img-1 {
  width: 92rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

.policy__img-2,
.policy__img-3 {
  width: 78rem;
  height: 100%;
  flex-shrink: 0;
}

.policy__img-2 {
  display: grid;
  grid-template-columns: 30rem 47rem;
  gap: 1rem;
  margin-top: 12rem;
  margin-right: calc(50% - 50vw);
}

.policy__img-3 {
  margin-left: calc(50% - 50vw);
  position: relative;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 105%;
  }

  .policy__img-2 {
    width: 105%;
    grid-template-columns: 36% 64%;
    margin-top: 10rem;
  }

  .policy__img-3 {
    width: 105%;
  }
}

.policy__img-3 figure:nth-of-type(1) {
  width: 64rem;
  margin-bottom: 1rem;
}

.policy__img-3 figure:nth-of-type(2) {
  display: grid;
  grid-template-columns: 30rem 47rem;
  gap: 1rem;
}

@media (max-width: 767px) {
  .policy__img-3 figure:nth-of-type(1) {
    width: 85%;
  }

  .policy__img-3 figure:nth-of-type(2) {
    grid-template-columns: 36% 64%;
  }
}

.policy__img-3::before {
  content: "";
  background-color: var(--black);
  width: 52rem;
  height: 80.5rem;
  position: absolute;
  top: 11.5rem;
  right: 7.5rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__img-3::before {
    top: 5rem;
    right: 2rem;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 10rem 0 20rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.jpg") no-repeat center / cover;
  width: 100%;
  height: 96rem;
  opacity: 0.6;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    height: 60rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 10rem auto 17.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 15rem;
  }
}

.menu__list-item {
  display: flex;
  position: relative;
}

.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__list-item::before {
  content: "";
  background-color: var(--black);
  width: 101rem;
  height: calc(100% - 21rem);
  position: absolute;
  left: -6rem;
  bottom: -4rem;
  pointer-events: none;
}

.menu__list-item:nth-of-type(even)::before {
  left: auto;
  right: -6rem;
}

.menu__txt-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 4.5rem 4.5rem 5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    margin-right: -9rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    margin: 0 0 0 -9rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(24px, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.menu__txt-wrapper h3 strong {
  font-weight: 400;
  color: var(--brown);
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__img {
  width: 67rem;
  height: 100%;
  flex-shrink: 0;
  margin-top: 5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img figcaption {
  background-color: var(--white);
  font-size: max(24px, 3.2rem);
  color: var(--black);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 2rem 0.9rem;
  position: absolute;
  top: -5rem;
  right: 4rem;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  right: auto;
  left: 3rem;
}

/*============================
	access
============================*/
.access {
  background-color: #eee;
  padding: 10.5rem 0 10rem;
}

.access__txt {
  width: 90%;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin: 5.5rem auto 7.5rem;
}

.access__list {
  width: 120rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem 7rem;
  padding: 0 5rem 6.5rem;
  margin: 0 auto 7.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.access__list::before {
  content: "";
  background-color: var(--black);
  width: 100%;
  height: 29.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access__list::before {
    display: none;
  }
}

.access__list li {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__list li::before {
    content: "";
    background-color: var(--black);
    width: 90vw;
    height: 29.5rem;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -5rem;
    pointer-events: none;
    z-index: -1;
  }
}

.access__list-bg {
  background-color: var(--white);
  padding: 2.5rem 3rem 3rem;
  position: relative;
  z-index: 1;
}

.access__list-bg::before {
  content: "";
  display: block;
  background-color: #555;
  width: 100%;
  height: max(3px, 0.5rem);
}

.access__list h3 {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.access__list h3 span {
  font-size: max(16px, 2.4rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.6rem;
  margin-top: 0.6rem;
}

.access__list h3 span::before {
  content: "";
  display: block;
  background-color: var(--black);
  width: 10.5rem;
  height: 1px;
}

.access__logo {
  display: block;
  width: 21.4rem;
  margin: 3rem auto 3.5rem;
}

.access__btn {
  width: max-content;
  margin: 0 auto;
}

.access__btn a {
  border-bottom: solid 1px var(--black);
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem 0.8rem;
}

.access__btn a::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: max(9px, 1.1rem);
  height: max(10.6px, 1.3rem);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/*============================
	news
============================*/
.news {
  background: var(--bg-3);
  padding: 10.5rem 0;
}

.news__inner {
  width: 120rem;
  padding-bottom: 5rem;
  margin: 7rem auto;
  position: relative;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.news__inner::before {
  content: "";
  background-color: #eee;
  width: 100%;
  height: calc(100% - 10rem);
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 0 auto;
}

@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;
}

/*============================
	gallery
============================*/
.gallery {
  background-color: var(--black);
  padding: 10.5rem 0 9.5rem;
}

.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;
}

/*============================
	insta
============================*/
.insta {
  padding: 11.5rem 0 13.5rem;
  position: relative;
}

.insta::before {
  content: "";
  background: url("../img/texture-2.jpg") no-repeat center / 144rem auto;
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta::before {
    background: var(--bg-2);
  }
}

.insta__contents {
  width: 82rem;
  margin: 7.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.8rem;
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
  parallax
============================*/
.parallax {
  width: 100%;
  height: 47rem;
  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;
}
