@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-ttl);
  font-size: max(24px, 4.8rem);
  font-weight: 400;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.news .common__ttl {
  font-size: max(18px, 3.2rem);
  gap: 1rem;
  padding-top: max(40px, 7rem);
}

.news .common__ttl,
.menu .common__ttl {
  writing-mode: vertical-rl;
  align-items: flex-start;
  margin: 0 auto;
  position: relative;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(45px, 7.4rem);
  height: max(32.8px, 5.4rem);
}

.news .common__ttl::before,
.menu .common__ttl::before {
  position: absolute;
  transform: translate(-50%, -100%);
  top: -2.5rem;
  left: 50%;
}

.news .common__ttl::before {
  transform: translateX(-50%);
  top: 0;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(12px, 1.6rem);
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news .common__ttl span {
  font-size: max(12px, 1.8rem);
}

.menu .common__ttl span {
  font-size: max(16px, 2.4rem);
  margin-top: 3px;
}

.common__ttl--wt,
.common__ttl--wt span {
  color: var(--white);
}

.common__btn {
  width: max(180px, 23.5rem);
  height: max(45px, 6.3rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.news .common__btn {
  width: max(140px, 18rem);
  height: max(42px, 5.6rem);
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.4rem;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

.news .common__btn a {
  gap: 1.8rem;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(24px, 3.1rem);
  height: max(5px, 0.7rem);
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}

.section__wrapper {
  background: var(--bg-2);
  padding-top: 9.5rem;
  position: relative;
}

.section__wrapper::before {
  content: "";
  background: url("../img/section_deco.png") no-repeat center bottom / cover;
  width: 100%;
  height: 77rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(95rem, 100vh);
  padding-left: max(160px, 32rem);
  position: relative;
}

@media (max-width: 950px) {
  .hero {
    height: max(110rem, 100vh);
  }
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.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: 4.4rem;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -6.5rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #2b2b2b;
  width: max(10px, 1.6rem) !important;
  height: max(10px, 1.6rem) !important;
  border-radius: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
  transform: rotate(45deg);
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--black);
}

/*============================
	policy
============================*/
.policy {
  background-color: #090909;
  color: var(--white);
  padding: 10rem 0 9rem;
  margin-top: 14rem;
}

.policy__contents {
  width: max(550px, 110rem);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 5rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  height: max-content;
  font-size: max(21px, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    height: auto;
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper h2 span {
  display: block;
}

.policy__txt-wrapper h2 span:nth-of-type(2) {
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 span:nth-of-type(2) {
    margin: 0 0 0 6rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.2em;
  line-height: 2.25;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    height: max(430px, 43rem);
    margin-bottom: 8rem;
  }

  .policy .common__btn {
    margin: -6.5rem 0 0;
  }
}

.policy__img {
  width: 65.6rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -9rem;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 44rem 0 12rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 32rem 0 12rem;
  }
}

.menu::before,
.menu::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center bottom / cover;
  height: 77rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center bottom / cover;
  height: 26rem;
}

@media (max-width: 767px) {
  .menu::after {
    height: 18rem;
  }
}

.menu__food {
  width: max(550px, 110rem);
  display: flex;
  gap: 4rem 9rem;
  margin: 9rem auto 12rem;
  position: relative;
  z-index: 1;
}

.menu__drink {
  background: url("../img/drink_bg.jpg") repeat center / 100% auto;
  width: 159rem;
  border: solid 2rem #191c31;
  color: var(--white);
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 16rem;
  padding: 12.5rem 7.5rem 8rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0.8rem 0.8rem 2rem rgba(0, 0, 0, 0.4));
}

@media (max-width: 767px) {
  .menu__food,
  .menu__drink {
    width: 90%;
    flex-direction: column-reverse;
  }

  .menu__food {
    margin: 9rem auto;
  }

  .menu__drink {
    padding: 8rem 5%;
    margin-top: 12rem;
  }
}

.menu__food::before {
  content: "";
  background: url("../img/food_deco.png") no-repeat center / contain;
  width: 37.6rem;
  height: 31.6rem;
  position: absolute;
  top: -6rem;
  left: calc(50% - 50vw);
  pointer-events: none;
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.45));
}

@media (max-width: 767px) {
  .menu__food::before {
    width: 30rem;
    height: 25.2rem;
    top: -26rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 8rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(20px, 4.4rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 span {
  display: block;
}

.menu__txt-wrapper h3 span:nth-of-type(2) {
  margin-left: 8rem;
}

.menu__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.25;
}

.menu__img-list {
  display: flex;
  gap: 4rem 12.5rem;
  margin: 9rem 0 0 -10.5rem;
}

@media (max-width: 767px) {
  .menu__img-list {
    margin: 6rem 0 0;
  }
}

.menu__img-list li {
  display: block;
  height: 100%;
  position: relative;
}

.menu__img-list li:nth-of-type(2) {
  margin-top: 4rem;
}

.menu__img-list li::before {
  content: "";
  background-color: #808080;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2rem;
  left: 2rem;
  pointer-events: none;
  z-index: -1;
}

.menu__img-list li:nth-of-type(2)::before {
  top: 2rem;
  left: -2rem;
}

.food__img-wrapper {
  width: 89.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

.menu__img {
  width: 73.2rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.menu__img-1 {
  width: 100%;
  margin-bottom: 8rem;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__img-1 {
    width: 100%;
    margin: 0;
  }
}

.menu__img figcaption {
  background-color: var(--white);
  width: max(50px, 10rem);
  height: max(150px, 29rem);
  font-family: var(--font-ttl);
  font-size: max(24px, 4.4rem);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.2em;
  position: absolute;
  top: -4rem;
  left: 7.5rem;
}

.menu__img-2 figcaption {
  left: 5rem;
}

@media (max-width: 767px) {
  .menu__img figcaption {
    width: max(50px, 8rem);
    height: max(130px, 24rem);
    font-size: max(21px, 3.6rem);
  }
}

.menu__img figcaption::before,
.menu__img figcaption::after {
  content: "";
  background: url("../img/menu__txt-deco.png") no-repeat center / contain;
  width: 100%;
  height: max(30px, 6rem);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__img figcaption::after {
  top: auto;
  bottom: 0;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 14rem 0 15.5rem;
}

.gallery__slider {
  height: 30rem;
  margin: 5rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 42.5rem;
}

.news__inner {
  background-color: var(--white);
  width: max(550px, 110rem);
  border: solid max(4px, 0.8rem) #2b2b2b;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 7.5rem;
  padding: 5.5rem 5rem 5rem;
  margin: 0 auto;
  filter: drop-shadow(0.8rem 0.8rem 0.5rem rgba(0, 0, 0, 0.2));
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 10rem 5% 6rem;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 18.6rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  padding: 10rem 0 8rem;
}

.access__contents {
  width: max(550px, 110rem);
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 8.5rem;
  margin: 4rem auto 4.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 49rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  border-top: solid 1px #898989;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.4rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
  text-align: center;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  border-bottom: solid 1px #898989;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px #898989;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
    text-align: left;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.top__map {
  height: 50rem;
}
