@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--small {
  font-size: max(16px, 2.6rem);
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(16px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.common__ttl--small span {
  font-size: max(12px, 1.8rem);
  color: var(--brown);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(160px, 30rem);
  height: max(80px, 15.1rem);
}

.common__ttl--small::before {
  background: url("../img/ttl_deco-small.png") no-repeat center / contain;
  width: max(120px, 21.2rem);
  height: max(60px, 10.7rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(180px, 28rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .common__btn--small {
    width: max(120px, 18.5rem);
    height: max(36px, 4.5rem);
  }
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 3rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(36px, 4.5rem);
  height: max(12px, 1.5rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  pointer-events: none;
}

.common__btn span {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border-radius: max(3px, 0.5rem);
  font-family: var(--font-en);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common__btn--small span {
  font-family: var(--font-sans);
  font-size: max(10px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0;
}

.kitchen .common__btn span {
  font-family: var(--font-sans);
  font-weight: 500;
}

.common__btn--wt span {
  border: solid 2px var(--white);
}

@media (max-width: 767px) {
  .common__btn--small span {
    font-size: max(12px, 1.6rem);
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(95rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero::before {
  background: url("../img/hero_deco.png") no-repeat center / 100% 100%;
  mix-blend-mode: multiply;
  inset: 0;
}

.hero::after {
  content: "";
  width: calc(100% - 10rem);
  height: calc(100% - 3rem);
  border: solid max(4px, 0.8rem) var(--black);
  border-top: none;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
}

@media (max-width: 767px) {
  .hero::after {
    width: 95%;
    height: 95%;
  }
}

.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__scroll {
  display: block;
  width: max(60px, 8.4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0.8rem;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: max(12px, 1.5rem);
  height: max(36px, 4.5rem);
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero__scroll img {
  animation: rotate 8s linear infinite;
}

/*============================
	news
============================*/
.news {
  padding: 10rem 0 11.5rem;
}

.news__inner {
  background: var(--bg-3);
  width: 110rem;
  border-top: solid max(3px, 0.6rem) var(--brown);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 2rem;
  padding: 5rem 6rem 6rem 3rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4rem;
  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 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 18rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  padding-bottom: 10rem;
  position: relative;
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 45.4rem;
  height: 47.9rem;
  position: absolute;
  top: -8rem;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 38rem;
    height: 40.1rem;
    top: 70rem;
  }
}

.policy__contents {
  width: 126rem;
  border: solid max(4px, 0.8rem) var(--white);
  color: var(--white);
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 9rem;
  padding: 5rem 7rem 4rem 4.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 5rem 5rem 6rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    padding-top: 10rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy__txt-wrapper h2 span {
  display: block;
  background-color: rgba(163, 132, 53, 0.7);
  width: max-content;
  padding: 0 1.3rem;
}

.policy__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 auto;
  }
}

.policy__img {
  width: 47.3rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 10rem 0;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 30.6rem;
  height: 51.1rem;
  top: -5rem;
  left: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 38.5rem;
  height: 18.4rem;
  top: 14.5rem;
  right: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 23rem;
    height: 38.4rem;
    top: -7rem;
  }

  .menu::after {
    width: 30rem;
    height: 14.3rem;
    top: 2rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 7.5rem;
  margin: 5rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 5.5rem;
  position: relative;
}

.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__list-item::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1):before {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 33.1rem;
  height: 17.3rem;
  left: calc(50% - 50vw);
  bottom: 0;
}

.menu__list-item:nth-of-type(2):before {
  background: url("../img/menu_deco-4.png") no-repeat center / contain;
  width: 18.9rem;
  height: 32.6rem;
  top: -4rem;
  right: -14rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1):before {
    width: 28rem;
    height: 14.6rem;
    bottom: -10rem;
  }

  .menu__list-item:nth-of-type(2):before {
    width: 15rem;
    height: 25.8rem;
    top: 50rem;
    right: -4rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 42rem;
    padding-top: 12rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(even) .menu__txt-wrapper h3 {
    margin-left: -12rem;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  background-color: rgba(163, 132, 53, 0.7);
  width: max-content;
  padding: 0 1.3rem;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 0;
}

.menu__img {
  width: 80rem;
  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 {
  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: 100%;
    margin: 0;
  }
}

.menu__img::before {
  content: "";
  width: calc(100% - 7rem);
  height: calc(100% - 5rem);
  border: solid max(3px, 0.5rem) var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 4;
}

.menu__img figcaption {
  background-color: rgba(0, 0, 0, 0.8);
  width: 34.5rem;
  height: 14rem;
  font-family: var(--font-en);
  font-size: max(32px, 6rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  width: 38rem;
  right: auto;
  left: 0;
}

/*============================
	takeout
============================*/
.takeout {
  background: var(--bg-2);
  color: var(--white);
  position: relative;
}

.takeout::before {
  content: "";
  background: url("../img/takeout_deco.png") no-repeat center / contain;
  width: 27.8rem;
  height: 36.5rem;
  position: absolute;
  top: -27rem;
  right: 6rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .takeout::before {
    width: 22rem;
    height: 28.8rem;
    top: -18rem;
    right: -2rem;
  }
}

.takeout__inner {
  background: var(--bg-1);
  width: 100%;
  padding: 10rem 0;
  margin-bottom: 5rem;
}

.takeout__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .takeout__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.takeout__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .takeout__txt-wrapper {
    width: 42rem;
    padding-top: 10rem;
  }
}

.takeout__txt-wrapper h2 {
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.takeout__txt-wrapper h2 span {
  display: block;
  background-color: rgba(163, 132, 53, 0.7);
  width: max-content;
  padding: 0 1.3rem;
}

.takeout__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0;
}

.takeout__tel {
  background-color: #bab8b6;
  width: max-content;
  font-family: var(--font-en);
  font-size: max(16px, 2.3rem);
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0 1.5rem;
  text-decoration: none !important;
}

.takeout__tel span {
  font-size: max(24px, 4rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: underline;
}

.takeout__tel span::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(16px, 2.3rem);
  height: max(20.8px, 3rem);
}

.takeout__slider {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: -8rem;
  position: relative;
}

@media (max-width: 767px) {
  .takeout__slider {
    width: 100%;
    margin: 0;
  }
}

.takeout__slider::before {
  content: "";
  width: calc(100% - 6rem);
  height: calc(100% - 4rem);
  border: solid max(3px, 0.5rem) var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 4;
}

.takeout .swiper-pagination {
  width: max-content !important;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 4.5rem !important;
  z-index: 10;
}

.takeout .swiper-pagination-bullet {
  background-color: var(--black);
  width: max(10px, 1.6rem) !important;
  height: max(10px, 1.6rem) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.takeout .swiper-pagination-bullet-active {
  background-color: var(--brown);
  width: max(13px, 2.2rem) !important;
  height: max(13px, 2.2rem) !important;
}

.takeout__ttl {
  background-color: rgba(179, 179, 179, 0.8);
  width: 47.5rem;
  height: 14rem;
  font-family: var(--font-en);
  font-size: max(32px, 6rem);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

/*============================
	kitchen
============================*/
.kitchen {
  background: var(--bg-2);
  padding: 5.5rem 0 10rem;
}

.kitchen__contents {
  background: url("../img/kitchen_bg.jpg") no-repeat center / cover;
  width: 110rem;
  border: solid max(3px, 0.5rem) var(--black);
  padding: 3.5rem 0;
  margin: 0 auto;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.45));
}

@media (max-width: 767px) {
  .kitchen__contents {
    width: 90%;
  }
}

.kitchen__txt-wrapper {
  background-color: rgba(0, 0, 0, 0.8);
  width: 46rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4rem;
  padding: 0 0 5.5rem;
}

.kitchen__ttl {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3rem;
}

.kitchen__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(24px, 6rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-top: -3rem;
}

/*============================
	gallery
============================*/
.gallery {
  padding-bottom: 10rem;
}

.gallery__ttl-wrapper {
  background: url("../img/gallery_ttl-bg.jpg") no-repeat center / cover;
  height: 45rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery__slider {
  height: 22.6rem;
  margin: -5rem 0 7.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.8rem;
  margin: 0 0.3rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 10rem 0 6rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 9rem;
  margin: 4rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img-wrapper {
  width: 50rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img-wrapper {
    width: 100%;
  }
}

.access__img {
  width: 100%;
}

.access__list {
  border-top: solid max(2px, 0.3rem) var(--black);
  border-bottom: solid max(2px, 0.3rem) var(--black);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin: 0;
  }
}

.access__list dt,
.access__list dd {
  height: max(60px, 9rem);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.access__list dt {
  background-color: var(--black);
  width: max(75px, 12.5rem);
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  color: var(--white);
  justify-content: center;
}

.access__list dd {
  width: calc(100% - max(75px, 12.5rem));
  padding: 0 2.7rem;
}

.access__list dd:not(:last-of-type) {
  border-bottom: dashed 1px var(--black);
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    display: block;
    width: 100%;
    height: auto;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 4.5rem 0 0 auto;
  }
}

.top__map {
  height: 45rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 10rem 0 9rem;
}

.insta__contents {
  width: 110rem;
  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 4rem;
}

.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: 34rem;
  height: 34rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
