@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  color: #562b08;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.insta .common__ttl {
  row-gap: 3rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(36px, 6.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  display: block;
  background-color: #00785f;
  width: max(10px, 1.5rem);
  height: 100%;
}

.common__btn a::after {
  background-color: var(--red);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, #fff, #562b08);
  width: 100%;
  height: 31rem;
  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;
}

.hero .swiper-pagination {
  width: max-content !important;
  height: 4rem;
  display: flex;
  align-items: center;
  column-gap: max(12px, 2.4rem);
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: 0 !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 10px !important;
  height: 10px !important;
  border: solid 1px var(--white);
  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(--white);
}

/*============================
	news
============================*/
.news {
  border-top: solid 4rem var(--brown);
  padding: 12.5rem 0 14rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6.5rem auto 7.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);
  color: var(--white);
  padding: 12.5rem 0;
  position: relative;
}

.concept::before {
  content: "";
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 60.2rem;
  height: 31.7rem;
  position: absolute;
  right: -5.5rem;
  bottom: -23.5rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept::before {
    width: 48rem;
    height: 25.2rem;
    bottom: -12rem;
  }
}

.concept__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__img-wrapper {
  width: 100%;
  position: relative;
}

.concept__img-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 2rem;
  left: 2rem;
  pointer-events: none;
}

.concept h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  position: absolute;
  top: -4rem;
  right: 4rem;
}

@media (min-width: 768px) {
  .concept h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media (max-width: 767px) {
  .concept h2 {
    font-size: max(14px, 2rem);
    top: auto;
    right: auto;
    left: -2rem;
    bottom: 2rem;
  }
}

.concept h2 span {
  display: block;
  background-color: var(--red);
  width: max-content;
  height: max-content;
  padding: 2.5rem 1.6rem;
}

.concept h2 span:nth-of-type(2) {
  margin: 2.4rem 1rem 0 0;
}

@media (max-width: 767px) {
  .concept h2 span {
    padding: 1.6rem 2.5rem;
  }

  .concept h2 span:nth-of-type(2) {
    margin: 1rem 0 0 2rem;
  }
}

.concept__img {
  width: 100%;
}

.concept__txt-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 6.5rem 8rem;
  margin-top: 7rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.concept__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6rem;
}

@media (min-width: 768px) {
  .concept__ttl-wrapper {
    margin-left: -3.5rem;
  }
}

.concept__ttl-wrapper h3 {
  font-family: var(--font-en);
  font-size: 10rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  transform: rotate(-10deg);
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

/*============================
	menu
============================*/
.menu {
  padding: 17rem 0 13.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 17rem 0 20rem;
    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: 70rem;
  height: 50rem;
  top: 0;
  left: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 49rem;
  height: 35.6rem;
  right: 3rem;
  bottom: 6rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 50rem;
    height: 35.7rem;
  }

  .menu::after {
    width: 35rem;
    height: 25.4rem;
    right: 1rem;
    bottom: 2rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 11.5rem;
  margin: 10rem auto 14rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 8rem;
  position: relative;
}

.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__list-item:nth-of-type(1)::before,
.menu__list-item:nth-of-type(1)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(1)::before {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 23.4rem;
  height: 27.8rem;
  top: -22.5rem;
  right: -12rem;
}

.menu__list-item:nth-of-type(1)::after {
  background: url("../img/menu_deco-4.png") no-repeat center / contain;
  width: 31.2rem;
  height: 21.4rem;
  left: -10rem;
  bottom: -4.5rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1)::before {
    width: 20rem;
    height: 23.7rem;
    top: -20rem;
    right: -2rem;
  }

  .menu__list-item:nth-of-type(1)::after {
    width: 24rem;
    height: 16.4rem;
    left: -2rem;
    bottom: -8rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  color: #562b08;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 2rem;
    padding-left: 6rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    padding-top: 4rem;
    padding-left: 2rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: max-content;
  font-family: var(--font-en);
  font-size: max(32px, 5.6rem);
  font-weight: 700;
  color: #32a000;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 1rem;
  transform: rotate(-10deg);
}

.menu__txt-wrapper p {
  line-height: 2;
}

.menu__img {
  width: 72rem;
  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: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 11.5rem 0;
  position: relative;
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco-1.png") no-repeat center / contain;
  width: 46rem;
  height: 34.4rem;
  position: absolute;
  top: -26.5rem;
  left: 5.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 32rem;
    height: 23.9rem;
    top: -12rem;
    left: 1rem;
  }
}

.gallery__slider {
  height: 22.6rem;
  margin: 5.5rem 0 7.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  padding: 16rem 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 8rem;
  margin: 7.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2rem 0 5.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5.5rem;
  }
}

.access__list dt,
.access__list dd {
  font-weight: 500;
  color: #562b08;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0 0 0 2rem;
  }
}

.top__map {
  height: 38rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11.5rem 0 18.5rem;
}

.insta__contents {
  width: 82rem;
  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);
  gap: 1.8rem;
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
