@charset "UTF-8";
/* CSS Document */
.subArea{
    padding-top: 80px;
}
.subArea .h2Area{
    text-align: center;
}
.subArea .h2Area h2{
    display: inline-block;
    position: relative;
    min-width: 500px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    padding: 0px 20px;
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(to top, #E67350 0%, #E67350 50%, #EB8F73 50%, #EB8F73 100%);
    color: #FFF;
    box-sizing: border-box;
    margin-bottom: 50px;
}
.subArea .h2Area h2:before, .subArea .h2Area h2:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}
.subArea .h2Area h2:before {
    top: 0;
    left: 0;
    border-width: 42px 0px 42px 18px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
}
.subArea .h2Area h2:after {
    top: 0;
    right: 0;
    border-width: 42px 18px 42px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
}

@media screen and (max-width: 1000px) {
    .subArea{
        padding-top: 110px;
    }
}

@media screen and (max-width: 767px) {
    header h1{
        font-size: 20px;
    }
    .subArea .h2Area h2{
        min-width: 85%;
        font-size: 22px;
        height: 60px;
        line-height: 60px;
        margin-bottom: 40px;
    }
    .subArea .h2Area h2:before{
        border-width: 30px 0px 30px 18px;
    }
    .subArea .h2Area h2:after {
        border-width: 30px 18px 30px 0px;
    }

}