@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  display: block;
  font-family: var(--font-serif);
  font-size: max(24px, 4.6rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(30px, 7rem);
  color: var(--blue);
}

.common__ttl--wt span {
  color: var(--orange);
}

.common__ttl::before {
  content: attr(data-en);
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(105px, 14.4rem);
  height: max(30px, 4.1rem);
  font-size: max(10px, 1.5rem);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding: 0 0 0.5rem max(18px, 2.4rem);
  position: absolute;
  transform: translate(100%, -100%);
  top: 2rem;
  right: 10rem;
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
  color: var(--black);
}

.common__btn {
  width: max(196px, 29.4rem);
  height: max(26px, 3.9rem);
  margin-left: auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat right bottom / cover;
  width: 100%;
  height: 100%;
  font-size: max(14px, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0 0 1rem 1rem;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat right bottom / cover;
  color: var(--white);
}

.common__btn--gl a {
  background: url("../img/btn_bg-gl.png") no-repeat right bottom / cover;
  color: var(--white);
}

.common__btn a span {
  display: block;
  font-size: max(12px, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__logo {
  display: block;
  width: 27.3rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 55%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(110px, 18rem);
  }
}

.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 {
  background: var(--bg-2);
  color: var(--white);
  padding: 8rem 0;
}

.news__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 4.5rem auto 6rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-TIME,
.CMS-NEWS-LINK {
  line-height: 2;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 12rem 0 7.5rem;
  position: relative;
}

.concept::before {
  content: "";
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 80rem;
  height: 60rem;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::before {
    width: 60rem;
    height: 45rem;
  }
}

.concept__ttl-wrapper {
  background: url("../img/texture-3.jpg") repeat center top / 144rem auto;
  width: 68rem;
  display: flex;
  justify-content: flex-end;
  padding: 5.5rem 5rem 16rem;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .concept__ttl-wrapper {
    background: var(--bg-3);
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 8rem 5% 15rem;
    margin-bottom: -10rem;
    position: relative;
    top: auto;
    left: auto;
  }
}

.concept__ttl-wrapper::before {
  content: "";
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 48.2rem;
  height: 48.6rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 4rem;
  left: -14rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept__ttl-wrapper::before {
    top: 2rem;
    right: -10rem;
    left: auto;
  }
}

.concept__ttl {
  background-color: #1c1c1c;
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  padding: 7.5rem 1.1rem 6rem;
  position: absolute;
  top: -1.5rem;
  left: 23rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .concept__ttl {
    writing-mode: vertical-rl;
  }
}

@media (max-width: 767px) {
  .concept__ttl {
    width: max-content;
    padding: 1.5rem 4rem;
    margin-bottom: 4rem;
    position: static;
  }
}

.concept__ttl span {
  display: block;
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.3em;
  line-height: 1;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .concept__ttl span {
    margin-top: -5rem;
    margin-left: 0.6rem;
  }
}

.concept__ttl-wrapper h3 {
  font-family: var(--font-serif);
  font-size: max(24px, 3.9rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.8;
  filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.75));
}

@media (min-width: 768px) {
  .concept__ttl-wrapper h3 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.concept__ttl-wrapper h3 strong {
  font-size: max(28px, 4.9rem);
  font-weight: 900;
  color: #fcc800;
  letter-spacing: 0.15em;
}

.concept__img-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto 90px;
}

@media (max-width: 767px) {
  .concept__img-wrapper {
    width: 90%;
    margin: 0 auto 4rem;
  }
}

.concept__img-1 {
  display: block;
  width: 50rem;
}

@media (max-width: 767px) {
  .concept__img-1 {
    width: 100%;
  }
}

.concept__txt-wrapper {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 6.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 3;
  text-decoration: underline #9a763f dashed;
  text-underline-offset: 1.5rem;
}

@media (min-width: 768px) {
  .concept__txt-wrapper p {
    padding: 4rem 2rem 0 0;
  }
}

.concept__img-2 {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .concept__img-2 {
    width: 100%;
  }
}

.concept__img-2::before {
  content: "";
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 30.4rem;
  height: 18.4rem;
  position: absolute;
  top: -11rem;
  right: 1rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .concept__img-2::before {
    top: -11rem;
    right: -4rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 12.5rem 0 18rem;
  position: relative;
}

.menu__list {
  width: 110rem;
  margin: 11rem auto 12.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    display: flex;
    flex-direction: column;
    row-gap: 12rem;
  }
}

.menu__list-item {
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 11rem;
  position: relative;
}

.menu__list-item:nth-of-type(2) {
  flex-direction: row;
  gap: 4rem 16rem;
  padding-left: 6rem;
  margin: 11rem 0 13rem;
}

.menu__list-item:nth-of-type(3) {
  padding-left: 6rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(1),
  .menu__list-item:nth-of-type(2),
  .menu__list-item:nth-of-type(3) {
    flex-direction: column-reverse;
    padding: 0;
    margin: 0;
  }
}

.menu__list-item:nth-of-type(1)::after {
  content: "";
  background: url("../img/menu_list-deco.png") no-repeat center / contain;
  width: 21.2rem;
  height: 24rem;
  position: absolute;
  right: -9.5rem;
  bottom: -16rem;
  pointer-events: none;
  z-index: 1;
}

.menu__list-item:nth-of-type(2)::before,
.menu__list-item:nth-of-type(2)::after {
  content: "";
  background: url("../img/menu_line.png") no-repeat center / contain;
  width: 118.4rem;
  height: 0.6rem;
  position: absolute;
  transform: translateX(-50%);
  top: -9.5rem;
  left: 50%;
  pointer-events: none;
}

.menu__list-item:nth-of-type(2)::after {
  top: auto;
  bottom: -12rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1)::after {
    width: 16rem;
    height: 18.1rem;
    right: -4rem;
    bottom: -20rem;
  }

  .menu__list-item:nth-of-type(2)::before,
  .menu__list-item:nth-of-type(2)::after {
    background: url("../img/menu_line.png") no-repeat center / cover;
    width: 100%;
    height: max(4px, 0.6rem);
    top: -6rem;
  }

  .menu__list-item:nth-of-type(2)::after {
    top: auto;
    bottom: -6rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 44rem;
  height: 43.6rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
  width: 52.2rem;
  height: 51.8rem;
}

.menu__txt-wrapper h3 {
  font-family: var(--font-serif);
  font-size: max(20px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper h3 strong {
  font-size: max(24px, 4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper h3 strong:first-of-type {
  color: #c7171e;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin: 3rem 0 6.5rem;
}

.menu__img {
  width: 46.3rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.menu__list-item:nth-of-type(1) .menu__img {
  width: 61.4rem;
  margin-left: -6rem;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(1) .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img::before,
.menu__img::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__img::before {
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 40.4rem;
  height: 40.8rem;
  top: -10rem;
  left: -8.5rem;
}

.menu__list-item:nth-of-type(2) .menu__img::before {
  top: -11rem;
  left: auto;
  right: -12rem;
}

.menu__list-item:nth-of-type(3) .menu__img::before {
  top: -11rem;
  left: -15rem;
}

.menu__img::after {
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
}

.menu__lunch {
  background: var(--bg-3);
  width: 104.5rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 6.5rem;
  padding: 1rem 7.5rem 1rem 4rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__lunch {
    width: 90%;
    flex-direction: column-reverse;
    padding: 2rem 4rem 4rem;
  }
}

.menu__lunch::before,
.menu__lunch::after {
  content: "";
  background-color: var(--white);
  width: 2px;
  height: calc(100% - 2rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 1.5rem;
  pointer-events: none;
}

.menu__lunch::after {
  left: auto;
  right: 1.5rem;
}

.lunch__txt-wrapper {
  width: 100%;
  color: var(--white);
}

@media (min-width: 768px) {
  .lunch__txt-wrapper {
    padding-top: 3rem;
  }
}

.lunch__txt-wrapper h3 {
  font-family: var(--font-serif);
  font-size: max(20px, 3.2rem);
  letter-spacing: 0.1em;
}

.lunch__txt-wrapper h3 strong {
  font-size: max(24px, 4rem);
  font-weight: 900;
  color: #fff9b1;
  letter-spacing: 0.1em;
}

.lunch__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 2.5rem 0;
}

.lunch__img {
  width: 44rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .lunch__img {
    width: 100%;
  }
}

.menu__deco {
  width: 100%;
  height: 67.6rem;
  position: absolute;
  top: 0;
  left: 0;
}

.menu__deco--reverse {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu__deco {
    height: 55rem;
  }
}

.menu__deco::before,
.menu__deco::after {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center bottom / cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__deco::after {
  background: url("../img/menu_deco-2.png") no-repeat center bottom / cover;
  mix-blend-mode: multiply;
}

.menu__deco--reverse::before,
.menu__deco--reverse::after {
  transform: scale(-1, -1);
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
}

.gallery__inner {
  width: 110rem;
  padding: 8.5rem 0 4rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .gallery__inner {
    width: 90%;
    padding: 5rem 0;
  }
}

.gallery__ttl {
  background-color: #1c1c1c;
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  padding: 13.5rem 1.1rem 11.5rem;
  position: absolute;
  top: -2.5rem;
  left: 0;
}

@media (min-width: 768px) {
  .gallery__ttl {
    writing-mode: vertical-rl;
  }
}

@media (max-width: 767px) {
  .gallery__ttl {
    width: max-content;
    padding: 1.5rem 6rem;
    margin-bottom: 4rem;
    position: static;
  }
}

.gallery__ttl span {
  display: block;
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.3em;
  line-height: 1;
  margin: 0 0 0.6rem;
}

@media (min-width: 768px) {
  .gallery__ttl span {
    margin-top: -11.5rem;
    margin-left: 0.6rem;
  }
}

.gallery__slider {
  width: 100vw;
  height: 22.6rem;
  margin: 0 calc(50% - 50vw) 5rem 14.5rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery__slider {
    width: 100vw;
    margin: 0 0 5rem calc(50% - 50vw);
  }
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.8rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 12.5rem 0 14rem;
  position: relative;
  overflow: hidden;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / cover;
  width: 100%;
  height: 98rem;
  mix-blend-mode: multiply;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  pointer-events: none;
}

.access__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
  }
}

.access__contents {
  width: 100%;
  display: flex;
  gap: 2rem 7.5rem;
  margin: 10.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    flex-direction: column;
  }
}

.access__img {
  width: 35rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 7.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 7.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 12.5rem 0 9rem;
}

.insta__contents {
  width: 87rem;
  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: 1.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 45rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .parallax::before {
    background: url("../img/parallax_bg-sp.jpg") no-repeat center / cover;
  }
}
