@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-family: var(--font-kai);
  font-size: max(12px, 1.6rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(40px, 6.5rem);
  height: max(40px, 6.5rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-bl.png") no-repeat center / contain;
}

.common__btn {
  width: max(165px, 20.7rem);
  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;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--bl a {
  background: url("../img/btn_bg-bl.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 90rem;
  padding: max(80px, 12rem) 0 6rem 9rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 50rem);
    padding: max(60px, 8rem) 0 5% 5%;
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, var(--red) 80%, var(--black) 80%);
  width: 100%;
  height: 40rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero::before {
    height: 40%;
  }
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@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-size: max(10px, 1.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: 6rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	insta
============================*/
.insta {
  padding: 8.5rem 0 12rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 15.6rem;
  height: 17rem;
  top: 11.5rem;
  left: 11rem;
}

.insta::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 17rem;
  height: 15.2rem;
  top: 45rem;
  right: 6.5rem;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 12rem;
    height: 13rem;
    top: 5rem;
    left: 2rem;
  }

  .insta::after {
    width: 13rem;
    height: 11.6rem;
    top: 15rem;
    right: 1rem;
  }
}

.insta__contents {
  width: 90rem;
  margin: 4.5rem auto 10rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.insta__contents::before {
  content: "";
  background: url("../img/deco_3.png") no-repeat center / contain;
  width: 18.6rem;
  height: 16rem;
  position: absolute;
  left: -15rem;
  bottom: -4.5rem;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .insta__contents::before {
    width: 14rem;
    height: 12rem;
    left: -3rem;
    bottom: -8rem;
  }
}

.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;
  }
}

.insta__mail {
  background: url("../img/insta_bg.jpg") repeat center / cover;
  width: 98rem;
  height: auto;
  filter: drop-shadow(4px 4px 4px rgba(35, 24, 21, 0.35));
  margin: -4rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__mail {
    width: 93%;
  }
}

.insta__mail a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.insta__mail-txt {
  width: 90%;
  text-align: center;
  margin: 12rem auto 0;
  position: relative;
}

.insta__mail-txt::before,
.insta__mail-txt::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.insta__mail-txt::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 15.6rem;
  height: 17rem;
  top: 1.5rem;
  right: -22.5rem;
}

.insta__mail-txt::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 17rem;
  height: 15.2rem;
  left: -19rem;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .insta__mail-txt::before {
    width: 12rem;
    height: 13rem;
    top: -2rem;
    right: -2rem;
  }

  .insta__mail-txt::after {
    width: 13rem;
    height: 11.6rem;
    left: -3rem;
    bottom: -9rem;
  }
}

.insta__mail-txt h3 {
  font-size: max(21px, 3.2rem);
  font-weight: 900;
  color: #ff0000;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  margin: 0 auto;
  position: relative;
}

.insta__mail-txt h3::before {
  content: "";
  display: block;
  background: url("../img/insta__mail-icon.png") no-repeat center / contain;
  width: max(32px, 5.2rem);
  height: max(25px, 4.1rem);
}

.insta__mail-txt h3 span {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .insta__mail-txt h3 span {
    gap: 4rem;
  }
}

.insta__mail-txt h3 span::before,
.insta__mail-txt h3 span::after {
  content: "";
  display: block;
  background-color: #ff0000;
  width: max(2px, 0.3rem);
  height: max(20px, 3.5rem);
  transform: rotate(-30deg);
}

.insta__mail-txt h3 span::after {
  transform: rotate(30deg);
}

@media screen and (max-width: 767px) {
  .insta__mail-txt h3 span::before,
  .insta__mail-txt h3 span::after {
    height: max(55px, 9rem);
  }
}

.insta__mail-txt p {
  width: max(450px, 60rem);
  margin: 3rem auto 5.5rem;
}

@media screen and (max-width: 767px) {
  .insta__mail-txt p {
    width: 100%;
  }
}

.insta__mail-btn {
  display: block;
  width: max(220px, 38rem);
  height: max(50px, 7rem);
  margin: 0 auto;
}

.insta__mail-btn a {
  background-color: #ff0000;
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  font-size: max(14px, 2.4rem);
  font-weight: 900;
  color: #fffa00;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  color: var(--white);
  padding: 12rem 0 15rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 17rem;
  height: 15.2rem;
  top: 9.5rem;
  left: 13rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  width: 16.8rem;
  height: 14rem;
  right: 12.5rem;
  bottom: 5.4rem;
}

@media (max-width: 767px) {
  .news::before {
    width: 13rem;
    height: 11.6rem;
    top: 3rem;
    left: 3rem;
  }

  .news::after {
    width: 13rem;
    height: 10.8rem;
    right: 2rem;
    bottom: 4rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 3.5rem 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(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-3);
  border-top: solid max(10px, 2rem) var(--red);
  border-bottom: solid max(10px, 2rem) var(--red);
  color: var(--white);
  padding: 12rem 0 13rem;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  width: 72.6rem;
  height: 55.6rem;
  position: absolute;
  pointer-events: none;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  top: 0;
  left: 0;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .concept::before,
  .concept::after {
    width: 50rem;
    height: 38.3rem;
  }
}

.concept__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
  margin: 7rem auto 9.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__list {
    width: 90%;
  }
}

.concept__list::before,
.concept__list::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.concept__list::before {
  background: url("../img/concept_deco-3.png") no-repeat center / contain;
  width: 42rem;
  height: 37.6rem;
  top: -36.5rem;
  right: -5rem;
}

.concept__list::after {
  background: url("../img/concept_deco-4.png") no-repeat center / contain;
  width: 42.6rem;
  height: 12.6rem;
  left: -6rem;
  bottom: -21rem;
}

@media (max-width: 767px) {
  .concept__list::before {
    width: 25rem;
    height: 22.4rem;
    top: -20rem;
    right: 0rem;
  }

  .concept__list::after {
    width: 30rem;
    height: 8.9rem;
    left: -2rem;
    bottom: -27rem;
  }
}

.concept__list-item {
  display: flex;
  gap: 4rem 7rem;
}

.concept__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .concept__list-item,
  .concept__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.concept p {
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 2;
}

@media (min-width: 768px) {
  .concept p {
    margin-top: 2rem;
  }
}

.concept__btn-wrapper {
  height: 100%;
}

.concept__btn {
  display: block;
  width: max(160px, 24rem);
  height: max(45px, 6.4rem);
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .concept__btn {
    margin: 4rem auto 0;
  }
}

.concept__btn a {
  background-color: #fffa00;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  font-size: max(12px, 1.8rem);
  color: #ff0000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.concept__btn a::before {
  content: "";
  display: block;
  background: url("../img/concept_btn-icon.png") no-repeat center / contain;
  width: max(20px, 3.1rem);
  height: max(16.7px, 2.6rem);
}

.concept__btn a::after {
  content: "";
  width: calc(100% - 0.8rem);
  height: calc(100% - 0.8rem);
  border: solid 1px #ff0000;
  border-radius: 0.8rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.concept__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

.concept__list-item:nth-of-type(odd) .concept__img {
  margin-right: calc(50% - 50vw);
}

.concept__list-item:nth-of-type(even) .concept__img {
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img,
  .concept__list-item:nth-of-type(odd) .concept__img,
  .concept__list-item:nth-of-type(even) .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 10rem 0 12rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 10rem auto 11.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  position: relative;
}

.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__list-item::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(1)::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 15.6rem;
  height: 17rem;
  top: -11.5rem;
  left: -6.5rem;
}

.menu__list-item:nth-of-type(2)::before {
  background: url("../img/deco_3.png") no-repeat center / contain;
  width: 17rem;
  height: 15.2rem;
  top: 7rem;
  right: -15.5rem;
}

.menu__list-item:nth-of-type(3)::before {
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 18.6rem;
  height: 16rem;
  top: -4rem;
  left: -11rem;
}

.menu__list-item:nth-of-type(4)::before {
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 14.4rem;
  height: 17rem;
  top: 22rem;
  right: -13rem;
}

@media screen and (max-width: 767px) {
  .menu__list-item:nth-of-type(1)::before {
    width: 12rem;
    height: 13rem;
    left: 2rem;
  }

  .menu__list-item:nth-of-type(2)::before {
    width: 13rem;
    height: 11.6rem;
    top: -8rem;
    right: 1rem;
  }

  .menu__list-item:nth-of-type(3)::before {
    width: 14rem;
    height: 12rem;
    top: -8rem;
    left: -3rem;
  }

  .menu__list-item:nth-of-type(4)::before {
    width: 12rem;
    height: 14.1rem;
    top: -8rem;
    right: -3rem;
  }
}

.menu__txt-wrapper {
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  border-right: solid max(0.8rem, 1.6rem) var(--red);
  border-left: solid max(0.8rem, 1.6rem) var(--red);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem 3.5rem;
  padding: 3.5rem 4rem 4rem;
  position: relative;
  z-index: 1;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper {
  background-color: rgba(200, 0, 0, 0.9);
  border-right: solid max(0.8rem, 1.6rem) var(--black);
  border-left: solid max(0.8rem, 1.6rem) var(--black);
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(460px, 46rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 4.5rem 0;
    margin: 3rem -6rem 0 0;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    margin: 3rem 0 0 -6rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__img {
  width: 71rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  border-top: solid max(10px, 2rem) var(--black);
  border-bottom: solid max(10px, 2rem) var(--black);
  padding: 5rem 0 9.5rem;
}

.gallery__slider {
  height: 22.8rem;
  margin: 7rem 0 9.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.3rem;
  margin: 0 0.7rem;
}

/*============================
	access
============================*/
.access {
  padding: 8.5rem 0 12rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 37rem;
  height: 11rem;
  position: absolute;
  right: 6.5rem;
  bottom: 7rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 28rem;
    height: 8.3rem;
    right: 2rem;
    bottom: 3rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5rem;
  margin: 8.5rem auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem;
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
  color: var(--red);
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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;
  }
}

/*============================
	reserve
============================*/
.sns {
  background-color: var(--black);
  padding: 12rem 0 13rem;
}

.sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .sns__list {
    column-gap: 8rem;
  }
}

.sns__list a {
  display: block;
  width: 26rem;
}

.sns__list li:nth-of-type(2) a {
  width: 24rem;
}

/*============================
	reserve
============================*/
.reserve {
  position: relative;
}

.reserve::before,
.reserve::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.reserve::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 15.6rem;
  height: 17rem;
  top: 9rem;
  left: 11rem;
}

.reserve::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 17rem;
  height: 15.2rem;
  top: 39rem;
  right: 6.5rem;
}

@media screen and (max-width: 767px) {
  .reserve::before {
    width: 12rem;
    height: 13rem;
    top: 5rem;
    left: 2rem;
  }

  .reserve::after {
    width: 13rem;
    height: 11.6rem;
    top: 15rem;
    right: 1rem;
  }
}

.reserve__txt {
  width: 90%;
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 3rem auto 6rem;
}

.reserve__txt span {
  display: block;
  font-size: max(12px, 1.6rem);
  letter-spacing: 0;
  margin-top: 1rem;
}

.reserve__inner {
  padding: 10rem 0 14rem;
  position: relative;
}

.reserve__inner::before {
  content: "";
  background: url("../img/deco_3.png") no-repeat center / contain;
  width: 18.6rem;
  height: 16rem;
  position: absolute;
  left: 11.5rem;
  bottom: 6rem;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .reserve__inner::before {
    width: 14rem;
    height: 12rem;
    left: 1rem;
    bottom: 3rem;
  }
}

.calendar-wrapper {
  border: 16px solid #ccc;
  width: max(650px, 90rem);
  margin: 0 auto;
  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;
  }
}
