@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: 110rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  margin: 0 auto;
}

.common__ttl--wt {
  width: auto;
  color: var(--white);
}

@media (max-width: 767px) {
  .common__ttl {
    width: 90%;
  }
}

.common__ttl span {
  display: block;
  width: 100%;
  font-family: var(--font-jose);
  font-size: max(24px, 4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8rem;
}

.common__ttl--wt span {
  width: auto;
  filter: drop-shadow(0 0 1rem rgba(0, 184, 184, 0.75)) drop-shadow(0 0 1rem rgba(0, 184, 184, 0.75)) drop-shadow(0 0 1rem rgba(0, 184, 184, 0.75));
}

@media (max-width: 767px) {
  .common__ttl span {
    gap: 4rem;
  }
}

.common__ttl span::before,
.common__ttl span::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: 100%;
  height: 1px;
}

.common__ttl--wt span::before,
.common__ttl--wt span::after {
  display: none;
}

.common__btn {
  width: max(200px, 43rem);
  height: max(40px, 6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 6rem;
  position: relative;
}

.common__btn a span {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  font-family: var(--font-jose);
  font-size: max(12px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  position: relative;
}

.common__btn--wt a span {
  background-color: transparent;
  border: solid 1px var(--white);
}

.common__btn a span::before,
.common__btn a span::after {
  content: "";
  background-color: var(--white);
  width: 6rem;
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  pointer-events: none;
}

.common__btn a span::after {
  background-color: var(--black);
  transform: translate(100%, -50%);
}

.common__btn--wt a span::after {
  background-color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: url("../img/hero_deco.png") no-repeat center / 100% 100%;
  width: 100%;
  height: 100%;
  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: 13.5rem 0;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.5rem;
  margin: 4.5rem auto 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: 26rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK {
  font-weight: 500;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.8rem);
  font-weight: 700;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 11.5rem 0 11rem;
  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: 34.8rem;
  height: 43.6rem;
  filter: drop-shadow(0 0 2rem rgba(4, 0, 0, 0.5));
  top: -5rem;
  left: 0;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 45.1rem;
  height: 41.3rem;
  filter: drop-shadow(0 0 2rem rgba(4, 0, 0, 0.5));
  right: 0;
  bottom: 9rem;
}

@media (max-width: 767px) {
  .concept::before {
    width: 24rem;
    height: 30rem;
  }

  .concept::after {
    width: 30rem;
    height: 27.5rem;
    bottom: 3rem;
    right: -4rem;
  }
}

.concept__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 64rem;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(18px, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 7.5rem;
}

.concept__txt-wrapper p {
  line-height: 3;
  margin: 4.5rem 0 6.5rem;
}

.concept__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  color: var(--white);
  padding: 14rem 0 16rem;
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__system {
  display: flex;
  column-gap: 13.5rem;
}

@media (max-width: 767px) {
  .menu__system {
    column-gap: 4.5rem;
  }
}

.menu__drink {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 6rem;
  margin: 17rem 0;
}

@media (max-width: 767px) {
  .menu__drink {
    column-gap: 4rem;
  }
}

.menu__drink > div {
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 4.5rem;
}

@media (max-width: 767px) {
  .menu__drink > div {
    flex-direction: column-reverse;
  }
}

.menu__ttl {
  font-weight: 400;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 4.5rem;
}

.menu__ttl span {
  font-family: var(--font-jose);
  font-size: max(24px, 4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  margin-left: -0.8rem;
  filter: drop-shadow(0 0 1rem rgba(0, 184, 184, 0.75)) drop-shadow(0 0 1rem rgba(0, 184, 184, 0.75));
}

.menu__list-wrapper {
  height: 100%;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}

@media (max-width: 767px) {
  .menu__list {
    border-top: solid 1px var(--white);
  }
}

.menu__list dt,
.menu__list dd {
  font-size: max(12px, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.menu__list dt {
  width: max(200px, 35rem);
  padding: 3.7rem 0;
}

.menu__list dd {
  width: calc(100% - max(200px, 35rem));
  border-bottom: solid 1px var(--white);
  padding: 3.7rem 0 3.7rem 12.5rem;
}

@media (min-width: 768px) {
  .menu__list dt {
    border-bottom: solid 1px #687597;
  }

  .menu__list dt:first-of-type {
    border-top: solid 1px #687597;
  }

  .menu__list dd:first-of-type {
    border-top: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .menu__list dt,
  .menu__list dd {
    width: 100%;
    padding: 2rem 0;
    position: relative;
  }

  .menu__list dd {
    text-align: right;
    padding: 0 0 2rem;
  }

  .menu__list dt:first-of-type:before,
  .menu__list dd::before {
    content: "";
    background-color: #687597;
    width: 30%;
    height: 1px;
    position: absolute;
    left: 0;
    pointer-events: none;
  }

  .menu__list dt:first-of-type:before {
    transform: translateY(-100%);
    top: 0;
  }

  .menu__list dd::before {
    transform: translateY(100%);
    bottom: 0;
  }
}

.menu__txt {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 6rem;
  }
}

.menu h4 {
  font-size: max(16px, 3rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 3;
  margin-top: 6rem;
}

.menu__img {
  width: 43rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	cast
============================*/
.cast {
  background: url("../img/cast_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 13.5rem 0 14.5rem;
}

.cast__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cast__txt-wrapper {
    width: 61rem;
  }
}

.cast__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 3;
  margin: 7rem 0 7.5rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 15rem 0 13.5rem;
}

.recruit__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  font-size: max(16px, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 5.5rem 0;
}

.recruit__tel {
  border: solid 1px var(--white);
  font-family: var(--font-jose);
  font-size: max(21px, 5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 7rem 1rem;
}

.recruit__tel::before {
  content: "";
  display: block;
  background: url("../img/tel_icon-recruit.png") no-repeat center / contain;
  width: 4rem;
  height: 4rem;
  margin-top: -1rem;
}

/*============================
	gallery
============================*/
.gallery {
  padding: 11.5rem 0 12rem;
}

.gallery__list {
  width: 160rem;
  display: flex;
  column-gap: 4.5rem;
  margin: 7.5rem auto 9rem;
}

@media (max-width: 767px) {
  .gallery__list {
    width: 90%;
    flex-wrap: wrap;
    column-gap: 4rem;
  }
}

.gallery__list li {
  display: block;
  width: 28.4rem;
  height: 100%;
}

.gallery__list li:nth-of-type(even) {
  margin-top: 10.5rem;
}

@media (max-width: 767px) {
  .gallery__list li {
    width: calc(50% - 2rem);
  }

  .gallery__list li:nth-of-type(3),
  .gallery__list li:nth-of-type(5) {
    margin-top: -6.5rem;
  }

  .gallery__list li:nth-of-type(4) {
    margin-top: 4rem;
  }
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 11rem 0 14.5rem;
}

.access__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: center;
  gap: 2rem 9rem;
  margin: 4.5rem auto 7rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__logo-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 14rem;
  padding-left: 3rem;
}

.access__logo-wrapper h3 {
  display: block;
  width: 25.5rem;
}

.access__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2rem 1.6rem;
}

.access__list dt {
  background-color: rgba(13, 13, 13, 0.7);
  width: max(75px, 12rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
    text-align: center;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
    padding: 2rem;
  }
}

.access .common__btn {
  margin: 0 -6rem 0 0;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 0 auto 6rem;
  }
}

.access__map {
  height: 50rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 16rem 0 15.5rem;
}

.insta__contents {
  width: 84.4rem;
  margin: 10rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 3.2rem;
}

.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: 26rem;
  height: 26rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
