/*-------------------------コラム 一覧*/
.column_item_wrap {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.column_item_wrap .column_item_wrap_inner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.column_item_wrap .column_item_wrap_inner .column_item {
	width: 48%;
	margin: 1%;
	border: 1px solid #e3e3e3;
	box-shadow: 0 5px 7px 0 rgba(0,0,0,0.2);
	background-color: #ffffff;
}
.column_item_wrap .column_item_wrap_inner .column_item > a {
	display: block;
	transition: .3s;
}
.column_item_wrap .column_item_wrap_inner .column_item > a:hover {
	opacity: .7;
}
.column_item_wrap .column_item_wrap_inner .column_item .imagebox {
	width: 100%;
	aspect-ratio: 4 / 3;
	position: relative;
}
.column_item_wrap .column_item_wrap_inner .column_item .imagebox img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: contain;
}
.column_item_wrap .column_item_wrap_inner .column_item .textbox {
	width: 100%;
	padding: 1em;
}


.column_item_wrap .column_item_wrap_inner .column_item .textbox .title {
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 0.6em;
	color: #ff7326;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.column_item_wrap .column_item_wrap_inner .column_item .textbox .tooltip {
	position: relative;
}
.column_item_wrap .column_item_wrap_inner .column_item .textbox .tooltip_text {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -103%;
	display: inline-block;
	padding: 5px;
	font-size: 11px;
	line-height: 1.4;
	background-color: #232323;
	color: #fff;
	border-radius: 3px;
	transition: .3s ease-in;
}
.column_item_wrap .column_item_wrap_inner .column_item .textbox .tooltip_text::before {
	content: '';
	position: absolute;
	top: -13px;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-bottom: 7px solid #333;
}
.column_item_wrap .column_item_wrap_inner .column_item .textbox .tooltip:hover .tooltip_text {
	opacity: 1;
	visibility: visible;
}
.column_item_wrap .column_item_wrap_inner .column_item .textbox .text {
	font-size: 1rem;
	line-height: 1.6;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.column_item_wrap .column_item_wrap_inner .column_item .button_more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	border-radius: 20px;
	margin: 1em auto 0.5em;
	background-color: #ff7326;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
}
@media screen and (max-width: 768px) {
	.column_item_wrap {
		padding: 0 20px;
	}
	.column_item_wrap .column_item_wrap_inner .column_item {
		width: 100%;
		margin: 3% 1%;
	}
	.column_item_wrap .column_item_wrap_inner .column_item .textbox {
		padding: 20px;
	}
	.column_item_wrap .column_item_wrap_inner .column_item .textbox .text {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 480px) {
	.column_item_wrap .column_item_wrap_inner .column_item .textbox .title {
		font-size: 1.4rem;
		-webkit-line-clamp: 2;
	}
	.column_item_wrap .column_item_wrap_inner .column_item .textbox .text {
		font-size: 1.4rem;
	}
	.column_item_wrap .column_item_wrap_inner .column_item .button_more {
		font-size: 1.4rem;
	}
}

/*-------------------------コラム詳細ページ*/
.column_container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.column_title {
	margin-bottom: 2em;
	padding-bottom: 0.4em;
	border-bottom: 1px solid #ff7326;
	color: #ff7326;
	font-weight: 700;
}
.column_title .title_sub {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 0.4em;
}
.column_title .title {
	font-size: 1.6rem;
}
.column_container .box {
	margin-bottom: 4em;
}
.column_container .box_title {
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.6;
	margin: 2em 0 1em;
}
.column_container .box_title span {
	position: relative;
	padding-bottom: 0.3em;
	display: inline;
	background:linear-gradient(transparent 96%, #888888 0%);
}
.column_container .box_title02 {
	font-weight: 700;
	font-size: 1.25rem;
	margin: 2em 0 0.5em;
}
.column_container .text {
	line-height: 2.2;
	margin: 1em 0;
}
.column_container .text700 {
	font-weight: 700;
}
.column_container .text_24 {
	font-size: 1.6rem;
}
.column_container .text_12 {
	font-size: 0.9rem;
}
.column_container .text_red {
	color: #ec0003;
}
.column_container .text_orange {
	color: #e78900;
}
.column_container .text_green {
	color: #00a905;
}
.column_container .text_gray {
	color: #868686;
}
.column_container .flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.column_container .col3 {
	width: 31.333%;
	margin: 1%;
}
.column_container .col2 {
	width: 48%;
	margin: 1%;
}
.column_container figure {
	margin: 1em auto;
}
.column_container figure img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.column_container .tbl01 {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 2em;
}
.column_container .tbl01 tr th {
	padding: 0.5em 1em;
	background-color: #f4f0e5;
	border: 1px solid #cccccc;
	text-align: center;
	font-weight: 700;
}
.column_container .tbl01 tr td {
	padding: 0.5em 1em;
	background-color: #ffffff;
	border: 1px solid #cccccc;
}
.column_contactbox {
	width: 100%;
	max-width: 840px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.column_contactbox .contact_btn {
	width: 100%;
	max-width: 260px;
	transition: .2s;
	position: relative;
}
.column_contactbox .contact_btn:not(:first-of-type) {
	margin-left: 10px;
}
.column_contactbox .contact_btn::after {
	content: "";
	display: block;
	width: 12px;
	height: 20px;
	background-image: url("../img/common/icn_arw-wr.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.column_contactbox .contact_btn:hover {
	opacity: .7;
}
.column_contactbox .contact_btn.contact_01 {
	background-color: #ff7326;
	box-shadow: 0 4px 0 #bc5113;
}
.column_contactbox .contact_btn.contact_02 {
	background-color: #ff7326;
	box-shadow: 0 4px 0 #bc5113;
}
.column_contactbox .contact_btn.contact_03 {
	background-color: #239c3f;
	box-shadow: 0 4px 0 #127228;
}
.column_contactbox .contact_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	height: 80px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	position: relative;
}
.btn_btm {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 260px;
	height: 60px;
	background-color: #ff7326;
	box-shadow: 0 4px 0 #bc5113;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 50px auto 0;
	position: relative;
	transition: .2s;
}
.btn_btm:hover {
	opacity: .7;
}
.btn_btm::after {
	content: "";
	display: block;
	width: 12px;
	height: 20px;
	background-image: url("../img/common/icn_arw-wl.svg");
	background-size: contain;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
	.column_container {
		padding: 0 5%;
	}
	.column_container .col3 {
		width: 100%;
		margin: 2% 0;
	}
	.column_container .col2 {
		width: 100%;
		margin: 2% 0;
	}
	.column_contactbox {
		flex-direction: column;
	}
	.column_contactbox .contact_btn {
		max-width: unset;
		margin-bottom: 20px;
	}
	.column_contactbox .contact_btn:not(:first-of-type) {
		margin-left: 0;
	}
	.column_contactbox .contact_btn a {
		font-size: 1.3rem;
	}
	.btn_btm {
		font-size: 1.3rem;
		margin: 40px auto 0;
	}
}
@media screen and (max-width: 480px) {
	.column_title .title_sub {
		font-size: 1.3rem;
	}
	.column_container .box_title {
		font-size: 1.5rem;
	}
	.column_container .box_title02 {
		font-size: 1.35rem;
		margin: 1.5em 0 0.5em;
	}
	.column_container .text {
		font-size: 1.2rem;
	}
	.column_container .tbl01 tr th {
		font-size: 1.2rem;
	}
	.column_container .tbl01 tr td {
		font-size: 1.2rem;
	}
}

/*ページネーション*/
.pagination{
	text-align: center;
  margin-top: 50px;
	line-height: 1;
}
.pagination .page-numbers {
	padding: 5px 10px;
	border: solid 1px #ff7326;
	color: #ff7326;
	background-color: #fff;
	font-weight: bold;
	margin: 0 1px;
}
.pagination .page-numbers.current {
	color: #fff;
	background-color: #ff7326;
}
.pagination a {
	transition: .2s;
}
.pagination a:hover {
	color: #fff;
	background-color: #ff7326;
}