@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(40px, 6rem);
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: -1rem;
}

.news .common__ttl span,
.menu .common__ttl span,
.access .common__ttl span {
  color: var(--yellow);
}

.insta .common__ttl span {
  margin: 0;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_arw.png") no-repeat right bottom / contain;
  width: 100%;
  height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2.4rem 1rem 1.8rem;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_arw-wt.png") no-repeat right bottom / contain;
  color: 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(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 13rem;
  opacity: 0.6;
  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;
}

/*============================
	news
============================*/
.news {
  padding: 14.5rem 0 12.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7.5rem auto 10rem;
}

@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 {
  background: var(--bg-2);
  padding: 15rem 0 10rem;
}

.concept__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__img-wrapper {
  position: relative;
}

.concept__img-wrapper h2 {
  font-size: max(16px, 2.4rem);
  letter-spacing: 0.1em;
  position: absolute;
  top: 6rem;
  left: -5rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__img-wrapper h2 {
    top: auto;
    left: -3rem;
    bottom: -4rem;
  }
}

.concept__img-wrapper h2 span {
  display: block;
  background-color: #ffba2f;
  width: max-content;
  padding: 1.3rem 2.8rem;
}

.concept__img-wrapper h2 span:nth-of-type(2) {
  margin: 2.5rem 0 0 2.8rem;
}

@media (max-width: 767px) {
  .concept__img-wrapper h2 span {
    padding: 1rem 2rem;
  }

  .concept__img-wrapper h2 span:nth-of-type(2) {
    margin: 2rem 0 0 2rem;
  }
}

.concept__img {
  width: 100%;
  position: relative;
}

.concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  position: absolute;
  top: 2rem;
  left: 2rem;
  pointer-events: none;
}

.concept__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 2rem 6.5rem;
  margin: 8rem 0;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    flex-direction: column;
  }
}

.concept__txt-wrapper h3 {
  display: block;
  width: max-content;
  font-family: var(--font-en);
  font-size: 11.6rem;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  flex-shrink: 0;
  transform: rotate(-10deg);
}

@media (min-width: 768px) {
  .concept__txt-wrapper h3 {
    margin-top: 2rem;
  }
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
}

/*============================
	menu
============================*/
.menu {
  padding: 15rem 0 18.5rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 63.8rem;
  height: 54.2rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 45rem;
    height: 38.2rem;
  }
}

.menu__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 8rem;
  margin: 7rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 12rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 5.5rem 0 10rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img-list {
  width: 57rem;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__img-list {
    width: 100%;
    margin: 0;
  }
}

.menu__img-list::before,
.menu__img-list::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__img-list::before {
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 29rem;
  height: 13.4rem;
  top: 0;
  left: 1rem;
}

.menu__img-list::after {
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 15.8rem;
  height: 32rem;
  right: 1.5rem;
  bottom: -17.5rem;
}

.menu__img-list li {
  display: block;
  width: 32rem;
  height: 100%;
}

.menu__img-list li:nth-of-type(1) {
  margin: 17rem -7rem 0 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__img-list li {
    width: 100%;
  }

  .menu__img-list li:nth-of-type(1) {
    margin: 17rem -7rem 0 0;
    position: relative;
    z-index: 1;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 10.5rem 0 12.5rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery::before {
  background: url("../img/gallery_deco-1.png") no-repeat center / contain;
  width: 27.6rem;
  height: 21rem;
  top: 6rem;
  right: 17rem;
}

.gallery::after {
  background: url("../img/gallery_deco-2.png") no-repeat center / contain;
  width: 27.6rem;
  height: 21rem;
  left: 14.5rem;
  bottom: 8.3rem;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 20rem;
    height: 15.2rem;
    top: 2rem;
    right: 2rem;
  }

  .gallery::after {
    width: 16rem;
    height: 13rem;
    left: 2rem;
    bottom: 3rem;
  }
}

.gallery__slider {
  height: 22.6rem;
  margin: 7.5rem 0 8.5rem;
  position: relative;
  z-index: 1;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	others
============================*/
.others {
  background: url("../img/others_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 16.5rem 0 15.5rem;
}

.others__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .others__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.others__list li {
  border: solid 2px var(--white);
  padding: 6.5rem 5.5rem 8rem;
  position: relative;
}

.others__list li::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.others__list p {
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin: 3.5rem 0 5rem;
}

/*============================
	access
============================*/
.access {
  padding: 16rem 0 19rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9rem;
  margin: 7.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 64rem;
  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 8.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8.5rem;
  }
}

.access__list dt {
  width: max(75px, 9.5rem);
  font-weight: 400;
  padding: 2rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 9.5rem));
  padding: 2rem 3rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-right: solid 1px var(--black);
  }

  .access__list dt:first-of-type {
    padding: 0 0 2rem;
  }

  .access__list dd:first-of-type {
    padding: 0 3rem 2rem;
  }

  .access__list dt:last-of-type {
    padding: 2rem 0 0;
  }

  .access__list dd:last-of-type {
    padding: 2rem 3rem 0;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    border-bottom: solid 1px var(--black);
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 42rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 13rem 0 18rem;
  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: 30.2rem;
  height: 18.4rem;
  top: 6.5rem;
  left: 8.5rem;
}

.insta::after {
  background: url("../img/insta_deco-2.png") no-repeat center / contain;
  width: 27rem;
  height: 18.8rem;
  right: 9.8rem;
  bottom: 7.3rem;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 23rem;
    height: 14rem;
    top: 5rem;
    left: 2rem;
  }

  .insta::after {
    width: 20rem;
    height: 13.9rem;
    right: 1rem;
    bottom: 3rem;
  }
}

.insta__contents {
  width: 82rem;
  margin: 7rem auto 0;
  position: relative;
  z-index: 1;
}

@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;
  }
}
