@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(36px, 6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__btn {
  width: max(201px, 28.2rem);
  height: max(45px, 6.3rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: max(14px, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::after {
  content: "";
  background-color: var(--white);
  width: max(24px, 3.6rem);
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: max(40px, 5.5rem);
  pointer-events: none;
}

.common__deco {
  position: relative;
}

.common__deco::before,
.common__deco::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / cover;
  width: 100%;
  height: 63.6rem;
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.common__deco::after {
  background: url("../img/deco_2.png") no-repeat center / cover;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .common__deco::before,
  .common__deco::after {
    height: 33.9rem;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: url("../img/hero_deco.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  position: absolute;
  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 {
  background: var(--bg-1);
  padding: 23.5rem 0 12rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4.6rem;
  margin: 4rem auto 8.5rem;
}

@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: 21rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.3rem);
  letter-spacing: 0.05em;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-1);
  overflow: hidden;
}

.concept.common__deco::before,
.concept.common__deco::after {
  transform: translateY(50%);
  top: auto;
  bottom: 0;
  z-index: 1;
}

.concept__bg {
  background: url("../img/concept_bg.png") no-repeat center / cover;
  padding: 13.5rem 0 25rem;
  position: relative;
}

.concept__bg::before,
.concept__bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.concept__bg::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 24.3rem;
  height: 29.6rem;
  top: 1.4rem;
  right: -1.6rem;
}

.concept__bg::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 26rem;
  height: 40.9rem;
  left: -2rem;
  bottom: 9.6rem;
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 8rem 19rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__ttl-wrappper {
    margin-left: -10.5rem;
  }
}

.concept__ttl-wrappper h2 {
  font-size: max(12px, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 4rem 5rem;
}

.concept__ttl-wrappper h2 span {
  display: block;
  width: max-content;
  font-family: var(--font-en);
  font-size: max(45px, 8rem);
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: capitalize;
  margin: -1.5rem 0 0.5rem -5rem;
  transform: rotate(-5deg);
}

.concept__txt-wrapper h3 {
  font-size: max(18px, 3.5rem);
  font-weight: 700;
}

.concept__txt-wrapper h3 strong {
  font-size: max(24px, 5rem);
  font-weight: 700;
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 5rem 0 4rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img-list {
  width: 46.5rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img-list {
    width: 100%;
  }
}

.concept__img-list li:nth-of-type(2) {
  width: 34.5rem;
  margin: 6rem -8.5rem 0 auto;
}

@media (max-width: 767px) {
  .concept__img-list li:nth-of-type(2) {
    width: 60%;
    margin: 4rem 0 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/menu_bg.jpg") no-repeat center / cover;
  padding: 11rem 0 18.5rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  background: var(--grad-2);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.menu::after {
  top: auto;
  bottom: 0;
}

.menu__contents {
  width: 110rem;
  display: flex;
  gap: 8rem 16rem;
  margin: 12rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    margin-top: -4rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(18px, 3.5rem);
  font-weight: 700;
}

.menu__txt-wrapper h3 strong {
  font-size: max(24px, 5rem);
  font-weight: 700;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 5rem 0 6rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 63.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 10rem 0 9.5rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 7rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 25rem 0 10.5rem;
  position: relative;
}

.access .common__ttl {
  display: block;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 8rem 12rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  margin-top: 7.5rem;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 8rem 0 6rem;
}

.access__list dt,
.access__list dd {
  font-size: max(12px, 1.7rem);
  letter-spacing: 0.05em;
  padding: 2.5rem 1rem;
}

.access__list dt {
  width: max(75px, 14.5rem);
  font-weight: 500;
  display: flex;
  justify-content: center;
}

.access__list dd {
  width: calc(100% - max(75px, 14.5rem));
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    display: block;
    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: 37.3rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 13rem 0 13.5rem;
}

.insta__contents {
  width: 80.1rem;
  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: 0.9rem;
}

.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__bg {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
