@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  color: #FFF;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(50px, 6.8rem);
  height: max(14px, 1.8rem);
}

.common__ttl span {
  
  font-size: max(28px, 3.4rem);
  letter-spacing: 0.18em;
  color: #FFF;
  font-weight: 900;
}

.common__btn {
  width: max(200px, 21.5rem);
  height: max(45px, 4.9rem);
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: max(12px,1.6rem);
  position: relative;
  color: #FFF;
  background : linear-gradient(90deg, rgba(154, 153, 255, 1) 14.89%, rgba(237, 108, 255, 1) 93.37%);
}

.common__btn a span {
  width: 100%;
  height: 100%;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common__btn.wh a span {
  border: solid 1px #FFF;
  color: #FFF;
}
.common__btn.wh a::before {
  background: #FFF;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before,
.hero::after {
  content: "";
  width: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  z-index: 2;
}

.hero::before {
  background: url("../img/hero_bg-1.png") repeat-x center / contain;
  height: 36.4rem;
  top: 0;
}

.hero::after {
  background: url("../img/hero_bg-2.png") repeat-x center / contain;
  height: 35.7rem;
  bottom: 0;
  display: none;
}

.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;
}

@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(12px, 1.8rem);
  color: var(--white);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: 100;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(50px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  padding: 17.6rem 0 16.3rem;
}
.common__ttl {
  /*width: max-content;*/
  margin: 0 auto 0;
}
.common__ttl::before {
  background: url(../img/ttl_deco-concept.png) no-repeat top center / contain;
  width: 100%;
  height: max(19px,1.9rem);
}
.common__ttl::after {
  background: url(../img/ttl_deco-concept2.png) no-repeat top center / contain;
  width: 100%;
  height: max(8.5px,0.85rem);
  content: "";
  display: block;
  margin-top: 0.5rem;
}
.policy__contents {
  width: max(675px,67.5rem);
  display: flex;
  gap: 4rem;
  margin: 4rem auto 0;
}
.policy__txt-wrapper {
  width: 100%;
  padding-top: 5rem;
}
.policy__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: -9rem;
}
.policy__txt-wrapper h3 {
  font-size: max(18px, 2.6rem);
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
}
.policy__txt-wrapper p {
  letter-spacing: 0.01em;
  line-height: 2.75;
  margin: 5rem 0 0rem;
  text-align: center;
}
.policy .common__btn {
  margin: 11rem auto 0;
}
@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
  .policy__txt-wrapper {
    padding-top: 0;
  }
  .policy__txt-wrapper h3 {
    font-size: max(18px, 3rem);
    letter-spacing: 0.18em;
    margin-top: 5rem;
  }
  .policy__txt-wrapper p {
    letter-spacing: 0.2em;
    line-height: 2.75;
    margin: 7rem 0 2.5rem;
  }
  .policy__img {
    width: 100%;
    margin: 0;
  }
  .policy .common__btn {
    margin: 6rem auto;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/bg-menu.jpg") no-repeat top center / cover;
  padding: 14rem 0 23.3rem;
  position: relative;
}


@media (max-width: 767px) {
}

.menu__contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin: 14.1rem auto 0;
  padding-left: 17rem;
}
@media (max-width: 1020px) {
  .menu__contents {
    padding-left: 6rem;
  }
}
@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.menu__txt-wrapper {
  width: 45.8rem;
}
.menu__contents:nth-of-type(2) {
  margin-top: 14.2rem;
}
@media (max-width: 1020px) {
  .menu__txt-wrapper {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    padding-top: 0;
    width: 100%;
    margin-right: 0;
  }
  .menu__contents:nth-of-type(2) {
    margin-top: 6rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.18em;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.menu__txt-wrapper h3 span {
  background: linear-gradient(90deg, rgba(154, 153, 255, 1) 14.89%, rgba(237, 108, 255, 1) 93.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: max(20px, 2.4rem);
}
.menu__txt-wrapper h3 span.line {
  width: 100%;
  height: 1px;
  display: inline-block;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.menu__txt-wrapper h4 {
  font-size: max(20px, 2.4rem);
}

.menu__txt-wrapper p {
  letter-spacing: 0em;
  line-height: 2.25;
  margin: 2rem 0 8.5rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 69rem;
  height: 50rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

/*============================
	news
============================*/
.news {
  background: url("../img/bg-news.jpg") no-repeat bottom center / cover;
  padding: 11.1rem 0 14.8rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: flex;
  gap: 6rem 4rem;
  margin: 6.2rem auto 10rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    flex-direction: column;
  }
  .news {
    background: url("../img/bg-news.jpg") no-repeat top right / cover;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
  width: 34rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    width: 100%;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 24rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
  margin-right: 2rem;
}
.CMS-NEWS-TIME {
  border-bottom: 1px solid #FFF;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}


.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta-bg.jpg") no-repeat center / cover;
  padding: 10.2rem 0 23.6rem;
}

.insta__contents {
  width: 82.7rem;
  margin: 7.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.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;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url(../img/bg-gallery.jpg) no-repeat top center / cover;
  padding: 10.1rem 0 11.5rem;
}

.gallery__slider {
  margin: 6rem 0 8.2rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30.1rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 11rem 0 14.5rem;
}

.access__map {
  height: 45rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 6.1rem;
  margin: 9.4rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__img {
  width: 48.7rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  width: max(90px, 12.5rem);
  font-weight: 400;
  padding: 2.7rem 0 2.7rem 1.5rem;
}

.access__list dd {
  width: calc(100% - max(90px, 12.5rem));
  border-bottom: solid 1px var(--white);
  padding: 2.7rem 0 2.7rem 2rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }

  .access__list dt:last-of-type {
    border: none
  }

  .access__list dd:last-of-type {
    border: none;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    justify-content: flex-start;
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
    position: relative;
  }

  /*.access__list dd::before {
    content: "";
    background-color: var(--white);
    width: 25%;
    height: 1px;
    position: absolute;
    transform: translateY(100%);
    left: 0;
    bottom: 0;
  }*/
}

.access .common__btn {
  margin: 5rem 0 0;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 5rem auto 0;
  }
}

