@charset "utf-8";

/*============================
共通
============================*/

main {
	margin-bottom: 70px;
}

.panel_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.panel_list li.panel_list_item {
	width: 470px;
	border: 2px solid #1291D1;
	border-radius: 16px;
	margin-bottom: 40px;
	transition: all .3s;
	position: relative;
}

.panel_list li.panel_list_item:hover {
	box-shadow: 0 0 14px 8px rgba(0, 109, 218, 0.1);
}

.panel_list li.panel_list_item:before {
	content: "\f054";
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	font-size: 1.7rem;
	color: #1A9EE1;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	transition: all .3s;
}

.panel_list li.panel_list_item:hover:before {
	right: 20px;
}

.panel_list li.panel_list_item .inner {
	display: flex;
	padding: 30px;
}

.panel_list li.panel_list_item .inner figure {
	width: 90px;
	height: 90px;
}

.panel_list li.panel_list_item .inner div:nth-child(2) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	margin-left: 15px;
}

.panel_list li.panel_list_item .inner h2 {
	font-size: 2rem;
	color: #1291D1;
	font-weight: bold;
}

.panel_list .link_list {
	margin-top: 20px;
}

.panel_list .link_list li {
	padding-left: 22px;
	margin-bottom: 14px;
	position: relative;
}

.panel_list .link_list li:last-child {
	margin-bottom: 0;
}

.panel_list .link_list li:before {
	position: absolute;
	top: 2px;
	left: 0;
	font-family: "Font Awesome 6 Free";
	content: '\f138';
	font-weight: 900;
	font-size: 1.6rem;
	color: #1291D1;
}

.panel_list .link_list li a {
	font-size: 1.6rem;
	border-bottom: 1px solid #35434D;
	line-height: 1.5;
}

.panel_list .link_list li a:hover {
	border-bottom: 1px solid #1291D1;
}

@media only screen and (max-width: 768px) {

	/*============================
	共通
	============================*/

	main {
		margin-bottom: 43px;
	}

	.panel_list li.panel_list_item {
		width: 470px;
		border: 2px solid #1291D1;
		border-radius: 16px;
		margin-bottom: 27px;
	}

	.panel_list li.panel_list_item .inner {
		padding: 25px 30px 25px 20px;
	}

	.panel_list li.panel_list_item .inner:before {
		font-size: 1.5rem;
		right: 20px;
	}

	.panel_list li.panel_list_item .inner div:nth-child(2) {
		margin-left: 12px;
		padding-right: 5px;
	}

	.panel_list li.panel_list_item .inner figure {
		width: 60px;
		height: 60px;
	}

	.panel_list .link_list {
		margin-top: 12px;
	}

	.panel_list .link_list li a {
		font-size: 1.5rem;
	}

	.panel_list li.panel_list_item:before {
		right: 15px
	}

}