@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.1em;
  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-en);
  font-size: max(40px, 6rem);
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: -1rem;
  position: relative;
}

.common__ttl span::before {
  content: "";
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 6rem;
  height: 5.6rem;
  position: absolute;
  transform: translateX(100%);
  top: -1.4rem;
  right: 2rem;
  pointer-events: none;
}

.common__ttl--wt span::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}

.common__btn--wt a {
  color: var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(40px, 6rem);
  height: max(27.3px, 4.1rem);
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), #ff9999);
  width: 100%;
  height: 19rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__logo {
  display: block;
  width: 44.5rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(200px, 32rem);
    top: 55%;
  }
}

@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-size: max(10px, 1.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 14rem;
  bottom: 2.5rem;
  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(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 12.5rem 0 10.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5.5rem auto 8rem;
}

@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-MORE-READ {
  display: none;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  color: var(--white);
  padding: 12.5rem 0 20rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 50.6rem;
  height: 29.8rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu::after {
  transform: scale(-1, 1);
  left: auto;
  right: 0;
}

@media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 32rem;
    height: 18.8rem;
  }
}

.menu__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 8.5rem;
  margin: 12rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 2rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: max(130px, 18rem);
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2.5rem 0 6rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 52rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 10rem 17rem 9.5rem;
}

@media (max-width: 767px) {
  .gallery {
    padding: 10rem 5% 9.5rem;
  }
}

.gallery__txt-wrapper {
  width: max(250px, 37rem);
}

.gallery__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4rem 0 5.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 12.5rem 0 13.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 42.4rem;
  height: 35.8rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 32rem;
    height: 27rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__map {
  width: 49rem;
  height: 56rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 50rem;
  }
}

.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 {
  letter-spacing: 0.05em;
  padding: 2.4rem 1.6rem;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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 {
  background: var(--bg-2);
  padding: 11rem 0 14.5rem;
  position: relative;
  overflow: hidden;
}

.insta::before {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 134.8rem;
  height: 91.2rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.insta__contents {
  width: 88.7rem;
  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: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
