@charset "UTF-8";
/* CSS Document */

.lower_main_vi1{
	background: url(/company/asset/img/lower/main_vi/division_top_bg.jpg);
	background-size: cover;
	background-position: center;
}

.column.col2{
	padding: 36px 0px;
	border-bottom: solid 1px #ccc;
	align-items: stretch;
}
.column.col2:last-child{
	border-bottom: none;
}
.column.col2 .col{
	width: calc(100%/2 - 20px);
	display: flex;
	flex-direction: column; /* ← 上から下に並べる */
	justify-content: flex-start;
}
.column.col2 .col:hover{
	opacity: 1;
}
.column.col2 .col p.col_ttl{
	margin-bottom: 1.6rem;
    font-size: 2rem;
    font-style: normal;
	font-weight: 700;
	line-height: 30px; /* 150% */
	letter-spacing: 1px;
	color: #557DBE;
	position: relative;
	transition: 0.3s;
	padding-right: 20px;
}
.column.col2 .col p.col_ttl span{
	border-bottom: solid 1px #fff;
}
.column.col2 .col:hover p.col_ttl span{
	border-bottom: solid 1px #557DBE;
}
.column.col2 .col p.col_ttl::after{
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/common/arrow_icon.svg");
	background-size: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	opacity: 0;
	transform: translate(20px,6px);
	transition: 0.3s;
}
.column.col2 .col:hover p.col_ttl::after{
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/common/arrow_icon.svg");
	background-size: 100%;
	position: absolute;
	top: 0px;
	right: 0;
	transform: translate(0px,6px);
	opacity: 1;
}
.column.col2 .col img{
	margin-bottom: 0px;
}
.column.col2 .col .img{
	position: relative;
	transition: 0.3s;
}
.column.col2 .col:hover .img::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
}
.column.col2 .col p:not(.col_ttl) {
	margin-top: 8px; /* ← 必要に応じて調整 */
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.8px;
	text-align: left; /* 念のため */
}
@media only screen and (max-width: 1281px) {
	.column.col2:first-child .col:first-child p.col_ttl{
		height: 60px;
	}
}
@media only screen and (max-width: 1024px) {
	.column.col2:first-child .col:first-child p.col_ttl{
		height: auto;
	}
	.column.col2 .col p.col_ttl::after{
		opacity: 1;
		transform: translate(0px, 6px);
	}
	.column.col2 .col p.col_ttl span{
		border-bottom: none;
	}
}
@media only screen and (max-width: 911px) {
	.column.col2:first-child .col:first-child p.col_ttl{
		height: 60px;
	}
}
@media only screen and (max-width: 767px) {
	.column.col2:first-child .col:first-child p.col_ttl{
		height: auto;
	}
	.column.col2{
		display:block;
		padding: 0px;
	}
	.column.col2 .col{
		width: 100%;
		padding: 32px 0px;
		border-bottom: solid 1px #ccc;
	}
	.column.col2:last-child .col:last-child{
		border-bottom: none;
	}
	.column.col2 .col p.col_ttl{
		font-size: 1.6rem;
		position: relative;
		padding-right: 20px;
	}
	.column.col2 .col p.col_ttl::after{
		content: "";
		width: 20px;
		height: 20px;
		background: url("../img/common/arrow_icon.svg");
		background-size: 100%;
		position: absolute;
		top: 6px;
		right: 0;
	}
	.column.col2 .col p:not(.col_ttl){
		font-size: 1.4rem;
		font-weight: 400;
		line-height: 24px; /* 171.429% */
		letter-spacing: 0.7px;
	}
}