@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__btn {
  width: max(180px, 24.8rem);
  height: max(40px, 4.7rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: max(14px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	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 bottom / cover;
  width: 100%;
  height: 8.2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero::before {
    height: 4.4rem;
  }
}

.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: 22rem 0 18.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 50.4rem;
  height: 48.4rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.news::after {
  transform: scale(-1, 1);
  left: auto;
  right: 0;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 36rem;
    height: 34.6rem;
    top: -1rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 6.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: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-2);
  color: var(--white);
  padding: 12.5rem 0 4.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 3rem 0 12rem;
  }
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center top / cover;
  width: 100%;
  height: 9rem;
  transform: translateY(-100%);
  top: 1px;
  left: 0;
}

.policy::after {
  background: url("../img/policy_deco-2.png") no-repeat center bottom / cover;
  width: 100%;
  height: 47rem;
  left: 0;
  bottom: -9rem;
}

@media (max-width: 767px) {
  .policy::before {
    height: 5rem;
  }

  .policy::after {
    height: 25rem;
    bottom: -5rem;
  }
}

.policy__inner {
  position: relative;
  z-index: 1;
}

.policy__inner::before {
  content: "";
  background: url("../img/policy_deco-3.png") no-repeat center / contain;
  width: 49.7rem;
  height: 24.2rem;
  position: absolute;
  top: -29rem;
  right: -2rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__inner::before {
    width: 40rem;
    height: 19.5rem;
    top: -12rem;
    right: -3rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 8.5rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(360px, 41rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-family: var(--font-en);
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 4.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 5rem;
  }
}

.policy__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  margin: -16rem 0 -10rem -5rem;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 17rem 0 21.5rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / cover;
  width: 68rem;
  height: 60rem;
  left: 0;
  bottom: -2rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 39.6rem;
  height: 38.8rem;
  top: 12rem;
  left: 8.5rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 50rem;
    height: 44.1rem;
  }

  .menu::after {
    width: 30rem;
    height: 29.4rem;
    top: 15rem;
    left: 2rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 15rem;
  margin: 9.5rem auto;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    margin: 12rem auto;
  }
}

.menu__list-item {
  display: flex;
  gap: 8rem 4.5rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 2rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-left: 4rem;
  }
}

.menu__txt-wrapper h3 {
  background: url("../img/menu_ttl-bg.png") no-repeat center / contain;
  width: max(55px, 8.3rem);
  height: max(102px, 15.4rem);
  font-family: var(--font-en);
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.menu__txt-wrapper h4 {
  font-family: var(--font-en);
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 2rem 0 2.5rem;
}

.menu__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 54rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img::before,
.menu__img::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__img::before {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
  z-index: -1;
}

.menu__list-item:nth-of-type(1) .menu__img::after {
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 30rem;
  height: 22.1rem;
  left: -4rem;
  bottom: -12rem;
}

.menu__list-item:nth-of-type(2) .menu__img::after {
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 39.1rem;
  height: 23.9rem;
  right: -16rem;
  bottom: -9rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img::after {
    width: 24rem;
    height: 17.7rem;
    left: auto;
    right: 0;
    bottom: -10rem;
  }

  .menu__list-item:nth-of-type(2) .menu__img::after {
    width: 30rem;
    height: 18.3rem;
    right: -3rem;
  }
}

.menu__img > span {
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 24.2rem;
  height: 19rem;
  font-family: var(--font-en);
  font-size: max(18px, 3.8rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 0 4.8rem 1rem;
  position: absolute;
  transform: rotate(20deg);
  top: -14rem;
  right: 3rem;
  pointer-events: none;
}

.menu__list-item:nth-of-type(2) .menu__img > span {
  font-size: max(16px, 3rem);
  transform: rotate(-20deg);
  top: -12rem;
  right: auto;
  left: -3rem;
}

.menu__list-item:nth-of-type(3) .menu__img > span {
  top: -8rem;
}

@media (max-width: 767px) {
  .menu__img > span,
  .menu__list-item:nth-of-type(3) .menu__img > span {
    top: -6rem;
    right: 0;
  }

  .menu__list-item:nth-of-type(2) .menu__img > span {
    top: -6rem;
    right: auto;
    left: 0;
  }
}

.menu__img strong {
  font-weight: 400;
  color: var(--red);
}

.menu__link-list {
  width: 90rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  margin: 0 auto 12.5rem;
}

@media (max-width: 767px) {
  .menu__link-list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.menu__link-list li a {
  background-color: #e22020;
  width: 100%;
  height: max(50px, 8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.menu__link-list li:nth-of-type(2) a {
  background-color: #ecad39;
  padding: 1.5rem 0 1rem;
}

.menu__link-list li a img {
  display: block;
  width: 25rem;
  height: auto;
}

.menu__link-list li:nth-of-type(2) a img {
  width: 13.6rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 10rem 0 9rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery::before {
  background: url("../img/gallery_deco-1.png") no-repeat center top / cover;
  width: 100%;
  height: 2.2rem;
  transform: translateY(-100%);
  top: 1px;
  left: 0;
}

.gallery::after {
  background: url("../img/gallery_deco-2.png") no-repeat center / contain;
  width: 37.1rem;
  height: 35.8rem;
  top: -30rem;
  right: 8.5rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .gallery::after {
    width: 28rem;
    height: 27rem;
    top: -18rem;
    right: -2rem;
  }
}

.gallery__slider {
  height: 20rem;
  margin: 8rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 11.5rem 0 12rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6rem;
  margin: 11.5rem auto 7.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 49rem;
  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: -2.7rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
  font-weight: 500;
}

.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: 42rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 12rem 0 17rem;
}

.insta__inner {
  width: 87rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__inner {
    width: 90%;
  }
}

.insta__contents {
  width: 100%;
  margin: 8rem 0 6.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.insta__sns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}

@media screen and (max-width: 767px) {
  .insta__sns {
    grid-template-columns: 1fr;
  }
}

.insta__sns a {
  background-color: var(--white);
  width: 100%;
  height: max(70px, 10rem);
  border: solid max(3px, 0.4rem) #06c755;
  font-family: var(--font-en);
  font-size: max(12px, 2.2rem);
  color: #06c755;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

.insta__sns li:nth-of-type(2) a {
  border: solid max(3px, 0.4rem) #1877f2;
  color: #1877f2;
}

@media screen and (max-width: 767px) {
  .insta__sns a {
    font-size: max(16px, 2.2rem);
  }
}

.insta__sns a::before {
  content: "";
  display: block;
  background: url("../img/line.png") no-repeat center / contain;
  width: 5.4rem;
  height: 5.4rem;
}

.insta__sns li:nth-of-type(2) a::before {
  background: url("../img/facebook.png") no-repeat center / contain;
}

@media screen and (max-width: 767px) {
  .insta__sns a::before {
    width: max(32px, 5.4rem);
    height: max(32px, 5.4rem);
  }
}

/*============================
	reserve
============================*/
.reserve {
  background: var(--bg-2);
  padding: 9rem 0 8.5rem;
  position: relative;
}

.reserve::after {
  content: "";
  background: url("../img/reserve_deco-1.png") no-repeat center bottom / cover;
  width: 100%;
  height: 8.5rem;
  position: absolute;
  transform: translateY(100%);
  left: 0;
  bottom: 1px;
  pointer-events: none;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .reserve::after {
    height: 4.5rem;
  }
}

.reserve__inner {
  position: relative;
}

.reserve__inner::before,
.reserve__inner::after {
  content: "";
  background: url("../img/reserve_deco-2.png") no-repeat center / contain;
  width: 39.6rem;
  height: 38.8rem;
  position: absolute;
  top: -7rem;
  right: 6rem;
  pointer-events: none;
}

.reserve__inner::after {
  top: auto;
  right: auto;
  left: 11rem;
  bottom: -8rem;
}

@media screen and (max-width: 767px) {
  .reserve__inner::before,
  .reserve__inner::after {
    width: 30rem;
    height: 29.4rem;
    top: -7rem;
    right: -2rem;
  }

  .reserve__inner::after {
    top: auto;
    right: auto;
    left: -3rem;
  }
}

.calendar-wrapper {
  border: 16px solid #ccc;
  width: max(650px, 90rem);
  margin: 7.5rem auto 0;
  display: flex;
  color: #000;
  background: #fff;
  position: relative;
  z-index: 1;
}

.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;
  }
}
