@charset "UTF-8";

/*==========================
reservation
==========================*/

.topic--reserve {
    text-align: center;
    padding: 100px 0 50px;
    font-size: 2.2rem;
    color: var(--primary-black);
}

.leadTxt {
    text-align: center;
    font-weight: 600;
}

.steps__container {
    padding: 50px 6.66vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.media {
    display: inline-block;
    color: var(--primary-green);
    font-family: "Lexend Exa";
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.8em;
    letter-spacing: 0.18em;
    padding: 0 3px;
    border-bottom: solid 1px var(--primary-black);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

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

.number {
    width: 30px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-align: end;
}

.steps__txt {
    font-size: 1.4rem;
    font-weight: 500;
    width: 255px;
}

.line__container {
    margin-top: 35px;
}

.steps__btn {
    border: solid 1px var(--primary-brown);
    color: var(--primary-brown);
    padding: 2px;
    margin-right: 5px;
}

.steps__btn:hover {
    opacity: 0.5;
}

.attention {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
}

.steps__container--tel {
    margin-top: 50px;
    padding-top: 0;
}

.media--tel {
    color: var(--primary-brown);
}

.steps__txt--tel {
    text-align: center;
    margin-top: 35px;
    padding-bottom: 75px;
}

.reservation__img {
    object-fit: cover;
}

.reservationIMG__container {
    width: 100%;
    height: 85px;
    overflow: hidden;
}

/* fotter */
.footer {
    border-top: 0;
}

/* reservation PC */
@media screen and (min-width:769px) {

    .topic--reserve {
        padding: 150px 0 100px;
        font-size: 3.8rem;
    }

    .leadTxt {
        display: inline-block;
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .article {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steps__container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 100px;
        padding: 0;
    }

    .media {
        display: block;
        font-size: 2rem;
        letter-spacing: 0.2em;
        border-bottom: 0;
        width: 10.76vw;
        min-width: fit-content;
    }

    .line__container {
        border-left: solid 1px var(--primary-black);
        padding: 50px 0 50px 5.2vw;
        margin-top: 0;
    }

    .steps__txt {
        width: auto;
    }

    .steps {
        justify-content: left;
    }

    .reservationIMG__container {
        height: 300px;
    }

    .steps__txt--tel {
        text-align: left;
        margin-top: 0;
        padding: 35px 0 35px 5.2vw;
        border-left: solid 1px var(--primary-black);
    }

    .section__container {
        display: flex;
        flex-direction: column;
        align-items: start;
        margin-bottom: 100px;
    }
    
    .steps__txt {
        font-size: 1.6rem;
    }

    .space__pc {
        margin-left: 10px;
    }

    a[href^="tel:"] { 
        cursor: text;
    }


}