.M--contact-us {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
    .contact-us__body {
        display: block;
        margin: auto;
        max-width: 840px;
        .contact-us__contents {
            margin: 0 -24px;
            .content__item {
                padding: 0 24px;
            }
        }
    }
    .contact-us__google-maps {
        display: block;
        position: relative;
        padding-top: 100%;
        border: 1px solid $border-color;
        @media (max-width: $screen-sm) {
            margin: 0 -16px;
            border-left: 0;
            border-right: 0;
        }
        .google-maps__input {
            display: none;
        }
        iframe {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
        }
    }
    .contact-us__address {
        display: block;
        margin-top: 40px;
        .address__title {
            display: block;
            margin: 0 0 12px;
            font-size: 1.6rem;
            font-weight: 600;
            color: $text-color;
            line-height: 1.55;
        }
        .address__detail {
            display: block;
            font-size: 1.55rem;
            font-style: normal;
            line-height: 1.55;
        }
    }
    .contact-us__social-media {
        display: block;
        margin-top: 32px;
        @media (min-width: $screen-sm) {
            margin-top: 48px;
        }
        .social-media__title {
            display: block;
            margin: 0 0 12px;
            font-size: 1.6rem;
            font-weight: 600;
            color: $text-color;
            line-height: 1.55;
        }
        .social-media__lists {
            display: block;
            margin: 0;
            padding: 0;
            list-style: none;
            font-size: 0;
            line-height: 0;
            white-space: nowrap;
            .list__item {
                display: inline-block;
                margin: 0 16px 0 0;
                padding: 0;
                .item__icon {
                    display: block;
                    width: 40px;
                    height: 40px;
                    overflow: hidden;
                    background: $primary-color;
                    @include border-radius(6px);
                }
            }
        }
    }
    .contact-us__action {
        display: block;
        margin-top: 32px;
        @media (min-width: $screen-sm) {
            margin-top: 48px;
        }
    }
}