@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.insta .common__ttl {
  text-transform: capitalize;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(24px, 3.6rem);
  height: max(20px, 3rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(160px, 20rem);
  height: max(40px, 4.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  border: solid 1px var(--brown);
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(10.8px, 1.4rem);
  height: max(9px, 1.16rem);
  margin-top: 0.4rem;
}

.common__btn--wt a::before,
.common__btn--wt a::after {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

/*============================
	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(0, 0, 0, 0), rgba(0, 0, 0, 1) 75%);
  width: 100%;
  height: 13rem;
  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;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  color: var(--white);
  padding: 10rem 0;
}

.concept__contents {
  width: 124rem;
  display: flex;
  gap: 5rem 9rem;
  padding: 7.5rem 7rem 8rem 7.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 8rem 5%;
  }
}

.concept__contents::before,
.concept__contents::after {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center top / cover;
  width: 100%;
  height: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  pointer-events: none;
}

.concept__contents::after {
  transform: translateX(-50%) scale(1, -1);
  top: auto;
  bottom: 0;
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 3rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-size: max(40px, 8rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 3rem 0 7rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 90%;
    margin-left: auto;
  }
}

.concept__img img:nth-of-type(2) {
  display: block;
  width: 29rem;
  margin: -10rem 0 0 -7rem;
}

@media (max-width: 767px) {
  .concept__img img:nth-of-type(2) {
    width: 55%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 11rem 0 18.5rem;
}

.menu__contents {
  width: 110rem;
  display: flex;
  gap: 6rem 10rem;
  margin: 8.5rem 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 {
    padding-top: 3rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  color: var(--white);
  padding: 2rem 0;
  position: relative;
}

.menu__txt-wrapper h3::before {
  content: "";
  background-color: var(--brown);
  width: calc(50% + 50vw + 3rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3::before {
    width: 100vw;
    left: calc(50% - 50vw);
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 6rem 0 5rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img::before {
  content: "";
  background: url("../img/menu_img-deco.png") no-repeat center / contain;
  width: 29.8rem;
  height: 34.7rem;
  position: absolute;
  bottom: -7rem;
  left: -8.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__img::before {
    width: 21rem;
    height: 24.4rem;
    bottom: -7rem;
    left: -2rem;
  }
}

/*============================
	cast
============================*/
.cast {
  background: var(--bg-2);
  color: var(--white);
}

@media (max-width: 767px) {
  .cast {
    padding-bottom: 5rem;
  }
}

.cast__inner {
  width: 110rem;
  display: flex;
  gap: 5rem 3rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cast__inner {
    width: 100%;
    flex-direction: column-reverse;
  }
}

.cast__txt-wrapper {
  width: 100%;
  text-align: center;
  padding: 4.5rem 6rem;
  margin: 3rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .cast__txt-wrapper {
    width: 90%;
    padding: 5rem 5%;
    margin: 0 auto;
  }
}

.cast__txt-wrapper::before,
.cast__txt-wrapper::after {
  content: "";
  background: url("../img/cast_deco.png") no-repeat center top / cover;
  width: 100%;
  height: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  pointer-events: none;
}

.cast__txt-wrapper::after {
  transform: translateX(-50%) scale(1, -1);
  top: auto;
  bottom: 0;
}

.cast__txt-wrapper h2 {
  font-size: max(14px, 2.2rem);
}

.cast__txt-wrapper h2 span {
  display: block;
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.cast__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 2rem 0 4rem;
}

.cast__img {
  display: block;
  width: 76rem;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .cast__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	news
============================*/
.news {
  padding: 9rem 0 9.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 7rem;
}

@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(--brown);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  color: var(--brown);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 9.5rem 0 10.5rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 8rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
}

.recruit__txt-wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  width: max(400px, 68rem);
  text-align: center;
  padding: 6rem 10rem 5.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 85%;
    padding: 6rem 5% 5.5rem;
  }
}

.recruit__txt-wrapper h3 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
}

.recruit__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 2rem 0 4.5rem;
}

.recruit__underline {
  text-decoration: underline;
}

/*============================
	insta
============================*/
.insta {
  padding: 14rem 0 17rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center top / cover;
  width: 124rem;
  height: calc((100% - 14.5rem) / 2);
  position: absolute;
  transform: translateX(-50%);
  top: 6.5rem;
  left: 50%;
  pointer-events: none;
}

.insta::after {
  transform: translateX(-50%) scale(1, -1);
  top: auto;
  bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 95%;
  }
}

.insta__contents {
  width: 82rem;
  margin: 6rem 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;
  }
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 10.5rem 0 19.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 10rem;
  margin: 10rem 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 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
  padding: 2.3rem 1.6rem;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
  padding: 2.3rem 4.5rem;
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    position: relative;
  }

  .access__list dt:not(:last-of-type)::before {
    content: "";
    background-color: var(--white);
    width: 100%;
    height: max(2px, 0.3rem);
    position: absolute;
    transform: translateY(50%);
    left: 0;
    bottom: 0;
    pointer-events: none;
  }
}

@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: 42rem;
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 45.4rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
