@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl .en {
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  filter: var(--shadow);
}

.common__ttl .jp {
  filter: var(--shadow);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(30px, 4.2rem);
  height: max(25.7px, 3.6rem);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.news .common__ttl::before,
.cast .common__ttl::before,
.menu .common__ttl::before {
  filter: drop-shadow(0 0 0.5rem var(--red)) drop-shadow(0 0 1rem var(--red));
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: linear-gradient(90deg, #b40000, #780000);
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--bl a {
  background: var(--black);
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(160px, 21.6rem);
  height: max(51.8px, 7rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.common__btn--bl a::before {
  background: url("../img/btn_deco-bl.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(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: 10rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6.5rem 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(--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 1px var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8.5rem 10rem 9rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
    padding: 8.5rem 6rem 9rem;
  }
}

.concept__txt-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid max(3px, 0.5rem) var(--white);
  filter: blur(1rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(18px, 3.4rem);
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
}

.concept__txt-wrapper h2 span::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 16.9rem;
  height: 14.4rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 6rem;
}

/*============================
	cast
============================*/
.cast {
  margin-top: 17rem;
  position: relative;
}

.cast::before {
  content: "";
  background-color: var(--red);
  width: 100%;
  height: 20rem;
  opacity: 0.5;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
  z-index: -1;
}

.cast__contents {
  background: url("../img/cast_bg.jpg") no-repeat center / cover;
  width: 90rem;
  border: solid 2px var(--red);
  filter: drop-shadow(1rem 1rem 1rem var(--black));
  padding: 4rem 0 4.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .cast__contents {
    width: 90%;
  }
}

.cast__contents::before,
.cast__contents::after {
  content: "";
  background: url("../img/cast_deco.png") no-repeat center / contain;
  width: 11.4rem;
  height: 16.6rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.cast__contents::after {
  transform: scale(-1, -1);
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
}

.cast__contents p {
  width: 80%;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 3rem auto;
}

@media (min-width: 768px) {
  .cast__contents p {
    width: 43rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 13.5rem 0 16rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 13rem;
  margin: 9.5rem auto 12.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 6rem 10rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 38rem;
  height: 32.4rem;
  position: absolute;
  top: -1rem;
  right: -4rem;
  pointer-events: none;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: max(85px, 13.6rem);
  margin: 0 0 -1rem -6rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
  width: max(123px, 19.7rem);
  margin: -2rem 0 0 -6rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 span,
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--red);
  position: absolute;
  top: 2rem;
  left: -2rem;
  pointer-events: none;
}

.menu__list-item:nth-of-type(even) .menu__img::before {
  left: 2rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 9rem 0 10rem;
}

.gallery__slider {
  height: 22rem;
  margin: 7.5rem 0 7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
}

/*============================
	access
============================*/
.access {
  padding: 9.5rem 0 14.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6rem;
  margin: 8rem 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;
  position: relative;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5rem;
  }
}

.access__list::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 27.2rem;
  height: 23.2rem;
  position: absolute;
  right: -2rem;
  bottom: -13rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access__list::before {
    width: 24rem;
    height: 20.5rem;
    bottom: -10rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.5rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.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: 12rem 0 18rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 8rem 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 1.5rem var(--red);
  padding: 7rem 0 10rem;
}

.recruit__txt-wrapper {
  width: 90%;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 5.5rem auto 6rem;
}

@media screen and (min-width: 768px) {
  .recruit__txt-wrapper p {
    width: max(400px, 57rem);
  }
}
