.policy {
	padding: 100px 0;
	background: #f5f8ff;
}

.policy_message {
	max-width: 800px;
	margin: 0 auto;
}

.policy_title {
	font-size: 42px;
	line-height: 1.5;
	margin-bottom: 30px;
	color: #1d4598;
}

.policy_item {
	display: flex;
	gap: 40px;
	padding: 40px;
	background: #fff;
	border-radius: 20px;
	margin-bottom: 30px;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, .05);
}

.policy_icon {
	width: 100px;
	flex-shrink: 0;
}

.policy_icon img {
	width: 100%;
}

.policy_num {
	font-size: 14px;
	font-weight: bold;
	color: #1d4598;
	letter-spacing: .2em;
}

.policy_content h3 {
	font-size: 30px;
	margin: 10px 0 20px;
	border-left: none;
	padding-left: 0px;
	color: #1d4598;
}
.policy_content h4 {
	font-size: 17px;
}
.policy_content p {
	line-height: 2;
}

.gallery {
	padding-top: 0;
}

.gallery_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 50px;
}

@media screen and (max-width:768px) {
	.policy_item {
		display: block;
	}

	.gallery_list {
		grid-template-columns: repeat(2, 1fr);
	}
}