@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
}

.policy .common__ttl,
.gallery .common__ttl {
  flex-direction: column;
  color: var(--purple);
}

.recruit .common__ttl {
  flex-direction: column;
}

.common__ttl span {
  display: block;
  width: max(62.5px, 8.8rem);
}

.policy .common__ttl span {
  width: max(85.3px, 12rem);
}

.menu .common__ttl span {
  width: max(83.9px, 11.8rem);
}

.menu .common__ttl.fee span {
  width: max(47px, 6.6rem);
}

.news .common__ttl span {
  width: max(82.5px, 11.6rem);
}

.gallery .common__ttl span {
  width: max(104px, 14.6rem);
}

.access .common__ttl span {
  width: max(89px, 12.5rem);
}

.recruit .common__ttl span {
  width: max(105px, 14.8rem);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(60px, 9.7rem);
  height: max(61px, 9.9rem);
}

.policy .common__ttl::before,
.gallery .common__ttl::before {
  display: none;
}

.common__btn {
  width: max(228px, 31.5rem);
  height: max(50px, 6.9rem);
  filter: drop-shadow(0 3px 7px rgba(128, 117, 179, 0.35));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  font-family: var(--font-mincho);
  font-size: max(14px, 1.8rem);
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / cover;
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  padding: max(60px, 10rem) 0 0 17rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: max(60px, 8rem) 0 0;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 20rem 0 0 0;
  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__scroll {
  display: block;
  width: max(12px, 1.6rem);
  position: absolute;
  left: 7rem;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

/*============================
	news
============================*/
.news {
  padding: 9rem 0 10rem;
}

.news__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  margin: 3rem 0 5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 23rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
}

.CMS-NEWS-TIME {
  margin-bottom: 0.5rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-2);
  color: #1a1a1a;
  padding: 10rem 0;
}

.policy__inner {
  width: 110rem;
  border: solid max(2px, 0.3rem) var(--purple);
  border-radius: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8.5rem 5rem 7rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .policy__inner {
    width: 90%;
    padding: 10rem 6rem;
  }
}

.policy__inner::before,
.policy__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy__inner::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 25rem;
  height: 25.5rem;
  top: -4rem;
  left: 3.5rem;
}

.policy__inner::after {
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 23.1rem;
  height: 15.6rem;
  right: -2.5rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .policy__inner::before {
    width: 20rem;
    height: 20.4rem;
    left: 1rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
  text-align: center;
}

.policy__txt-wrapper h3 {
  font-family: var(--font-mincho);
  font-size: max(16px, 2.6rem);
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.1em;
}

.policy__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 1rem 0 4rem;
}

.policy__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

/*-------------------------
  cast
---------------------------*/
.cast {
  background: var(--black);
  padding: 9rem 0 10rem;
}

.cast__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cast__inner {
    width: 75%;
  }
}

.cast__slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.cast__slider {
  width: 100%;
  overflow: hidden;
  margin: 4rem 0 4.5rem;
}

.cast__slider .swiper-slide {
  width: 34.3rem;
  margin: 0 1.8rem;
}

@media (max-width: 767px) {
  .cast__slider .swiper-slide {
    width: 100%;
  }
}

.cast .next-btn,
.cast .prev-btn {
  background: url("../img/cast_btn.png") no-repeat center / cover;
  width: max(32px, 5.6rem);
  height: max(32px, 5.6rem);
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
}

.cast .next-btn {
  right: -8.5rem;
}

.cast .prev-btn {
  transform: scale(-1, 1);
  left: -8.5rem;
}

@media (max-width: 767px) {
  .cast .next-btn {
    right: -7.5rem;
  }

  .cast .prev-btn {
    left: -7.5rem;
  }
}

.cast__img {
  width: 100%;
  border-radius: 5rem 1px 1px 1px;
  overflow: hidden;
}

.cast h3 {
  font-family: var(--font-mincho);
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 3.5rem 0 2.5rem;
}

.cast p {
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/menu_bg.jpg") no-repeat center / cover;
  padding: 10rem 0;
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu .common__ttl {
  width: max-content;
  position: relative;
}

.menu .common__ttl::after {
  content: "";
  display: block;
  background: url("../img/menu_ttl-deco.png") no-repeat center right / cover;
  width: 71.3rem;
  height: 10rem;
  position: absolute;
  transform: translateX(100%);
  top: -1.5rem;
  right: -4rem;
}

.menu__system {
  width: 100%;
  display: flex;
  gap: 4rem 11rem;
  margin: 2rem 0 9rem;
}

@media (max-width: 767px) {
  .menu__system {
    flex-direction: column-reverse;
  }
}

.system__wrapper {
  width: 100%;
}

.system__wrapper p {
  letter-spacing: 0.05em;
}

.system__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
  margin: 3.5rem 0 1rem;
}

.system__list dt {
  background-color: rgba(100, 188, 156, 0.8);
  width: max(100px, 18rem);
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.3rem 0;
}

.system__list dd {
  width: calc(100% - max(100px, 18rem));
  border-bottom: solid 1px var(--white);
  text-align: center;
  padding: 2.3rem 4rem;
}

@media (min-width: 768px) {
  .system__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .system__list dt,
  .system__list dd {
    display: block;
    width: 100%;
    text-align: left;
    padding: 2rem;
  }
}

.system__txt {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.05em;
}

.system__box {
  border: solid 1px var(--white);
  padding: max(15px, 3rem);
  margin-top: 4rem;
}

.system__img {
  width: 50rem;
  height: 100%;
  border-radius: 10rem 0 0 0;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .system__img {
    width: 100%;
  }
}

.menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 5.5rem;
  margin: 4rem auto 5rem;
}

.menu__list-item {
  display: flex;
  gap: 4rem 8rem;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__shisha {
  background-color: var(--white);
  width: 90rem;
  border-radius: 0 10rem 0 10rem;
  color: var(--black);
  display: flex;
  margin: 0 auto 5rem;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.35));
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__shisha {
    width: 90%;
    flex-direction: column;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

.menu__shisha .menu__txt-wrapper {
  padding: 8rem 4.5rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 4rem;
  }
}

.menu__txt-wrapper h3 {
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.menu__shisha .menu__txt-wrapper h3 {
  color: #2d6a62;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper h3 {
    justify-content: flex-end;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  width: max(66.8px, 9.4rem);
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
  width: max(80px, 11.2rem);
}

.menu__shisha .menu__txt-wrapper h3 span {
  width: max(91px, 12.8rem);
}

.menu__txt-wrapper h4 {
  font-family: var(--font-mincho);
  font-size: max(18px, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 3rem 0 2rem;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper h4 {
    text-align: right;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.menu__img {
  width: 52.4rem;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  border-radius: 0 10rem 0 0;
}

.menu__list-item:nth-of-type(even) .menu__img {
  border-radius: 10rem 0 0 0;
}

.menu__shisha .menu__img {
  width: 50.4rem;
  height: auto;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img,
  .menu__shisha .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 12rem 0 10rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 22.1rem;
  height: 22.5rem;
  top: 2.5rem;
  left: 17rem;
}

.gallery::after {
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 23.1rem;
  height: 15.6rem;
  right: 17rem;
  bottom: 2.5rem;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 17rem;
    height: 17.3rem;
    left: 2rem;
  }

  .gallery::after {
    width: 20rem;
    height: 13.5rem;
    right: 2rem;
  }
}

.gallery__slider {
  height: 30rem;
  margin: 9rem 0 5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 38.4rem;
}

/*============================
	access
============================*/
.access {
  background: var(--black);
  padding: 11rem 0;
}

.access__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
  }
}

.access__map {
  width: 100vw;
  margin: 4rem 0 5rem calc(50% - 50vw);
}

.access__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 7rem;
}

@media (max-width: 767px) {
  .access__contents {
    flex-direction: column;
  }
}

.access__img {
  width: 50.4rem;
  height: 100%;
  border-radius: 10rem 0 0 0;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.access__list dt {
  background-color: rgba(95, 82, 160, 0.3);
  width: max(75px, 12rem);
  font-weight: 400;
  display: flex;
  justify-content: center;
  padding: 2.3rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  border-bottom: solid 1px var(--white);
  padding: 2.3rem 4rem;
}

@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%;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 10.5rem 0;
}

.insta__contents {
  width: 87.6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 4.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: 26rem;
  height: 26rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  padding: 10rem 0;
}

.recruit__inner {
  width: 87.6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .recruit__inner {
    width: 90%;
  }
}

.recruit__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem;
  margin-bottom: 5rem;
}

.recruit__list li {
  width: 100%;
  height: max(80px, 15rem);
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.35));
}

@media screen and (max-width: 767px) {
  .recruit__list li {
    height: max(70px, 12rem);
  }
}

.recruit__list a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border: solid 2px var(--white);
  border-radius: 5rem 0 5rem 0;
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6rem;
  padding-left: 6rem;
}

@media screen and (max-width: 767px) {
  .recruit__list a {
    font-size: max(14px, 2.4rem);
    gap: 4rem;
    padding-left: 3rem;
  }
}

.recruit__list a > div {
  display: block;
  width: 8rem;
}

.recruit__list li:nth-of-type(2) a > div {
  width: 4.7rem;
}

@media screen and (max-width: 767px) {
  .recruit__list a > div {
    width: max(30px, 6rem);
  }

  .recruit__list li:nth-of-type(2) a > div {
    width: max(21px, 4.2rem);
  }
}

.recruit__contents {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  width: 100%;
  border: solid 2px var(--white);
  border-radius: 5rem 0 5rem 0;
  padding: 4.5rem 5rem 5rem;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.35));
  position: relative;
}

@media screen and (max-width: 767px) {
  .recruit__contents {
    padding: 7rem 6rem 8rem;
  }
}

.recruit__contents p {
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 1rem;
}

.recruit__btn {
  background-color: var(--purple);
  width: max(50px, 10rem);
  height: max(50px, 10rem);
  border-radius: 5rem 0 5rem 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.recruit__btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit__btn a img {
  display: block;
  width: max(12px, 1.8rem);
  height: max(12px, 1.8rem);
}
