@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(28px, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(30px, 4rem);
  height: max(27px, 3.6rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.concept .common__btn a {
  padding-left: 2rem;
}

.common__btn--wt a {
  border: solid 1px var(--white);
}

.common__btn--bl a {
  background-color: var(--black);
  border: solid 1px var(--black);
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-right: solid 1px var(--brown);
  border-bottom: solid 1px var(--brown);
  box-sizing: content-box;
  position: absolute;
  top: 5px;
  left: 4px;
  pointer-events: none;
}

.common__btn--wt a::before {
  border-right: solid 1px var(--white);
  border-bottom: solid 1px var(--white);
}

.common__btn--bl a::before {
  border-right: solid 1px var(--black);
  border-bottom: solid 1px var(--black);
}

.concept .common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(28.7px, 4rem);
  height: max(4px, 0.55rem);
  margin-left: 2rem;
}

.common__btn span {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.common__btn span::before,
.common__btn span::after {
  content: "";
  display: block;
  background: url("../img/btn_icon.png") no-repeat center / contain;
  width: max(12px, 1.7rem);
  height: max(11.3px, 1.6rem);
}

.common__btn span::after {
  transform: scale(-1, 1);
}

.common__deco {
  display: block;
  background: url("../img/deco_1.jpg") no-repeat center / cover;
  width: 100%;
  height: 4rem;
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv.jpg") no-repeat center / cover;
  width: 100%;
  height: max(80rem, 100vh);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  position: absolute;
  transform: translateY(-50%) rotate(-10deg);
  top: 57%;
  left: 20rem;
}

@media (max-width: 767px) {
  .hero__ttl {
    left: 5%;
  }
}

.hero__ttl::before {
  content: "";
  background: url("../img/hero_deco.png") no-repeat center / contain;
  width: 67rem;
  height: 56rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero__ttl::before {
    width: 33rem;
    height: 27.6rem;
  }
}

.hero__ttl h2 {
  font-family: var(--font-en);
  font-size: 10.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__ttl span:nth-of-type(1) {
  text-transform: uppercase;
}

.hero__ttl span:nth-of-type(2) {
  font-size: 17.5rem;
}

.hero__ttl span:nth-of-type(3) {
  font-size: 10.4rem;
}

@media (max-width: 767px) {
  .hero__ttl h2 {
    font-size: 6rem;
  }

  .hero__ttl span:nth-of-type(2) {
    font-size: 8rem;
  }

  .hero__ttl span:nth-of-type(3) {
    font-size: 5.8rem;
  }
}

.hero__img {
  display: block;
  width: 62rem;
  position: absolute;
  right: 0;
  bottom: -4rem;
}

@media (max-width: 767px) {
  .hero__img {
    width: max(210px, 35rem);
  }
}

/*============================
	news
============================*/
.news {
  padding: 8rem 0 11.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(--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: 10rem 0 7.5rem;
  position: relative;
}

.concept__frame {
  width: 117.4rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__frame {
    width: 95%;
  }
}

.concept__frame::before,
.concept__frame::after {
  content: "";
  background: url("../img/concept_frame.png") no-repeat center top / cover;
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.concept__frame::after {
  transform: scale(1, -1);
  top: auto;
  bottom: 0;
}

.concept__txt-wrapper {
  width: 85%;
  text-align: center;
  padding: 10rem 0 18rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 70rem;
    padding: 15rem 0 17.5rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(40px, 8.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 4rem;
}

.concept__txt-wrapper p {
  line-height: 2;
  margin: 5.5rem 0 6rem;
}

.concept__deco {
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: max(15px, 2.6rem);
  height: max(57px, 9.9rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}

.concept__deco--left {
  left: 0.8rem;
}

.concept__deco--right {
  transform: translateY(-50%) scale(-1, 1);
  right: 0.8rem;
}

@media (max-width: 767px) {
  .concept__deco--left {
    left: -0.8rem;
  }

  .concept__deco--right {
    right: -0.8rem;
  }
}

.concept__img {
  width: 28rem;
  border: solid max(3px, 0.6rem) var(--white);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
}

.concept__img-1 {
  top: -3.5rem;
  left: -28rem;
}

.concept__img-2 {
  right: -30.5rem;
  bottom: -5rem;
}

@media (max-width: 767px) {
  .concept__img {
    width: 24rem;
  }

  .concept__img-1 {
    top: -4rem;
    left: -8rem;
  }

  .concept__img-2 {
    right: -8rem;
    bottom: -6rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 10rem 0 12rem;
  position: relative;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
  margin: 8.5rem auto 11.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 9rem;
}

.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__txt-wrapper {
  width: 100%;
}

.menu__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-family: var(--font-en);
  font-size: 13.5rem;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 0.7;
  text-transform: capitalize;
  opacity: 0.2;
}

.menu__txt-wrapper p {
  line-height: 2;
}

.menu__img {
  width: 52rem;
  height: 100%;
  border-radius: 4rem;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  color: var(--black);
  padding: 8.5rem 0 9rem;
}

.gallery__slider {
  height: 20.4rem;
  margin: 8rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
  filter: drop-shadow(-1px -1px 2px rgba(0, 0, 0, 0.3));
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 9.5rem 0 14rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 18.2rem;
  height: 18.8rem;
  position: absolute;
  top: 9rem;
  right: 9.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    top: 6rem;
    right: 3rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  justify-content: center;
  gap: 2rem 9rem;
  margin: 11.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__map {
  width: 60.5rem;
  height: 55rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  width: 57.5rem;
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 8rem;
}

@media (max-width: 767px) {
  .access__list {
    width: 100%;
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.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;
  }
} */

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 6rem 0;
}

.recruit__contents {
  background-color: rgba(231, 46, 151, 0.8);
  width: 110rem;
  border: solid max(2px, 0.4rem) var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  padding: 7rem 12rem 9rem 8.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
    flex-direction: column;
    padding: 8rem 5rem;
  }
}

.recruit__ttl-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5rem;
}

.recruit__contents p {
  font-size: max(12px, 1.8rem);
  line-height: 2;
}

/*============================
	insta
============================*/
.insta {
  padding: 10.5rem 0 11.5rem;
  position: relative;
  overflow: hidden;
}

.insta::before {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 142.8rem;
  height: 71.2rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 55%;
  left: 50%;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 100%;
    height: 38.2rem;
  }
}

.insta__contents {
  width: 80.6rem;
  margin: 11rem auto 9rem;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.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: 25.2rem;
  height: 25.2rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.tiktok__contents {
  width: 68rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .tiktok__contents {
    width: 90%;
  }
}

.tiktok__contents a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border-top: solid max(2px, 0.4rem) #25f4ee;
  border-right: solid max(2px, 0.4rem) #25f4ee;
  border-left: solid max(2px, 0.4rem) #fe2c55;
  border-bottom: solid max(2px, 0.4rem) #fe2c55;
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 3rem 8rem 3rem 0;
}

.tiktok__contents a::before {
  content: "";
  display: block;
  background: url("../img/tiktok.png") no-repeat center / contain;
  width: 5rem;
  height: 5.6rem;
}
