@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;}
.row{flex-direction: column-reverse;flex-direction: row-reverse;}


@media(max-width:768px) {
	.sp_none {
		display: none !important;
	}
}
@media(min-width:769px) {
	.pc_none {
		display: none !important;
	}
}

/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    max-width: 1300px;
    width: 96%;
    margin: 0 auto;
    }
@media all and (max-width: 896px) {
    .content {
        width: 96%;
        margin: 0 auto;
        }
    }
/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comlink {
	max-width: 320px;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    }
.comlink.cen {margin:40px auto 0;}
.comlink a {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 8px;
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #fff;
    background:#18ac38;
    position: relative;
    transition: 0.7s;
    }
.comlink a::after{
    position: absolute;
    content: "";
    background: #fff;
    z-index: 1;
    width: 30px;
    height: 1px;
    top: 50%;
    right: 0;
    }
@media all and (min-width: 769px) {
.comlink a:hover{background: #f6853d;}
}
@media all and (max-width: 896px) {
.comlink {
	max-width: 100%;
    width: 100%;
    margin-top: 20px;
    }
.comlink.cen {margin:20px auto 0;}
.comlink a {
    width: 100%;
    padding: 10px 10px;
    font-size: 1.6rem;
    letter-spacing:0;
    }
}


/*------------------------------------------------------------
	over_effect
------------------------------------------------------------*/
.over_effect {width: 100%;overflow: hidden;}
.over_effect a {text-decoration: none;}
.over_effect img{transition: 0.7s;}
@media all and (min-width: 769px) {
.over_effect a:hover img {
	display: block;
	transform: scale(1.1, 1.1);
	transition-duration: 0.8s;
	}
}