@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(21px, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  display: block;
  font-size: max(12px, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 20rem);
  height: max(40px, 4.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-left: 2.5rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  position: absolute;
  top: max(3px, 0.5rem);
  left: max(3px, 0.5rem);
  pointer-events: none;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(14.6px, 1.7rem);
  height: max(10px, 1.2rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: max(60px, 12rem) 9rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: max(60px, 8rem) 0 0;
  }
}

.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: 14px;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -16px !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 9px !important;
  height: 9px !important;
  border: solid 1px var(--brown);
  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(--brown);
}

/*============================
	news
============================*/
.news {
  padding: 16rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 3.5rem auto 5.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(--black);
  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: 15rem 0 10.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept {
    padding: 10rem 0 18rem;
  }
}

.concept::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 63rem;
  height: 56.7rem;
  position: absolute;
  right: -6.6rem;
  bottom: -31rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept::before {
    width: 50rem;
    height: 45rem;
    right: -8rem;
    bottom: -20rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 auto 7.5rem;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  background-color: var(--brown);
  width: 100%;
  color: var(--white);
  padding: 5rem 6.5rem 5rem 4.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    margin-left: -3.5rem;
  }
}

.concept__txt-wrapper h2 {
  border-bottom: solid 1px var(--white);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.concept__img {
  width: 71rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 13.5rem 0 15rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 24rem 0 15rem;
  }
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 72rem;
  height: 36rem;
  top: 0;
  left: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 60rem;
  height: 50rem;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 55rem;
    height: 27.5rem;
  }

  .menu::after {
    width: 48rem;
    height: 40rem;
  }
}

.menu__list {
  width: 100rem;
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
  margin: 11rem auto 11.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 10rem;
}

.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%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(420px, 44rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-top: 4rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__img {
  width: 71rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 12.5rem 0;
}

.gallery__slider {
  height: 22.8rem;
  margin: 6.5rem 0 10.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.7rem;
}

/*============================
	access
============================*/
.access {
  padding: 13rem 0 11.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 11.5rem;
  margin: 13rem auto 11.5rem;
}

@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;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
  }
}

.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(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 13.5rem 0 16.5rem;
}

.insta__contents {
  width: 87rem;
  margin: 7rem 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.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
