@charset "UTF-8";

.area-header label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.area-header {
    --bg: none;
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-top: 50px
}

@media screen and (max-width: 849px)and (min-width: 0) {
    .area-header {
        height: auto
    }
}

.area-header label {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 300px;
    height: 50px;
    line-height: 47px;
    background-color: var(--bg);
    border: 3px solid #000;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    border-radius: 35px;
    font-size: 24px;
    font-weight: 900;
    color: #fff
}

@media screen and (max-width: 849px)and (min-width: 0) {
    .area-header label {
        width: 280px;
        height: 40px;
        line-height: 34px;
        font-size: 20px;
        font-weight: 800
    }
}

.area-header img {
    position: absolute;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.area-header img:first-child {
    top: calc(50% + 6px);
    width: 44px;
    left: calc(50% - 210px)
}

.area-header img:last-child {
    top: calc(50% - 10px);
    width: 72px;
    left: calc(50% + 170px)
}

@media screen and (max-width: 849px)and (min-width: 0) {
    .area-header img {
        display: none
    }
}