@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
    display: flex;
    flex-wrap: wrap;
}
.flexA {
    justify-content: space-around;
}
.flexB {
    justify-content: space-between;
}
.flexC {
    justify-content: center;
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 5px;
    color: #0081CC;
    font-size: 6.8rem;
    font-weight: 100;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}
@media all and (max-width: 896px) {
    .headLine01 {
        font-size: 4rem;
    }
}