@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(50px, 8.6rem);
  height: max(32px, 5.5rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(200px, 33.3rem);
  height: max(50px, 7.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  font-size: max(14px, 2rem);
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(13px, 1.7rem);
  height: max(18.5px, 2.5rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3.6rem;
  pointer-events: none;
}

.common__line {
  background: url("../img/line.jpg") repeat center / cover;
  width: 100%;
  height: max(12px, 2rem);
}

/*============================
	header
============================*/
.top .header__logo {
  background: url("../img/texture-1.jpg") repeat center / 144rem auto;
  width: 28.8rem;
  height: 28.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 6rem;
}

@media (max-width: 850px) {
  .top .header__logo {
    left: 0;
  }
}

@media (max-width: 767px) {
  .top .header__logo {
    width: max(120px, 18rem);
    height: max(120px, 18rem);
  }
}

.top .header__logo img {
  width: 6rem;
}

@media (max-width: 767px) {
  .top .header__logo img {
    width: max(35px, 5rem);
  }
}

/*============================
	hero
============================*/
.hero {
  background: var(--bg-1);
  width: 100%;
  height: 100vh;
  padding: max(60px, 12rem) 9rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: max(60px, 8rem) 0 0;
  }
}

.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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 14px;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -2.5rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #dd2ca2;
  width: 9px !important;
  height: 9px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--white);
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(10px, 1.2rem);
  font-weight: 900;
  color: #dd2ca2;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: #dd2ca2;
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  color: var(--white);
  padding: 6rem 0 8.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.news::before {
  background: url("../img/news_deco.png") no-repeat center bottom / cover;
  height: 38rem;
  bottom: 0;
}

.news::after {
  background: var(--bg-1);
  height: 100%;
  bottom: 37.5rem;
}

.news__inner {
  background-color: rgba(242, 156, 205, 0.55);
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 5rem;
  padding: 4.5rem 2.5rem 4rem 4.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 6rem 6rem 7rem;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.5rem;
  flex-shrink: 0;
}

.news__btn {
  width: max-content;
  margin: 0 auto;
}

.news__btn a {
  border-bottom: solid 1px var(--white);
  font-size: max(12px, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding: 0 0.5rem 1.5rem 1.5rem;
}

.news__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw-news.png") no-repeat center / contain;
  width: max(12px, 1.8rem);
  height: max(16.2px, 2.5rem);
}

@media (min-width: 768px) {
  .news__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.4rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 15rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  padding: 7.5rem 0 7rem;
  position: relative;
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 62.8rem;
  height: 46.6rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 40rem;
    height: 29.7rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h2 {
    margin: -3rem 0 0 4.5rem;
  }
}

.policy__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 7rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    margin-top: 3rem;
  }
}

.policy__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -10rem;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    margin: 0;
  }
}

.policy__img-list {
  width: 110rem;
  display: flex;
  justify-content: flex-end;
  gap: 4.8rem;
  margin: 4rem auto 0;
}

@media (max-width: 767px) {
  .policy__img-list {
    width: 90%;
    gap: 3rem;
  }
}

.policy__img-list li {
  display: block;
  width: 37rem;
}

.policy__img-list li:nth-of-type(2) {
  width: 31rem;
}

@media (max-width: 767px) {
  .policy__img-list li,
  .policy__img-list li:nth-of-type(2) {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/menu_bg.jpg") no-repeat center bottom / cover;
  padding: 11.5rem 0 11rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 15.5rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    margin: 10rem auto 0;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 6rem;
}

.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%;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    padding-top: 16rem;
  }

  .menu__list-item:nth-of-type(3) .menu__txt-wrapper {
    padding-top: 6rem;
  }

  .menu__list-item:nth-of-type(4) .menu__txt-wrapper {
    padding-top: 14rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(18px, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper h3 {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    align-items: center;
    gap: 4rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper h3 {
    justify-content: space-between;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  width: 16.4rem;
  height: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper h3 span {
    margin: -5rem 4rem 0 -8rem;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
    margin: -14rem -10rem 0 auto;
  }

  .menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 span {
    margin: -6rem 3.5rem 0 -8rem;
  }

  .menu__list-item:nth-of-type(4) .menu__txt-wrapper h3 span {
    margin: -11.5rem -8.5rem 0 auto;
  }
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2rem 0 3rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 66rem;
  height: 100%;
  flex-shrink: 0;
}

.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;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 10rem 0 16rem;
  position: relative;
  z-index: 1;
}

.gallery::before,
.gallery::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.gallery::before {
  background: url("../img/gallery_deco.png") no-repeat center bottom / cover;
  height: 22rem;
}

.gallery::after {
  background: var(--bg-1);
  height: calc(100% - 22rem);
  bottom: 22rem;
}

.gallery__slider {
  height: 26rem;
  margin: 10rem 0 7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 35.6rem;
  margin: 0 0.1rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: var(--bg-3);
  padding: 6rem 0 6.5rem;
}

.recruit__contents {
  background-color: var(--white);
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.recruit__txt-wrapper {
  width: 100%;
  padding: 4rem 3.5rem 3.5rem 1.5rem;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    padding: 4rem;
  }
}

.recruit__txt-wrapper h2 {
  font-size: max(24px, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.recruit__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
}

.recruit__btn {
  width: max-content;
  margin-left: auto;
}

.recruit__btn a {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.recruit__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw-recruit.png") no-repeat center / contain;
  width: max(8px, 1rem);
  height: max(10.6px, 1.4rem);
}

.recruit__img {
  width: 38.5rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .recruit__img {
    width: 100%;
  }
}

/*============================
	access
============================*/
.access {
  padding: 10rem 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6rem;
  margin: 9.5rem auto 6rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -1.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }
}

@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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 10.5rem 0 7.5rem;
}

.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;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 67rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  margin-top: -22rem;
  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;
}
