 .maparea {
            width: 100%;
            height:  85.714em;
            margin-bottom: 50px;
        }
        .maparea iframe {
            border: none;
            width: 100%;
            height: 100%;
        }
        @media screen and (max-width: 480px) {
            .maparea {
                position: relative;
                height: auto;
            }
            .maparea::before {
                content: "";
                display: block;
                width: 100%;
                height: 0;
                padding-top: calc(100% / 3 * 4);
            }
            .maparea iframe {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
            }
        }