@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
  margin: 0 auto;
  position: relative;
}

.news .common__ttl,
.menu .common__ttl,
.gallery .common__ttl,
.access .common__ttl {
  margin: 0;
}

.common__ttl img {
  width: auto;
  height: 7.2rem;
}

.news .common__ttl::before,
.menu .common__ttl::before,
.gallery .common__ttl::before,
.access .common__ttl::before {
  content: "";
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 14.7rem;
  height: 8.1rem;
  position: absolute;
  top: -6rem;
  left: -7.5rem;
  pointer-events: none;
}

.access .common__ttl::before {
  top: -8rem;
}

@media (max-width: 767px) {
  .news .common__ttl::before,
  .menu .common__ttl::before,
  .gallery .common__ttl::before,
  .access .common__ttl::before {
    top: -8rem;
    left: -3rem;
  }
}

.common__btn-1 {
  width: max(145px, 25.3rem);
}

.common__btn-2 {
  width: max-content;
}

.common__btn-1 a {
  display: block;
  width: 100%;
  height: 100%;
}

.common__btn-2 a {
  width: 100%;
  height: 100%;
  border-bottom: dashed 1px var(--white);
  font-family: var(--font-en);
  font-size: max(14px, 2rem);
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11.5rem;
  padding: 0 0.5rem 0.7rem 1rem;
  position: relative;
}

.common__btn-2 a::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1.2rem;
  height: 1.4rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.common__line {
  background-color: #f3b303;
  width: 100%;
  height: max(15px, 3rem);
}

/*============================
	header
============================*/
.header.top {
  height: max(90rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    display: block;
    width: 27rem;
    border: solid 1rem var(--brown);
    border-top: none;
    border-bottom: none;
    padding: 5rem 0 0;
    left: 16.5rem;
  }

  .header.top .header__logo {
    width: 22.7rem;
    margin: 0 auto 5rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    padding-left: 3rem;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
  }

  .header.top .header__nav-list li::before {
    width: 3.5rem;
    height: 3.6rem;
    left: -2rem;
  }

  .header.top .header__sns {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .header.top {
    height: max(100rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: max(60px, 8rem);
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 1100px) {
  .hero {
    height: max(100rem, 100vh);
  }
}

@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;
}

.hero .swiper-pagination {
  width: max-content !important;
  height: max(15px, 3rem);
  display: flex;
  align-items: center;
  column-gap: 15px;
  transform: translateY(100%) !important;
  left: auto !important;
  right: 17rem;
  bottom: 0 !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    right: 5%;
  }
}

.hero .swiper-pagination-bullet {
  background-color: var(--white);
  width: 8px !important;
  height: 8px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--brown);
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .news {
    padding: 15rem 0 8rem;
  }
}

.news::before,
.news::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 44.2rem;
  height: 19.1rem;
  left: -3.2rem;
  bottom: -1.5rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  width: 85.4rem;
  height: 28.4rem;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .news::before {
    width: 30rem;
    height: 13rem;
  }

  .news::after {
    width: 60rem;
    height: 19.9rem;
  }
}

.news__inner {
  width: 102rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 20rem;
  padding-left: 4rem;
  margin: 0 auto 8rem;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 0;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8rem;
  flex-shrink: 0;
}

.news .common__btn-1 {
  margin: 0 auto;
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
    row-gap: 1rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
}

.CMS-NEWS-LINK {
  max-width: 46rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK {
    max-width: 100%;
  }
}

.CMS-NEWS-TIME {
  width: max(110px, 15rem);
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.png") no-repeat center top / cover;
  padding: 8rem 0 12.5rem;
  position: relative;
}

.concept::before {
  content: "";
  background: url("../img/concept_deco.jpg") no-repeat center / cover;
  width: 100%;
  height: 42rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.concept__ttl {
  width: 43.4rem;
  margin: 0 auto;
}

.menu__txt-bg {
  background-color: rgba(247, 244, 235, 0.8);
  width: 100%;
  padding-top: 6.5rem;
  margin-top: 5.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-bg {
    padding: 7.5rem 0;
  }
}

.concept__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 49rem;
  }
}

.concept__txt-wrapper h3 {
  width: 100%;
  font-size: max(18px, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h3 strong {
  font-size: max(22px, 4.2rem);
  font-weight: 500;
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 4rem 0 4.5rem;
}

.concept__img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: -8rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100vw;
    position: static;
  }
}

.concept__img img:nth-of-type(1) {
  width: 46.8rem;
  margin: 0 0 0 -4rem;
}

.concept__img img:nth-of-type(2) {
  width: 47.3rem;
  margin: 0 -4rem 3rem 0;
}

@media (max-width: 767px) {
  .concept__img img:nth-of-type(1) {
    width: 50%;
    margin-bottom: -4rem;
  }

  .concept__img img:nth-of-type(2) {
    width: 50%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 9.5rem 0 10rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / cover;
  width: 103.4rem;
  height: 67.8rem;
  top: 0;
  right: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / cover;
  width: 126.6rem;
  height: 84.4rem;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 65rem;
    height: 42.6rem;
  }

  .menu::after {
    width: 70rem;
    height: 46.6rem;
  }
}

.menu .common__ttl {
  margin: 0 0 0 34rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .menu .common__ttl {
    margin: 0 0 0 5%;
  }
}

.menu__food {
  background-color: rgba(51, 27, 0, 0.6);
  width: 109rem;
  padding: 14.5rem 22rem 11rem 34rem;
  margin: -1.5rem auto 9rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__food {
    width: 90%;
    padding: 8rem 10% 12rem;
  }
}

.menu__food::before {
  content: "";
  width: calc(100% - 8rem);
  height: calc(100% - 8rem);
  border: solid max(3px, 0.5rem) var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__food::before {
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
  }
}

.menu__drink {
  background: url("../img/drink_bg.jpg") repeat center top / 100% auto;
  width: 94.5rem;
  border: solid max(4px, 0.8rem) var(--white);
  display: flex;
  gap: 4rem 9.5rem;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__drink {
    width: 90%;
    flex-direction: column;
    padding: 2rem 2rem 4rem;
  }
}

@media (min-width: 768px) {
  .menu__drink .menu__txt-wrapper {
    padding-bottom: 3rem;
  }
}

.menu__food h3 {
  width: 100%;
  font-size: max(18px, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.menu__food h3 strong {
  font-size: max(22px, 4.2rem);
  font-weight: 500;
}

.drink__ttl {
  display: block;
  width: 18.5rem;
  margin: -4rem 0 0 -2.5rem;
}

@media (max-width: 767px) {
  .drink__ttl {
    margin: 0;
  }
}

.menu p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 5rem;
}

.menu__drink p {
  margin: 3rem 0 3.5rem;
}

.food_img-1 {
  display: block;
  width: 60.3rem;
  position: absolute;
  top: 6rem;
  left: -33.5rem;
}

.food_img-2 {
  display: block;
  width: 46.1rem;
  position: absolute;
  top: 2.5rem;
  right: -24rem;
}

.food_img-3 {
  display: block;
  width: 18.2rem;
  position: absolute;
  right: 0.6rem;
  bottom: 2.7rem;
}

@media (max-width: 767px) {
  .food_img-1 {
    width: 100%;
    top: 6rem;
    margin-left: -20rem;
    margin-bottom: 4rem;
    position: static;
  }

  .food_img-2 {
    width: 36rem;
    top: 10rem;
    right: -10rem;
  }

  .food_img-3 {
    width: 15rem;
  }
}

/*============================
	shop
============================*/
.shop {
  background: var(--bg-2);
  padding: 10rem 0;
}

.shop__contents {
  background: url("../img/shop_bg.jpg") no-repeat center / cover;
  width: 100rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4rem 8rem;
  padding: 6rem 8rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .shop__contents {
    width: 90%;
    flex-direction: column;
    align-items: flex-start;
  }
}

.shop__contents::before,
.shop__contents::after {
  content: "";
  background: url("../img/shop_deco.jpg") no-repeat center top / cover;
  width: 100%;
  height: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shop__contents::after {
  transform: scale(1, -1);
  top: auto;
  bottom: 0;
}

.shop__ttl {
  font-size: max(16px, 2.8rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-start;
}

.shop__ttl img {
  width: auto;
  height: 7.6rem;
  margin-bottom: 2rem;
}

.shop__contents p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
}

.shop__contents a {
  text-decoration: underline;
}

.shop .common__btn-2 {
  margin: 2.5rem 0 0 auto;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding-top: 10.5rem;
}

.gallery__ttl-wrapper {
  width: 92rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 5rem;
}

@media (max-width: 767px) {
  .gallery__ttl-wrapper {
    width: 90%;
  }
}

.gallery__slider {
  height: 22.6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	recruit
============================*/
.recruit {
  padding: 8rem 0 6.5rem;
}

.recruit__contents {
  background-color: var(--black);
  width: 100rem;
  color: var(--white);
  display: flex;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.recruit__txt-wrapper {
  width: 100%;
  padding: 5.5rem 4.5rem 4rem 8.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    padding: 5.5rem 4.5rem 6rem 8.5rem;
  }
}

.recruit__txt-wrapper::before {
  content: "";
  background-color: #fc4d01;
  width: 1rem;
  height: calc(100% - 4rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 4rem;
  pointer-events: none;
}

.recruit__ttl img {
  width: auto;
  height: 5.9rem;
}

.recruit__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  margin: 4rem 0 2.5rem;
}

.recruit__img {
  background-color: #fc4d01;
  width: 45rem;
  flex-shrink: 0;
  position: relative;
  pointer-events: none;
}

@media (max-width: 767px) {
  .recruit__img {
    width: 100%;
  }
}

.recruit__img span {
  display: block;
  background-color: var(--white);
  width: 49.5rem;
  border: solid 2px var(--black);
  padding: 1.5rem;
  box-shadow: 5px 6px rgba(0, 0, 0, 0.5);
  position: absolute;
  transform: rotate(8deg);
  top: -1rem;
  left: -1.5rem;
}

@media (max-width: 767px) {
  .recruit__img span {
    width: 100%;
    position: static;
  }
}

.recruit__img img {
  border: solid 1px var(--black);
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center top / cover;
  color: var(--white);
  padding: 12.5rem 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 11.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .access__txt-wrapper {
    padding-top: 5.5rem;
  }
}

.access__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
  margin: 9.5rem 0 6.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 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%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.access .common__btn-2 {
  margin-left: auto;
}

.access__img {
  width: 48.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11.5rem 0 12rem;
}

.insta__contents {
  width: 75.8rem;
  margin: 8rem 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.7rem;
}

.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: 24.1rem;
  height: 24.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	reserve
============================*/
.reserve {
  background: url("../img/reserve_bg.jpg") no-repeat center / cover;
  padding: 8rem 0 9rem;
}

.reserve__txt {
  width: 90%;
  font-size: max(12px, 1.7rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  margin: 4rem auto 1.5rem;
}

.reserve__txt span {
  display: block;
  font-size: max(12px, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}

.calendar-wrapper {
  border: 16px solid #000;
  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;
  }
}
