@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-sans);
  font-size: max(24px, 3.8rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(45px, 8.9rem);
  height: max(50px, 9.9rem);
}

.common__btn {
  width: max(200px, 32.8rem);
  height: max(45px, 6.2rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.8rem;
  position: relative;
}

.common__btn--br a {
  background-color: var(--beige);
  color: var(--brown);
}

.common__btn a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(20px, 2.5rem);
  height: max(20px, 2.5rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 2.4rem;
  pointer-events: none;
}

.common__btn--br a::after {
  background: url("../img/btn_arw-br.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before,
.hero::after {
  content: "";
  width: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero::before {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  height: 20.5rem;
  top: max(60px, 10rem);
  opacity: 0.75;
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  height: 13rem;
  opacity: 0.55;
  bottom: 0;
}

@media (max-width: 767px) {
  .hero::before {
    top: max(60px, 8rem);
  }
}

.hero__logo {
  display: block;
  width: 40.6rem;
  filter: drop-shadow(0 0 1rem rgba(6, 0, 1, 0.66));
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(140px, 24rem);
    top: 60%;
  }
}

.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;
}

/*============================
	news
============================*/
.news {
  padding: 6rem 0 12rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 21.5rem;
  height: 28.5rem;
  left: 4rem;
  bottom: 5rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  width: 46.5rem;
  height: 76.9rem;
  right: 0;
  bottom: -16.5rem;
}

@media (max-width: 767px) {
  .news::before {
    width: 16rem;
    height: 20rem;
    left: 2rem;
    bottom: 2rem;
  }

  .news::after {
    width: 32rem;
    height: 52.9rem;
    right: -8rem;
    bottom: -16.5rem;
  }
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2rem;
  margin: 6rem auto 6.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: 20.8rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  padding: 17.5rem 0 15rem;
}

.concept__contents {
  background-color: rgba(44, 31, 13, 0.8);
  width: 144rem;
  border-radius: 2rem;
  color: var(--white);
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 11rem;
  padding: 3rem 13rem 3rem 3.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 4rem 4rem 5rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 3.5rem;
  }
}

.concept__txt-wrapper h2 {
  font-family: var(--font-sans);
  font-size: max(18px, 3rem);
  font-weight: 700;
  color: var(--beige);
  margin-bottom: 3rem;
}

.concept__txt-wrapper p {
  line-height: 2;
}

.concept__img {
  width: 50rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__list-wrapper {
  background-color: rgba(44, 31, 13, 0.8);
  width: 144rem;
  border-radius: 2rem;
  padding: 11.5rem 17rem 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__list-wrapper {
    width: 90%;
    padding: 6rem 6rem 8rem;
  }
}

.concept__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 5.5rem;
  margin-bottom: 8rem;
}

@media (max-width: 767px) {
  .concept__list {
    grid-template-columns: 1fr;
  }
}

.concept__list-img {
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
}

.concept__list-img img {
  border-radius: 50%;
}

.concept__list figcaption {
  background-color: var(--beige);
  width: auto;
  font-family: var(--font-sans);
  font-size: max(14px, 2.4rem);
  color: var(--brown);
  padding: 1rem 2rem;
  position: absolute;
  top: 3rem;
  left: 0;
}

.concept__list p {
  color: var(--white);
  line-height: 2;
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 47rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  margin: 7rem 0 11rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/*============================
	menu
============================*/
.menu {
  padding: 20rem 0 16rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 8rem 0 16rem;
  }
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 49.4rem;
  height: 39.9rem;
  position: absolute;
  top: 12rem;
  left: 8rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 32rem;
    height: 25.8rem;
    top: 2rem;
    left: -4rem;
  }
}

.menu__ttl {
  font-size: max(60px, 12rem);
  color: #282425;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 767px) {
  .menu__ttl {
    font-size: max(40px, 8rem);
    gap: 1.5rem;
  }
}

.menu__ttl::after {
  content: "";
  display: block;
  background-color: #282425;
  width: 25rem;
  height: 1px;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .menu__ttl::after {
    width: 15rem;
    margin-bottom: 2rem;
  }
}

.menu__list {
  width: 128rem;
  display: flex;
  flex-direction: column;
  row-gap: 13rem;
  margin: 26rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  justify-content: space-between;
  gap: 4rem 7rem;
}

.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 {
    width: 49rem;
    margin-top: -2.5rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    margin-top: 2.5rem;
  }
}

.menu__txt-wrapper h3 {
  font-family: var(--font-sans);
  font-size: max(16px, 3.4rem);
  font-weight: 700;
}

.menu__txt-wrapper h3 strong {
  display: block;
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  color: #b81c22;
}

.menu__txt-wrapper h3 span {
  display: block;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(odd) .menu__txt-wrapper h3 span {
    text-align: right;
  }
}

.menu__txt-wrapper h3 span::before {
  content: "";
  background-color: #000;
  width: 100vw;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(odd) .menu__txt-wrapper h3 span::before {
    left: auto;
    right: 0;
  }
}

.menu__txt-wrapper p {
  line-height: 2.8;
  margin: 5rem 0 6rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }

  .menu__list-item:nth-of-type(even) .common__btn {
    margin: 0 0 0 auto;
  }
}

.menu__img {
  width: 74rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  width: 85rem;
  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: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
  }
}

.menu__img img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20rem 100%);
}

.menu__list-item:nth-of-type(even) .menu__img img {
  clip-path: polygon(0 0, 100% 0, calc(100% - 20rem) 100%, 0 100%);
}

@media (max-width: 767px) {
  .menu__img img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  }

  .menu__list-item:nth-of-type(even) .menu__img img {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  }
}

.menu__list-item:nth-of-type(1) .menu__img::before {
  content: "";
  background: url("../img/menu_img-deco.png") no-repeat center / contain;
  width: 88.5rem;
  height: 51.5rem;
  position: absolute;
  top: -20rem;
  left: -18rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img::before {
    width: 60rem;
    height: 34.9rem;
    top: -18rem;
    right: -3rem;
    left: auto;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 13rem 0 15rem;
}

.gallery__slider {
  height: 26rem;
  margin: 10rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 41.5rem;
  margin: 0 0.6rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 18.5rem 0 17rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .insta {
    padding: 12rem 0;
  }
}

.insta::before {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 33.4rem;
  height: 44.3rem;
  position: absolute;
  right: 4rem;
  bottom: 6rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 28rem;
    height: 37.1rem;
    right: -7rem;
    bottom: -5rem;
  }
}

.insta__contents {
  width: 84.4rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 3.2rem;
}

.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: 26rem;
  height: 26rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	access
============================*/
.access {
  background: var(--bg-3);
  padding: 8rem 0 11rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 16rem;
  height: 25.2rem;
  position: absolute;
  top: 12rem;
  left: 11.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 12rem;
    height: 18.9rem;
    top: 3rem;
    left: 5rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 9rem;
  margin: 9.5rem auto 12rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 58rem;
  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: 3rem 0 4rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  width: max(75px, 9rem);
  font-weight: 700;
  padding: 2.3rem 1rem;
}

.access__list dd {
  width: calc(100% - max(75px, 9rem));
  border-bottom: solid 1px #898989;
  padding: 2.3rem 0.5rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px #b81c22;
  }

  .access__list dt:first-of-type {
    border-top: solid 1px #b81c22;
  }

  .access__list dd:first-of-type {
    border-top: solid 1px #898989;
  }
}

@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;
    position: relative;
  }

  .access__list dt:first-of-type {
    border-top: solid 1px #898989;
  }

  .access__list dt:first-of-type::before {
    content: "";
    background-color: #b81c22;
    width: 20%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }

  .access__list dd::before {
    content: "";
    background-color: #b81c22;
    width: 20%;
    height: 1px;
    position: absolute;
    transform: translateY(100%);
    left: 0;
    bottom: 0;
    pointer-events: none;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0 0 0 auto;
  }
}

.access__map {
  width: 140rem;
  height: 47rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__map {
    width: 90%;
    height: 50rem;
  }
}
