@charset "utf-8";
/*===========================
add
===========================*/

/* 基本カラー  */

/* color:var(--basic-color); で利用 */
:root {
	--basic-color:#1d2a7c;
}


/*===========================
font
===========================*/
.fw-b{font-weight: bold;}

/*===========================
title-af-none
===========================*/
.title-af-none{
	text-shadow: none;
}
.title-af-none:after{
	content: none;
}

/*===========================
box01
===========================*/
.box01{
	justify-content: flex-start;
}

@media screen and (min-width: 769px) {
	.box01 .f-item1-3{
		margin-right: 3.5%;
	}

	.box01 .f-item1-3:nth-child(3n){
		margin-right: 0 !important;
	}
}

@media screen and (min-width: 601px) and (max-width: 768px) {
	.box01 .f-item1-3{
		width: 48%;
		margin-right: 4%;
	}

	.box01 .f-item1-3:nth-child(even){
		margin-right: 0 !important;
	}
}