@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  margin: 0 auto;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(33.4px, 5.3rem);
  height: max(12px, 1.9rem);
  margin-left: 4rem;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: max(12px, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(60px, 11.2rem);
  height: max(32px, 6rem);
  margin-bottom: 0.5rem;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(100rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(14px, 2rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 14rem;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(80px, 16.5rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 11rem 0 13rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 9rem;
}

@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: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--white);
  padding: 14rem 0 22rem;
}

.concept__contents {
  width: 104rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 6rem;
  }
}

.concept__txt-wrapper .common__ttl {
  width: max-content;
  margin: 0 0 6rem;
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 14rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0 0 0 auto;
  }
}

.concept__img {
  width: 70rem;
  height: 100%;
  display: grid;
  grid-template-columns: 43rem 25.5rem;
  grid-template-rows: auto 22.2rem 22.2rem;
  gap: 1.5rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw - 5rem);
}

@media (max-width: 767px) {
  .concept__img {
    margin-left: calc(50% - 50vw);
  }
}

.concept__img img:nth-of-type(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.concept__img img:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2 / 4;
}

.concept__img img:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}

.concept__img img:nth-of-type(4) {
  grid-column: 2;
  grid-row: 3;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 7rem 0 9rem;
}

.menu__contents {
  width: 116rem;
  display: flex;
  gap: 5rem 5.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

.menu__txt-wrapper .common__ttl {
  margin: 0 0 4.5rem;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2.5rem 0 6rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img-list {
  width: 82rem;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  flex-shrink: 0;
  margin: -15rem calc(50% - 50vw) 0 0;
}

@media (max-width: 767px) {
  .menu__img-list {
    width: 100%;
    margin: 0;
  }
}

.menu__img-list li::before {
  content: "food";
  font-family: var(--font-menu);
  font-size: max(20px, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.8;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.menu__img-list li:nth-of-type(2)::before {
  content: "sweets";
}

.menu__img-list li:nth-of-type(3)::before {
  content: "drink";
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--white);
  padding: 11rem 0;
}

.gallery__slider {
  height: 25.6rem;
  margin: 9.5rem 0 10rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 11rem 0 10.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6.5rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 66rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 7rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 7rem;
  }
}

.access__list dt,
.access__list dd {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3.2rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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 0 0 auto;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--white);
  padding: 16rem 0 17.5rem;
}

.insta__contents {
  width: 82rem;
  margin: 7rem 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;
  }
}
