@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-ttl);
  font-size: max(24px, 5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.common__ttl--wt {
  color: var(--white);
}

@media (max-width: 767px) {
  .common__ttl {
    font-size: max(24px, 4rem);
  }
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 8.6rem;
  height: 8.6rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(160px, 33rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .common__btn {
    width: max(160px, 26rem);
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(97rem, 100vh);
  padding: max(80px, 12rem) 10rem 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: max(60px, 8rem) 0 0;
  }
}

.hero::before {
  content: "";
  background: url("../img/hero_deco.png") no-repeat center / contain;
  width: 15.2rem;
  height: 25.7rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero::before {
    width: 15.2rem;
    height: 25.7rem;
    left: 10rem;
  }
}

.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: 10rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  left: 0 !important;
  bottom: 7.5rem !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    width: 100% !important;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    bottom: -4rem !important;
  }
}

.hero .swiper-pagination-bullet {
  background-color: #f4f1ed;
  width: max(10px, 1.4rem) !important;
  height: max(10px, 1.4rem) !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(--green);
  width: max(12px, 2rem) !important;
  height: max(12px, 2rem) !important;
}

@media (max-width: 767px) {
  .hero .swiper-pagination-bullet {
    width: max(10px, 1.3rem) !important;
    height: max(10px, 1.3rem) !important;
  }

  .hero .swiper-pagination-bullet-active {
    background-color: var(--green);
    width: max(12px, 1.6rem) !important;
    height: max(12px, 1.6rem) !important;
  }
}

/*============================
	news
============================*/
.news {
  background: url("../img/news_bg.jpg") repeat center bottom / 170rem auto;
  padding: 45rem 0 14.5rem;
  margin-top: -29.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .news {
    padding: 12rem 0 15rem;
    margin: 0;
  }
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 35.8rem;
  height: 35.8rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.news::before {
  top: 38rem;
  right: -12rem;
}

.news::after {
  left: 6rem;
  bottom: 8.5rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 28rem;
    height: 28rem;
  }

  .news::before {
    top: 3rem;
    right: -7rem;
  }

  .news::after {
    left: -2rem;
    bottom: 1rem;
  }
}

.news__inner {
  background-color: #fbf5ee;
  width: 110rem;
  padding-top: 8rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.news__inner::before {
  content: "";
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  border: solid 0.5rem #ac7c2d;
  opacity: 0.3;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.CMS-NEWS-INDEX {
  width: 98.7rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 1.7rem;
  margin: 7rem auto 6rem;
}

@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: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-TIME {
  color: var(--green);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

.news .common__btn {
  transform: translateY(50%);
}

/*============================
	policy
============================*/
.policy {
  padding: 14rem 0 14.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 12rem 0 14rem;
  }
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 30.6rem;
  height: 26rem;
  top: 22.5rem;
  right: 0;
}

.policy::after {
  background: url("../img/policy_deco-2.png") no-repeat center / contain;
  width: 37.7rem;
  height: 30.6rem;
  left: 0;
  bottom: 24.5rem;
}

@media (max-width: 767px) {
  .policy::before {
    width: 20rem;
    height: 17rem;
    top: 5rem;
  }

  .policy::after {
    width: 22rem;
    height: 17.8rem;
    bottom: 10rem;
  }
}

.policy__contents {
  width: 140rem;
  display: flex;
  flex-direction: row-reverse;
  row-gap: 4rem;
  padding-right: 4.5rem;
  margin: 0 auto 10rem;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__ttl {
  font-family: var(--font-ttl);
  font-size: max(24px, 5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .policy__ttl {
    font-size: max(24px, 4rem);
    margin: 0 0 3rem;
  }
}

.policy__ttl span {
  display: block;
  font-family: var(--font-adobe);
  font-size: max(14px, 2.4rem);
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-orientation: sideways;
  margin-top: -5rem;
}

@media (max-width: 767px) {
  .policy__ttl span {
    font-size: max(14px, 2rem);
    margin: 0;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(16px, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h3 {
    margin-top: 15rem;
    margin-left: 3rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    height: max(400px, 40rem);
    margin-top: 21.5rem;
  }
}

.policy__img-1 {
  width: 88rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -5rem;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 100%;
    margin: 0;
  }
}

.policy__img-wrapper {
  width: 110rem;
  display: flex;
  gap: 3.4rem;
  padding-left: 6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__img-wrapper {
    width: 90%;
    padding: 0;
  }
}

.policy__img-2 {
  display: block;
  width: 35.2rem;
  height: 100%;
}

.policy__img-3 {
  display: block;
  width: 65.5rem;
  height: 100%;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  color: var(--white);
  padding-bottom: 8rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu::before {
    content: "";
    background: url("../img/texture-1.jpg") no-repeat center / 170rem auto;
    width: 50%;
    height: 8rem;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }
}

.menu__ttl-wrapper {
  background: url("../img/menu_ttl-bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 45rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper {
    height: 40rem;
  }
}

.menu__list {
  width: 140rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    display: flex;
    flex-direction: column;
    row-gap: 10rem;
    padding: 0;
    margin: 5rem auto 0;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 8rem;
}

.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%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    padding: 19rem 0 0 12rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    padding: 15rem 12rem 10rem 0;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    padding: 0 0 0 10rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    padding: 0 12rem 0 0;
  }
}

.menu__txt-wrapper::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 34.3rem;
  height: 32.1rem;
  top: 4.5rem;
  left: -21rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 49.8rem;
  height: 31.2rem;
  right: -21rem;
  bottom: -1rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 34.3rem;
  height: 32.1rem;
  top: 12rem;
  left: -21rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
    width: 23rem;
    height: 25.2rem;
    top: -2rem;
    left: -5rem;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
    width: 32rem;
    height: 20rem;
    right: -5rem;
    bottom: -6rem;
  }

  .menu__list-item:nth-of-type(3) .menu__txt-wrapper::before {
    width: 24rem;
    height: 22.4rem;
    top: -2rem;
    left: -5rem;
  }
}

.menu__txt {
  background-color: var(--white);
  height: max(100px, 16.1rem);
  font-family: var(--font-adobe);
  font-size: max(18px, 3rem);
  color: var(--black);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 7rem;
  left: 0;
}

.menu__list-item:nth-of-type(even) .menu__txt {
  left: auto;
  right: 0;
}

@media (max-width: 767px) {
  .menu__txt {
    top: 0;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper h4 {
  text-align: right;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 2rem 0 4.5rem;
}

.menu .common__btn {
  margin: 0;
}

.menu__img {
  width: 85rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
  margin-top: -8.5rem;
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-left: calc(50% - 50vw);
  margin-top: 8rem;
}

@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 {
  padding: 13.5rem 0 10rem;
  position: relative;
  z-index: 1;
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco-1.png") no-repeat center / contain;
  width: 40.3rem;
  height: 32.3rem;
  position: absolute;
  top: -8rem;
  right: 11.5rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 25rem;
    height: 20rem;
    right: 1rem;
  }
}

.gallery__slider {
  height: 41rem;
  margin: 6.5rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 42.5rem;
  height: 32.9rem;
}

.gallery__slider .swiper-slide:nth-of-type(even) {
  margin-top: 8.1rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 20rem 0 7.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 68.5rem;
  height: 44.2rem;
  position: absolute;
  top: 2rem;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 40rem;
    height: 25.8rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9.5rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 45rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
  text-align: center;
  padding: 2.3rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  border-bottom: solid 1px var(--white);
  padding: 2.3rem 2.5rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    text-align: left;
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 48.7rem;
}

/*============================
	insta
============================*/
.insta {
  padding-bottom: 17.5rem;
  position: relative;
  overflow: hidden;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  background: url("../img/insta_deco-1.png") no-repeat center / contain;
  width: 32.6rem;
  height: 27.2rem;
  top: 51rem;
  right: 0;
}

.insta::after {
  background: url("../img/insta_deco-2.png") no-repeat center / contain;
  width: 30.7rem;
  height: 27.2rem;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .insta::before {
    width: 27.5rem;
    height: 23rem;
    top: 32rem;
  }

  .insta::after {
    width: 26rem;
    height: 23rem;
  }
}

.insta__ttl-wrapper {
  background: url("../img/news_bg.jpg") no-repeat center bottom / 170rem auto;
  display: flex;
  justify-content: center;
  padding: 33rem 0 8.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .insta__ttl-wrapper {
    padding: 15rem 0 8.5rem;
  }
}

.insta__ttl-wrapper::before,
.insta__ttl-wrapper::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.insta__ttl-wrapper::before {
  background: url("../img/insta_deco-3.png") no-repeat center / contain;
  width: 51.6rem;
  height: 32.1rem;
  top: -6rem;
  right: 1.5rem;
}

.insta__ttl-wrapper::after {
  background: url("../img/insta_deco-4.png") no-repeat center / contain;
  width: 35.8rem;
  height: 35.8rem;
  left: 7rem;
  bottom: 5rem;
}

@media (max-width: 767px) {
  .insta__ttl-wrapper::before {
    width: 26rem;
    height: 16.2rem;
  }

  .insta__ttl-wrapper::after {
    width: 20rem;
    height: 20rem;
    left: 1rem;
    bottom: 1rem;
  }
}

.insta__ttl {
  font-family: var(--font-ttl);
  font-size: max(24px, 5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 767px) {
  .insta__ttl {
    font-size: max(24px, 4rem);
  }
}

.insta__ttl::before,
.insta__ttl::after {
  content: "";
  pointer-events: none;
}

.insta__ttl::before {
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 2rem;
}

.insta__ttl::after {
  background: url("../img/insta_arw.png") no-repeat center / contain;
  width: 2.3rem;
  height: 7.4rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -12.7rem;
}

.insta__contents {
  width: 104.2rem;
  margin: 12rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem 4.1rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 10) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 32rem;
  height: 32rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
