@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;}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    margin: 0 auto;
    width: 950px;
}
@media all and (max-width: 896px) {
    .content {
        margin: 0 18px;
        width: auto;
    }
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 76px;
    text-align: center;
}
.headLine01 .sml01 {
    padding: 0 170px;
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    background: url("../../img/common/line02.png") no-repeat left center,url("../../img/common/line02.png") no-repeat right center;
}
.headLine01 .sml02 {
    margin-top: 12px;
    display: block;
}
@media all and (max-width: 896px) {
    .headLine01 {
        margin-bottom: 42px;
    }
    .headLine01 .sml01 {
        padding: 0 85px;
        font-size: 2rem;
        background: url("../../img/common/sp_line02.png") no-repeat left center / 71px auto,url("../../img/common/sp_line02.png") no-repeat right center / 71px auto;
    }
    .headLine01 .sml02 {
        font-size: 1.3rem;
    }
}
/*------------------------------------------------------------
	comTtl
------------------------------------------------------------*/
.comTtl {
    margin-bottom: 27px;
}
.comTtl span {
    margin-bottom: 10px;
    padding: 8px 18px 3px 7px;
    display: inline-block;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
    background-color: #e06060;
    border-radius: 5px;
}
.comTtl span:last-of-type {
    margin-bottom: 0;
}
.comTtl .sml01 {
    padding: 8px 8px 3px 7px;
}
.comTtl .sml02 {
    padding: 8px 27px 3px 7px;
}
@media all and (max-width: 896px) {
    .comTtl {
        margin-left: 8px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }
    .comTtl span {
        padding: 5px 8px 5px 7px!important;
        font-size: 1.5rem;
        letter-spacing: 0.03em;
        border-radius: 3px;
    }
}
@media all and (max-width: 340px) {
    .comTtl span {
        padding: 5px 4px 5px 4px!important;
        font-size: 1.4rem;
    }
}
@media all and (-ms-high-contrast:none) {
    .comTtl span {
        padding-top: 10px!important;
        padding-bottom: 1px!important;
    }
}
/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
    margin: 0 auto;
    width: 420px;
}
.comLink a {
    padding: 13px 5px 9px;
    display: block;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    background-color: #e06060;
    box-shadow: 0px 4px 0px 0 #a50d05;
    border-radius: 40px;    
}
.comLink a:hover {
    opacity: 0.7;
}
@media all and (-ms-high-contrast:none) {
    .comLink a {
        padding: 15px 5px 7px;
    }
}
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
    transition: all 2s cubic-bezier(0.18, 1.01, 0.29, 1.04);
}
.fadeInUp.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
