@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem 2.5rem;
}

.access .common__ttl {
  flex-direction: row;
  align-items: baseline;
}

.common__ttl span {
  display: block;
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.common__btn {
  width: max(174px, 24rem);
  height: max(45px, 6.2rem);
  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-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.2em;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 26.4rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__logo {
  display: block;
  width: 14.6rem;
  position: absolute;
  left: 10rem;
  bottom: 4.5rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(80px, 12rem);
    left: 3rem;
    bottom: 3rem;
  }
}

.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;
}

/*============================
	news
============================*/
.news {
  padding: 11rem 0 12rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 25.4rem;
  height: 18.6rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.news::before {
  top: 7.5rem;
  left: 8.5rem;
}

.news::after {
  right: 10rem;
  bottom: 8rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 21rem;
    height: 15.4rem;
  }

  .news::before {
    top: 6rem;
    left: 2rem;
  }

  .news::after {
    right: 2rem;
    bottom: 4rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 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: 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;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 13rem 0 12rem;
  position: relative;
}

.policy::before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), #331f00);
  width: 99rem;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.policy__contents {
  width: 110rem;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__contents::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 22.4rem;
  height: 24.6rem;
  position: absolute;
  right: -10rem;
  bottom: -8.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__contents::before {
    right: -2rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 8rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(410px, 41rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-left: 4.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;
}

.policy .common__btn {
  margin: 0 0 0 4.5rem;
}

@media (max-width: 767px) {
  .policy .common__btn {
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 16rem 0 15rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
  margin: 10rem auto 14rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 8rem;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 5.5rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco-1.png") no-repeat center / contain;
  width: 32rem;
  height: 32.4rem;
  position: absolute;
  top: -3rem;
  right: -2.5rem;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
  background: url("../img/menu_txt-deco-2.png") no-repeat center / contain;
  width: 32.4rem;
  height: 31.8rem;
  top: -2.5rem;
  left: -6rem;
  right: auto;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
  background: url("../img/menu_txt-deco-3.png") no-repeat center / contain;
  width: 32rem;
  height: 32.2rem;
  top: -2.5rem;
  right: -1.5rem;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 96%;
  }

  .menu__list-item:nth-of-type(even) .menu__img {
    margin-left: auto;
  }
}

.menu__img figcaption {
  background: url("../img/menu_ttl-deco.png") no-repeat center / contain;
  width: max(45px, 6.6rem);
  height: max(125px, 18.3rem);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  padding-top: max(20px, 3.5rem);
  position: absolute;
  top: -2rem;
  right: -3rem;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  left: -3rem;
  right: auto;
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 14rem 0 14.5rem;
}

.gallery__slider {
  height: 20rem;
  margin: 8.5rem 0 10.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center left / cover;
  color: var(--white);
  padding: 15rem 0 14rem;
  position: relative;
}

@media (max-width: 767px) {
  .access::before {
    content: "";
    background-color: #3d1c04;
    opacity: 0.4;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5rem;
  margin: 8rem auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__txt-wrapper {
  width: 50rem;
  margin-left: auto;
}

@media (max-width: 767px) {
  .access__txt-wrapper {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 7rem 0 6rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  padding: 13rem 0 18rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 30rem;
  height: 8.4rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  top: 7rem;
  left: 10rem;
}

.insta::after {
  right: 5.5rem;
  bottom: 9rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 26rem;
    height: 7.3rem;
  }

  .insta::before {
    top: 5rem;
    left: 2rem;
  }

  .insta::after {
    right: 2rem;
    bottom: 4rem;
  }
}

.insta__contents {
  width: 87rem;
  margin: 6rem 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;
  }
}
