@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: relative;
}

.common__ttl .en,
.common__ttl .ja {
  display: block;
  position: relative;
}

.common__ttl .en {
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.common__ttl .en::before,
.common__ttl .ja::before {
  content: "";
  width: 110%;
  height: 120%;
  filter: blur(1rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.common__ttl .en::before {
  background: linear-gradient(180deg, #37a0dc 50%, #e6aa40);
}

.common__ttl .ja::before {
  background: linear-gradient(180deg, #e6aa40 20%, #e1aa44);
  width: 130%;
  height: 130%;
  filter: blur(1rem);
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: var(--grad);
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common_line {
  background: var(--grad);
  width: 100%;
  height: max(10px, 2rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, var(--white), #231815);
  width: 100%;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  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: 15rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6.5rem auto 7rem;
}

@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 var(--white);
  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: 16rem 0 16.5rem;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 27.3rem;
  height: 43.3rem;
  top: -13.5rem;
  right: 12rem;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 43.4rem;
  height: 41.8rem;
  left: 12rem;
  bottom: -28.5rem;
}

@media (max-width: 767px) {
  .concept::before {
    width: 22rem;
    height: 34.9rem;
    top: -8rem;
    right: -2rem;
  }

  .concept::after {
    width: 34rem;
    height: 32.7rem;
    left: -4rem;
    bottom: -18rem;
  }
}

.concept__txt-wrapper {
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(21px, 3.4rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 5.5rem;
}

/*============================
	menu
============================*/
.menu {
  padding-bottom: 17rem;
}

.menu__inner {
  width: 80rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__ttl-wrapper {
  background: url("../img/menu_ttl-bg.jpg") no-repeat center / cover;
  height: 38rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu__system {
  margin-top: 10rem;
}

.menu__drink {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 7.5rem;
  margin: 10rem -15rem 11.5rem 0;
}

@media (max-width: 767px) {
  .menu__drink {
    flex-direction: column-reverse;
    margin: 10rem 0 11.5rem;
  }
}

.menu__ttl {
  width: max-content;
  font-family: var(--font-en);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.menu__ttl::before {
  content: "";
  background-color: #e1aa3c;
  width: 120%;
  height: 100%;
  filter: blur(1.2rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.menu__ttl--bl::before {
  background-color: #37a0dc;
}

.menu__txt {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: right;
}

.menu__list {
  width: 100%;
  margin: 2rem 0 2.5rem;
  position: relative;
}

.menu__list::before {
  content: "";
  background: var(--grad);
  width: 100%;
  height: 2px;
  position: absolute;
  transform: translateY(-100%);
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__list div {
  display: flex;
  gap: 1rem 2rem;
  padding: 2.7rem 0.5rem;
  position: relative;
}

.menu__list div:nth-of-type(1),
.menu__list div:nth-of-type(2) {
  gap: 1rem 8rem;
}

@media (max-width: 767px) {
  .menu__list div {
    display: block;
  }
}

.menu__list div::before {
  content: "";
  background: var(--grad);
  width: 100%;
  height: 2px;
  position: absolute;
  transform: translateY(100%);
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.menu__list dt,
.menu__list dd {
  letter-spacing: 0.1em;
}

.menu__list dt {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  flex-shrink: 0;
}

.menu__list div:nth-of-type(1) dt,
.menu__list div:nth-of-type(2) dt {
  width: max(205px, 30.5rem);
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .menu__list dt {
    margin-bottom: 1.5rem;
  }

  .menu__list div:nth-of-type(1) dt,
  .menu__list div:nth-of-type(2) dt {
    width: auto;
    margin-right: 0;
  }

  .menu__list dd {
    line-height: 2;
    text-align: right;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

.menu__txt-wrapper p {
  line-height: 2;
  margin-top: 3rem;
}

.menu__img {
  width: 46rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 9.5rem 0 11rem;
}

.gallery__slider {
  height: 22rem;
  margin: 9.5rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 13rem 0 11.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6.5rem;
  margin: 9.5rem auto 6.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: -1.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.5rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    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;
  }
}

.top__map {
  height: 45rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 8.5rem 0 9rem;
}

.recruit__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  text-align: center;
  margin: 4rem 0 6rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11.5rem 0 16.5rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 7.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.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;
  }
}
