@charset "utf-8";
/* CSS Document */

/* 4カラム */
*, *:before, *:after {
	box-sizing: border-box;
}
.col_4{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
color: #FFF; /* 文字の色 */
text-align: center; /* 内容は中央配置 */
justify-content: center;
}
.col_4 > div{
	width: 25%;
	padding: 2px;
}
@media screen and (max-width: 1000px) {
	.col_4 > div{
		width: 100%;
	}
}

.col_1{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
color: #FFF; /* 文字の色 */
text-align: center; /* 内容は中央配置 */
justify-content: center;
}
.col_1 > div{
	width: 50%;
	padding: 2px;
}

@media screen and (max-width: 1000px) {
	.col_1 > div{
		width: 100%;
	}
}



.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
color: #FFF; /* 文字の色 */
text-align: center; /* 内容は中央配置 */
justify-content: center;
}
.col_2 > div{
	width: 50%;
	padding: 2px;
}

@media screen and (max-width: 1000px) {
	.col_2 > div{
		width: 100%;
	}
}