.note_num{
	display: block;
	padding-left: 25px;
	font-size: 14px;
}
.product_img_box{
	justify-content: flex-start;
	padding-top: 0px;
}
.setup_option{
	display: flex;
	flex-direction: column;
	gap: 35px;
}
.order_content{
	width: 880px;
	margin: 0px auto;
	padding: 95px 0px;
	display: flex;
	gap: 80px;
	flex-direction: column;
}

ul.product_list{
	display: flex;
	justify-content: center;
	gap: 80px;
}
ul.product_list li h2{
	color: #004BB1;
	text-align: center;
	font-family: "Noto Sans CJK JP";
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
}
ul.product_list li p.product_desc{
	color: #004BB1;
	text-align: center;
	font-family: "Noto Sans CJK JP";
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	height: 54px;
}
ul.product_list li a{
	border-radius: 15px;
	background: #FFF;
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.20);
	display: flex;
	width: 400px;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

ul.product_list li a:hover{
	opacity: 0.7;
}

ul.product_list li img{
	width: 100%;
}

ul.product_list li .order_btn{
	border-radius: 30px;
	background: #004BB1;
	color: #fff;
	text-align: center;
	font-family: "Noto Sans CJK JP";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width: 240px;
	padding: 10px 15px;
}

@media (max-width: 900px) {
	ul.product_list li h2,ul.product_list li p.product_desc{
		font-size: 22px;
	}
	ul.product_list li a{
		width: 320px;
	}
	.order_content{
		max-width: 100%;
		padding: 95px 15px;
		align-items: center;
	}
	ul.product_list{
		flex-direction: column;
		align-items: center;
	}
}