@charset 'utf-8';


/* readTxt
-------------------------------------------------- */
.readTxt {
	font-size: 24px;
}


/* twoColumnType1
-------------------------------------------------- */

@media screen and (min-width: 980px) , print {
	.twoColumnsType {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.twoColumnsType .column {
		margin-right: 0;
		flex: 3;
	}
	.twoColumnsType .columnEnd {
		margin-left: 20px;
		flex: 1;
	}
}

@media screen and (max-width: 979px) {
	.twoColumnsType {
		display: flex;
		flex-wrap: wrap;
	}
	.twoColumnsType .column {
		order: 2;
		width: 100%;
	}
	.twoColumnsType .columnEnd {
		order: 1;
		text-align: center;
	}
}
