@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.2rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(173px, 22.1rem);
  height: max(40px, 5.1rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
  color: var(--black);
}

/*============================
  header
============================*/
.header.top {
  height: max(80rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: 36rem;
    padding-top: 5rem;
  }

  .header.top .header__logo {
    margin: 0 auto 5rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    padding-left: 4rem;
  }
}

@media (max-width: 1000px) {
  .header.top {
    height: max(90rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }
}

/*============================
	hero
============================*/
.hero {
  background: var(--bg-1);
  width: 100%;
  height: max(80rem, 100vh);
  padding-left: 36rem;
  position: relative;
}

@media (max-width: 1000px) {
  .hero {
    height: max(90rem, 100vh);
    padding: 0;
  }
}

@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: 14px;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -2rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--white);
  width: 10px !important;
  height: 10px !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(--brown);
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  padding: 9rem 0 8rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 28.8rem;
  height: 13rem;
  position: absolute;
  pointer-events: none;
}

.news::before {
  top: 6.5rem;
  left: 7.5rem;
}

.news::after {
  right: 7.5rem;
  bottom: 5rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 21rem;
    height: 9.5rem;
  }

  .news::before {
    top: 3rem;
    left: 2rem;
  }

  .news::after {
    right: 2rem;
    bottom: 3rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4rem 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;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") repeat center / 100% auto;
  padding: 8.5rem 0 8rem;
  position: relative;
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 31rem;
  height: 38.1rem;
  position: absolute;
  right: 6rem;
  bottom: 5.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 31rem;
    height: 38.1rem;
    right: 1rem;
    bottom: 3rem;
  }
}

.policy__contents {
  width: 112rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5rem 9rem;
  padding-right: 3rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 10rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-bottom: 15rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(18px, 3.9rem);
  font-weight: 700;
  color: #be1e2d;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-left: 6rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    font-size: max(18px, 3rem);
    margin: 0 0 2rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    height: max(400px, 47rem);
    margin-top: 4rem;
  }
}

.policy .common__btn {
  margin: 0;
}

.policy__img-wrapper {
  width: 69.6rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .policy__img-wrapper {
    width: 100%;
  }
}

.policy__img-1 {
  width: 100%;
}

.policy__img-2 {
  width: 62.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem -9rem 0 auto;
}

@media (max-width: 767px) {
  .policy__img-2 {
    width: 90%;
    margin: 1.5rem -5rem 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  color: var(--white);
  padding: 11.5rem 0 8rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / cover;
  width: 71.2rem;
  height: 69.8rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 50rem;
    height: 49rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 9.5rem auto 8rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  align-items: center;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  background-color: rgba(109, 77, 12, 0.7);
  width: 100%;
  padding: 7rem 4rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding: 7rem 4rem;
    margin: 0 -14.5rem 0 0;
  }

  .menu__list-item:nth-of-type(odd) .menu__txt-wrapper {
    margin: 0 0 0 -14.5rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: #f0c7b0;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(20px, 5.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  position: absolute;
  transform: rotate(-10deg);
  top: -1.5rem;
  left: 2rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
  top: -2.5rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 span {
  top: -1.5rem;
  left: 5rem;
}

.menu__list-item:nth-of-type(4) .menu__txt-wrapper h3 span {
  top: -3rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 68rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	online
============================*/
.online {
  background: var(--bg-1);
  padding: 10rem 0;
  position: relative;
}

.online::before {
  content: "";
  background-color: var(--black);
  opacity: 0.4;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.online__contents {
  background: var(--bg-1);
  width: 110rem;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .online__contents {
    width: 90%;
    flex-direction: column;
  }
}

.online__contents::before {
  content: "";
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  border: solid max(2px, 0.3rem) var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.online__txt-wrapper {
  color: var(--white);
  text-align: center;
  padding: 7.5rem 3rem 5rem;
  order: 2;
}

@media (max-width: 767px) {
  .online__txt-wrapper {
    padding: 7.5rem 5rem;
  }
}

.online__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.online__txt-wrapper h2 span {
  display: block;
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.online__txt-wrapper p {
  line-height: 2;
}

.online__img {
  display: block;
  width: 36.7rem;
  flex-shrink: 0;
  order: 1;
}

.online__img:nth-of-type(2) {
  order: 2;
}

@media (max-width: 767px) {
  .online__img {
    width: 100%;
    height: 50rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 9rem 0 10.5rem;
}

.gallery__slider {
  height: 24.1rem;
  margin: 5.5rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30.7rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  color: var(--white);
  padding: 12rem 0 17rem;
  position: relative;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5.5rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 66rem;
  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;
  margin: -2.5rem 0 4.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 48rem;
}

/*============================
	sister
============================*/
.sister {
  background: var(--bg-2);
  padding: 13rem 0 13.5rem;
  position: relative;
}

.sister::before,
.sister::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 28.8rem;
  height: 13rem;
  position: absolute;
  pointer-events: none;
}

.sister::before {
  top: 9rem;
  right: 11.5rem;
}

.sister::after {
  left: 11rem;
  bottom: 13rem;
}

@media (max-width: 767px) {
  .sister::before,
  .sister::after {
    width: 21rem;
    height: 9.5rem;
  }

  .sister::before {
    top: 3rem;
    right: 2rem;
  }

  .sister::after {
    left: 2rem;
    bottom: 3rem;
  }
}

.sister__txt-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .sister__txt-wrapper {
    width: 53rem;
  }
}

.sister__txt-wrapper::before {
  content: "";
  background: url("../img/sister_txt-deco.png") no-repeat center / contain;
  width: 50.6rem;
  height: 51.6rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.sister__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 6.5rem 0;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 12rem 0 10.5rem;
}

.insta__contents {
  width: 82rem;
  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.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;
  }
}

/*============================
  parallax
============================*/
.parallax {
  width: 100%;
  height: 48rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.parallax-1::before {
  background: url("../img/parallax_bg-1.jpg") no-repeat center / cover;
}

.parallax-2::before {
  background: url("../img/parallax_bg-2.jpg") no-repeat center / cover;
}
