@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: max(21px, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  background-image: var(--grad-silver);
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(106.3px, 13.9rem);
  height: max(13px, 1.7rem);
  margin-top: 0.5rem;
}

.common__btn {
  width: max(182px, 26rem);
  height: max(42px, 6rem);
  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%;
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__line {
  background: var(--grad);
  width: 100%;
  height: 2px;
  position: relative;
  z-index: 2;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  width: 100%;
  height: 20rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.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;
}

/*============================
	news
============================*/
.news {
  padding: 13.5rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4rem auto 6.5rem;
}

@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: 13.5rem 0 10rem;
}

.concept__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__contents-1 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5rem;
}

.concept__contents-2 {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 6.5rem;
}

@media (max-width: 767px) {
  .concept__contents-1 {
    flex-direction: column-reverse;
  }

  .concept__contents-2 {
    flex-direction: column;
    margin: 8rem 0 4rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 4rem;
  }
}

.concept__contents-1 h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (min-width: 768px) {
  .concept__contents-1 h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-top: 1.5rem;
    padding-right: 10.5rem;
    padding-bottom: 3rem;
  }
}

.concept__contents-1 span {
  font-size: max(10px, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-orientation: sideways;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 5rem;
}

@media (max-width: 767px) {
  .concept__contents-1 span {
    margin: 0 0 1rem;
  }
}

.concept__contents-1 span::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: 17rem;
}

@media (max-width: 767px) {
  .concept__contents-1 span::after {
    width: 17rem;
    height: 1px;
  }
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  line-height: 2;
  margin-bottom: 7rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 63rem;
  height: 100%;
  flex-shrink: 0;
}

.concept__contents-2 .concept__img {
  width: 40rem;
}

@media (max-width: 767px) {
  .concept__img,
  .concept__contents-2 .concept__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 13.5rem 0;
  position: relative;
  z-index: 1;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 66rem;
  height: 26rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  top: 0;
  right: 0;
}

.menu::after {
  transform: scale(-1, -1);
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 42rem;
    height: 16.5rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 14rem;
  margin: 10rem auto 14.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem 7rem;
}

.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%;
  position: relative;
  z-index: 1;
}

.menu__txt-wrapper h3 {
  display: block;
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  width: max-content;
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 4.5rem;
}

.menu__txt-wrapper h4 {
  border-top: solid 1px var(--white);
  border-bottom: solid 1px var(--white);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3.5rem 0;
  margin-bottom: 7.5rem;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper h4 {
  padding: 2rem 0;
}

.menu__txt-wrapper h4 span {
  display: block;
  font-size: max(14px, 2rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 1rem;
}

.menu__txt-wrapper p {
  border: solid 1px var(--white);
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  padding: 3rem 3rem 4rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    padding: 3rem 4rem 5rem 2rem;
    margin: 0 -16.5rem 0 -2rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper p {
    margin: 0 -2rem 0 -16.5rem;
  }
}

.menu__txt-wrapper p::before {
  content: "";
  background-color: var(--black);
  width: 100%;
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  pointer-events: none;
  z-index: -1;
}

.menu__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 10.5rem 0 10rem;
}

.gallery__slider {
  height: 20.8rem;
  margin: 5rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.6rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 12rem 0 10rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center left / cover;
  width: 90rem;
  height: 102rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 60rem;
    height: 68rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9.5rem;
  margin: 11rem auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -4rem 0 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  min-height: 10rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  padding: 2.4rem 0;
}

.access__list dt {
  width: max(75px, 14rem);
  font-size: max(12px, 1.8rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 14rem));
}

.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%;
    min-height: auto;
  }

  .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;
  }
}

.access__map {
  width: 98rem;
  height: 36.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__map {
    width: 90%;
  }
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 12.5rem 0 11.5rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 6.5rem auto 8.5rem;
}

@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;
  }
}

.insta__tiktok a {
  background-color: var(--black);
  width: max(320px, 53.2rem);
  height: max(70px, 10rem);
  border-top: solid 1px #25f4ee;
  border-left: solid 1px #25f4ee;
  border-right: solid 1px #fe2c55;
  border-bottom: solid 1px #fe2c55;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem 6.4rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__tiktok a {
    width: 80%;
    height: max(80px, 13rem);
  }
}

.insta__tiktok a img {
  width: max(120px, 17.7rem);
  height: auto;
  flex-shrink: 0;
}
