@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl span {
  display: block;
}

.news .common__ttl span {
  width: max(112px, 18rem);
  margin: -2rem 0 -1rem;
}

.concept .common__ttl span {
  width: max(180px, 34.8rem);
  margin: -2rem 0 0 -2rem;
}

.menu .common__ttl span {
  width: max(255px, 40.9rem);
  margin: -2rem 0 -1rem;
}

.gallery .common__ttl span {
  width: max(100px, 16rem);
  margin: 0 0 -0.5rem;
}

.access .common__ttl span {
  width: max(135px, 21.7rem);
  margin: -2rem 0 -1rem;
}

.recruit .common__ttl span {
  width: max(156px, 25rem);
  margin: -2rem 0 -1.5rem;
}

.insta .common__ttl span {
  width: max(185px, 29.7rem);
  margin: -2rem 0 -1.5rem;
}

.common__btn {
  width: max(173px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--br a {
  background: transparent;
  border: solid max(2px, 0.3rem) var(--brown);
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_bg-deco.png") no-repeat center / contain;
  width: calc(100% + max(5px, 0.7rem));
  height: calc(100% + max(5px, 0.7rem));
  opacity: 0.5;
  filter: blur(5px);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.common__btn--br a::before {
  display: none;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 17.5rem;
  opacity: 0.8;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__logo {
  display: block;
  width: 49rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(140px, 28rem);
  }
}

.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;
}

/*============================
	plan
============================*/
.plan {
  background: url("../img/plan_bg.jpg") repeat center / 100% auto;
}

.plan__txt-wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  width: 94rem;
  font-weight: 700;
  padding: 6rem 0 3.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .plan__txt-wrapper {
    width: 90%;
    padding: 6rem 0;
  }
}

.plan__ttl {
  display: block;
  width: max(200px, 36.6rem);
  margin: -2rem auto 1rem;
}

.plan__txt-wrapper .plan__ttl:nth-of-type(2){
  width: max(140px, 24rem);
}

.plan__circle {
  display: block;
  width: max(90px, 13rem);
  height: max(90px, 13rem);
  border-radius: 50%;
  position: absolute;
  transform: rotate(10deg);
  top: 2.4rem;
  right: 9rem;
}

@media (max-width: 1000px) {
  .plan__circle {
    top: 2rem;
    right: 2rem;
  }
}

@media (max-width: 767px) {
  .plan__circle {
    top: 1rem;
    right: -4rem;
  }
}

.plan__circle p {
  background-color: #5c3800;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: max(12px, 1.7rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan__circle p::before {
  content: "";
  width: calc(100% - 1.4rem);
  height: calc(100% - 1.4rem);
  border: solid 1px var(--white);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.plan__price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

@media (max-width: 767px) {
  .plan__price-wrapper {
    flex-direction: column;
  }
}

.plan__price {
  font-size: max(14px, 2.6rem);
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-end;
  gap: 1.6rem;
}

.plan__price-2 {
  font-size: max(18px, 3.3rem);
}

.plan__price span:first-of-type {
  background-color: #025d88;
  border-radius: 1rem;
  padding: 0 0.8rem 0.2rem;
  margin-bottom: max(3px, 0.5rem);
}

.plan__price-2 span:first-of-type {
  margin-bottom: max(6px, 1rem);
}

.plan__price:nth-of-type(2) span:first-of-type {
  background-color: #a2002d;
}

.plan__price span:nth-of-type(2) {
  display: block;
  width: max(100px, 14.7rem);
}

.plan__price-2 span:nth-of-type(2) {
  width: max(120px, 17.6rem);
}

.plan__arw {
  display: block;
  width: max(36px, 5.9rem);
  margin: 1rem auto 1.5rem;
}

@media (max-width: 767px) {
  .plan__arw {
    margin: 3rem auto;
  }
}

.plan__txt {
  font-size: max(14px, 2.3rem);
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .plan__txt {
    margin-bottom: 3rem;
  }
}

.plan__txt::before,
.plan__txt::after {
  content: "";
  display: block;
  background: url("../img/plan_txt-deco.png") no-repeat center / contain;
  width: max(12px, 2rem);
  height: max(15px, 2.5rem);
}

.plan__txt::after {
  transform: scale(-1, 1);
}

.plan__txt-2 {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .plan__txt-2 {
    margin-top: 3rem;
  }
}

/*============================
	news
============================*/
.news {
  padding: 8.5rem 0 10.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem 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: 9.5rem 0 9rem;
}

@media (max-width: 767px) {
  .concept {
    padding: 8rem 0 10rem;
  }
}

.concept__contents {
  width: 108rem;
  display: flex;
  gap: 5rem 7.5rem;
  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: 2.5rem;
  }
}

.concept .common__ttl {
  flex-direction: row;
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 2.5rem 3rem 6rem 0;
}

@media (max-width: 767px) {
  .concept__txt-wrapper p {
    margin: 2.5rem 0 6rem;
  }
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 67.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: -11rem;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

.concept__img img {
  width: 38rem;
  margin-left: auto;
}

.concept__img img:nth-of-type(2) {
  width: 45rem;
  margin: -25rem 0 0;
}

/*============================
	menu
============================*/
.menu {
  padding: 12.5rem 0 19rem;
}

.menu__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 7.5rem;
  margin: 7.5rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

.menu__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 900;
  color: #c38900;
  letter-spacing: 0.05em;
}

.menu__txt-wrapper h3::before {
  content: "飲み放題　カラオケ・ダーツ付き";
  color: var(--white);
  -webkit-text-stroke: 0.3rem var(--white);
  text-stroke: 0.3rem var(--white);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.menu__list dt,
.menu__list dd {
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.5rem 0;
  position: relative;
}

.menu__list dt {
  width: calc(100% - max(85px, 11rem));
  border-top: solid 1px var(--white);
}

.menu__list dd {
  width: max(85px, 11rem);
}

@media (min-width: 768px) {
  .menu__list dd {
    border-top: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .menu__list dt {
    width: 100%;
  }

  .menu__list dd {
    margin-left: auto;
  }
}

.menu__list dd > span {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.menu__list dd > span:not(:last-of-type) {
  margin-bottom: 4px;
}

.menu__list dd span .man,
.menu__list dd span .woman {
  border-radius: 3px;
  padding: 1px 3px;
}

.menu__list dd span .man {
  background-color: #025d88;
}

.menu__list dd span .woman {
  background-color: #b40000;
}

.menu p {
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img img:nth-of-type(2) {
  width: 32.6rem;
  margin: 4rem 0 0 2rem;
}

@media (max-width: 767px) {
  .menu__img img:nth-of-type(2) {
    width: 80%;
    margin: 4rem auto 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  color: var(--brown);
  padding: 11rem 0 6rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 3rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.8rem;
}

.cast__contents a {
  background: url("../img/cast_bg.jpg") no-repeat center / cover;
  width: 110rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.7rem 0;
  margin: 6rem auto 0;
  position: relative;
  filter: drop-shadow(1rem 1rem 1rem rgba(0, 0, 0, 0.75));
}

@media (max-width: 767px) {
  .cast__contents a {
    width: 90%;
    padding: 2rem 0 5rem;
  }
}

.cast__contents a::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 3rem);
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.cast__contents h3 {
  font-family: var(--font-serif);
  font-size: max(14px, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 767px) {
  .cast__contents h3 {
    flex-direction: column;
  }
}

.cast__contents h3 span {
  width: max(132px, 21.2rem);
}

.cast__contents h3::after {
  content: "";
  display: block;
  background: url("../img/cast_arw.png") no-repeat center right / auto 100%;
  width: 27.6rem;
  height: max(12px, 2.2rem);
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .cast__contents h3::after {
    margin: 3rem 0 0;
  }
}

/*============================
	access
============================*/
.access {
  padding: 12.5rem 0 11.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 10rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 62rem;
  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;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -2rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 0 2.3rem 1.5rem;
  position: relative;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.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);
  }

  .access__list dt:not(:last-of-type)::before {
    content: "";
    background: var(--grad);
    width: 100%;
    height: 1px;
    position: absolute;
    transform: translateY(100%);
    left: 0;
    bottom: 0;
    pointer-events: none;
  }
}

@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;
  }

  .access__list dd:not(:last-of-type)::before {
    content: "";
    background: var(--grad);
    width: 20%;
    height: 1px;
    position: absolute;
    transform: translateY(100%);
    left: 0;
    bottom: 0;
    pointer-events: none;
  }
}

.access__line {
  display: block;
  width: max(36px, 6.4rem);
  margin-bottom: 4.5rem;
}


@media (max-width: 767px) {
  .access__line {
    margin: 2rem auto 5rem;
  }
  .access__line_txt{
    text-align: center;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	recruit
============================*/
.recruit {
  padding: 10rem 0 13rem;
}

.recruit__contents {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  width: 110rem;
  margin: 0 auto;
  filter: drop-shadow(1rem 1rem 1rem rgba(0, 0, 0, 0.75));
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
  }
}

.recruit__txt-wrapper {
  background-color: rgba(0, 0, 0, 0.8);
  width: 48rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4.5rem;
  padding: 8rem 0 7rem;
  margin: 0 auto;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  border-top: solid max(10px, 2rem) #c38900;
  padding: 12.5rem 0 17rem;
}

.insta__contents {
  width: 82rem;
  margin: 6rem 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;
  }
}

/*============================
	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;
}
