@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(14px, 2rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem 2rem;
}

.common__ttl--wt {
  color: var(--white);
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3)) drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3));
}

.menu .common__ttl {
  flex-direction: row;
  align-items: baseline;
}

.insta .common__ttl {
  row-gap: 2rem;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(40px, 8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.common__ttl--wt span {
  font-size: max(32px, 6.4rem);
}

.common__btn {
  width: max(160px, 23.2rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.common__btn--wt a {
  background-color: transparent;
  border: solid 1px var(--white);
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  border: solid 1px var(--brown);
  position: absolute;
  top: 2px;
  left: 2px;
  pointer-events: none;
}

.common__btn--wt a::before {
  border: solid 1px var(--white);
  border-top: none;
  border-left: none;
  top: 3px;
  left: 3px;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(22.2px, 2.4rem);
  height: max(5px, 0.55rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(88rem, 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: 16.5rem;
  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;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 10rem 0 9rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept {
    padding: 10rem 0 16rem;
  }
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  mix-blend-mode: screen;
  pointer-events: none;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 24rem;
  height: 29.2rem;
  top: 5rem;
  right: -7rem;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 28.4rem;
  height: 28.2rem;
  left: -3.5rem;
  bottom: 4.5rem;
}

@media (max-width: 767px) {
  .concept::before {
    width: 20rem;
    height: 24.3rem;
  }

  .concept::after {
    width: 22rem;
    height: 21.8rem;
    bottom: 1rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 5.5rem;
    padding-right: 3rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: 10rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  filter: drop-shadow(0 0 2rem var(--brown)) drop-shadow(0 0 2rem var(--brown));
  margin-bottom: 7rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  margin: 2rem 0 4.5rem;
}

.concept__img {
  width: 61.8rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -7rem;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 21rem 0 13.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 21rem 0 20rem;
  }
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 38.8rem;
  height: 31.2rem;
  top: -19.5rem;
  right: -3rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 25.4rem;
  height: 36rem;
  right: 15rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 32rem;
    height: 25.7rem;
    top: -10rem;
  }

  .menu::after {
    width: 21rem;
    height: 29.8rem;
    right: 1rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 11rem;
  margin: 0 auto 8rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 25rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 8rem;
}

.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__txt-wrapper {
  width: 100%;
  position: relative;
}

.menu__txt-wrapper::before,
.menu__txt-wrapper::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__txt-wrapper::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
  background: url("../img/menu_txt-deco-1.png") no-repeat center / contain;
  width: 23.8rem;
  height: 15.4rem;
  top: -11rem;
  right: -7rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::after {
  background: url("../img/menu_txt-deco-2.png") no-repeat center / contain;
  width: 20.2rem;
  height: 22.4rem;
  top: -11rem;
  right: -13rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
    width: 18rem;
    height: 11.6rem;
    top: 0;
    right: -2rem;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper::after {
    width: 16rem;
    height: 17.7rem;
    top: -3rem;
    right: -1rem;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 3rem 0 1.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    margin-bottom: 10rem;
  }
}

.menu__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 90%;
    margin: 0 auto;
  }
}

.menu__list-item:nth-of-type(2) .menu__img::before {
  content: "";
  background: url("../img/menu_img-deco.png") no-repeat center / contain;
  width: 32.9rem;
  height: 48.2rem;
  position: absolute;
  top: -20.5rem;
  left: 3rem;
  pointer-events: none;
}

.menu__img img {
  transform: rotate(10deg);
}

.menu__list-item:nth-of-type(even) .menu__img img {
  transform: rotate(-10deg);
}

@media (max-width: 767px) {
  .menu__img img {
    transform: rotate(5deg);
  }

  .menu__list-item:nth-of-type(even) .menu__img img {
    transform: rotate(-5deg);
  }
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  color: var(--white);
  padding: 9.5rem 0 15.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  mix-blend-mode: screen;
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 28.4rem;
  height: 28.2rem;
  top: 0;
  left: -5rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  width: 27rem;
  height: 23.2rem;
  right: 6.5rem;
  bottom: 5.5rem;
}

@media (max-width: 767px) {
  .news::before {
    width: 23rem;
    height: 22.8rem;
  }

  .news::after {
    width: 22rem;
    height: 18.9rem;
    right: 0;
    bottom: 2rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 7.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(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	cast
============================*/
.cast {
  background: url("../img/cast_bg.jpg") no-repeat center left 30% / cover;
  color: var(--white);
  padding: 8rem 0 11rem;
  position: relative;
}

.cast::before {
  content: "";
  background: linear-gradient(-90deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 50%;
  height: 100%;
  opacity: 0.75;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .cast::before {
    width: 70%;
  }
}

.cast__txt-wrapper {
  width: 60%;
  text-align: center;
  padding: 0 5%;
}

@media (min-width: 768px) {
  .cast__txt-wrapper {
    width: 75rem;
    padding: 0 21rem;
  }
}

.cast__txt-wrapper p {
  margin: 3rem 0 5rem;
}

/*============================
	access
============================*/
.access {
  padding: 11rem 0 16rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.access::before {
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 40rem;
  height: 31.6rem;
  top: -4rem;
  left: 13rem;
}

.access::after {
  background: url("../img/access_deco-2.png") no-repeat center / contain;
  width: 54rem;
  height: 46rem;
  right: -7.5rem;
  bottom: -15rem;
  z-index: 1;
}

@media (max-width: 900px) {
  .access::after {
    bottom: -20rem;
  }
}

@media (max-width: 767px) {
  .access::before {
    width: 27rem;
    height: 21.3rem;
    top: -8rem;
    left: 1rem;
  }

  .access::after {
    width: 35rem;
    height: 29.8rem;
    right: -5rem;
    bottom: -10rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 4rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4rem;
  }
}

.access__list dt,
.access__list dd {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.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;
  }
}

.access__map {
  width: 62rem;
  height: 52rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__map {
    width: 100vw;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 10.5rem 0 17rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.insta::before {
  background: url("../img/insta_deco-1.png") no-repeat center / contain;
  width: 39.6rem;
  height: 31rem;
  top: -8rem;
  left: -3.5rem;
}

.insta::after {
  background: url("../img/insta_deco-2.png") no-repeat center / contain;
  width: 40rem;
  height: 34.2rem;
  right: -8rem;
  bottom: -17.5rem;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 32rem;
    height: 25rem;
    top: -14rem;
    left: -2rem;
  }

  .insta::after {
    width: 32rem;
    height: 27.3rem;
    right: -4rem;
    bottom: -14rem;
  }
}

.insta__contents {
  width: 88.7rem;
  margin: 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;
  }
}

/*============================
	others
============================*/
.others {
  padding: 9rem 0 12rem;
}

@media screen and (max-width: 767px) {
  .others {
    padding: 16rem 0;
  }
}

.others__list {
  width: 90rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 5.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .others__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.others__list li {
  border: solid max(2px, 0.4rem) var(--brown);
  border-top: none;
  padding-bottom: 6rem;
}

.others__list h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
  margin-top: -2.2rem;
}

.others__list h3 span {
  width: 100%;
  font-family: var(--font-en);
  font-size: max(24px, 4.8rem);
  font-weight: 400;
  white-space: nowrap;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.others__list h3 span::before,
.others__list h3 span::after {
  content: "";
  display: block;
  background-color: var(--brown);
  width: 100%;
  height: max(2px, 0.4rem);
}

.others__list p {
  text-align: center;
  margin: 3.5rem 5rem;
}
