/* カーセルの部分 */
/* .cousel {
    height: 100vh;
} */

/* .top-img {
    width: 100%;
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .2s all ease-in-out;
} */

:root {
    --orange-color: #e7570e;
    --pink-color: #ea5455;
    --dark-color: #251411;
    --color_gray: rgba(200, 200, 200, .15);

}

.description-wrapper {
    background-color: rgb(255, 217, 0);
}

.description1 {
    color: white;
    background-color: #e7570e;
    border-radius: 2px;
}

.detail-btn-wrapper>a {
    display: block;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 600;
    background: linear-gradient(100deg, #ea5455 0%, #e0911a 100%);
}

.plan-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.plan-title {
    background: #251411;
    font-size: 1.2em;
    font-weight: 600;
}

.plan {
    font-size: 1.2em;
}

.submit-btn {
    background: #e7570e;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    padding: 4px;
    width: 70%;
}

.info-wrapper {
    background: #ea5455;
    color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tel {
    font-weight: 900;
}

.info-detail-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.info-detail {
    font-size: 1.2em;
}

.line-h-2 {
    line-height: 2;
}


.order-btn {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 10px;
    margin: 0 auto;
    color: rgb(80, 80, 80);
}

.plan2-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.plan2-title {
    font-family: inherit;
    background: #e7570e;
    font-size: 1em;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
}

.plan2-content {
    padding: 7%;
}

.plan2 {
    font-size: 1.2em;
}

.newinfo {
    background: #ea5455;
}

.post-card {
    background: rgb(206, 206, 206);
    border-radius: 20px;
    height: 30vh;
    background-image: url(../image/S__36921350.jpg);
    background-size: cover;
    background-position: center;
}

.post-title {
    color: white;
    font-size: 1.2em;
    font-weight: 900;
}

/* footer */
footer {
    background: #251411;
    padding: 1%;
    font-size: .8em;
}

.footer-menu {
    flex-wrap: wrap;
}

.footer-menu-list {
    text-align: center;
}

.footer-menu-list>a {
    color: white;
    text-decoration: none;
}

.line-a::before {
    content: "";
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--orange-color) 0%, var(--orange-color) 29.3%, rgba(150, 150, 150, .2) 29.3%, rgba(150, 150, 150, .2) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: block;
}

.pc-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PC */
@media screen and (min-width:601px) {

    /* カーセルの部分 */
    .top-img {
        background-image: url(../image/service1-pc.jpeg);
    }

    /* 説明欄の部分 */
    .description1 {
        font-size: 1.8em;
        padding: 0.5em 1.25em;
        min-width: 58vw;
    }

    /* .description1::before {
        bottom: -111px;
        left: 8.25em;
    } */

    .plan {
        width: 30%;
        border: 1px solid black;
    }

    .info-wrapper {
        justify-content: space-around;
    }

    .info-detail-wrapper {
        flex-direction: column;
    }

    .tel {
        font-size: 2.6em;
    }

    .order-btn {
        margin: 0rem;
        width: 30%;
    }

    .plan2-wrapper {
        margin-top: 30px;
        justify-content: center !important;
    }

    .plan2 {
        background-color: rgba(248, 248, 248, 0.404);
        height: 100%;
        width: 35%;
        border: 1px solid #e7570e;
    }

    .map {
        width: 50%;
        margin-left: 5%;
    }
}

/* 携帯 */
@media screen and (max-width:600px) {

    /* カーセルの部分 */
    .top-img {
        background-image: url(../image/service1-phone.jpeg);
    }

    /* 説明欄の部分 */
    .description1 {
        font-size: 1.6em;
        padding: 0.5em .6em;
        min-width: 83vw;
    }

    /* .description1::before {
        bottom: -174px;
        left: 4.25em;
    } */

    .plan-wrapper {
        flex-direction: column;
    }

    .plan {
        width: 90%;
        margin-top: 20px !important;
    }



    .info-wrapper {
        flex-direction: column;
    }

    .info-detail-wrapper {
        flex-direction: column;
    }

    .tel {
        text-align: center;
        font-size: 2.3em;
    }

    .line-btn {
        text-align: center;
    }

    .order-btn {
        font-size: 1em;
        width: 55%;
    }


    .plan2-wrapper {
        flex-direction: column;
    }

    .plan2 {
        width: 90%;
        margin-top: 20px !important;
        border: 1px solid #e7570e;
    }

    .map {
        width: 100%;
    }

    .pc-column {
        flex-direction: column;
    }


}