@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
------------------------------------------------------------*/
.content {
    margin: 0 auto;
    max-width: 1120px;
    box-sizing: border-box;
}
@media all and (max-width: 768px) {
    .content {
        padding: 0 15px;
    }
}
/*------------------------------------------------------------
	headline01
------------------------------------------------------------*/
.headline01 {
    margin-bottom: 25px;
    color: #534741;
    font-size: 2.16rem;
    font-weight: 900;
    text-align: center;
}
.headline01 .en {
    padding: 0 20px 5px;
    display: inline-block;
    position: relative;
    color: #F4770F;
    font-size: 7.5rem;
    line-height: 1;
}
.headline01 .en:before, .headline01 .en:after {
    position: absolute;
    right: 100%;
    top: 28px;
    width: 9999px;
    height: 30px;
    background-color: #F4770F;
    content: "";
}
.headline01 .en:after {
    right: auto;
    left: 100%;
}
@media all and (max-width: 768px) {
    .headline01 {
        margin-bottom: 20px !important;
        font-size: 1.4rem;
    }
    .headline01 .en {
        padding: 0 12px 5px !important;
        font-size: 3.8rem;
    }
    .headline01 .en:before, .headline01 .en:after {
        top: 14px !important;
        height: 13px;
    }
}
/*------------------------------------------------------------
	headline02
------------------------------------------------------------*/
.headline02 {
    margin-bottom: 27px;
    color: #F4770F;
    font-size: 3.8rem;
    line-height: 1.53;
    font-weight: 900;
    letter-spacing: 0.1em;
}
.headline02 > span {
    background: url(../../img/index/line01.png) repeat-x left bottom 2px/15px auto;
}
.headline02 small {
    margin-bottom: 3px;
    display: block;
    font-size: 2.6rem;
    letter-spacing: 0.05em;
}
@media all and (max-width: 768px) {
    .headline02 {
        margin-bottom: 20px;
        font-size: 2rem;
    }
    .headline02 > span {
        background-size: 10px auto;
    }
    .headline02 small {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
}
@media all and (max-width: 359px) {
    .headline02 {
        font-size: 1.8rem;
    }
}