@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  display: block;
  width: 27.7rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.insta .common__ttl {
  width: 32.5rem;
}

.common__btn {
  width: max(160px, 25.5rem);
  height: max(42px, 6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #dc0000;
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.7rem);
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 14.5rem 0 21.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 20rem 0 21.5rem;
  }
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 56.2rem;
  height: 39.6rem;
  position: absolute;
  top: 0;
  right: 36rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 40rem;
    height: 28.2rem;
    left: 2rem;
    right: auto;
  }
}

.policy__contents {
  width: 108rem;
  display: flex;
  gap: 5rem 16rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    padding-top: 5rem;
  }
}

.policy .common__ttl {
  margin: 0 0 2rem;
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.policy__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 8rem;
}

.policy .common__btn {
  margin: 0;
}

.policy__img {
  width: 61rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: -13.5rem;
}

@media (max-width: 767px) {
  .policy__img {
    width: 90%;
    margin: 0 0 0 auto;
  }
}

.policy__img img {
  border: solid 1rem var(--white);
  filter: drop-shadow(0.8rem 0.8rem 0.6rem rgba(0, 0, 0, 0.75));
}

.policy__img img:nth-of-type(2) {
  width: 38rem;
  margin: -14rem 0 0 -10rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__img img:nth-of-type(2) {
    width: 60%;
    margin: -12rem 0 0 -7rem;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  padding: 21.5rem 0 6.5rem;
  clip-path: polygon(0 13.5rem, 100% 0, 100% 100%, 0% 100%);
  margin-top: -20.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu {
    clip-path: polygon(0 10rem, 100% 0, 100% 100%, 0% 100%);
    margin-top: -16rem;
  }
}

.menu::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 75rem;
  height: 55rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 56rem;
    height: 41rem;
  }
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 4.5rem;
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .menu__list {
    margin-top: 6rem;
  }
}

.menu__list-item {
  display: flex;
  justify-content: flex-end;
  row-gap: 4rem;
  position: relative;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.menu__list-item:nth-of-type(2) {
  padding: 23.5rem 0 13rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .menu__list-item:nth-of-type(2) {
    padding: 18rem 0 13rem;
  }
}

.menu__list-item:nth-of-type(2)::before {
  content: "";
  background: url("../img/menu_drink.jpg") no-repeat center / cover;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  pointer-events: none;
  clip-path: polygon(0 20rem, 100% 0, 100% calc(100% - 20rem), 0% 100%);
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(2)::before {
    clip-path: polygon(0 10rem, 100% 0, 100% calc(100% - 10rem), 0% 100%);
  }
}

.menu__txt-wrapper {
  background-color: var(--black);
  width: 100%;
  color: var(--white);
  padding: 5rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 55.5rem;
    height: 100%;
    padding: 4rem 6rem 5rem;
  }
}

.menu__txt-wrapper::before,
.menu__txt-wrapper::after {
  content: "";
  background: url("../img/menu_frame-1.png") repeat-x center / auto 100%;
  width: 100%;
  height: 1.5rem;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.menu__txt-wrapper::before {
  transform: translateY(-100%);
  top: 1px;
}

.menu__txt-wrapper::after {
  transform: translateY(100%) scale(1, -1);
  bottom: 1px;
}

.menu__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.menu__frame::before,
.menu__frame::after {
  content: "";
  background: url("../img/menu_frame-2.png") repeat-y center top / 100% auto;
  width: 1.5rem;
  height: calc(100% + 2.8rem);
  position: absolute;
  top: -1.4rem;
}

.menu__frame::before {
  transform: translateX(-100%);
  left: 1px;
}

.menu__frame::after {
  transform: translateX(100%) scale(-1, 1);
  right: 1px;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper p {
  line-height: 2;
}

.menu .common__btn {
  margin: -7rem 0 0 auto;
}

@media (max-width: 767px) {
  .menu .common__btn {
    margin: 0 0 0 auto;
  }
}

.menu__img {
  width: 82.6rem;
  position: absolute;
  top: -23rem;
  left: calc(50% - 50vw - 7rem);
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    position: static;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 11.5rem 0 12.5rem;
}

.gallery__slider-wrapper {
  height: 55.4rem;
  margin: 6rem 0 11rem;
}

.gallery__slider {
  width: 100%;
}

.gallery__slider_1 {
  margin-bottom: 1.6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 37.7rem;
  height: 26.9rem;
  margin: 0 0.6rem;
}

/*============================
	news
============================*/
.news {
  padding: 12rem 0 13rem;
  position: relative;
}

.news::before {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / cover;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7.5rem auto;
}

@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(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 14rem 0 13.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 44.7rem;
  height: 51.6rem;
  position: absolute;
  top: -22rem;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 32rem;
    height: 37rem;
    top: -22rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 7rem auto 6.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -6rem;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: -2rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 0;
}

.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);
  }
}

@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;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 10.5rem 0 9.5rem;
  position: relative;
}

.recruit::before,
.recruit::after {
  content: "";
  background: url("../img/recruit_frame.png") no-repeat center top / cover;
  width: 136.6rem;
  height: calc(50% - 3.75rem);
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.recruit::before {
  transform: translateX(-50%);
  top: 3.5rem;
}

.recruit::after {
  transform: translateX(-50%) scale(1, -1);
  bottom: 4rem;
}

@media (max-width: 767px) {
  .recruit::before,
  .recruit::after {
    width: 95%;
  }
}

.recruit__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  font-size: max(14px, 2.2rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin: 4rem 0 5.5rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 11rem 0 16.5rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 53.8rem;
  height: 59.4rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  top: 2rem;
  right: 5.5rem;
}

.insta::after {
  transform: rotate(180deg);
  bottom: 2.4rem;
  left: 6rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 36rem;
    height: 39.7rem;
  }

  .insta::before {
    right: 1rem;
  }

  .insta::after {
    left: 1rem;
  }
}

.insta__contents {
  width: 90rem;
  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: 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: 29rem;
  height: 28rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	reserve
============================*/
.reserve {
  padding: 11.5rem 0 12rem;
}

.reserve__txt {
  width: 90%;
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin: 2.5rem auto 4.5rem;
}

.reserve__txt span {
  font-size: max(12px, 1.6rem);
}

.calendar-wrapper {
  border: 16px solid #ccc;
  width: max(650px, 90rem);
  margin: 0 auto;
  display: flex;
  color: #000;
  background: #fff;
}

.calendar-wrapper a {
  color: #000;
}

.reservation .calendar-wrapper {
  position: relative;
  outline: 16px solid #ccc;
  max-width: 720px;
  width: 90vw;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: row;
}

#calendar {
  text-align: center;
  width: 100%;
}

.reservation #calendar {
  text-align: center;
  width: 100%;
  line-height: 1.5;
}

table {
  /* outline: 16px solid #ccc; */
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.reservation table {
  outline: 16px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
}

th {
  color: #000;
}

.calendar-wrapper th,
.calendar-wrapper td {
  outline: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #111111;
}

td:nth-child(6) .reservation-date,
td:nth-child(6) .reservation-date a {
  color: #8888ff;
}

td:last-child .reservation-date,
td:last-child .reservation-date a {
  color: #ff8888;
}

td.disabled {
  background-color: #eeeeee;
  color: #aaaaaa;
}

/* .reservation-date {
text-decoration: underline;
} */

.reservation-seat {
  font-size: 14px;
}

.reservation-seat.able a {
  color: #dd8866;
}

.reservation-seat-disabled a {
  color: #aaaaaa;
}

.calendar-reservation {
  border-collapse: collapse;
  width: 100%;
  word-break: break-all;
  margin-top: 10px;
  margin-left: 1rem;
  padding: 20px;
  line-height: 1.8;
}

.calendar-reservation form {
  padding-top: 0;
}

.calendar_date {
  font-size: 18px;
}

.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 18px;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
}

.calendar_button {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border: 1px solid #aaaaaa;
  cursor: pointer;
}

.calendar_button:hover {
  opacity: 0.8;
}

.calendar_info {
  font-size: 12px;
  margin: 20px;
  color: #000;
}

.calendar_ok {
  color: #dd8866;
}

@media screen and (max-width: 767px) {
  .calendar-wrapper {
    width: 90%;
    flex-direction: column;
  }

  .calendar-wrapper {
    font-size: 12px;
  }

  .calendar-reservation {
    padding: 0;
    margin-top: 20px;
    margin-left: 0;
  }

  .calendar-reservation form {
    padding: 0 20px;
  }

  .calendar-reservation form div {
    margin-bottom: 10px;
  }

  .calendar_person,
  .calendar_time {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 450px) {
  .reservation-date {
    font-size: 2.8vw;
  }
}

.reserve-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999999;
  transform: translateY(-50%);
}

.reserve-btn a {
  display: inline-block;
  padding: 3rem 2rem;
  color: #fff;
  font-size: 16px;
  background-color: #000;
  writing-mode: vertical-lr;
}

.s-reservation {
  padding: 12rem 0;
}

.s-reservation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: start;
  justify-content: center;
}

.s-reservation__ttl {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  margin-right: 1rem;
  position: relative;
}

.s-reservation__ttl__logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 24.4rem;
  max-width: 80%;
}

.s-reservation__ttl__txt {
  font-size: 60px;
  font-size: 6rem;
  font-size: 428.57143%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  font-weight: 400;
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.s-reservation__content {
  width: 113rem;
  max-width: 75%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  padding: 7.5rem 5.61797753% 14rem;
}

.s-reservation__content__list {
  width: 73rem;
  max-width: 100%;
}

.s-reservation__content__item {
  line-height: 1.85714286;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
}

.calendar_title,
.calendar_date {
  color: #000;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .reserve-btn {
    right: auto;
    top: initial;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
  }

  .reserve-btn a {
    writing-mode: initial;
    width: 100%;
    padding: 2rem 0;
    text-align: center;
  }

  .reservation {
    padding-left: 3.5rem;
  }

  .reservation .s-reservation {
    padding: 3rem 3.5rem 3rem 0;
  }

  .reservation .calendar-wrapper {
    flex-direction: column;
    outline: 4px solid #ccc;
  }

  .calendar-wrapper th,
  .calendar-wrapper td {
    outline: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: #111111;
  }

  .calendar_button {
    font-size: 16px;
  }

  .calendar_title,
  .calendar_date {
    font-size: 14px;
  }

  .calendar_info {
    margin: 10px 20px;
  }
}
