@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;}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    width: 420px;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    box-sizing: border-box;
}
.headLine01 span {
    margin-bottom: 15px;
    display: block;
    color: #947b40;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.18em;
}
@media all and (max-width: 896px) {
    .headLine01 {
        width: auto;
        font-size: 1.8rem;
    }
    .headLine01 span {
        margin-bottom: 0;
        font-size: 1rem;
    }
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    margin: 0 auto;
    padding-top: 56px;
    width: 1140px;
    box-sizing: border-box;
}
@media all and (max-width: 896px) {
    .content {
        padding-top: 24px;
        width: inherit;
        display: block;
    }
}
/*------------------------------------------------------------
	comBg
------------------------------------------------------------*/
.comBg {
    position: relative;
    border-top: 1px solid #EEE;
}
.comBg::before {
    width: 54px;
    height: 38px;
    position: absolute;
    left: -3px;
    top: -19px;
    background: url("../../img/common/icon.png") no-repeat left center;
    content: ""
}
.comBg::after {
    width: 30px;
    height: 1px;
    position: absolute;
    right: 0;
    top: -1px;
    background-color: #000;
    content: "";
}
@media all and (max-width: 896px) {
    .comBg::before {
        background-size: 34px;
    }
    .comBg::after {
        width: 10px;
    }
}