@charset "utf-8";

/* ===== コラム一覧ページ ===== */
.column_item {
	display: flex;
	margin-bottom: 0.75rem;
	padding: 1rem;
	background-color: #EEEFEC;
	border-radius: 0.5rem;
}
.column_item .photo {
	width: 45%;
}
.column_item .photo img {
	width: calc(100% - 1rem);
	height: 100%;
	border-radius: 0.5rem;
	object-fit: cover;
}

.column_item .text {
	width: 55%;
	color: #333;
}
.column_item .text h3 {
	margin-bottom: 1rem;
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.2;
}

.column_item .text p {
	margin-bottom: 1rem;
	font-size: 0.875rem;
	line-height: 1.4;
}

.column_item .text .more {
	text-align: right;
}

.column_item .text .more span {
	display: inline-block;
	padding: 0.25rem 1.75rem;
	border: solid 1px #CCC;
	border-radius: 2rem;
}

@media only screen and (min-width:960px){
	.column_item .photo {
		width: 35%;
	}
	.column_item .text {
		width: 65%;
		color: #333;
	}
	.column_item .text h3 {
		font-size: 1.375rem;
	}
}

/* ===== コラム詳細ページ ===== */
.content_column {
	padding: 1rem;
	background-color: #EEEFEC;
	border-radius: 0.75rem;
}

.content_column .header {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
}

.content_column .date {
	text-align: center;
}
.content_column .date span {
	display: inline-block;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	font-size: 0.75rem;
	border-bottom: solid 2px #337db6;
}

.content_column .lead {
	margin-bottom: 2rem;
	font-size: 1rem;
}

.content_column h3 {
	margin-bottom: 0.5rem;
	padding: 0.75rem 1.25rem;
	color: #337db6;
	font-size: 1.25rem;
	line-height: 1.2;
	background-color: #CCC;
	border-radius: 0.5rem;
}

.content_column .body {
	margin-bottom: 1.25rem;
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	line-height: 1.8;
	background-color: #CCC;
	border-radius: 0.5rem;
}
.content_column .body p {
	margin-bottom: 1.25rem;
}
.content_column .body p:last-child {
	margin-bottom: 0;
}

.content_column .photo {
	margin-bottom: 1.25rem;
}
.content_column .photo:last-child {
	margin-bottom: 0;
}

.content_column .photo img {
	margin-bottom: 1rem;
	width: 100%;;
	border-radius: 0.5rem;
}
.content_column .photo img:last-child {
	margin-bottom: 0;
}
.content_column .photo p {
	font-size: 0.75rem;
}

@media only screen and (min-width:960px){
.content_column {
	padding: 1.5rem;
}
.content_column .header {
	font-size: 2rem;
}
.content_column h3 {
	font-size: 1.75rem;
}
	}

/* コラムのナビゲーション */
.nav_column {
	margin-top: 1.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.nav_column a {
	display: inline-block;
	padding: 0.5rem 2rem;
	color: #FFF;
	font-size: 1rem;
	background-color: #91afb7;
	border-radius: 2rem;
}
