@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 900;
  color: #231815;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(28px, 5rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 22.8rem);
  height: max(42px, 5.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #474747;
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 2px #474747;
  box-sizing: content-box;
  position: absolute;
  top: 2px;
  left: 2px;
  pointer-events: none;
}

.common__btn--bl a {
  background-color: var(--blue);
}

.common__btn--wt a {
  background-color: var(--white);
  color: var(--blue);
}

.common__btn--bl a::before {
  border: solid 2px var(--blue);
}

.common__btn--wt a::before {
  border: solid 2px var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1));
  width: 100%;
  height: 19.5rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__txt {
  display: block;
  width: 53.6rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 15rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__txt {
    width: 45rem;
    transform: none;
    top: 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;
}

/*============================
	news
============================*/
.news {
  padding: 12.5rem 0 15rem;
  position: relative;
}

.news::after {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 35.4rem;
  height: 47.8rem;
  position: absolute;
  left: 0;
  bottom: -20rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .news::after {
    width: 26rem;
    height: 35.1rem;
    bottom: -16rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7rem 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);
  font-weight: 500;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  color: var(--white);
  padding: 17rem 0 12.5rem;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / cover;
  width: 75rem;
  height: 50rem;
  right: 0;
  bottom: 0;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / cover;
  width: 46.2rem;
  height: 50.4rem;
  left: 14rem;
  bottom: -31rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept::before {
    width: 50rem;
    height: 33.3rem;
  }

  .concept::after {
    width: 32rem;
    height: 34.9rem;
    left: 0;
    bottom: -22rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 12rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

.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: 9.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4rem;
  margin-right: -4rem;
}

.concept__txt-wrapper p {
  font-weight: 500;
  line-height: 2;
  margin: 4rem 0;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0 0 9rem;
  }
}

.concept__img-list {
  width: 63rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img-list {
    width: 90%;
    margin-left: auto;
  }
}

.concept__img-list li:nth-of-type(2) {
  display: block;
  width: 36rem;
  margin: -11.5rem 0 0 -7rem;
}

@media (max-width: 767px) {
  .concept__img-list li:nth-of-type(2) {
    width: 50%;
    margin: -11.5rem 0 0 -7rem;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-3);
  padding: 9rem 0 10rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 54.8rem;
  height: 30.8rem;
  top: 3rem;
  right: -10rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 45.8rem;
  height: 30.6rem;
  left: -4rem;
  bottom: 4rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 40rem;
    height: 22.5rem;
    right: -12rem;
  }

  .menu::after {
    width: 35rem;
    height: 23.4rem;
    left: -7rem;
    bottom: 2rem;
  }
}

.menu__inner {
  background: url("../img/menu_bg.jpg") repeat center / 100% auto;
  width: 126rem;
  filter: drop-shadow(1rem 1rem 1rem rgba(0, 0, 0, 0.6));
  padding: 11rem 0 14rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8.5rem;
  margin: 6.5rem auto 10.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem 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: 4.5rem;
  }
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::before,
.menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 29.6rem;
  height: 23.2rem;
  top: -5rem;
  right: -7rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
  background: url("../img/menu_deco-4.png") no-repeat center / contain;
  width: 34rem;
  height: 31.6rem;
  top: -1.5rem;
  right: -6rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
    width: 21rem;
    height: 16.4rem;
    right: 0;
  }

  .menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
    width: 27rem;
    height: 25.1rem;
    right: 0;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: 16.4rem;
  margin-bottom: 3rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
  width: 12.5rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 span {
  width: 14rem;
}

.menu__list-item:nth-of-type(4) .menu__txt-wrapper h3 span {
  width: 15.6rem;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img::before {
  content: "";
  background: var(--bg-3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
  z-index: -1;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-4);
  padding: 13rem 0;
}

.gallery__slider {
  height: 22.6rem;
  margin: 8.5rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 12rem 0 17rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 37.6rem;
  height: 44.2rem;
  position: absolute;
  top: -17.5rem;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 27rem;
    height: 31.7rem;
    top: -12rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 68rem;
  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: -1rem 0 7rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 7rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  color: #2f0000;
  padding: 1.8rem 0.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  font-weight: 500;
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px #2f0000;
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px #2f0000;
  }
}

@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: 38rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 12rem 0 15rem;
}

.insta__contents {
  width: 90.2rem;
  margin: 5.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: 2rem;
}

.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: 28.7rem;
  height: 28.7rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
