@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: 1100px;
}
@media all and (max-width: 896px) {
    .content {
        margin: 0 10px;
        width: auto;
    }
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
    margin: 0 auto;
    width: 600px;
}
.comBtn a {
    padding: 27px 10px 26px;
    display: block;
    position: relative;
    color: #FFF;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.075em;
    border-radius: 5px;
    background: #093090;
    box-shadow: 5px 5px 15px rgba(0,0,0,.4);
}
.comBtn a:hover {
    opacity: 0.7;
}
.comBtn a::before,
.comBtn a::after {
    margin-top: -1px;
    width: 40px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    background: #FFF;
    content: "";
}
.comBtn a::after {
    right: -40px;
    background: #093090;
}
@media all and (max-width: 896px) {
    .comBtn {
        width: 85%;
        max-width: 350px;
    }
    .comBtn a {
        padding: 10px;
        font-size: 1.7rem;
    }
    .comBtn a::before,
    .comBtn a::after {
        width: 10px;
    }
    .comBtn a::after {
        right: -10px;
    }
}
.comBox {
    margin: 0 auto;
    width: 1300px;
    position: relative;
    z-index: 1;
}
.comBtn01 a {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    font-weight: bold;
    color: #fff;
    width: 600px;
    height: 100px;
    border-radius: 5px;
    background-color: rgb(204, 176, 47);
    box-shadow: 0px 9px 12.74px 0.26px rgba(75, 35, 8, 0.57);
}
.comBtn01 a:hover {
    opacity: 0.7;
}
.comBtn01 a:after {
    position: absolute;
    top: 50%;
    width: 0;
    height: 1px;
    right: -40px;
    border-left: 40px solid #fff;
    border-right: 40px solid rgb(204, 176, 47);
    content: "";
}
@media all and (max-width: 896px) {
    .comBox {
        margin: 0 10px;
        width: auto;
    }
    .comBtn01 a {
        width: 85%;
        max-width: 350px;
        font-size: 1.7rem;
        height: 70px;
    }
    .comBtn01 a:after {
        right: -20px;
        border-left: 20px solid #fff;
        border-right: 20px solid rgb(204, 176, 47);
    }
}
.fadeIn {
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transition: .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transition: .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -moz-transition: .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -ms-transition: .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition: .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.fadeIn.on {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
.dely01 {
    transition-delay: .3s !important;
}
.dely02 {
    transition-delay: .6s !important;
}
