@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.insta .common__ttl {
  text-transform: capitalize;
}

.common__ttl span {
  display: block;
  font-size: max(21px, 2.8rem);
  letter-spacing: 0.1em;
}

.common__ttl span::first-letter {
  color: var(--red);
}

.common__ttl--wt,
.common__ttl--wt span::first-letter {
  color: var(--white);
}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: max(15px, 2.4rem);
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -3rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--black);
  width: 10px !important;
  height: 10px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--red);
}

/*============================
	news
============================*/
.news {
  padding: 16rem 0 14.5rem;
  position: relative;
}

.news::before {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 30.9rem;
  height: 15.6rem;
  position: absolute;
  right: 0;
  bottom: -2.8rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .news::before {
    width: 21rem;
    height: 10.6rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4rem auto 6rem;
}

@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;
}

/*============================
	concept
============================*/
.concept {
  padding: 11.5rem 0 11rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept {
    padding: 8rem 0 16rem;
    position: relative;
  }
}

.concept::after {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 47.1rem;
  height: 49.4rem;
  position: absolute;
  right: 12rem;
  bottom: -12rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::after {
    width: 32rem;
    height: 33.5rem;
    right: -4rem;
    bottom: -13rem;
  }
}

.concept__ttl-wrapper {
  background: url("../img/concept_bg.jpg") repeat center top / cover;
  width: 68rem;
  display: flex;
  justify-content: flex-end;
  padding: 9.5rem 5.5rem 20rem;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .concept__ttl-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 8rem 5% 15rem;
    margin-bottom: -10rem;
    position: relative;
    top: auto;
    left: auto;
  }
}

.concept__ttl {
  background-color: #f4f2ed;
  font-size: max(16px, 2.4rem);
  font-weight: 800;
  color: #281a14;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.1rem 4rem;
  position: absolute;
  top: -1.5rem;
  left: 23rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .concept__ttl {
    writing-mode: vertical-rl;
  }
}

@media (max-width: 767px) {
  .concept__ttl {
    width: max-content;
    padding: 1.5rem 4rem;
    margin-bottom: 4rem;
    position: static;
  }
}

.concept__ttl span {
  display: block;
  font-size: max(12px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .concept__ttl span {
    margin-top: -3rem;
    margin-left: 0.6rem;
  }
}

.concept__ttl-wrapper h3 {
  font-size: max(20px, 3.1rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.15em;
  line-height: 2;
}

@media (min-width: 768px) {
  .concept__ttl-wrapper h3 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.concept__ttl-wrapper h3 strong {
  font-size: max(24px, 4.1rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.concept__img-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto 65px;
}

@media (max-width: 767px) {
  .concept__img-wrapper {
    width: 90%;
    margin: 0 auto 4rem;
  }
}

.concept__img-1 {
  display: block;
  width: 50rem;
}

@media (max-width: 767px) {
  .concept__img-1 {
    width: 100%;
  }
}

.concept__txt-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 6.5rem;
  margin: 0 auto 9rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.concept__txt-wrapper p {
  color: #1c1c1c;
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .concept__txt-wrapper p {
    padding: 4rem 5.5rem 12rem 0;
  }
}

.concept__img-2 {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img-2 {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding-bottom: 13rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: var(--bg-1);
  width: 100%;
  height: 45%;
  left: 0;
  bottom: 0;
}

.menu::after {
  content: "";
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 31.8rem;
  height: 15.3rem;
  position: absolute;
  left: -2.2rem;
  bottom: 13rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::after {
    width: 22rem;
    height: 10.6rem;
    bottom: 6rem;
  }
}

.menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.menu__list-item {
  background: var(--bg-1);
  display: flex;
  gap: 6rem 10rem;
  padding: 1rem 17rem 13.5rem 22rem;
  position: relative;
}

.menu__list-item:nth-of-type(1) {
  background: transparent;
  color: var(--white);
  flex-direction: row-reverse;
  gap: 6rem 11rem;
  padding: 11rem 22rem 15rem 17rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(1) {
    flex-direction: column-reverse;
    padding: 12rem 5%;
  }
}

.menu__list-item::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 32rem;
  height: 9rem;
  position: absolute;
  top: 11.5rem;
  right: 4rem;
  pointer-events: none;
}

.menu__list-item:nth-of-type(2)::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  top: -2.5rem;
  left: 50rem;
  right: auto;
  z-index: 1;
}

.menu__list-item:nth-of-type(2)::after {
  content: "";
  background: var(--bg-1);
  width: 100%;
  height: 18rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  transform: translateY(-100%);
  top: 1px;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list-item::before {
    width: 23rem;
    height: 6.5rem;
    top: 3rem;
    right: auto;
    left: 4rem;
  }

  .menu__list-item:nth-of-type(2)::before {
    left: auto;
    right: 4rem;
  }

  .menu__list-item:nth-of-type(2)::after {
    height: 12rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 11rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 strong {
  font-size: max(18px, 3rem);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    margin-bottom: 5rem;
  }
}

.menu__img,
.menu__img-list {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }

  .menu__img-list {
    width: 90%;
  }
}

.menu__img::before,
.menu__img-list::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__img-list::before {
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 38.3rem;
  height: 23.4rem;
  left: -9.4rem;
  bottom: -9rem;
}

.menu__img::before {
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 39.6rem;
  height: 28.4rem;
  left: -10rem;
  bottom: -10rem;
}

@media (max-width: 767px) {
  .menu__img-list::before {
    width: 30rem;
    height: 18.3rem;
    left: -2rem;
    bottom: -2rem;
  }

  .menu__img::before {
    width: 30rem;
    height: 21.5rem;
    left: auto;
    right: -4rem;
    bottom: -6rem;
  }
}

.menu__img-list li:nth-of-type(2) {
  width: 29.5rem;
  margin: -15.5rem -7rem -3.5rem auto;
}

@media (max-width: 767px) {
  .menu__img-list li:nth-of-type(2) {
    width: 50%;
    margin: -12rem -7rem 0 auto;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 12rem 0 13rem;
}

.gallery__inner {
  width: 110rem;
  display: flex;
  align-items: center;
  gap: 6rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .gallery__inner {
    display: block;
    width: 90%;
  }
}

.gallery__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .gallery__ttl-wrapper {
    margin: 0 auto;
  }
}

.gallery__slider {
  width: 100vw;
  height: 20rem;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery__slider {
    width: 100vw;
    height: 20rem;
    margin: 7rem calc(50% - 50vw) 8rem;
    overflow: hidden;
  }
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 27.3rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 10rem 0 17rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8rem;
  margin: 10.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img-list {
  width: 37.7rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -2rem;
}

@media (max-width: 767px) {
  .access__img-list {
    width: 100%;
    margin: 0;
  }
}

.access__img-list li:nth-of-type(2) {
  display: block;
  width: 35rem;
  margin: 5.5rem 0 0 -5rem;
}

@media (max-width: 767px) {
  .access__img-list li:nth-of-type(2) {
    width: 100%;
    margin: 4rem 0 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 4.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 500;
}

.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;
  }
}

.top__map {
  height: 42rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 11rem 0 15rem;
}

.insta__contents {
  width: 84.4rem;
  margin: 11rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.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: 26rem;
  height: 26rem;
  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;
}
