@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(24px, 4.8rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
}

.common__btn {
  width: max(150px, 20rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  background-color: var(--brown);
  position: absolute;
  transform: skewX(-15deg);
  inset: 0;
  z-index: -1;
}

.common__btn--bl a::before {
  background-color: var(--black);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(12px, 1.8rem);
  height: max(10px, 1.5rem);
}

/*============================
	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(0, 0, 0, 0), rgba(0, 0, 0, 1) 75%);
  width: 100%;
  height: 13rem;
  opacity: 0.8;
  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;
  padding: 8rem 0 10rem;
}

.concept__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 3rem;
  }
}

.concept__txt-wrapper::before {
  content: "";
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 19rem;
  height: 21rem;
  position: absolute;
  top: -9rem;
  right: -8.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept__txt-wrapper::before {
    top: -3rem;
    right: -5rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.concept__txt-wrapper h2 span {
  display: block;
  width: 33.6rem;
  margin-bottom: 3.5rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 3rem 0 8.5rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 90%;
    margin-left: auto;
  }
}

.concept__img img:nth-of-type(2) {
  display: block;
  width: 29rem;
  margin: -10rem 0 0 -7rem;
}

@media (max-width: 767px) {
  .concept__img img:nth-of-type(2) {
    width: 50%;
  }
}

.concept__img::before {
  content: "";
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 34rem;
  height: 29.6rem;
  position: absolute;
  right: -10rem;
  bottom: -7rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept__img::before {
    right: -5rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 13.5rem 0 10rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 16rem 0 10rem;
  }
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 21.6rem;
  height: 36.8rem;
  top: 3rem;
  right: 10rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 35.1rem;
  height: 31.1rem;
  right: 6.5rem;
  bottom: -17.5rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .menu::before {
    width: 16rem;
    height: 27.2rem;
    top: 1rem;
    right: 2rem;
  }

  .menu::after {
    width: 28rem;
    height: 24.8rem;
    right: 2rem;
    bottom: -12rem;
  }
}

.menu__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 5.5rem;
  margin: 7rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
    margin: 8rem auto 0;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 5.5rem;
    padding-right: 5rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.3rem 4rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper h3 {
    margin-left: -12rem;
  }
}

.menu__txt-wrapper h3::before {
  content: "";
  background-color: var(--brown);
  background: linear-gradient(
    90deg,
    var(--brown),
    var(--brown) calc(100% - 9rem),
    var(--black) calc(100% - 9rem),
    var(--black) calc(100% - 7.5rem),
    var(--brown) calc(100% - 7.5rem),
    var(--brown) calc(100% - 6rem),
    var(--black) calc(100% - 6rem),
    var(--black) calc(100% - 4.5rem),
    var(--brown) calc(100% - 4.5rem),
    var(--brown) calc(100% - 3rem),
    var(--black) calc(100% - 3rem),
    var(--black) calc(100% - 1.5rem),
    var(--brown) calc(100% - 1.5rem),
    var(--brown) 100%
  );
  position: absolute;
  transform: skewX(-15deg);
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.menu__txt-wrapper p {
  line-height: 2;
  margin: 5rem 0 6rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--brown);
  padding: 20rem 0 9rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  left: 0;
  pointer-events: none;
}

.gallery::before {
  background: url("../img/gallery_deco-1.png") no-repeat center bottom / cover;
  width: 100%;
  height: 14rem;
  top: 0;
}

.gallery::after {
  background: url("../img/gallery_deco-2.png") no-repeat center bottom / cover;
  width: 57.8rem;
  height: 38.2rem;
  bottom: -22.5rem;
}

@media (max-width: 767px) {
  .gallery::after {
    width: 48rem;
    height: 31.7rem;
    bottom: -16rem;
  }
}

.gallery__slider {
  height: 22.6rem;
  margin: 5rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	news
============================*/
.news {
  padding: 13.5rem 0 10rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 23.8rem;
  height: 19.6rem;
  position: absolute;
  top: 3rem;
  right: 5rem;
  pointer-events: none;
}

.news::after {
  top: auto;
  right: auto;
  left: 4rem;
  bottom: 2.5rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 20rem;
    height: 16.5rem;
    top: 2rem;
    right: 2rem;
  }

  .news::after {
    top: auto;
    right: auto;
    left: 2rem;
    bottom: 2rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7rem 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(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  color: var(--black);
  padding: 13rem 0 19.5rem;
  position: relative;
}

.access__ttl {
  display: block;
  width: 28.2rem;
  margin: 0 auto;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 10rem;
  margin: 9rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 62rem;
  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: -2.5rem 0 4rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4rem;
  }
}

.access__list dt {
  width: max(75px, 9rem);
  font-weight: 500;
  padding: 2.2rem 0 2.2rem 1.6rem;
}

.access__list dd {
  width: calc(100% - max(75px, 9rem));
  padding: 2.2rem 4rem;
}

.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(--brown);
  }
}

@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: 42rem;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 14rem 0 17rem;
}

.insta__ttl {
  display: block;
  width: 40.3rem;
  margin: 0 auto;
}

.insta__contents {
  width: 82rem;
  margin: 8.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: 45rem;
  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;
}
