@charset "utf-8";

.blogFlex {
	display: flex;
	justify-content: space-between;
	padding-bottom: 50px;
}

.blogLeft {
	width: 70%;
}

.blogRight {
	width: 25%;
}

.rightTitle {
	color: #2460a5;
	border-bottom: 1px solid #2460a5;
	padding: 0 0 5px;
	margin-bottom: 10px;
	font-size: 2.0rem;
	font-weight: 600;
}

.catArea a {
	color: #333;
	text-decoration: none;
	transition: all,.3s;
}
.catArea a:hover {
	color: #2460a5;
	text-decoration: underline;
}

.newsFlex {
	display: flex;
	border-bottom: 1px solid #cccccc;
	padding: 0 0 10px;
}

.newsFlex .newsDay {
	flex-grow: 0;
	margin-right: 20px;
}

.newsFlex .newsText {
	flex-grow: 1;
}

.blogTitle {
	margin-bottom: 10px;
	color: #2460a5;
	font-size: 2.4rem;
	font-weight: 500;
}

.blogDay {
	text-align: right;
}

@media screen and (max-width: 767px){
	
	.blogFlex {
		display: block;
		padding-bottom: 30px;
	}

	.blogLeft {
		width: auto;
	}

	.blogRight {
		width: auto;
		margin-top: 30px;
	}
	
}
    
