:root {
    --sub-color: #e7e6e0;
    --main-color: #220000;
    --mainfont:'Noto Sans JP', sans-serif;
    --subfont:'Lora', serif;
}

/* mv */
.mv {
    position: relative;
    height: 100vh;
}
.mv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8.1rem;
    mix-blend-mode: multiply;
    background: url(../img/bg-header.png) top center / cover no-repeat;
}

.mv__inner {
    height: 100%;
}

.mv__slider {
    height: 100%;
}

.mv__slider .slick-list {
    height: 100%;
}

.mv__slider .slick-track {
    height: 100%;
}

.mv .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.mv__img {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

.mv__img img {
    aspect-ratio: 1440/800;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv__img.slick-current img {
    animation: fadezoom 7s linear forwards;
}

@keyframes fadezoom {
    0% {
      transform: scale(1.3);
    }
    100% {
      transform: scale(1);
    }
  }

.mv-slider-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    right: 3.375rem;
    bottom: -3rem;
    z-index: 1;
}

.mv-slider-dots li {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    border: 1px solid var(--blue);
}

.mv-slider-dots li.slick-active {
    background-color: var(--blue);
}

.mv-slider-dots button {
    display: none;
}

@media screen and (max-width:1024px) {
    .mv {
        max-height: 800px;
    }
}

@media screen and (max-width:768px) {
    .mv {
        height: 400px;
        padding-top: 0;
    }
    .mv__inner {
        height: 100%;
    }
    .mv__slider {
        height: 100%;
    }
    .mv__slider .slick-list {
        height: 100%;
    }
    .mv__slider .slick-track {
        height: 100%;
    }
}

/* news */
.news {
    padding: 8.625rem 0 7.625rem;
}
.news__title {
    margin-bottom: 4.7rem;
}

.news__main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 4rem 3.875rem;
}

.news__btn a {
    font-size: 1rem;
    margin: 0 auto;
}

.news__btn a img {
    width: 2rem;
}

.news .CMS-NEWS-ITEM {
    margin: 0;
    width: 100%;
}


.news .CMS-NEWS-LINK-CONTENT {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.news .CMS-NEWS-TIME {
    margin-top: 1.875rem;
    color: #FFF;
    line-height: 1.5;
}

.news .CMS-NEWS-LINK {
    line-height: 1.5;
    color: #FFF;
}

.news .CMS-NEWS-MORE-READ {
    display: none;
}

.news__btn {
    margin-top: 5.5rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .news {
        padding: 3rem 0;
    }
    .news__title {
        margin-bottom: 2rem;
    }
    .news__main {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
    }
    .news__left {
        display: contents;
    }
    .news .CMS-NEWS-LINK-CONTENT {
        padding: 1rem;
        display: block;
    }
}

/* policy */
.policy {
    background: url(../img/bg_policy.jpg) top center / cover no-repeat;
    padding-top: 8rem;
    padding-bottom: 6rem;
}
.policy h3 {
    margin-top: 5.6rem;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: #FFF;
    line-height: 1.5;
}

.policy__inner {
    position: relative;
}

.policy__title {
    position: absolute;
    width: 18.375rem;
    top: 28.3rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
}

.policy__bigText {
    position: absolute;
    top: -8.725rem;
    left: calc(2.75rem + 25px);
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    width: fit-content;
    gap: 1rem;
    z-index: 1;
}

.policy__bigText span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
/*    background-color: white;*/
    font-size: 2.25rem;
    font-weight: 500;
    padding: 0.625rem;
    letter-spacing: 0.16em;
    color: #fff;
}

.policy__bigText span:nth-child(1) {
    font-size: 3rem;
    color: #fff;
}

.policy__bigText span:nth-child(2) {
    padding-top: 9rem;
}


.policy__img {
    position: relative;
    display: block;
    width: 100%;
}

.policy__img::before {
    position: absolute;
    width: 100%;
    content: "";
    height: 100%;
    border: 1px solid white;
    top: 1.5rem;
    left: 1.5rem;
    z-index: -9
}

.policy__text {
    position: relative;
    color: white;
    font-size: 1.125rem;
    line-height: 2;
    padding: 1.9rem 1.25rem 3.8rem;
    z-index: 1;
    text-align: center;
}
.policy__btn {
    text-align: center;
}

@media screen and (max-width:768px) {
    .policy {
        padding-block: 5rem;
    }
    .policy h3 {
        line-height: 1.5;
        font-size: 1.4rem;
    }

    .policy__title {
        width: 9rem;
        top: 9.6rem;

    }

    .policy__bigText {
        position: relative;
        flex-direction: column;
        left: initial;
    }

    .policy__bigText span {
        writing-mode:initial;
        font-size: 1.2rem;
    }

    .policy__bigText span:nth-child(1) {
        font-size: 2rem;
        line-height: 1.6;
    }

    .policy__img::before {
        top: 1rem;
        left: 0.5rem;
    }

    .policy__text {
        width: 100%;
        background: unset;
    }
}



/* menu */
.menu {
    color: #FFF;
    background: url(../img/bg.jpg) top center / cover no-repeat;
    position: relative;
    padding-bottom: 10.7rem;
}
.menu-deco {
    position: absolute;
    top: -11rem;
    right: -7rem;
    width: 46.8rem;
}
.menu-deco-1 {
    position: absolute;
    top: 91rem;
    right: 56rem;
    width: 36.8rem;
    z-index: 1;
}

.menu-deco-2 {
    position: absolute;
    top: -9rem;
    right: -1rem;
    width: 29.8rem;
    z-index: 1;
}

.menu__inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    padding: 0;
}

.menu__food {
    position: relative;
    padding-top: 9.375rem;
    padding-bottom: 7.95rem;
}

.menu__drink {
    position: relative;
    color: white;
}

.menu__drink .menu__inner {
    padding-top: 8.125rem;
    padding-bottom: 17.5rem;
}

.menu__wrap {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.menu__wrap.drink {
    flex-direction: initial;
    margin-top: 7rem

}

.menu__content {
    width: 50%;
    padding-left: 5.4rem;
}
.drink .menu__content {
    padding-left: 0;
    padding-right: 5.4rem;
}

.menu__drink .menu__content {
    margin-left: auto;
}

.menu__title {
    position: relative;
    font-size: 8.125rem;
}

/*
.menu__title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    background-color: black;
    left: 18rem;
    top: 50%;
    transform: translateY(-50%);
}
*/

.menu__title--reverse {
    text-align: right;
}

.menu__title--reverse::before {
    background-color: white;
    right: 19rem;
    left: initial;
}

.menu__title--reverse::after {
    position: absolute;
    content: "";
    width: 20.125rem;
    height: 15.25rem;
    top: 40%;
    transform: translateY(-50%);
    right: 25rem;
    background: url(../img/drink1.png) center center / contain no-repeat;
}

.menu__bigText {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    z-index: 1;
}

.menu__bigText span {
    display: inline-block;
    white-space: nowrap;
    font-size: 2.5rem;
    font-weight: 500;
/*    background-color: white;*/
    color: #FFF;
    padding: 0.625rem;
    letter-spacing: 0.16em;
}

/*
.menu__bigText span:nth-child(1) {
    font-size: 3.125rem;
    color: #de933f;
}
*/

.menu__bigText--reverse {
    align-items: flex-end;
}

.menu__text {
    position: relative;
    z-index: 1;
    text-align: justify;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.2em;
    margin-top: 2rem;
    width: 29rem;
    font-feature-settings: "palt";
}

.menu__text--reverse {
    margin-left: auto;
}

.menu__btn {
    text-align: center;
}

.menu__btn--reverse {
    text-align: right;
}

.menu__slider {
    width: calc(50% + (50vw - 50%));
}

.menu__slider picture {
    
}

.menu__slider picture img {
    aspect-ratio: 720/480;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu__slider .menu-slider-dots {
    display: flex;
    justify-content: flex-end;
    gap: 2.625rem;
    margin: 0 auto;
    margin-top: 1.875rem;
    margin-right: 10.625rem;
}

.menu__slider .menu-slider-dots li {
    list-style: none;
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--sub-color);
}

.menu__slider .menu-slider-dots li.slick-active {
    background-color: black;
}

.menu__slider .menu-slider-dots button {
    display: none;
}

.menu__img1 {
    position: absolute;
    width: 25rem;
    bottom: 5.65rem;
    left: 22rem;
}

.menu__img2 {
    position: absolute;
    width: 4.75rem;
    top: 18rem;
    right: 34.25rem;
}

.menu__img3 {
    position: absolute;
    width: 10.8125rem;
    right: 13.125rem;
    bottom: 6.75rem;
}

.menu__img4 {
    position: absolute;
    width: 15rem;
    right: 2.125rem;
    bottom: 45.75rem;
}

@media screen and (max-width:768px) {

    .menu__food {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .menu__wrap {
        display: block;
    }

    .menu__content {
        width: 100%;
        padding: 0 1rem;
    }
    
    .menu__title {
        font-size: 4rem;
    }

    .menu__title::before {
        width: 80%;
        left: 11rem;
    }

    .menu__bigText span:nth-child(1) {
        font-size: 1.9rem;
    }

    .menu__bigText span {
        font-size: 1.5rem;
    }
    
    

    .menu__text {
        width: 100%;
        letter-spacing: 0.025em;
        margin-top: 1rem;
        line-height: 1.5;
    }

    .menu__btn {
        text-align: center;
    }

    .menu__slider {
        width: 100%;
        margin-top: 2.5rem;
    }

    .menu__slider .menu-slider-dots {
        margin-inline: auto;
        justify-content: center;
    }

    .menu__drink .menu__inner {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .menu__title--reverse::before {
        left: initial;
        right: 11rem;
    }

    .menu__img1 {
        display: none;
    }

    .menu__img2 {
        top: -5.5rem;
    }

    .menu__img3 {
        bottom: -5.5rem;
        right: 2rem;
    }

    .menu__title--reverse::after {
        display: none;
    }
    .menu-deco {
        position: absolute;
        top: -3rem;
        right: -1.5rem;
        width: 11.8rem;
    }
    .menu-deco-1 {
        position: absolute;
        top: 103rem;
        right: 13.5rem;
        width: 15.8rem;
    }
    .menu-deco-2 {
        position: absolute;
        top: -3rem;
        right: -0.5rem;
        width: 9.8rem;
    }
}

/* gallery */
.gallery {
    padding-top: 6.55rem;
    padding-bottom: 6.1rem;
    overflow: hidden;
    background: url(../img/bg_policy.jpg) center center / cover no-repeat;
    position: relative;
}

.gallery__slider {
    max-width: 55.825rem;
    margin-inline: auto;
    margin-top: 4.35rem;
}

.gallery__slider .slick-list {
    overflow: unset;
}

.gallery__slider picture {
    display: block;
}

.gallery__slider img {
    aspect-ratio: 311/226;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__btn,
.thanx__btn {
    text-align: center;
    margin-top: 4.25rem;
}


/* access */
.access {
    padding-top: 7.825rem;
    padding-bottom: 12.1rem;
    background: url(../img/bg_access.jpg) center center / cover no-repeat;
    position: relative;
}

.access__inner.inner {
    max-width: 1440px;
    padding: 0;
}

.access__title {
    position: relative;
    color: #000;
}

.access__wrap {
    display: flex;
    gap: 5.875rem;
    margin-top: 5.125rem;
}
.access__left {
    order: 1;
    width: 31.1%;
}
.access__right {
    width: 44.4%;
}

.access__contact {
    width: fit-content;
    display: grid;
    align-items: center;
    grid-template-columns: 12.5rem 1fr;
    gap: 3.75rem;
    margin-left: auto;
}

.access__logo {
    width: 12.5rem;
}

.access__tel {

}

.access__tel p {
    font-size: 1.125rem;
    letter-spacing: 0.2em;
}

.access__tel a {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--subfont);
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
}

.access__tel a img {
    width: 0.75rem;
    vertical-align: middle;
}

.access__img img {
    width: 100%;
}

.access__info dl {
    display: grid;
    grid-template-columns: 7.25rem 1fr;
    gap: 1rem;
}

.access__info dl:not(:last-child) {
    border-bottom: 0.5px solid #000;
}

.access__info dt {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: calc(24.4/16);
    padding-block: 1.25rem;
}

.access__info dd {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: calc(24.4/16);
    padding-block: 1.25rem;
}

.access__btn {
    text-align: left;
    margin-top: 2.4rem;
}

.map iframe {
    aspect-ratio: 1440/420;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
}

@media screen and (max-width:768px) {
    .access {
        padding: 5rem 1rem;;
    }

    .access__wrap {
        display: contents;
    }

    .access__img {
        display: block;
        margin-top: 2.5rem;
    }

    .access__info {
        margin-top: 3rem;
    }

    .access__info dl {
        grid-template-columns: 4rem 1fr;
    }

    .access__info dt {
        font-size: 0.725rem;
    }

    .access__info dd {
        font-size: 0.725rem;
        letter-spacing: 0.025em;
    }

    .access__btn {
        margin-top: 3rem;
        text-align: center;
    }

    .map iframe {
        aspect-ratio: 100/100;
    }

    .access__title::before {
        display: none;
    }
    
    .access__logo {
        margin-inline: auto;
    }

    .access__contact {
        margin-inline: auto;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    .access__left {
        width: 100%;
    }
    .access__right {
        width: 100%;
    }
}


/* instagram */
.instagram {
    position: relative;
    background: url(../img/bg_instagram.jpg) center center / cover no-repeat;
    padding-top: 9.45rem;
    padding-bottom: 10.4rem;
    overflow: hidden;
    color: #FFF;
}
.instagram .inner {
    max-width: 869px;
}
.instagram .CMS-INSTAGRAM-LIST {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.15rem;
    margin-top: 4.35rem;
    margin-inline: auto;
}

.instagram .CMS-INSTAGRAM-LIST a:nth-child(n+7) {
    display: none;
}

.instagram .CMS-INSTAGRAM-LIST img {
    width: 100%;
}

@media screen and ( max-width:768px) {
    .instagram {
        padding-block: 5rem;
    }
    .instagram .CMS-INSTAGRAM-LIST {
        gap: 1rem;
    }
}




.food__title{
    margin-bottom: 7.2rem;
}

.menu__drink .menu__bigText span{
    color: #fff;
}

.menu__drink .menu__bigText{
    margin-top: 8rem;
}

.menu__food .menu__bigText{
    margin-top: 1.3rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.15em;
    width: 29rem;
    font-feature-settings: "palt";
}
.menu__food .drink .menu__bigText {
    margin-left: auto;
}
.ttl-food {
    width: 12.45rem;
    margin-top: -4rem;
    margin-left: -3.4rem;
}
.ttl-drink {
    width: 14.5rem;
    margin-top: -3.5rem;
    margin-bottom: -2rem;
    margin-left: 4.7rem;
}

@media screen and (max-width:768px) {
    .menu__drink .menu__bigText{
        margin-top: 3rem;
    }
    .menu__food .menu__bigText{
    width: 100%;
}
    .menu__img4{
        display: none;
    }
    .policy__bigText span:nth-child(2){
        padding-top: 0;
    }
    .policy__bigText{
        top: -1.725rem
    }
    .ttl-food {
        margin-left: 0;
        width: 8rem;
    }
    .ttl-drink {
        width: 9rem;
        margin-top: -3.5rem;
        margin-bottom: 0rem;
        margin-left: 0rem;
    }
    .drink .menu__content {
        padding: 0 1rem;
    }
}





/* -------------------------------------------

reserve

------------------------------------------- */
.top-reserve {
    padding: 10rem 0;
    background:
        url(../img/deco-1.png) no-repeat right 10rem top 12rem,
        url(../img/deco-1.png) no-repeat left 4rem bottom 4rem;
    background-size:
        20rem auto;
}
.top-reserve > p {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    font-weight: bold;
}
.top-reserve > p span {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
    .top-reserve {
        padding: 8rem 0 10rem 0;
        background:
            url(../img/deco-1.png) no-repeat right 2rem top 2rem,
            url(../img/deco-1.png) no-repeat left 2rem bottom 2rem;
        background-size:
            16rem auto;
    }
    .top-reserve > p {
        text-align: left;
        padding: 0 3rem;
        margin-bottom: 2rem;
    }
}



/* -------------------------------------------

reserve

------------------------------------------- */

.top-reserve .wrap > div{
    width: 70%;
    margin: auto;
}
.calendar-wrapper {
    border: 16px solid #ccc;
    margin: 0 auto;
    display: flex;
    background: #fff;
}
.calendar-wrapper a {
    color: #000;
}

.top-reserve > p{
    color: #fff;
    margin-top: 3rem;
    font-size: 1.7rem;
}

.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 {
    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: 1.6rem;
    padding-bottom: 1.6rem;
    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;
    margin-top: 0.3rem;
}
.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: 100%;
        margin: 0 auto;
        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;
    }
    .top-reserve > p{
        font-size: 1.4rem;
        margin-top: 2rem;
    }
}
@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;
    }
}
