@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.2rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  position: relative;
}


.common__ttl span {
  display: block;
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}



.common__ttl--wt,
.common__ttl--wt span {
  color: var(--white);
}

.common__btn {
  display: block;
  width: max(200px, 21rem);
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
}


/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::after {
  content: "";
  background: url(../img/bg-hero.png)no-repeat top center / cover;
  width: 100%;
  height: 36.4rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__scroll {
  position: absolute;
  bottom: -19px;
  left: 6.3rem;
  width: max(10px,1rem);
  height: auto;
  z-index: 1;
}

@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: 2rem;
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 3rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #e0d9c9;
  width: max(10px, 1.3rem) !important;
  height: max(10px, 1.3rem) !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(--red);
}

/*============================
	news
============================*/
.news {
  padding: 17.1rem 0 14.6rem;
  position: relative;
  background: url("../img/bg-news.jpg") top center / 100% auto;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 24.9rem;
  height: 21.9rem;
  position: absolute;
  top: 6rem;
  left: 4.4rem;
  pointer-events: none;
}

.news::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  top: auto;
  width: 25.4rem;
  height: 25.2rem;
  right: 4rem;
  left: initial;
  bottom: 3.7rem;
}

@media screen and (max-width: 767px) {
  .news::before,
  .news::after {
    width: 17rem;
    height: 14.5rem;
  }
  .news::after {
    width: 15rem;
    height: 14.9rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.5rem;
  margin: 4rem auto 7.6rem;
}

@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: 22rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.CMS-NEWS-TIME {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--black);
}
.CMS-NEWS-LINK {
  font-size: max(14px, 1.6rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center right / cover;
  color: var(--white);
  padding: 11.5rem 0 16.5rem;
}

.policy__contents {
  width: 105rem;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}
.policy__img {
  width: 66.9rem;
}
.policy__img img {
  object-fit: contain;
}
.policy .common__btn {
    margin: 0 -10rem 0 auto;
}
@media (max-width: 1000px) {
  .policy__contents {
    width: 100%;
    justify-content: center;
  }
  .policy__img {
      width: 74.9rem;
  }
}
@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
  .policy .common__btn {
    margin: 3rem auto 5rem;
  }
  .policy__img {
    width: 100%;
  }
  .policy {
    padding: 11rem 0;
  }
}

.policy__txt-wrapper {
  width: max(300px, 39rem);
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    width: 100%;
    flex-direction: column;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(18px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: calc(46/26);
}

@media (min-width: 768px) {
  .policy__txt-wrapper h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-left: 2rem;
  }
}

.policy__txt-wrapper h2 span {
  display: block;
  width: max-content;
  height: max-content;
}

.policy__txt-wrapper h2 span:nth-of-type(2) {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 span:nth-of-type(2) {
    margin: 0 0 0 4rem;
  }
}

.policy__txt-wrapper h2 strong {
  font-size: max(28px, 6.8rem);
  font-weight: 700;
}

.policy__txt-wrapper p {
  font-size: max(12px, 1.6rem);
  height: max(400px,51.2rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: calc(44/16);
  margin: 0.5rem 0 5rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    margin: 3rem 0 5rem;
    writing-mode: initial;
    text-orientation: initial;
    height: initial;
    letter-spacing: 0.1em;
  }
}

/*============================
	menu
============================*/
.menu {
  position: relative;
  padding: 16rem 0 11.5rem;
}
.menu-deco-1 {
  position: absolute;
  top: 0;
  right: 2.7rem;
  width: 56.8rem;
  height: auto;
  pointer-events: none;
}
.menu-deco-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 55.6rem;
  height: auto;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.menu-deco-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50rem;
  height: auto;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.menu-deco-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80.7rem;
  height: auto;
  pointer-events: none;
}
.menu .common__ttl {
  margin: 0 auto;
  width: max-content;
}

.menu__food {
  display: flex;
  position: relative;
  margin: 11.7rem auto 10rem;
  max-width: 110rem;
}
.menu__food:nth-of-type(2) {
  flex-direction: row-reverse;
}
.menu__drink {
  display: flex;
  position: relative;
  margin: 4rem auto 0;
  max-width: 110rem;
}
.menu__img {
  width: 64rem;
  height: auto;
  object-fit: contain;
  overflow: initial;
}
.menu .common__btn {
  margin: 0 auto;
}


@media (max-width: 767px) {
  .menu {
    padding: 15rem 0 15rem;
  }
  .menu__food {
    flex-direction: column;
    margin: 5rem auto;
  }
  .menu__food:nth-of-type(2) {
    flex-direction: column;
  }
  .menu__img {
    width: 90%;
    margin: 2rem auto 0;
  }
  .menu-deco-1 { 
    width: 28rem;
  }
  .menu-deco-2 { 
    width: 34.6rem;
  }
  .menu-deco-3 { 
    width: 34rem;
  }
  .menu-deco-4{ 
    width: 50rem;
  }
}

.menu__txt-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .menu__food .menu__txt-wrapper {
    height: max(300px, 42rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 90%;
    display: block;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(18px, 2.2rem);
  font-weight: 700;
  line-height: calc(38/22);
  letter-spacing: 0.21em;
  margin: 0 6rem 0 3rem;
  color: #ef6b1e;
}
.menu__food:nth-of-type(2) .menu__txt-wrapper h3 {
  margin: 0 3rem 0 3rem;
}
.menu__txt-wrapper p {
  font-size: max(12px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: calc(41/16);
}
.menu__food:nth-of-type(2) .menu__txt-wrapper p {
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .menu__txt-wrapper h3,
  .menu__food:nth-of-type(2) .menu__txt-wrapper h3 {
    margin: 4rem 0 3rem;
  }
  .menu__food:nth-of-type(2) .menu__txt-wrapper p {
    margin-left: 0;
  }
  .menu__txt-wrapper p {
    letter-spacing: 0.1em;
  }
}


/*============================
	gallery
============================*/
.gallery {
  padding: 13.4rem 0 14.7rem;
  position: relative;
  background: url(../img/bg-gallery.jpg) no-repeat center top / cover;
}

.gallery__slider-wrapper {
  margin: 8.7rem 0 9.2rem;
}

.gallery__slider {
  width: 100%;
  height: 20.9rem;
}

.gallery__slider_1 {
  margin-bottom: 1.8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.7rem;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {

}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 15.5rem 0 16.5rem;
  position: relative;
}
.access-deco-1 {
  position: absolute;
  top: 14rem;
  right: 7.3rem;
  width: 32rem;
  height: auto;
  pointer-events: none;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 2rem 6rem;
  margin: 10.6rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
  .access-deco-1 {
      top: 14rem;
      right: 0.9rem;
      width: 22rem;
  }
}

.access__img {
  width: 46rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.access__list dt,
.access__list dd {
  font-family: var(--font-serif);
  font-size: max(12px, 1.8rem);
  padding: 2rem 0 2rem 3rem;
}

.access__list dt {
  width: max(75px, 14.6rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 14.6rem));
  border-bottom: solid 0.5px #000;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 0.5px #000;
  }
}
.access__list dd:last-of-type,
.access__list dt:last-of-type {
  border-bottom: none;
}

@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: 37.1rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 13.2rem 0 16.8rem;
  position: relative;
  background: url(../img/bg-insta.jpg) no-repeat center top / cover;
}
.insta-deco-1 {
  position: absolute;
  top: 7.3rem;
  right: 6.3rem;
  width: 32.3rem;
  height: auto;
  pointer-events: none;
}
.insta-deco-2 {
  position: absolute;
  bottom: 1.95rem;
  left: 2.75rem;
  width: 33.85rem;
  height: auto;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta-deco-1 {
    top: 7.3rem;
    right: 0.3rem;
    width: 21.3rem;
  }
  .insta-deco-2 {
    bottom: 1.95rem;
    left: -0.25rem;
    width: 17.85rem;
  }
}

.insta__contents {
  width: 88.7rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 7rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
