@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--bl {
  color: var(--black);
}

.common__ttl span {
  font-size: max(14px, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(36px, 5.4rem);
  height: max(24px, 3.6rem);
}

.common__ttl--bl::before {
  background: url("../img/ttl_deco-r.png") no-repeat center / contain;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(20px, 2.3rem);
  height: max(19.1px, 2.2rem);
}

/*============================
	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: 28.5rem;
  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: 7.5rem 0 11rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4.5rem auto 7.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: 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: 15.5rem 0 19.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept {
    padding: 10rem 0 30rem;
  }
}

.concept::after {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 93.4rem;
  height: 36rem;
  right: 0;
  bottom: 0;
  position: absolute;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::after {
    width: 70rem;
    height: 27rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 9.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 4rem;
  position: relative;
}

.concept__txt-wrapper h2::before {
  content: "";
  background: url("../img/concept_line.png") repeat-x center / contain;
  width: 100%;
  height: max(10px, 1.4rem);
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 3rem;
  opacity: 0.2;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 6rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 66rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 10rem 0 24rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 65rem;
  height: 42rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 45rem;
    height: 29rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 7.5rem;
  margin: 7.5rem auto 12.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list li {
  display: flex;
  flex-direction: row-reverse;
  gap: 6rem 7.5rem;
  position: relative;
}

.menu__list li:nth-of-type(even) {
  flex-direction: row;
}

@media (max-width: 767px) {
  .menu__list li,
  .menu__list li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__list li:nth-of-type(3)::before,
.menu__list li:nth-of-type(3)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list li:nth-of-type(3)::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 19.2rem;
  height: 15.4rem;
  top: -22rem;
  left: -13rem;
}

.menu__list li:nth-of-type(3)::after {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 33.6rem;
  height: 16.4rem;
  right: -10rem;
  bottom: -21rem;
}

@media (max-width: 767px) {
  .menu__list li:nth-of-type(3)::before {
    width: 16rem;
    height: 12.8rem;
    top: -15rem;
    left: -2rem;
  }

  .menu__list li:nth-of-type(3)::after {
    width: 28rem;
    height: 13.6rem;
    right: -7rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    padding-top: 6.5rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu__txt-deco.png") no-repeat center / contain;
  width: 39.6rem;
  height: 39.6rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
}

.menu__img {
  width: 68rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list li:nth-of-type(odd) .menu__img {
  margin-left: calc(50% - 50vw);
}

.menu__list li:nth-of-type(even) .menu__img {
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list li:nth-of-type(odd) .menu__img,
  .menu__list li:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 8rem 0 11.5rem;
}

.gallery__slider {
  height: 21rem;
  margin: 6.5rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.8rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-3);
  color: var(--black);
  padding: 10rem 0 15rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9.5rem;
  margin: 8rem 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 6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 6rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
}

.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(--black);
  }
}

@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: 37.2rem;
}
