@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-serif);
  font-size: max(24px, 4.8rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  position: relative;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(14px, 2rem);
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(100px, 18.4rem);
  height: max(100px, 18.4rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  z-index: -1;
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.gallery .common__ttl::before {
  background: url("../img/ttl_deco-gallery.png") no-repeat center / contain;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat bottom right / contain;
  width: 100%;
  height: 100%;
  font-family: var(--font-serif);
  font-size: max(14px, 2rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0 7rem 1.5rem 0.8rem;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat bottom right / contain;
  color: var(--white);
}

.common__btn a span {
  font-size: max(12px, 1.5rem);
  letter-spacing: 0.1em;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  width: 100%;
  height: 23.5rem;
  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;
}

/*============================
	news
============================*/
.news {
  padding: 9.5rem 0 8.5rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  margin: 7.5rem auto 8rem;
}

@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: 21.2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK {
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  color: var(--red);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-2);
  color: var(--white);
  padding: 11rem 0 14rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 20rem 0 14rem;
  }
}

.policy::before {
  content: "";
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 43.8rem;
  height: 36rem;
  position: absolute;
  top: 8.5rem;
  left: -3rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 30rem;
    height: 24.6rem;
    top: 1rem;
  }
}

.policy__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__inner {
    width: 90%;
  }
}

.policy__ttl-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__ttl-wrapper {
    flex-direction: column-reverse;
  }
}

.policy h2 {
  background-color: var(--red);
  font-family: var(--font-serif);
  font-size: max(18px, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 9.5rem 1.5rem 4rem;
  margin-top: -11rem;
}

@media (min-width: 768px) {
  .policy h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media (max-width: 767px) {
  .policy h2 {
    width: 100vw;
    padding: 20rem 5% 4rem;
    margin: -20rem 0 0 calc(50% - 50vw);
  }
}

.policy h2 strong {
  font-size: max(24px, 4.6rem);
  font-weight: 600;
}

.policy__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 8rem;
}

@media (max-width: 767px) {
  .policy__contents {
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: 100%;
  }
}

.policy__txt-wrapper::before,
.policy__txt-wrapper::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy__txt-wrapper::before {
  background-color: #561c0f;
  width: 76rem;
  height: calc(100% + 10rem);
  opacity: 0.7;
  top: -20rem;
  right: -5rem;
  z-index: -1;
}

.policy__txt-wrapper::after {
  background: url("../img/policy_txt-deco.png") no-repeat center / contain;
  width: 22.6rem;
  height: 20.4rem;
  bottom: -4rem;
  right: -12rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before {
    width: 100vw;
    height: calc(100% + 10rem);
    right: auto;
    left: calc(50% - 50vw);
  }

  .policy__txt-wrapper::after {
    width: 18rem;
    height: 16.2rem;
    bottom: -2rem;
    right: -6rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 3;
  margin-bottom: 9rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    margin-top: -4rem;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    padding-left: 14rem;
  }
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0;
  }
}

.policy__img {
  width: 50rem;
  height: 100%;
  border: solid max(2px, 0.3rem) var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.policy__img-2 {
  width: 55rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__img,
  .policy__img-2 {
    width: 100%;
  }
}

.policy__img-2::before {
  content: "";
  background: url("../img/policy_deco-2.png") no-repeat center / contain;
  width: 21.8rem;
  height: 47.8rem;
  filter: drop-shadow(2px 2px 0.9rem rgba(0, 0, 0, 0.75));
  position: absolute;
  transform: translateY(100%);
  bottom: 7rem;
  left: 8.5rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__img-2::before {
    width: 15rem;
    height: 32.9rem;
    bottom: 5rem;
    left: -5rem;
  }
}

/*============================
	menu
============================*/
.menu {
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 58rem;
  height: 47rem;
  position: absolute;
  top: -8rem;
  right: -6.5rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu::before {
    width: 36rem;
    height: 29.2rem;
    right: -8rem;
  }
}

.menu__list {
  width: 100%;
}

.menu__list-item {
  width: 100%;
  padding: 13.5rem 0 12rem;
  position: relative;
}

.menu__list-item:nth-of-type(1) {
  padding: 9.5rem 0 12rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(1) {
    flex-direction: column-reverse;
  }
}

.menu__list-item::before {
  content: "";
  background-color: #ffcc55;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(2)::before {
  background-color: #ff7d4b;
}

.menu__list-item:nth-of-type(3)::before {
  background-color: #773700;
}

.menu__course,
.menu__food,
.menu__drink {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 4.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.menu__course {
  gap: 4rem 10rem;
  margin: 15.5rem auto 0;
}

.menu__drink {
  flex-direction: row;
}

@media (max-width: 767px) {
  .menu__course,
  .menu__food,
  .menu__drink {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 3.5rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 37.4rem;
  height: 37.4rem;
  position: absolute;
  transform: translateX(-50%);
  top: -11rem;
  left: -4rem;
  pointer-events: none;
}

.menu__course .menu__txt-wrapper::before {
  top: -7.5rem;
  left: -4rem;
}

.menu__drink .menu__txt-wrapper::before {
  transform: translateX(50%);
  left: auto;
  right: -4rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before,
  .menu__course .menu__txt-wrapper::before,
  .menu__drink .menu__txt-wrapper::before {
    transform: translateX(-50%);
    top: -7rem;
    left: 50%;
  }
}

.menu__txt-wrapper h3 {
  font-family: var(--font-serif);
  font-size: max(18px, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  background-color: var(--white);
  width: max-content;
  height: max-content;
  padding: 0.4rem 1.5rem;
}

.menu__txt-wrapper h3 strong {
  font-size: max(24px, 4.6rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 2.5rem 0 7rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__slider-wrapper {
  width: 61rem;
  height: 100%;
  border: solid max(2px, 0.3rem) var(--white);
  flex-shrink: 0;
  position: relative;
}

.menu__course .menu__slider-wrapper {
  margin-left: -6rem;
}

@media (max-width: 767px) {
  .menu__slider-wrapper,
  .menu__course .menu__slider-wrapper {
    width: 100%;
    margin: 0;
  }
}

.menu_slider-course,
.menu_slider-food {
  width: 100%;
}

.menu__img-txt {
  font-family: var(--font-serif);
  font-size: max(36px, 7rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: flex;
  position: absolute;
  top: -4rem;
  left: 5rem;
  z-index: 1;
}

.menu__food .menu__img-txt,
.menu__drink .menu__img-txt {
  left: auto;
  right: 3.5rem;
}

.menu__img-txt span {
  background-color: var(--red);
  width: max(40px, 8rem);
  height: max(40px, 8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem;
}

.menu__img-txt span:nth-of-type(even) {
  background-color: #b3742a;
}

.menu .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 12px;
  transform: translateY(100%) !important;
  left: auto !important;
  right: 0;
  bottom: -2rem !important;
  z-index: 10;
}

.menu .swiper-pagination-bullet {
  background-color: var(--white);
  width: 8px !important;
  height: 8px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.menu .swiper-pagination-bullet-active {
  background-color: var(--red);
}

.menu .swiper-slide {
  width: 100%;
}

.menu__img {
  width: 61rem;
  border: solid max(2px, 0.3rem) var(--white);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu .swiper-slide,
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__deco {
  width: calc(100% - 5rem);
  height: calc(100% - 5rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media (max-width: 767px) {
  .menu__deco {
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
  }
}

.menu__deco span {
  display: block;
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.menu__deco span:nth-of-type(2) {
  top: auto;
  bottom: 0;
}

.menu__deco span::before,
.menu__deco span::after {
  content: "";
  display: block;
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 18.5rem;
  height: 18.5rem;
}

.menu__deco span::after {
  transform: scale(-1, 1);
}

.menu__deco span:nth-of-type(2)::before {
  transform: scale(1, -1);
}

.menu__deco span:nth-of-type(2)::after {
  transform: scale(-1, -1);
}

@media (max-width: 767px) {
  .menu__deco span::before,
  .menu__deco span::after {
    width: 15rem;
    height: 15rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background-color: var(--red);
  padding: 9rem 0 10rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery::before {
  background: url("../img/gallery_deco-1.png") no-repeat center / contain;
  width: 33.4rem;
  height: 28.2rem;
  top: -7.6rem;
  left: 20rem;
}

.gallery::after {
  background: url("../img/gallery_deco-2.png") no-repeat center / contain;
  width: 45.2rem;
  height: 36.6rem;
  right: -17.5rem;
  bottom: -21rem;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 26rem;
    height: 21.9rem;
    left: -2rem;
  }

  .gallery::after {
    width: 32rem;
    height: 25.9rem;
    right: -10rem;
    bottom: -18rem;
  }
}

.gallery__slider {
  height: 22.6rem;
  margin: 7.5rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.7rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 11rem 0 8rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.access::before {
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 44rem;
  height: 35.6rem;
  top: -3.5rem;
  left: -9rem;
}

.access::after {
  background: url("../img/access_deco-2.png") no-repeat center / contain;
  width: 39.9rem;
  height: 53.3rem;
  top: -18rem;
  right: -7rem;
}

@media (max-width: 767px) {
  .access::before {
    width: 32rem;
    height: 25.9rem;
  }

  .access::after {
    width: 30rem;
    height: 40rem;
    top: -13rem;
  }
}

.access__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
  }
}

.access__txt {
  width: 60rem;
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 8rem auto 5.5rem;
}

@media (max-width: 767px) {
  .access__txt {
    width: 100%;
  }
}

.access__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5rem 1.8rem;
}

@media (max-width: 767px) {
  .access__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.access__img {
  width: 100%;
  border: solid 2px var(--white);
  margin-bottom: 3rem;
}

.access__name {
  width: 100%;
  height: max(55px, 7.4rem);
  border: solid 2px var(--white);
  border-left: none;
  border-right: none;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access .common__btn {
  margin: 9rem 0 0 auto;
}
