@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  font-family: var(--font-pop);
  font-size: max(14px, 2rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.common__ttl--center {
  margin: 0 auto;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(40px, 7rem);
  text-transform: uppercase;
}

.common__ttl::before,
.common__ttl::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.common__ttl::before {
  background: url("../img/ttl_deco-1.png") no-repeat center / contain;
  width: 13.7rem;
  height: 10.5rem;
  top: -3rem;
  left: -5rem;
}

.common__ttl::after {
  background: url("../img/ttl_deco-2.png") no-repeat center / contain;
  width: 5.4rem;
  height: 3.7rem;
  top: 2.5rem;
  right: -4.5rem;
}

.common__btn {
  width: max(180px, 25.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
}

.common__btn--wt a {
  background-color: var(--white);
  border-radius: 100vmax;
}

/*============================
	header
============================*/
@media (min-width: 768px) {
  .header.top .header__contents {
    justify-content: center;
  }
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/hero_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(260px, 50rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, #ea96c5, rgba(234, 150, 197, 0) 45%);
  width: 100%;
  height: 28.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.hero__logo {
  display: block;
  width: 90rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 58%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__logo {
    width: 50rem;
    transform: translateX(-50%);
    top: auto;
    bottom: 12%;
  }
}

.hero__scroll {
  display: block;
  width: 8.1rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 3rem;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

/*============================
	news、blog
============================*/
.news,
.blog {
  background-color: var(--pink);
  padding: 13rem 0 6rem;
  position: relative;
}

.news::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / cover;
  width: 100%;
  height: 15.8rem;
  position: absolute;
  transform: translateY(100%);
  left: 0;
  bottom: 1px;
  pointer-events: none;
}

.news__inner {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 4.5rem;
  padding-left: 2.5rem;
  margin: 0 auto;
}

.blog .news__inner {
  flex-direction: row-reverse;
  padding: 0 2.5rem 0 0;
}

@media (max-width: 767px) {
  .news__inner,
  .blog .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 0;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX,
.CMS-ARTICLE-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 1.8rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX,
  .CMS-ARTICLE-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT,
.CMS-ARTICLE-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
  width: 100%;
  height: 15.5rem;
  border: solid max(2px, 0.5rem) var(--white);
  border-radius: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL,
  .CMS-ARTICLE-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME,
.CMS-ARTICLE-LINK,
.CMS-ARTICLE-TIME {
  color: var(--white);
}

.CMS-NEWS-TIME,
.CMS-ARTICLE-TIME {
  margin-bottom: 0.5rem;
}

.CMS-NEWS-MORE-READ,
.CMS-ARTICLE-MORE-READ {
  display: none;
}

.news__deco {
  font-family: var(--font-en);
  font-size: 12.6rem;
  color: var(--white);
  line-height: 0.9;
  white-space: nowrap;
  opacity: 0.7;
  position: absolute;
  transform: translateX(-50%);
  top: -0.7rem;
  left: 50%;
}

@media (max-width: 767px) {
  .news__deco {
    font-size: 6.5rem;
  }
}

/*============================
	concept
============================*/
.concept {
  padding: 21rem 0 26rem;
  position: relative;
}

.concept::before {
  content: "";
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 62.6rem;
  height: 38.2rem;
  position: absolute;
  top: 13.5rem;
  right: -47rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::before {
    top: 60rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 6rem 5rem;
  padding-right: 6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 1rem;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 5rem;
}

.concept__txt-wrapper h3 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 500;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4.5rem 0 5.5rem;
}

.concept .common__btn {
  margin: 0;
}

.concept__img-1 {
  width: 74rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw - 4rem);
  filter: drop-shadow(0 0 5px rgba(234, 150, 197, 0.9)) drop-shadow(0 0 5px rgba(234, 150, 197, 0.9));
}

.concept__img-2 {
  width: 35rem;
  filter: drop-shadow(0 0 5px rgba(234, 150, 197, 0.9)) drop-shadow(0 0 5px rgba(234, 150, 197, 0.9));
  position: absolute;
  right: -1.5rem;
  bottom: 13rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .concept__img-1 {
    width: 95vw;
    margin-left: calc(50% - 50vw);
  }

  .concept__img-2 {
    bottom: 6rem;
  }
}

.concept__img-1 img {
  border: solid max(2px, 0.3rem) var(--white);
  border-radius: 0 8rem 8rem 0;
}

.concept__img-2 img {
  border: solid 1px var(--white);
  border-radius: 4rem 0 0 4rem;
}

/*============================
	menu
============================*/
.menu {
  padding: 9rem 0 10rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 1px;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/deco_1.png") no-repeat center / cover;
  height: 15.8rem;
  transform: translateY(-100%) scale(1, -1);
}

.menu::after {
  background: linear-gradient(180deg, #ea96c5 45%, rgba(234, 150, 197, 0));
  height: 53.7rem;
  top: 0;
}

.menu__system {
  width: 110rem;
  display: flex;
  gap: 4rem 6rem;
  padding: 0 1rem 0 5rem;
  margin: -1rem auto 8.5rem;
}

@media (max-width: 767px) {
  .menu__system {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
    margin: 6rem auto 8.5rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__system .menu__txt-wrapper {
    padding-top: 15rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.menu__txt-wrapper h3 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 500;
}

.menu__txt-wrapper p {
  letter-spacing: 0.04em;
  line-height: 2.5;
  margin: 3.5rem 0 9.5rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper p {
    margin: 3.5rem 0 4rem;
  }
}

@media (min-width: 768px) {
  .menu__system .common__btn {
    margin: 0 0 0 auto;
  }
}

.system__img {
  width: 57rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .system__img {
    width: 100%;
  }
}

.menu__list {
  width: 90.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.5rem 13.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.menu__list::before,
.menu__list::after {
  content: "";
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 62.6rem;
  height: 38.2rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list::before {
  top: -22.5rem;
  left: -66.5rem;
}

.menu__list::after {
  right: -73.5rem;
  bottom: -3rem;
}

@media (max-width: 767px) {
  .menu__list::before,
  .menu__list::after {
    width: 62.6rem;
    height: 38.2rem;
  }

  .menu__list::before {
    top: -15rem;
    left: -45rem;
  }

  .menu__list::after {
    right: -45rem;
    bottom: -10rem;
  }
}

.menu__list h3 {
  display: block;
  width: max-content;
  font-family: var(--font-en);
  font-size: max(45px, 7rem);
  color: var(--pink);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto -2rem;
  position: relative;
}

.menu__list h3::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 6.4rem;
  height: 5.2rem;
  position: absolute;
  top: -1.5rem;
  left: -4.5rem;
  pointer-events: none;
}

.menu__list h3::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__img {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.menu__list p {
  margin: 2.5rem 0 3rem;
}

/*============================
	cast
============================*/
.cast {
  background: url("../img/cast_bg-1.jpg") no-repeat center / cover;
  padding: 10.5rem 0;
}

.cast__contents {
  background: url("../img/cast_bg-2.jpg") no-repeat center / cover;
  width: 110rem;
  height: 73rem;
  border: solid max(1px, 0.3rem) var(--white);
  border-radius: 8rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 4.5rem;
  margin: 4.5rem auto 0;
  filter: drop-shadow(0 0 5px rgba(234, 150, 197, 0.9)) drop-shadow(0 0 5px rgba(234, 150, 197, 0.9));
}

@media (max-width: 767px) {
  .cast__contents {
    width: 90%;
      height: 46rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding-top: 13rem;
  position: relative;
}

.gallery::before {
  content: "";
  background-color: var(--pink);
  width: 100%;
  height: 77rem;
  clip-path: polygon(0 32rem, 100% 0, 100% calc(100% - 32rem), 0% 100%);
  position: absolute;
  top: 20rem;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    clip-path: polygon(0 20rem, 100% 0, 100% calc(100% - 20rem), 0% 100%);
  }
}

.gallery__slider {
  height: 22.6rem;
  margin: 10rem 0 12rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30.1rem;
  border-radius: 3rem;
  margin: 0 0.6rem;
  overflow: hidden;
}

.gallery__deco {
  font-family: var(--font-en);
  font-size: 12.6rem;
  color: var(--white);
  line-height: 0.9;
  white-space: nowrap;
  opacity: 0.7;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: max(50px, 8.5rem);
  z-index: 1;
}

@media (max-width: 767px) {
  .gallery__deco {
    font-size: 6.5rem;
    bottom: max(75px, 13rem);
  }
}

/*============================
	faq
============================*/
.faq {
  padding: 14rem 0 9rem;
  position: relative;
}

.faq::before {
  content: "";
  background: url("../img/faq_bg.jpg") repeat center / 100% auto;
  width: 100%;
  height: 125%;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.faq__contents {
  width: 110rem;
  display: flex;
  align-items: center;
  padding-left: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .faq__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.faq__txt-wrapper {
  margin: 0 10rem 0 11rem;
}

@media (min-width: 768px) {
  .faq__txt-wrapper {
    padding-top: 12rem;
  }
}

@media (max-width: 767px) {
  .faq__txt-wrapper {
    width: 100%;
    margin: 5rem auto 0;
    order: -1;
  }
}

.faq__txt-wrapper p {
  letter-spacing: 0.04em;
  line-height: 2.5;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .faq .common__btn {
    margin: 0;
  }
}

.faq__img {
  width: 54rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw - 8.5rem);
  filter: drop-shadow(0 0 5px rgba(234, 150, 197, 0.9)) drop-shadow(0 0 5px rgba(234, 150, 197, 0.9));
}

@media (max-width: 767px) {
  .faq__img {
    width: 95vw;
    margin-right: calc(50% - 50vw);
    margin-left: auto;
    margin-bottom: 6rem;
  }
}

.faq__img img {
  border: solid 1px var(--white);
  border-radius: 6rem 0 0 6rem;
}

/*============================
	access
============================*/
.access {
  background-color: #ffd7ef;
  padding: 15.5rem 0 11rem;
}

.access__contents {
  background-color: var(--white);
  width: 99.4rem;
  border: solid 2px var(--white);
  border-radius: 2rem;
  display: flex;
  gap: 2rem 4rem;
  padding: 10.5rem 5.5rem 6.5rem;
  margin: 7rem auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    padding: 8rem 5rem;
  }
}

.access__contents::before,
.access__contents::after {
  content: "";
  border-radius: 2rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.access__contents::before {
  width: calc(100% + max(8px, 1.6rem));
  height: calc(100% + max(8px, 1.6rem));
  border: solid max(4px, 0.8rem) var(--pink);
  filter: blur(5px);
}

.access__contents::after {
  width: calc(100% + max(6px, 1.2rem));
  height: calc(100% + max(6px, 1.2rem));
  border: solid 2px var(--white);
}

.access__img-wrapper {
  display: block;
  width: 35rem;
}

@media (max-width: 767px) {
  .access__img-wrapper {
    width: 100%;
  }
}

.access__img {
  width: 34rem;
  margin: 0 auto 6.5rem;
}

.access__map {
  width: 100%;
  height: 22rem;
  border-radius: 4rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .access__map {
    height: 35rem;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0.5rem 0 11rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0.5rem 0 5rem;
  }
}

.access__list dt,
.access__list dd {
  font-weight: 800;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 2px var(--pink);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 2px var(--pink);
  }
}

@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 0 0 auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background-color: #ffd7ef;
  padding-bottom: 11.5rem;
  position: relative;
}

.recruit::before {
  content: "";
  background: url("../img/recruit_deco.png") no-repeat center bottom / cover;
  width: 100%;
  height: 15.8rem;
  position: absolute;
  transform: translateY(100%);
  left: 0;
  bottom: 1px;
  pointer-events: none;
}

.recruit__inner {
  background-color: var(--white);
  width: 99.4rem;
  border: solid 2px var(--white);
  border-radius: 2rem;
  padding: 7rem 13rem 6.5rem 11rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .recruit__inner {
    width: 90%;
    padding: 7rem 5rem;
  }
}

.recruit__inner::before,
.recruit__inner::after {
  content: "";
  border-radius: 2rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.recruit__inner::before {
  width: calc(100% + max(8px, 1.6rem));
  height: calc(100% + max(8px, 1.6rem));
  border: solid max(4px, 0.8rem) var(--pink);
  filter: blur(5px);
}

.recruit__inner::after {
  width: calc(100% + max(6px, 1.2rem));
  height: calc(100% + max(6px, 1.2rem));
  border: solid 2px var(--white);
}

.recruit__contents {
  display: flex;
  gap: 4rem 3rem;
  margin-top: 3.5rem;
}

@media (max-width: 767px) {
  .recruit__contents {
    flex-direction: column;
  }
}

.recruit__img {
  width: 38.5rem;
  height: 100%;
  border-radius: 2rem;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .recruit__img {
    width: 100%;
  }
}

.recruit__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .recruit__txt-wrapper {
    padding-top: 1rem;
  }
}

.recruit__txt-wrapper p {
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .recruit .common__btn {
    margin: 0 0 0 auto;
  }
}

/*============================
	insta
============================*/
.insta {
  padding: 21rem 0 8.5rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 5rem 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;
  }
}
