@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--g {
  color: var(--green);
}

.common__ttl span {
  font-family: var(--font-ttl);
  font-size: max(32px, 6.9rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.common__btn--bl a {
  color: var(--black);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(32.8px, 4.6rem);
  height: max(20px, 2.8rem);
}

.common__btn--bl a::after {
  background: url("../img/btn_arw-bl.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  width: 100%;
  height: 23rem;
  opacity: 0.5;
  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;
}

@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);
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 8rem;
  bottom: -3rem;
  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(80px, 16.6rem);
  animation: scroll 2.5s infinite;
}

.hero__scroll p {
  margin-top: 1rem;
}

/*============================
	news
============================*/
.news {
  padding: 10.5rem 0 10rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 8rem;
}

@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 {
  font-weight: 300;
  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: var(--bg-2);
  padding: 17rem 0;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat right bottom / cover;
  width: 73.4rem;
  height: 50.4rem;
  right: 0;
  bottom: 0;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat right bottom / cover;
  width: 41.1rem;
  height: 32.7rem;
  left: 11.8rem;
  bottom: -23rem;
}

@media (max-width: 767px) {
  .concept::before {
    width: 55rem;
    height: 37.8rem;
  }

  .concept::after {
    width: 30rem;
    height: 23.8rem;
    left: 2rem;
    bottom: -10rem;
  }
}

.concept__contents {
  width: 108rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  row-gap: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  margin-bottom: 10rem;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 34.5rem;
    height: max(410px, 41rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 3.5rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.concept__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img p {
  font-family: var(--font-ttl);
  font-size: 13.6rem;
  line-height: 1;
  text-transform: capitalize;
  position: absolute;
  transform: rotate(-15deg);
  top: -6rem;
  right: -5rem;
}

@media (max-width: 767px) {
  .concept__img p {
    right: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-3);
  color: var(--black);
  padding: 14rem 0 17rem;
}

.menu__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 5rem;
  margin: 12.5rem auto 8rem;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
    margin: 8rem auto;
  }
}

.menu__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 5rem;
  margin: 0 auto 11rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    grid-template-columns: 1fr;
    margin: 0 auto 8rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 3rem;
  }

  .menu__list .menu__txt-wrapper {
    padding-right: 3rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.15em;
  line-height: 2;
}

.menu__img-1 {
  width: 65.4rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__img-2 {
  width: 100%;
}

@media (max-width: 767px) {
  .menu__img-1 {
    width: 100%;
  }

  .menu__img-2 {
    margin-bottom: 4rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-4);
  padding: 12rem 0 14rem;
  position: relative;
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 45rem;
  height: 26.7rem;
  position: absolute;
  top: -19rem;
  right: 2.8rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 36rem;
    height: 21.3rem;
    top: -12rem;
    right: 1rem;
  }
}

.gallery__slider {
  height: 22rem;
  margin: 10rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.4rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 12rem 0 11.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat top left / cover;
  width: 95.2rem;
  height: 46.6rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 60rem;
    height: 29.4rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  margin: 8.5rem auto 10rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
  margin: 7rem -9rem 0 calc(50% - 50vw);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  background-color: rgba(44, 96, 58, 0.7);
  display: flex;
  flex-wrap: wrap;
  padding: 6rem 6.5rem 7rem 15.5rem;
}

@media (max-width: 767px) {
  .access__list {
    padding: 4rem 5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.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 {
  padding: 11.5rem 0 21rem;
}

.insta__contents {
  width: 95.6rem;
  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: 1.6rem;
}

.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: 30.8rem;
  height: 29.7rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
