@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-ttl);
  font-size: max(36px, 6.9rem);
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: capitalize;
}

.common__ttl--wt {
  color: var(--white);
}

.news .common__ttl {
  font-size: max(40px, 8.4rem);
}

.common__btn {
  width: max-content;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border-bottom: solid max(4px, 0.6rem) var(--blue);
  font-family: var(--font-en);
  font-size: max(12px, 1.7rem);
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.5rem;
  padding: 0 0.5rem 1rem 3rem;
  position: relative;
}

.common__btn--wt a {
  border-bottom: solid max(4px, 0.6rem) var(--white);
  color: var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(14px, 1.9rem);
  height: max(20.6px, 2.8rem);
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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: 2rem;
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 6rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--white);
  width: max(10px, 1.3rem) !important;
  height: max(10px, 1.3rem) !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(--blue);
}

@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);
  color: var(--white);
  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: var(--white);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  background-color: var(--blue);
  color: var(--white);
  padding: 12.5rem 0 3.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 41.2rem;
  height: 40.4rem;
  top: -25.5rem;
  right: 13.5rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center bottom / cover;
  width: 100%;
  height: 15rem;
  transform: translateY(100%);
  left: 0;
  bottom: 1px;
}

@media (max-width: 767px) {
  .news::before {
    width: 32rem;
    height: 31.3rem;
    top: -12rem;
    right: 1rem;
  }
}

.news__inner {
  width: 101.2rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4rem 0 6rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    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;
}

.news .common__btn {
  margin-left: auto;
}

/*============================
	concept
============================*/
.concept {
  padding: 16rem 0 1.5rem;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center bottom / cover;
  width: 39.6rem;
  height: 18.6rem;
  top: 3.5rem;
  right: 18.5rem;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center bottom / cover;
  width: 100%;
  height: 20rem;
  transform: translateY(100%);
  left: 0;
  bottom: 1px;
}

@media (max-width: 767px) {
  .concept::before {
    width: 32rem;
    height: 15rem;
    right: 2rem;
  }
}

.concept__ttl-wrapper {
  margin-left: 23.5rem;
}

@media (max-width: 767px) {
  .concept__ttl-wrapper {
    margin-left: 10%;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 5rem;
  margin: 5rem auto 3rem;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
    margin: 5rem auto 6rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 3rem;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h3 span {
  display: block;
  font-family: var(--font-ttl);
  font-size: 18.2rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 -15rem -6rem 4rem;
}

.concept__txt-wrapper h3 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 700;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 5rem 0 8.5rem;
}

.concept__img-1 {
  width: 54rem;
  height: 100%;
  flex-shrink: 0;
}

.concept__img-2 {
  display: block;
  width: 116.6rem;
  padding-left: 1rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__img-1 {
    width: 100%;
  }

  .concept__img-2 {
    width: 90%;
  }
}

/*============================
	menu
============================*/
.menu {
  background-color: var(--blue);
  color: var(--white);
  padding: 8.5rem 0 19rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center top / cover;
  width: 100%;
  height: 20rem;
  transform: translateY(-100%);
  top: 1px;
  left: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 18.2rem;
  height: 19.8rem;
  top: 0;
  right: 15rem;
}

@media (max-width: 767px) {
  .menu::after {
    top: 78rem;
    right: 3rem;
  }
}

.menu__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 8rem 9.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 5rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 6.5rem;
}

.menu__txt-wrapper h3 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 700;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 3rem 0 7rem;
}

.menu__img {
  width: 60rem;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__txt {
  font-family: var(--font-ttl);
  font-size: 14.2rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.5;
  position: absolute;
  left: -0.5rem;
  bottom: 1rem;
}

@media (max-width: 767px) {
  .menu__txt {
    top: 35rem;
    bottom: auto;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background-color: var(--yellow);
  padding-top: 8rem;
}

.gallery__ttl-wrapper {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 auto 4rem;
}

@media (max-width: 767px) {
  .gallery__ttl-wrapper {
    width: 90%;
  }
}

.gallery__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/*============================
	access
============================*/
.access {
  background-color: #f9f5e9;
  padding: 13.5rem 0 15.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 8rem 16.5rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__txt-wrapper {
  width: 100%;
  margin-bottom: 11rem;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 7rem 0 5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.9rem 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(--blue);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--blue);
  }
}

@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;
  }
}

.access .common__btn {
  margin: 0 auto;
}

.access__img-wrapper {
  width: 52rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img-wrapper {
    width: 100%;
    margin: 0;
  }
}

.access__img {
  width: 100%;
}

.access__img-wrapper p {
  width: max-content;
  font-family: var(--font-ttl);
  font-size: 9.4rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin: 3rem 0 1.5rem;
}

.top__map {
  width: 49.5rem;
  height: 32rem;
  margin-left: 10rem;
}

@media (max-width: 767px) {
  .top__map {
    width: 100%;
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  background-color: var(--yellow);
  padding-bottom: 15rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.insta::before {
  background: url("../img/insta_deco-1.png") no-repeat center top / cover;
  width: 100%;
  height: 20rem;
  transform: translateY(-100%);
  top: 1px;
  left: 0;
}

.insta::after {
  background: url("../img/insta_deco-2.png") no-repeat center top / cover;
  width: 16.4rem;
  height: 16.2rem;
  top: -12.5rem;
  left: 53rem;
}

@media screen and (max-width: 767px) {
  .insta::after {
    left: 10rem;
  }
}

.insta__ttl-wrapper {
  width: max-content;
  margin: 0 28rem 0 auto;
  position: relative;
  transform: translateY(-6rem);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .insta__ttl-wrapper {
    margin: 0 5% 0 auto;
  }
}

.insta__contents {
  width: 96.5rem;
  margin: 5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

.CMS-INSTAGRAM-LIST img {
  width: 32.3rem;
  height: 32.3rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	sns
============================*/
.sns {
  background-color: var(--white);
  padding: 9rem 0 9.5rem;
}

.sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem 8rem;
  padding-right: 6rem;
}

@media screen and (max-width: 767px) {
  .sns__list {
    flex-direction: column;
    padding-right: 0;
  }
}

.sns__list a {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.sns__list a p {
  border-bottom: solid 1px var(--black);
  font-family: var(--font-en);
  font-size: max(14px, 2.2rem);
  font-weight: 900;
  padding: 0 0.5rem 1.5rem;
}

.sns__list a img {
  width: max(50px, 10.6rem);
  height: auto;
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 62rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.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;
}
