@charset "utf-8";

/*******************************************

-------------------------------------------
共通パーツ
********************************************/

/* h2見出し
========================================== */

main h2 {
	font-size: 91px;
	font-weight: 500;
	color: #0e357f;
	line-height: 1.2;
}
main h2 span {
	display: block;
	font-size: 23px;
	font-weight: 500;
	color: #5591c8;
	margin-top: 15px;
}
main h2 + p {
	color: #000;
	font-weight: 300;
	margin-top: 50px;
}
@media only screen and (max-width: 767px) {
	main h2 {
		font-size: 48px;
	}
	main h2 span {
		font-size: 18px;
		margin-top: 5px;
	}
	main h2 + p {
		font-size: 15px;
		margin-top: 20px;
	}
}

/*******************************************

-------------------------------------------
企業情報
********************************************/

main #company {
	background: url("../img/home/bg_company.jpg") center / cover no-repeat;
	height: 900px;
	padding-top: 80px;
}
main #company .company_menu {
	width: 100%;
	max-width: 550px;
	text-align: right;
	margin-top: 40px;
}
main #company .company_menu ul {
	border-top: 1px solid #7e8dac;
}
main #company .company_menu ul li {
	border-bottom: 1px solid #7e8dac;
}
main #company .company_menu ul li a {
	display: flex;
	align-items: center;
	line-height: 1.4;
	color: #253873;
	min-height: 68px;
	padding: 10px 30px 10px 5px;
	font-size: 19px;
	position: relative;
}
main #company .company_menu ul li a:hover {
	color: #5591c8;
	opacity: 1;
}
main #company .company_menu ul li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	background: url("../img/common/arrow_blue.svg") center / cover no-repeat;
	width: 12px;
	height: 17px;
	transition: all 0.15s linear;
}
main #company .company_menu ul li a:hover::after {
	background-image: url("../img/common/arrow_lblue.svg");
}
@media only screen and (max-width: 767px) {
	main #company {
		height: auto;
		padding-top: 50px;
		padding-bottom: 50px;
	}
	main #company .company_menu ul {
		border-top: none;
	}
	main #company .company_menu ul li {
		border-bottom-color: #cacaca;
	}
	main #company .company_menu ul li:last-of-type {
		border-bottom: none;
	}
	main #company .company_menu ul li a {
		font-size: 16px;
		min-height: 60px;
		padding: 10px 30px 10px 15px;
		background-color: rgba(255,255,255,0.5);
	}
	main #company .company_menu ul li a::after {
		right: 15px;
		width: 8px;
		height: 12px;
	}
}

/*******************************************

-------------------------------------------
事業紹介
********************************************/

main #biz {
	padding-top: 80px;
	padding-bottom: 150px;
}
main #biz .wrap_biz {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 50px 0;
}
main #biz .wrap_biz ul.biz_menu-txt {
	width: 100%;
	max-width: 640px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 12px; 
}
main #biz .wrap_biz ul.biz_menu-txt li {
}
main #biz .wrap_biz ul.biz_menu-txt li a {
	display: flex;
	align-items: center;
	padding: 5px 30px 5px 10px;
	line-height: 1.4;
	background-color: #eaeef7;
	border-radius: 2px;
	color: #253873;
	min-height: 33px;
	min-width: 150px;
	position: relative;
}
main #biz .wrap_biz ul.biz_menu-txt li a:hover {
	opacity: 1;
	color: #5591c8;
}
main #biz .wrap_biz ul.biz_menu-txt li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	background: url("../img/common/arrow_blue.svg") center / cover no-repeat;
	width: 8px;
	height: 12px;
	transition: all 0.15s linear;
}
main #biz .wrap_biz ul.biz_menu-txt li a:hover::after {
	background-image: url("../img/common/arrow_lblue.svg");
}
@media only screen and (min-width: 768px) {
	main #biz .wrap_biz ul.biz_menu-txt {
		padding-right: 40px;
	}
	main #biz .wrap_biz ul.biz_menu-txt li:nth-of-type(3),
	main #biz .wrap_biz ul.biz_menu-txt li:nth-of-type(5) {
		width: 360px;
	}
	main #biz .wrap_biz ul.biz_menu-txt li:nth-of-type(4),
	main #biz .wrap_biz ul.biz_menu-txt li:nth-of-type(6) {
		width: calc(100% - 360px - 12px);
	}
	main #biz .wrap_biz ul.biz_menu-txt li:nth-of-type(7) {
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	main #biz {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	main #biz .wrap_biz {
		gap: 30px 0;
	}
	main #biz .wrap_biz ul.biz_menu-txt {
		gap: 10px;
	}
}
@media only screen and (max-width: 500px) {
	main #biz .wrap_biz ul.biz_menu-txt li {
		width: 100%;
	}
}