@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(36px, 6.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3)) drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3)) drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3));
}

.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%;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(80rem, 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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 2rem;
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 3rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #e0d9c9;
  width: max(10px, 1.3rem) !important;
  height: max(10px, 1.3rem) !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(--brown);
}

/*============================
	news
============================*/
.news {
  padding: 13.5rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem 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: 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: 8rem 0;
}

.concept__txt-wrapper {
  width: 90rem;
  border: solid 2px var(--white);
  text-align: center;
  padding: 7.5rem 8rem 9.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
    padding: 8rem 5% 10rem;
  }
}

.concept__txt-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid max(3px, 0.5rem) var(--white);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  filter: blur(1rem);
  z-index: -1;
}

.concept .common__ttl {
  font-size: max(40px, 7.4rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 2.5rem 0 6rem;
}

/*============================
	cast
============================*/
.cast {
  background: url("../img/cast_bg.jpg") no-repeat center / cover;
  border-top: solid max(10px, 2rem) var(--brown);
  border-bottom: solid max(10px, 2rem) var(--brown);
  padding: 9rem 0 9.5rem;
}

.cast__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.cast__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 5rem 0 6.5rem;
}

@media (min-width: 768px) {
  .cast__txt-wrapper p {
    width: 68rem;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 13.5rem 0 17.5rem;
}

.menu__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 10rem auto 6rem;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  background: url("../img/menu_txt-bg.jpg") repeat center / 100% auto;
  width: 100%;
  padding: 4rem 5rem 5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    padding: 4rem 2.5rem 4.5rem 4rem;
    margin: 5rem 0 0 -6rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2rem 0 3.5rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 68rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__txt {
  width: max-content;
  border: solid 1px #debf7d;
  font-size: max(16px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2.2rem 4.5rem;
  margin: 0 auto;
}

/*============================
	gallery
============================*/
.gallery {
  padding: 13rem 0 12rem;
}

.gallery__slider {
  height: 22rem;
  margin: 9rem 0 10rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 14rem 0 22rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6rem;
  margin: 10.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 49rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 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: 700;
}

.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: 45rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 15.5rem 0 20rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 10rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  border-top: solid max(10px, 2rem) var(--brown);
  border-bottom: solid max(10px, 2rem) var(--brown);
  padding: 8rem 0 7.5rem;
}

.recruit__txt-wrapper {
  width: 110rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 90%;
  }
}

.recruit .common__ttl {
  display: block;
}

.recruit__txt-wrapper p {
  width: 46rem;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 5.5rem 0 4.5rem;
}

@media screen and (max-width: 767px) {
  .recruit__txt-wrapper p {
    width: 90%;
  }
}

.recruit__btn {
  width: max(180px, 25rem);
  height: max(40px, 5rem);
}

.recruit__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
