@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(24px, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.insta .common__ttl {
  text-transform: capitalize;
}

.common__btn {
  width: max(170px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem max(25px, 3.5rem) 0 0;
  position: relative;
}

.common__btn a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(63.4px, 8.1rem);
  height: max(7px, 0.9rem);
  position: absolute;
  transform: translateY(-50%);
  top: 43%;
  right: calc(max(30px, 3.5rem) * -1);
  pointer-events: none;
}

/*============================
	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: 14rem;
  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 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5.5rem auto 11rem;
}

@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;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 19.5rem 0 15rem;
}

.concept__inner {
  width: 93rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    display: flex;
    column-gap: 6.5rem;
  }
}

.concept__txt-wrapper h2 {
  font-family: var(--font-en);
  font-size: max(30px, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.concept__txt-wrapper p {
  line-height: 2;
}

@media (max-width: 767px) {
  .concept__txt-wrapper p {
    margin: 2rem 0 4rem;
  }
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 5rem 0 0 0;
  }
}

.concept__img {
  width: calc(100% - 3rem);
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 12.5rem 0 17rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu {
    padding: 12.5rem 0 60rem;
  }
}

.menu::after {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 76.6rem;
  height: 60.1rem;
  filter: drop-shadow(0.6rem 1.9rem 1.4rem rgba(0, 0, 0, 0.6));
  position: absolute;
  left: -5rem;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::after {
    width: 65rem;
    height: 51rem;
    left: -3rem;
  }
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 11.5rem;
  margin: 8.5rem 0 17rem;
}

@media (max-width: 767px) {
  .menu__list {
    margin: 8.5rem 0 10rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 9rem;
}

.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__img-wrapper {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 3rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 span {
  display: flex;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 span {
  margin: 0 0 1rem -2rem;
}

.menu__txt-wrapper h3 span img {
  width: 18.2rem;
  height: auto;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span img {
  width: 13.1rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 span img {
  width: 15.9rem;
}

.menu__txt-wrapper h3 span::after {
  content: "";
  display: block;
  background-color: #8c8c8c;
  width: 100%;
  height: 1px;
  margin: 0 0 1rem -5rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span::after {
  margin: 0 0 1rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 span::after {
  margin: 0 0 4rem 3rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0 13.5rem 0 auto;
  }
}

.menu__img {
  width: 72rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-left: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(3) .menu__img {
  width: 85.4rem;
  filter: drop-shadow(0.6rem 1.9rem 1.4rem rgba(0, 0, 0, 0.6));
  margin: -3.5rem 0 0 calc(50% - 50vw - 16.5rem);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img,
  .menu__list-item:nth-of-type(3) .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__txt-img {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-img {
    margin-top: 5rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 14rem 0 15rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 8.5rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  background-color: var(--black);
  padding: 22.5rem 0 20rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access .common__ttl {
  text-align: left;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 4.5rem 0 6rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.2rem 0;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.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;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 10.5rem 0 9.5rem;
}

.insta__contents {
  width: 82rem;
  margin: 7rem 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;
  }
}

/*============================
	sns
============================*/
.sns {
  background: var(--bg-3);
  padding: 6rem 0 8rem;
}

.sns__list {
  width: 93.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem;
  margin: 4rem auto 0;
}

@media screen and (max-width: 767px) {
  .sns__list {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.sns__list a {
  background-color: #dcdddd;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
}

.sns__list a img {
  width: auto;
  height: max(28px, 5rem);
}
