@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  font-family: var(--font-jose);
  font-size: max(28px, 5rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.common__ttl strong {
  font-weight: 500;
  color: #8957a1;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(42px, 6rem);
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  font-family: var(--font-jose);
  color: var(--brown);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  padding-left: 3rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(20px, 2.9rem);
  height: max(20px, 2.9rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: url("../img/hero_deco.png") no-repeat center / 100% 100%;
  width: 100%;
  height: 100%;
  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;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-family: var(--font-jose);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -5rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(60px, 10rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 14rem 0 14.5rem;
  position: relative;
  z-index: 1;
}

.news__inner {
  background-color: rgba(30, 0, 44, 0.8);
  width: 110rem;
  border: solid 1px #cfa972;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 9rem;
  padding: 8rem 7rem 7.5rem 9rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 8rem 5%;
  }
}

.news__inner::before {
  content: "";
  background: url("../img/news_bg.png") no-repeat center top / cover;
  width: 100%;
  height: 15rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7rem;
  flex-shrink: 0;
}

.news__ttl {
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

@media (max-width: 767px) {
  .news__ttl {
    align-items: center;
  }
}

.news__ttl span {
  display: block;
  font-family: var(--font-jose);
  font-size: max(18px, 3.6rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news__ttl::after {
  content: "";
  display: block;
  background-color: var(--brown);
  width: 6.5rem;
  height: 1px;
  margin-top: 1.5rem;
}

.news__btn {
  width: max-content;
}

@media (max-width: 767px) {
  .news__btn {
    margin: 0 auto;
  }
}

.news__btn a {
  font-family: var(--font-jose);
  font-size: max(12px, 1.4rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.news__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(20px, 2.9rem);
  height: max(20px, 2.9rem);
}

.news__btn span {
  display: block;
  border-bottom: solid 1px var(--brown);
  padding-bottom: 1rem;
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3.3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 16.8rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  line-height: 2;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-2);
  padding-bottom: 19rem;
  position: relative;
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.jpg") no-repeat center / contain;
  width: 106rem;
  height: 82.7rem;
  transform: translateY(-100%);
  top: 15rem;
  right: 0;
}

.policy::after {
  background: url("../img/policy_deco-2.jpg") no-repeat center / contain;
  width: 129.2rem;
  height: 84rem;
  left: 0;
  bottom: -13rem;
}

.policy__ttl-wrapper {
  width: 100rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__ttl-wrapper {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy .common__ttl {
  font-size: max(12px, 1.8rem);
  writing-mode: vertical-rl;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .policy .common__ttl {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}

.policy .common__ttl span {
  font-size: 10rem;
}

@media (max-width: 767px) {
  .policy .common__ttl span {
    font-size: 9rem;
  }
}

.policy__img {
  width: 100rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column;
  }
}

.policy__txt-wrapper {
  background: linear-gradient(120deg, rgba(170, 137, 189, 0), rgba(87, 33, 113, 0.8));
  width: 100%;
  padding: 5rem 5rem 6rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    width: 63rem;
    padding: 5.5rem 5rem 6rem 7rem;
    margin: -19.5rem 0 0;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(18px, 3.6rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 2rem;
}

.policy__txt-wrapper p {
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 auto 10rem;
  }
}

/*============================
	menu
============================*/
.menu {
  position: relative;
  z-index: 1;
}

.menu__ttl-wrapper {
  background: url("../img/menu_ttl-bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 30rem;
  display: flex;
  align-items: center;
  padding-left: 17rem;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper {
    padding-left: 10%;
  }
}

.menu .common__ttl {
  font-size: max(12px, 1.8rem);
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.menu .common__ttl span {
  color: var(--white);
  margin-bottom: -1rem;
}

.menu__system {
  width: 110rem;
  display: flex;
  column-gap: 16rem;
  padding: 6rem 15.5rem 12rem 0;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__system {
    width: 90%;
    column-gap: 6rem;
    padding: 6rem 0 12rem;
  }
}

@media (min-width: 768px) {
  .menu__system > div {
    padding-top: 4rem;
  }
}

.menu__system-ttl {
  height: max-content;
  border-right: solid 1px var(--brown);
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2rem;
}

@media (max-width: 767px) {
  .menu__system-ttl {
    padding: 0 2rem 0 0;
  }
}

.menu__system-ttl span {
  font-family: var(--font-jose);
  font-size: max(16px, 2.4rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu__system h4 {
  font-size: max(14px, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--brown);
  margin: 2rem 0 1.5rem;
}

.menu__system p {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.menu__system-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.menu__system-list dt {
  width: max(140px, 24rem);
  border-bottom: solid 1px var(--brown);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  padding: 2.7rem 0;
}

.menu__system-list dd {
  width: calc(100% - max(140px, 24rem));
  border-bottom: solid 1px var(--white);
  padding: 2.7rem 0 2.7rem 11rem;
}

@media (min-width: 768px) {
  .menu__system-list dt:first-of-type {
    border-top: solid 1px var(--brown);
  }

  .menu__system-list dd:first-of-type {
    border-top: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .menu__system-list dt {
    width: max(100px, 20rem);
    padding: 2.7rem;
  }

  .menu__system-list dd {
    width: calc(100% - max(100px, 20rem));
    display: flex;
    align-items: center;
    padding: 2.7rem 5rem;
  }
}

.menu__drink {
  width: 110rem;
  display: flex;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .menu__drink {
    width: 90%;
    flex-direction: column-reverse;
    padding-top: 4rem;
  }
}

.menu__drink::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 36.6rem;
  height: 43.4rem;
  position: absolute;
  top: -17rem;
  right: calc(50% - 50vw);
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__drink::before {
    width: 30rem;
    height: 35.5rem;
  }
}

.menu__drink h3 {
  border-right: solid 1px var(--brown);
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 1rem 23rem 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.menu__drink h3 span {
  font-family: var(--font-jose);
  font-size: max(18px, 3.6rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu__drink h3 strong {
  font-weight: 400;
  color: #8957a1;
}

.menu__txt-wrapper {
  background: linear-gradient(120deg, rgba(87, 33, 113, 0.8), rgba(170, 137, 189, 0));
  width: 100%;
  padding: 5rem 5rem 6rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 100rem;
    height: 100%;
    padding: 8rem 31rem 11.5rem 17rem;
    margin: 0 -26rem 0 calc(50% - 50vw);
  }
}

.menu__txt-wrapper h4 {
  font-size: max(18px, 3.6rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-align: center;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin: 2rem 0 5.5rem;
}

.menu__img {
  display: block;
  width: 69rem;
  height: 100%;
  margin: 16rem calc(50% - 50vw) 0 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0 0 0 calc(50% - 50vw);
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 12rem 0 11.5rem;
  position: relative;
}

.gallery::before {
  content: "";
  background: var(--bg-2);
  width: 100%;
  height: 84rem;
  position: absolute;
  transform: translateY(-100%);
  top: 32rem;
  left: -15rem;
  pointer-events: none;
  z-index: -1;
}

.gallery__slider {
  height: 30rem;
  margin: 4rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 38.4rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 11rem 0 14rem;
}

.access__map {
  height: 35rem;
  margin: 5rem 0 4.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  column-gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 51.4rem;
  height: 100%;
  border: solid 1px #cfa972;
  flex-shrink: 0;
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.access__list dt {
  background-color: rgba(30, 0, 44, 0.75);
  width: max(75px, 10rem);
  font-weight: 400;
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
  border-bottom: solid 1px var(--white);
  padding: 3rem 2.4rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    display: block;
    width: 100%;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 14rem 0;
}

.insta__contents {
  width: 90rem;
  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: 4rem 6rem;
}

.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;
  }
}
