
@media screen and (max-width: 767px) {
    .area1 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 50px 0;
    }

        .area1 > .content {
            width: calc(100% - 40px);
        }

            .area1 > .content > .title {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 30px;
                margin: 40px 0;
            }

                .area1 > .content > .title > a {
                    width: 100%;
                    text-align: center;
                    font-size: 18px;
                    font-weight: 700;
                    color: #e84c2e;
                    border: solid 1px #e84c2e;
                    border-radius: 30px;
                    padding: 10px;
                }

            .area1 > .content > .store-container {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 60px;
            }

                .area1 > .content > .store-container > .store {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                }

                    .area1 > .content > .store-container > .store > .img-box {
                        width: 100%;
                        height: 210px;
                    }

                        .area1 > .content > .store-container > .store > .img-box > img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                    .area1 > .content > .store-container > .store > p {
                        font-weight: 700;
                        font-size: 24px !important;
                    }
}

@media screen and (min-width: 768px) {
    .index-container {
        width: 100%;
    }

    .area1 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 100px;
    }

        .area1 > .content {
            width: calc(100% - 40px);
            max-width: 1280px;
            padding: 0 60px;
        }

            .area1 > .content > .title {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 40px;
                margin: 40px 0;
            }

                .area1 > .content > .title > a {
                    font-size: 26px;
                    font-weight: 700;
                    color: #e84c2e;
                    border: solid 1px #e84c2e;
                    border-radius: 30px;
                    padding: 5px 30px;
                }

            .area1 > .content > .store-container {
                width: 100%;
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 60px;
            }

                .area1 > .content > .store-container > .store {
                    width: calc((100% - 120px) / 3);
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                }

                    .area1 > .content > .store-container > .store > .img-box {
                        width: 100%;
                        height: 210px;
                    }

                        .area1 > .content > .store-container > .store > .img-box > img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                    .area1 > .content > .store-container > .store > p {
                        font-weight: 700;
                    }
}
