.shop-banner {
    width: 100%;
}

/* 商品開始 */
.container-shop {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container-shop-all {
    padding: 150px 200px;
    max-width: 1200px;
}

.shop-left {
    display: flex;
    align-items: center;
    padding-bottom: 80px;
}

.shop-left img {
    border-radius: 15px;
}

.shop-right {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-bottom: 80px;
}

.container-shop-all img {
    max-width: 40%;
}

#shop-font {
    margin: 0;
}

.shop-p {
    text-align: justify;
    padding-left: 50px;
}

.shop-p2 {
    text-align: justify;
    padding-right: 50px;
}

.shop-p input {
    width: 30%;
    background-color: #249CAD;
    border: none;
    border-radius: 20px;
    color: white;
    padding: 3px 0px;
    cursor: pointer;
}

.shop-p input:hover {
    background-color: #198694;
}

/* 商品結束 */

/* RWD */
@media (max-width: 1360px) {
    .container-shop-all {
        padding: 100px 150px;
    }

}

@media (max-width: 920px) {
    .container-shop-all {
        padding: 100px 100px;
    }

}

@media (max-width: 768px) {

    .shop-left,
    .shop-right {
        flex-direction: column;
    }


    .shop-null {
        width: 0px;
        height: 30px;
    }

    .shop-p {
        text-align: center;
        padding-left: 0px;
        padding-top: 20px;
    }

    .shop-p2 {
        text-align: center;
        padding-right: 0px;
        padding-top: 20px;

    }

    .container-shop-all img {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .container-shop-all {
        padding: 100px 50px;
    }
}