@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  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;
  position: relative;
}

.common__ttl span {
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(152px, 20.9rem);
  height: max(40px, 5.5rem);
  position: absolute;
  transform: translateX(-55%);
  left: 50%;
  bottom: -0.6rem;
  z-index: -1;
}

.common__btn {
  width: max(195px, 26rem);
  height: max(45px, 6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 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: 15rem 0 14rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem 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: 13rem 0 12.5rem;
  position: relative;
}

.concept::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 54.3rem;
  height: 55.5rem;
  position: absolute;
  right: 0;
  bottom: -10rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::before {
    width: 36rem;
    height: 36.8rem;
    bottom: -12rem;
  }
}

.concept__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    flex-direction: column-reverse;
    row-gap: 5rem;
  }
}

.concept__ttl {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .concept__ttl {
    writing-mode: vertical-rl;
    padding: 2rem 10rem 0 0;
  }
}

.concept__ttl::before {
  content: "";
  background: url("../img/concept_txt-deco.png") no-repeat center / contain;
  width: 48.8rem;
  height: 47.6rem;
  position: absolute;
  top: -11rem;
  right: -12rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .concept__ttl::before {
    width: 36rem;
    height: 35.1rem;
    top: -6rem;
    left: -4rem;
    right: auto;
  }
}

.concept__ttl span {
  display: block;
  font-size: max(10px, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1rem 0 0 4.5rem;
}

@media (max-width: 767px) {
  .concept__ttl span {
    margin: 0 0 3rem;
  }
}

.concept__ttl span::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: 17rem;
}

@media (max-width: 767px) {
  .concept__ttl span::after {
    width: 17rem;
    height: 1px;
  }
}

.concept__img {
  width: 63rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__txt {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3.5rem 0 6rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .concept__txt {
    width: 63rem;
  }
}

@media (max-width: 767px) {
  .concept .common__btn {
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 14rem 0 21rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 66.6rem;
  height: 45.2rem;
  top: 0;
  left: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 30.8rem;
  height: 33.2rem;
  right: 14.5rem;
  bottom: 3rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 45rem;
    height: 30.5rem;
  }

  .menu::after {
    width: 22rem;
    height: 23.7rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 12rem;
  margin: 14rem auto 12rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__ttl-wrapper {
  display: flex;
}

.menu__list-item:nth-of-type(even) .menu__ttl-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper,
  .menu__list-item:nth-of-type(even) .menu__ttl-wrapper {
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.menu__ttl {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__ttl {
    margin: 0 0 0 auto;
  }

  .menu__list-item:nth-of-type(even) .menu__ttl {
    margin: 0;
  }
}

.menu__ttl h3 {
  width: max(115px, 21.5rem);
  height: max-content;
  border: solid 1px var(--black);
  border-top: none;
  border-bottom: none;
  font-family: var(--font-menu);
  font-size: max(16px, 2.8rem);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__ttl h3 {
    margin-bottom: 4rem;
  }
}

.menu__ttl h3::before,
.menu__ttl h3::after {
  content: "";
  background: url("../img/menu_ttl-bg.png") no-repeat center top / cover;
  width: max(4px, 0.8rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__ttl h3::after {
  left: auto;
  right: 0;
}

.menu__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 4rem 6.5rem;
}

.menu__list-item:nth-of-type(odd) .menu__txt-wrapper {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    margin-top: -8.5rem;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper,
  .menu__list-item:nth-of-type(odd) .menu__txt-wrapper {
    flex-direction: column;
  }
}

.menu__txt {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .menu__txt {
    width: 55rem;
  }

  .menu__txt-wrapper .menu__txt {
    margin-top: 12rem;
  }
}

.menu__img {
  display: block;
  width: 78rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__deco {
  display: block;
  width: max(90px, 16.8rem);
  position: absolute;
  top: -5rem;
  right: -3rem;
}

.menu__list-item:nth-of-type(even) .menu__deco {
  left: -3rem;
  right: auto;
}

.menu__img::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1) .menu__img::before {
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 40.3rem;
  height: 32.3rem;
  bottom: -17rem;
  left: -23rem;
}

.menu__list-item:nth-of-type(2) .menu__img::before {
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 51.8rem;
  height: 32.8rem;
  bottom: -17rem;
  right: -38rem;
}

.menu__list-item:nth-of-type(3) .menu__img::before {
  background: url("../img/menu_img-deco-3.jpg") no-repeat center / contain;
  width: 36.4rem;
  height: 26rem;
  bottom: -17rem;
  left: -23rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img::before {
    bottom: -20rem;
    left: -2rem;
  }

  .menu__list-item:nth-of-type(2) .menu__img::before {
    bottom: -20rem;
    right: -10rem;
  }

  .menu__list-item:nth-of-type(3) .menu__img::before {
    bottom: -20rem;
    left: 2rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 11.5rem 0 12rem;
}

.gallery__slider {
  height: 21rem;
  margin: 9rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.6rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 11.5rem 0 16rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 10rem;
  margin: 10.5rem auto 12.5rem;
}

@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%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: -2.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 3.4rem 0;
}

.access__list dt {
  width: max(100px, 18rem);
  font-size: max(12px, 1.8rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(100px, 18rem));
}

.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;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 12.5rem 0 14rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 10rem 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;
  }
}
