@charset "UTF-8";

/* ====================
container__background
=====================*/
.container__background {
    position: relative;
    overflow: hidden;
}

/* Review__background */
.container__background::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 30px;
    left: -125px;
    z-index: -100;
    width: 250px;
    height: 187px;
    background-image: url(../images/background_reservation_01.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.container__background::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 30px;
    right: -125px;
    z-index: -100;
    width: 250px;
    height: 187px;
    background-image: url(../images/background_reservation_02.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* container__background pc */
@media screen and (min-width: 769px) {

    /* Review__background */
    .container__background::before {
        top: 70px;
        left: -243px;
        width: 477px;
        height: 357px;
    }

    .container__background::after {
        top: 70px;
        right: -243px;
        width: 477px;
        height: 357px;
    }
}

/* 769px pc */

/* ====================
article__header
=====================*/
.article__header .wrapper {
    max-width: 87%;
    margin: 0 auto;
    padding-top: 80px;
}

.article__header .title {
    display: flex;
    flex-flow: column;
    align-items: center;
    color: var(--primary-black);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
}

.article__header .title span {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
}

/* article__header pc */
@media screen and (min-width: 769px) {
    .article__header .wrapper {
        max-width: 1280px;
        padding: 80px 60px 0;
    }

    .article__header .title {
        font-size: 4.8rem;
    }

    .article__header .title span {
        font-size: 1.6rem;
    }
}

/* 769px pc */

/* ====================
section__common
=====================*/
.section__reservation .wrapper {
    max-width: 87%;
    margin: 70px auto 0;
}

.section--title {
    color: var(--primary-black);
    font-size: 2.4rem;
    line-height: 1;
    text-align: start;
}

/* section__common pc */
@media screen and (min-width: 769px) {
    .section__reservation .wrapper {
        max-width: 1280px;
        padding: 0 60px;
    }
}

/* 769px pc */

/* ====================
reservation
=====================*/
.section__reservation--reservation .wrapper {
    margin: 50px auto 0;
}

.section__reservation--reservation .section--title {
    line-height: 1.5;
}

.section__reservation--reservation .section--title span {
    display: none;
}

.reservation__txt {
    margin-top: 40px;
}

.reservation__txt p {
    margin-top: 20px;
    color: var(--primary-black);
    line-height: 1.5;
}

.reservation__txt p:first-of-type {
    margin-top: 0;
}

.LINE--contents {
    display: flex;
    flex-direction: column-reverse;
    max-width: 327px;
    margin: 50px auto 0;
}

.LINE--contents .btn__LINE {
    margin: 50px auto 0;
    width: 100%;
}

.LINE--contents .btn__LINE:hover {
    border: 2px solid #06C755;
}

.LINE--contents .qr {
    width: 116px;
    height: 116px;
    margin: 0 auto;
}

/* reservation pc */
@media screen and (min-width: 769px) {
    .section__reservation--reservation .section--title {
        display: flex;
        line-height: 1;
    }

    .brsp {
        display: none;
    }

    .pc__contents {
        margin: 0px 55px;
    }

    .section__reservation--reservation .section--title span {
        display: block;
    }

    .reservation__txt {
        display: flex;
    }

    .reservation__txt p {
        line-height: 1;
        margin-top: 0;
    }

    .LINE--contents {
        flex-direction: row;
        max-width: none;
        width: 493px;
        margin: 30px auto 0;
        align-items: center;
    }

    .LINE--contents .btn__LINE {
        margin: 0 auto 0;
        width: 100%;
    }

    .LINE--contents .qr {
        margin-left: 50px;
    }
}

/* 769px pc */

/* section__common pc */
@media screen and (max-width: 1130px) {
    .reservation__txt {
        display: block;
    }

    .reservation__txt p {
        margin-top: 20px;
        line-height: 1.5;
    }

    .reservation__txt p:first-of-type {
        margin-top: 0;
    }
}


/* ====================
flow
=====================*/
.flow__contents {
    display: flex;
    gap: 15px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: var(--primary-gray);
}

.flow__contents {
    margin-top: 22px;
}

.flow__contents--first {
    margin-top: 40px;
}

.flow__arrow::before {
    display: block;
    content: '';
    border: 0;
    border-radius: 2px;
    border-bottom: solid 2px var(--primary-black);
    border-right: solid 2px var(--primary-black);
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    margin: 22px auto;
}

.flow__contents p {
    line-height: 1.5;
}

.flow__number {
    font-size: 2rem;
    line-height: 1;
}

.example {
    display: flex;
    margin-top: 15px;
}

.example p {
    font-size: 1.4rem;
    line-height: 1;
}

.example__contents {
    margin-left: 15px;
}

.example__contents p {
    margin-top: 10px;
}

.example__contents p:first-of-type {
    margin-top: 0;
}

.flow__contents a {
    text-decoration: underline;
    color: blue;
}

/* flow pc */
@media screen and (min-width: 769px) {
    .flow__contents {
        padding: 30px;
    }

    .example {
        margin: 15px 0 0 30px;
    }

    .example__contents {
        margin-left: 20px;
    }

    .example__contents p {
        margin-top: 10px;
    }

    .example__contents p:first-of-type {
        margin-top: 0;
    }

    .flow__contents a {
        color: blue;
        text-decoration: underline;
    }
}

/* 769px pc */

/* ====================
precautions
=====================*/
.section__reservation--precautions .wrapper {
    margin-bottom: 80px;
}

.section__reservation--precautions ul {
    margin-top: 40px;
    margin-left: 5px;
}

.section__reservation--precautions li {
    margin-top: 30px;
    padding-left: 1.5em;
    line-height: 1.5;
    list-style-type: disc;
    list-style-position: inside;
    text-indent: -1.5em;
}

.precautions__small {
    margin-top: 15px;
    margin-left: 60px;
}

.precautions__small p {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.3;
}

.poricy__arrow {
    margin-left: 15px;
    margin-right: 15px;
}