@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  display: block;
  width: max-content;
  color: var(--black);
  font-family: var(--font-en);
  font-size: max(35px, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto;
}

.common__ttl.yoko {
  position: relative;
}

.common__ttl.yoko::before {
  content: "";
  background: url(../img/ttl_ill_2.png) no-repeat center / contain;
  width: 6rem;
  height: 10rem;
  position: absolute;
  /* transform: translate(50%, -50%); */
  top: -180%;
  left: 0;
  right: 0;
  pointer-events: none;
  margin: auto;
}

@media (max-width: 767px) {
  .common__ttl.yoko::before {
    top: -140%;
  }
}

.insta .common__ttl {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 3rem 0 0;
  position: relative;
}

.common__btn.wh a {
  border: solid 1px var(--white);
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(54.3px, 8.1rem);
  height: max(6px, 0.9rem);
  position: absolute;
  transform: translate(50%, -50%);
  top: 45%;
  right: 0;
  pointer-events: none;
}

.common__btn.wh a::before {
  background: url("../img/btn_arw_2.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  position: absolute;
  content: "";
  background: url(../img/logo_mv.png) no-repeat center / contain;
  width: 66rem;
  height: 26rem;
  top: 35%;
  left: 0;
  right: 0;
  margin: auto;
  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: 18.5rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 11.5rem;
}

@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: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px #7c6146;
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 19.5rem 0 14rem;
  color: var(--white);
}

.concept__contents {
  width: 92rem;
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 4rem 5.5rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    flex-direction: column;
  }
}

.concept .common__ttl {
  position: relative;
  color: var(--white);
  font-size: max(28px, 4.8rem);
  margin: 0 0 7rem;
}

@media (max-width: 767px) {
  .concept .common__ttl {
    margin: 0;
  }
}

.concept .common__ttl::before {
  content: "";
  background: url(../img/ttl_ill_1.png) no-repeat center / contain;
  width: 36rem;
  height: 10rem;
  position: absolute;
  transform: translate(50%, -50%);
  top: 45%;
  left: -154%;
  pointer-events: none;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.25;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  display: block;
  width: 90rem;
  margin-bottom: 7rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

/* .concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
} */

/*============================
	menu
============================*/
.menu {
  background: url("../img/texture-4.jpg") no-repeat center / cover;
  padding: 14.5rem 0 16.5rem;
}

.menu__food,
.menu__drink {
  width: 110rem;
  display: flex;
  gap: 4rem 9rem;
  margin: 9rem auto 0;
}

.menu__drink {
  flex-direction: row-reverse;
  gap: 4rem 0;
  margin: 0 auto 11rem;
}

@media (max-width: 767px) {

  .menu__food,
  .menu__drink {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 2rem;
  }

  .menu__drink .menu__txt-wrapper {
    padding-top: 10rem;
  }
}

.menu__txt-wrapper h3 {
  position: relative;
  color: var(--white);
  font-family: var(--font-en);
  font-size: max(33px, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  padding-bottom: 1.7rem;
}

.menu__txt-wrapper h3.left::before {
  content: "";
  position: absolute;
  top: 99%;
  left: -100vw;
  width: calc(100vw + 45rem);
  height: 1px;
  background-color: #000;
}

.menu__txt-wrapper h3.right::before {
  content: "";
  position: absolute;
  top: 99%;
  right: -100vw;
  width: calc(100vw + 48rem);
  height: 1px;
  background-color: #000;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3.right::before {
    left: -100vw;
  }
}

.menu__txt-wrapper h3 span {
  display: flex;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.menu__drink .menu__txt-wrapper h3 span {
  align-items: center;
  gap: 2rem;
  margin: 0 0 2rem -3rem;
}

@media (max-width: 767px) {
  .menu__drink .menu__txt-wrapper h3 span {
    margin: 0 0 3rem -2rem;
  }
}

.menu__txt-wrapper h3 span img {
  width: max(91.6px, 13.2rem);
  flex-shrink: 0;
}

.menu__drink .menu__txt-wrapper h3 span img {
  width: max(116.6px, 16.8rem);
}

.menu__txt-wrapper h3 span::after {
  content: "";
  display: block;
  background-color: var(--gray);
  width: 100%;
  height: 1px;
}

.menu__txt-wrapper .menu__ttl {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  padding: 2.5rem 0;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.25;
}

.menu__food .menu__img {
  width: 72rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

.menu__drink .menu__img {
  width: 85rem;
  height: 100%;
  flex-shrink: 0;
  margin: 13rem 10rem 0 -32rem;
}

.menu__txt-img {
  width: 100%;
  margin: 5rem 0 0;
}

@media (max-width: 767px) {

  .menu__food .menu__img,
  .menu__drink .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	floor
============================*/
.floor {
  background: url(../img/texture-5.png) no-repeat center / cover;
  padding: 20rem 0 10.5rem;
  color: var(--white);
}

.floor__contents {
  width: auto;
  display: flex;
  flex-direction: column-reverse;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .floor__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.floor__txt-wrapper {
  position: relative;
  width: 58%;
  display: flex;
  gap: 4rem 5.5rem;
  background: rgba(0, 0, 0, 0.8);
  margin: -24rem 0 0 auto;
  padding: 7rem 16rem 7rem 5rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .floor__txt-wrapper {
    flex-direction: column;
    width: 90%;
    gap: 4rem 5.5rem;
    margin: -7rem auto 0;
    padding: 5rem 5rem 5rem 5rem;
  }
}

.floor__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.25;
}

@media (min-width: 768px) {
  .floor .common__btn {
    margin: 0;
  }
}

.floor__img {
  position: relative;
  display: block;
  width: 110rem;
  margin: auto;
  position: relative;
}

@media (max-width: 767px) {
  .floor__img {
    width: 100%;
    height: 50rem;
  }
}

.mini_ttl {
  width: 36rem;
  border-top: 1px solid #fff;
  bottom: 14rem;
  padding-top: 2rem;
}

.mini_ttl span {
  display: block;
  font-size: 2.2rem;
  text-align: right;
  letter-spacing: 0.2rem;
}

.mini_ttl .en {
  display: block;
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 400;
  padding-bottom: 1;
}

.floor__img .mini_ttl {
  position: absolute;
  bottom: 12rem;
}

.floor__block {
  display: flex;
  width: 100%;
  margin-top: 12rem;
}

.floor__block li {
  width: 50%;
  height: 60rem;
}

.floor__block li.counter {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url(../img/floor-1.jpg) no-repeat center / cover;
}

.floor__block li.counter .mini_ttl {
  position: absolute;
  top: 10rem;
  right: 0;
}

.floor__block li.counter .mini_ttl span {
  text-align: left;
}

.floor__block li.table {
  position: relative;
  background: url(../img/floor-2.jpg) no-repeat center / cover;
}

.floor__block li.table .mini_ttl {
  position: absolute;
  bottom: 10rem;
  left: 0;
}

.floor__map {
  width: 110rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .floor__map {
    width: 80%;
    margin: 11rem auto 0;
  }
}




/*============================
	gallery
============================*/
.gallery {
  background: url(../img/texture-6.png) no-repeat center / cover;
  padding: 18rem 0 15.5rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 9rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  color: var(--white);
  background: #282828;
  padding: 22rem 0 20.5rem;
}

.access .common__ttl {
  color: var(--white);
}

.access .common__ttl::before {
  content: "";
  background: url(../img/ttl_ill_1.png) no-repeat center / contain;
  width: 36rem;
  height: 10rem;
  position: absolute;
  transform: translate(50%, -50%);
  top: 45%;
  left: -170%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access .common__ttl::before {
    display: none;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
    gap: 6rem 7rem;
  }
}

@media (min-width: 768px) {
  .access .common__ttl {
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 4.5rem 0 6.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 3.3rem 0;
}

.access__list dt {
  width: max(75px, 13.6rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13.6rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px #a99054;
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px #a99054;
  }
}

@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;
  }
}

.shop__underline {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/texture-4.jpg") no-repeat center / cover;
  padding: 20rem 0 18.5rem;
}

.insta__contents {
  width: 82rem;
  margin: 8rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}