@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(121px, 19.7rem);
  height: max(24px, 3.9rem);
  margin-bottom: 1.5rem;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(28px, 4.8rem);
  color: transparent;
  background: url("../img/ttl_bg.jpg") repeat center / auto 100%;
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.common__btn {
  width: max(220px, 34.4rem);
  height: max(45px, 6.2rem);
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 2.8rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  background-color: var(--brown);
  width: 5.3rem;
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.common__btn--wt a::before {
  background-color: var(--white);
}

.common__btn a span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  font-family: var(--font-en);
  color: var(--brown);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common__btn--wt a span {
  border: solid 1px var(--white);
  color: var(--white);
}

.common__line {
  position: relative;
}

.common__line::before {
  content: "";
  background: var(--grad);
  width: 100%;
  height: 2px;
  filter: drop-shadow(0.6rem 0.6rem 0.8rem #030000);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(85rem, 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%;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.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-family: var(--font-en);
  font-size: max(12px, 1.8rem);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: 100;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(50px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-1);
  padding: 10rem 0 13rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  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: 24rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  padding: 12.5rem 0 14rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .policy {
    padding: 20rem 0 14rem;
  }
}

.policy::before,
.policy::after {
  content: "";
  mix-blend-mode: color-dodge;
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 31.1rem;
  height: 40.6rem;
  top: -5rem;
  left: 0;
}

.policy::after {
  background: url("../img/policy_deco-2.png") no-repeat center / contain;
  width: 30.3rem;
  height: 40.1rem;
  right: 0;
  bottom: -13rem;
}

@media (max-width: 767px) {
  .policy::before {
    width: 26rem;
    height: 33.7rem;
  }

  .policy::after {
    width: 25rem;
    height: 33rem;
  }
}

.policy__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.policy__txt-wrapper h2 {
  font-size: max(18px, 3rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3rem;
  margin-bottom: 4.5rem;
}

.policy__txt-wrapper h2::after {
  content: "";
  display: block;
  background: url("../img/policy_txt-deco.png") no-repeat center / contain;
  width: 40.6rem;
  height: 1.9rem;
}

.policy__txt-wrapper p {
  letter-spacing: 0.2em;
  line-height: 2.5;
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/menu_bg.jpg") no-repeat center top / 100% auto;
  padding: 17rem 0 10rem;
}

.menu__inner {
  width: 110rem;
  padding: 0 1.6rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
    padding: 0;
  }
}

.menu__system {
  display: flex;
  gap: 4rem 5rem;
}

@media (max-width: 767px) {
  .menu__system {
    width: 90%;
    flex-direction: column-reverse;
    margin-left: auto;
    position: relative;
  }
}

.menu__system p {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
}

.menu__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
}

.menu__list dt,
.menu__list dd {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  padding: 2.5rem 0;
}

.menu__list dt {
  width: calc(100% - max(65px, 11rem));
  font-weight: 700;
}

.menu__list dd {
  width: max(65px, 11rem);
  border-bottom: solid 1px var(--white);
  font-size: max(14px, 2rem);
  text-align: right;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .menu__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .menu__list dt,
  .menu__list dd {
    display: block;
    width: 100%;
  }

  .menu__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .menu__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.menu__list dt span {
  font-size: max(14px, 2rem);
  padding: 1rem 0;
}

.menu__drink {
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 5rem;
  margin: 10rem 0;
}

@media (max-width: 767px) {
  .menu__drink {
    width: 90%;
    flex-direction: column-reverse;
    position: relative;
  }
}

.menu h3 {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-right: 3rem;
}

.menu__drink h3 {
  margin-right: -4rem;
}

@media (max-width: 767px) {
  .menu h3,
  .menu__drink h3 {
    margin: 0;
    position: absolute;
    top: 0;
  }
  .menu h3 {
    transform: translateX(-100%);
    left: -2rem;
  }

  .menu__drink h3 {
    transform: translateX(100%);
    left: auto;
    right: -2rem;
  }
}

.menu h3 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  font-weight: 400;
  color: transparent;
  background: url("../img/menu_ttl-bg.jpg") repeat center / auto 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__drink .menu__txt-wrapper {
    padding-top: 6rem;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(18px, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h4 {
    margin-bottom: 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 3;
}

.menu__img {
  width: 43rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__system .menu__img {
  margin-top: -4rem;
}

@media (max-width: 767px) {
  .menu__system .menu__img,
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	cast
============================*/
.cast {
  background: var(--bg-2);
  padding: 13rem 0 15rem;
}

.cast__contents {
  background: url("../img/cast_bg.jpg") no-repeat center right 35% / cover;
  width: 110rem;
  border: solid 2px #a6937c;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6rem;
  padding: 6rem 0;
  margin: 0 auto;
  filter: drop-shadow(0.6rem 0.6rem 0.8rem #030000);
}

@media (max-width: 767px) {
  .cast__contents {
    width: 90%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-1);
  padding: 10.5rem 0 15rem;
}

.gallery__slider {
  height: 30rem;
  margin: 7rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 38.4rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 11rem 0 12rem;
}

.access__map {
  height: 50rem;
  margin: 7rem 0 5.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 19rem;
  padding-right: 7rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    padding: 0;
  }
}

.access__img {
  width: 36rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(85px, 13rem);
  font-weight: 700;
  text-align: center;
}

.access__list dd {
  width: calc(100% - max(85px, 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%;
    text-align: left;
  }

  .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;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 13rem 0 14rem;
}

.recruit__contents {
  background: url("../img/recruit_contents-bg.jpg") no-repeat center / cover;
  width: 110rem;
  border: solid 2px #a6937c;
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  padding: 6rem 0;
  margin: 0 auto;
  filter: drop-shadow(0.6rem 0.6rem 0.8rem #030000);
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11rem 0 14.5rem;
}

.insta__contents {
  width: 82.7rem;
  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: 5rem 5.4rem;
}

.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: 24rem;
  height: 24rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	tiktok
============================*/
.tiktok {
  background: var(--bg-1);
  padding: 11.5rem 0;
}

.tiktok__contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}

@media screen and (max-width: 767px) {
  .tiktok__contents {
    gap: 1rem;
  }
}

.tiktok__contents::before,
.tiktok__contents::after {
  content: "";
  display: block;
  background: url("../img/tiktok_deco.png") no-repeat center / contain;
  width: 34rem;
  height: 11.3rem;
}

@media screen and (max-width: 767px) {
  .tiktok__contents::before,
  .tiktok__contents::after {
    display: none;
  }
}

.tiktok__contents::after {
  transform: scale(-1, 1);
}

.tiktok__contents a {
  background-color: rgba(0, 0, 0, 0.5);
  width: 42.5rem;
  height: 18rem;
  border: solid 1px var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .tiktok__contents a {
    width: 90%;
    height: 24rem;
  }
}

.tiktok__contents img {
  width: 25.8rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .tiktok__contents img {
    width: 28rem;
  }
}
