@charset "utf-8";

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

-------------------------------------------
見出し
********************************************/

/* 青字見出し
========================================== */

.tit_blue {
	font-size: 33px;
	font-weight: 500;
	color: #0e357f;
	margin-top: 140px;
	line-height: 1.6;
}
.tit_blue + p {
	margin-top: 30px;
}
@media only screen and (max-width: 767px) {
	.tit_blue {
		font-size: 24px;
		margin-top: 60px;
	}
	.tit_blue + p {
		margin-top: 20px;
	}
}

/* 下線付き見出し
========================================== */

.tit_undL {
	margin-top: 90px;
	line-height: 1.6;
}
.tit_undL span {
	font-size: 26px;
	font-weight: 500;
	color: #0e357f;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 20px;
}
.tit_undL + p {
	margin-top: 40px;
}
@media only screen and (max-width: 767px) {
	.tit_undL {
		margin-top: 40px;
	}
	.tit_undL span {
		font-size: 22px;
		text-underline-offset: 10px;
	}
	.tit_undL + p {
		margin-top: 30px;
	}
}

/* センタリング見出し（短い下線装飾付き）
========================================== */

.tit_center {
	margin-top: 130px;
	line-height: 1.6;
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	color: #0e357f;
	position: relative;
	padding-bottom: 25px;
}
.tit_center::after {
	content: "";
	width: 70px;
	height: 1px;
	background-color: #0e357f;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.tit_center + p {
	margin-top: 40px;
}
@media only screen and (max-width: 767px) {
	.tit_center {
		margin-top: 50px;
		font-size: 22px;
	}
	.tit_center + p {
		margin-top: 30px;
	}
}

/* 水色背景見出し
========================================== */

.tit_lblue {
	margin-top: 70px;
	line-height: 1.6;
}
.tit_lblue span {
	display: inline-block;
	background-color: #e4eef5;
	border-radius: 50vh;
	color: #0e357f;
	font-weight: 500;
	font-size: 23px;
	min-width: 160px;
	text-align: center;
	padding: 5px 30px 7px;
}
@media only screen and (max-width: 767px) {
	.tit_lblue {
		margin-top: 50px;
		text-align: center;
	}
	.tit_lblue span {
		font-size: 18px;
	}
}

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

-------------------------------------------
ボタン
********************************************/

/* MORE & BACK
========================================== */

.btn_more,
.btn_back {
	display: inline-flex;
	align-items: center;
	min-width: 280px;
	min-height: 70px;
	color: #0e357f;
	background-color: #fff;
	border: 1px solid #cacaca;
	border-radius: 4px;
	padding: 15px 115px 15px 20px;
	position: relative;
}
.btn_back {
	padding: 15px 20px 15px 115px;
	text-align: right;
	justify-content: flex-end;
}
.btn_more:hover,
.btn_back:hover {
	opacity: 1;
	background-color: #f3f5f8;
}
.btn_more span.arrow,
.btn_back span.arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 42px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background-color: #eaeef7;
	border-radius: 2px;
	overflow: hidden;
}
.btn_back span.arrow {
	right: auto;
	left: 15px;
}
.btn_more span.arrow::before,
.btn_back span.arrow::before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 100%;
	left: 0;
	background-color: #5591c8;
	transition-duration: .3s;
}
.btn_more:hover span::before,
.btn_back:hover span::before {
	width: 100%;
}
.btn_more span.arrow::after,
.btn_back span.arrow::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("../img/common/arrow_blue.svg") center / cover no-repeat;
	width: 12px;
	height: 17px;
}
.btn_back span.arrow::after {
	transform: translate(-50%,-50%) rotate(180deg);
}
.btn_more:hover span::after,
.btn_back:hover span::after {
	background-image: url("../img/common/arrow_white.svg");
}
@media only screen and (max-width: 767px) {
	.btn_more,
	.btn_back {
		min-width: 200px;
		min-height: 50px;
		padding: 10px 75px 10px 15px;
		font-size: 14px;
	}
	.btn_back {
		padding: 10px 15px 10px 75px;
	}
	.btn_more span.arrow,
	.btn_back span.arrow {
		width: 54px;
		height: 30px;
	}
	.btn_more span.arrow::after,
	.btn_back span.arrow::after {
		width: 8px;
		height: 12px;
	}
}

/* 青ボタン
========================================== */

.btn_blue {
	display: inline-flex;
	align-items: center;
	min-width: 400px;
	min-height: 70px;
	color: #fff!important;
	background-color: #0e357f;
	border-radius: 4px;
	padding: 15px 45px 15px 20px;
	position: relative;
}
.btn_blue:hover {
	opacity: 1;
	background-color: #5591c8;
}
.btn_blue::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: url("../img/common/ic_link_white.svg") center / cover no-repeat;
	width: 16px;
	height: 16px;
}
@media only screen and (max-width: 767px) {
	.btn_blue {
		min-width: 0;
		width: 80%;
		max-width: 400px;
		min-height: 50px;
		padding: 10px 45px 10px 20px;
		line-height: 1.4;
	}
}

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

-------------------------------------------
リスト
********************************************/

/* 数字付きリスト
========================================== */

.list_number {
	counter-reset: number;
	margin-top: 50px;
}
.list_number > li {
	position: relative;
	padding-left: 50px;
	margin-top: 40px;
}
.list_number > li::before {
	content: counter(number);
	counter-increment: number;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #0e357f;
	font-size: 19px;
	font-weight: 500;
	position: absolute;
	top: 3px;
	left: 0;
	width: 28px;
	height: 28px;
	border-radius: 4px;
	background-color: #e4eef5;
}
@media only screen and (max-width: 767px) {
	.list_number {
		margin-top: 40px;
	}
	.list_number > li {
		margin-top: 30px;
	}
}

/* カッコ＋数字付きリスト
========================================== */

.list_kakko {
	counter-reset: number;
	margin-top: 10px;
}
.list_kakko > li {
	position: relative;
	padding-left: 40px;
	margin-top: 5px;
}
.list_kakko > li::before {
	content: "（"counter(number)"）";
	counter-increment: number;
	display: flex;
	align-items: center;
	position: absolute;
	top: 3px;
	left: 0;
	width: 40px;
	height: 28px;
}

/* 中黒リスト
========================================== */

.list_dot {
}
.list_dot > li {
	position: relative;
	padding-left: 20px;
}
.list_dot > li::before {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	left: 5px;
	width: 4px;
	height: 4px;
	background-color: #000;
	border-radius: 50%;
}
.list_dot > li.txtOrabge::before {
	background-color: #f7931e;
}

/* GWO用 */
@media only screen and (min-width: 768px) {
	main.gwo .divide .box .list_dot > li::before {
		top: 17px;
	}
}

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

-------------------------------------------
アニメーション
********************************************/

/* ふわっと表示
========================================== */

.fadein {
    opacity: 0;
    transition: all 2s;
}
.fadein.scrollin {
    opacity: 1;
}

/* 下からスクロールイン */
.fadein-up {
    opacity: 0;
    transform: translate(0,50px);
    transition: all 1s;
}
.fadein-up.scrollin {
    opacity: 1;
    transform: translate(0,0);
}

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

-------------------------------------------
スマホ時スクロール
********************************************/

@media only screen and (max-width: 767px) {
	.spScroll {
		overflow-x: auto;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
    }
    .spScroll::-webkit-scrollbar{height:5px;}
    .spScroll::-webkit-scrollbar-track{background:#F1F1F1;}
	.spScroll::-webkit-scrollbar-thumb {background:#BCBCBC;}
}

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

-------------------------------------------
事業紹介メニュー（HOME＆事業紹介TOP)
********************************************/

main ul.biz_menu-pic {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
main ul.biz_menu-pic > li {
}
main ul.biz_menu-pic > li a {
	display: block;
	width: 390px;
	height: 390px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	color: #fff;
	line-height: 1.4;
}
main ul.biz_menu-pic > li a:hover {
	opacity: 1;
}
main ul.biz_menu-pic > li a img {
	transition: transform .6s ease;
}
main ul.biz_menu-pic > li a:hover img {
	transform: scale(1.1);
	opacity: 0.8;
}
main ul.biz_menu-pic > li a .biz_ex {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 160px;
	padding: 0 55px 20px 20px;
}
main ul.biz_menu-pic > li a .biz_ex p {
	font-weight: 500;
}
main ul.biz_menu-pic > li a .biz_ex p:first-of-type {
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.6;
}
main ul.biz_menu-pic > li a .biz_ex ul {
}
main ul.biz_menu-pic > li a .biz_ex ul li {
	font-weight: 500;
	padding-left: 10px;
	position: relative;
}
main ul.biz_menu-pic > li a .biz_ex ul li + li {
	margin-top: 5px;
}
main ul.biz_menu-pic > li a .biz_ex ul li::before {
	content: "・";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
main ul.biz_menu-pic > li a span.arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 43px;
	position: absolute;
	bottom: 12px;
	right: 15px;
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
}
main ul.biz_menu-pic > li a span.arrow::before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 100%;
	left: 0;
	background-color: #5591c8;
	transition-duration: .3s;
}
main ul.biz_menu-pic > li a:hover span.arrow::before {
	width: 100%;
}
main ul.biz_menu-pic > li a span.arrow::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("../img/common/arrow_blue.svg") center / cover no-repeat;
	width: 12px;
	height: 17px;
}
main ul.biz_menu-pic > li a:hover span.arrow::after {
	background-image: url("../img/common/arrow_white.svg");
}
@media only screen and (max-width: 767px) {
	main ul.biz_menu-pic {
		justify-content: center;
	}
	main ul.biz_menu-pic > li a {
		width: 100%;
		height: 230px;
	}
	main ul.biz_menu-pic > li a::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.2);
	}
	main ul.biz_menu-pic > li a img {
		width: 100%;
		object-fit: cover;
		object-position: center;
	}
	main ul.biz_menu-pic > li a .biz_ex {
		min-height: 0;
		bottom: auto;
		top: 50%;
		transform: translateY(-50%);
		padding: 0 20px 0 20px;
		font-size: 14px;
	}
	main ul.biz_menu-pic > li a .biz_ex p:first-of-type {
		font-size: 20px;
		margin-bottom: 10px;
	}
	main ul.biz_menu-pic > li a .biz_ex ul {
		padding-right: 40px;
	}
	main ul.biz_menu-pic > li a span.arrow {
		width: 40px;
		height: 30px;
	}
	main ul.biz_menu-pic > li a span.arrow::after {
		width: 8px;
		height: 12px;
	}
}