<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max(94.4px, 13.6rem);
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  margin: 0 auto;
}

.menu .common__ttl {
  width: max(110px, 15.9rem);
}

.gallery .common__ttl {
  width: max(130px, 18.7rem);
}

.access .common__ttl {
  width: max(100.4px, 15rem);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(35px, 6.2rem);
  height: max(35px, 6.2rem);
}

.common__btn {
  width: max(180px, 24rem);
  margin: 0 auto;
}

.news .common__btn {
  width: max(150px, 20.5rem);
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
}

.line {
  background: url("../img/line.jpg") no-repeat center / cover;
  width: 100%;
  height: 2rem;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  padding: 12rem 9rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: max(60px, 8rem) 5% 0;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 4rem;
  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-family: var(--font-en);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 4rem;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--blue);
  width: max(2px, 0.3rem);
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 6rem 0 7rem;
}

.news__inner {
  background-color: var(--white);
  width: 125.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 4rem;
  padding: 4rem 8rem 3rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 8rem 5%;
  }
}

.news__ttl-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  padding-top: 4rem;
}

@media (max-width: 767px) {
  .news__ttl-wrapper {
    margin-bottom: 2rem;
  }
}

.news h2 {
  width: max(94.4px, 13.6rem);
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  margin: 0 auto;
  position: relative;
}

.news h2::before {
  content: "";
  background: url("../img/news_ttl-deco.png") no-repeat center / contain;
  width: max(150px, 21rem);
  height: max(150px, 21rem);
  position: absolute;
  transform: translate(-50%, -55%);
  top: 50%;
  left: 50%;
}

.CMS-NEWS-INDEX {
  width: 77.8rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3.2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 14.8rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 30rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.1em;
}

.CMS-NEWS-TIME {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--blue);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 25rem 0 14rem;
}

@media (max-width: 767px) {
  .concept {
    padding: 8rem 0 12rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 55rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(18px, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: -4rem 0 0 4rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2.2;
}

@media (min-width: 768px) {
  .concept__txt-wrapper p {
    height: max(360px, 36rem);
  }
}

.concept__img {
  width: 56.2rem;
  height: 100%;
  border-radius: 2rem;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: -8rem;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 10rem 0;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  margin: 5.5rem auto 1.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 8rem;
    margin: 5.5rem auto 8rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 6rem 4rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.menu__list-item:nth-of-type(2) {
  margin-top: -4rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
    margin: 0;
  }
}

.menu__txt-wrapper {
  width: 100%;
  padding-top: 17.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    padding-top: 0;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-bg.png") no-repeat center / contain;
  width: 50.2rem;
  height: 50.2rem;
  position: absolute;
  top: -4rem;
  left: 22rem;
  pointer-events: none;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper::before {
  left: auto;
  right: 22rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before,
  .menu__list-item:nth-of-type(even) .menu__txt-wrapper::before {
    width: 40rem;
    height: 40rem;
    top: -12rem;
    right: -6rem;
    left: auto;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(18px, 3.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.menu__txt-wrapper h3 strong {
  font-size: max(21px, 4.2rem);
  font-weight: 700;
  color: var(--blue);
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img-wrapper {
  width: 71.2rem;
  height: 73.6rem;
  margin-right: -8.5rem;
  position: relative;
}

.menu__list-item:nth-of-type(even) .menu__img-wrapper {
  margin-right: 0;
  margin-left: -8.5rem;
}

@media (max-width: 767px) {
  .menu__img-wrapper,
  .menu__list-item:nth-of-type(even) .menu__img-wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

.menu__img-wrapper p {
  width: max(40px, 8.2rem);
  position: absolute;
  top: 5rem;
  left: 13rem;
  z-index: 1;
}

.menu__list-item:nth-of-type(even) .menu__img-wrapper p {
  left: auto;
  right: 13rem;
}

.menu__img-wrapper .swiper-slide {
  position: relative;
}

.menu__img-wrapper .swiper-slide::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3rem;
  left: 2rem;
  z-index: -1;
}

.menu__list-item:nth-of-type(even) .menu__img-wrapper .swiper-slide::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  left: auto;
  right: 2rem;
}

.menu__slider-1,
.menu__slider-2 {
  position: relative;
}

.menu .swiper-pagination {
  width: max-content !important;
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
  left: 1.5rem !important;
  bottom: 9rem !important;
  z-index: 10;
}

.menu .menu__slider-2 .swiper-pagination {
  left: auto !important;
  right: 1.5rem;
}

@media (max-width: 767px) {
  .menu .swiper-pagination {
    bottom: 0 !important;
  }
}

.menu .swiper-pagination-bullet {
  background-color: var(--blue);
  width: max(12px, 2rem) !important;
  height: max(12px, 2rem) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.menu .swiper-pagination-bullet-active {
  width: max(18px, 2.8rem) !important;
  height: max(18px, 2.8rem) !important;
}

/*============================
	gallery
============================*/
.gallery {
  padding: 10rem 0;
}

.gallery__slider {
  height: 21rem;
  margin: 4rem 0;
}

@media (max-width: 767px) {
  .gallery__slider {
    height: 25.8rem;
  }
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 26rem;
  border-radius: 2rem;
  overflow: hidden;
  margin: 0 1.7rem;
}

@media (max-width: 767px) {
  .gallery__slider .swiper-slide {
    width: 32rem;
  }
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 10rem 0 8rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 5.8rem;
  margin: 4.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 62.5rem;
  height: 100%;
  border-radius: 0 2rem 2rem 0;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    border-radius: 2rem;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3.6rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  background-color: var(--white);
  width: max(75px, 10rem);
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.2rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
  border-bottom: solid 1px var(--black);
  padding: 2.2rem 4rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    display: block;
    width: 100%;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 10rem 0;
}

.insta__contents {
  width: 83rem;
  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.3rem 2.7rem;
}

.CMS-INSTAGRAM-LIST &gt; *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 25.9rem;
  height: 25.9rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
</pre></body></html>