@charset "utf-8";

/*subpage__greeting*/
.subpage__greeting{
	padding: 0;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.subpage__greeting-pretitle{
	font-size: 16px;
}
.subpage__greeting-title{
	margin-top: 10px;
	font-size: 18px;
}

@media (min-width: 1200px){
	.subpage__greeting{
		padding: 0;
	}
	.subpage__greeting-pretitle{
		font-size: 24px;
	}
	.subpage__greeting-title{
		font-size: 28px;
	}
}

/*product*/
.product{
    width: 90%;
    margin: 50px auto 100px;
}

@media (min-width: 1200px){
	.product{
		margin: 100px auto;
	}
}

/*product__contents*/
.product__pretitle{
	padding: 10px;
	border-top: 1px solid #0640cb;
	font-weight: bold;
    font-size: 14px;
}

.product__contents{
	display: flex;
	flex-direction: column;
}

.subpage__contents-title span{
	font-size: 12px;
}

@media (min-width: 768px){

	.product__contents{
		flex-direction: row;
		column-gap: 40px;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.product__wrap{
		width: 47%;
	}
}


@media (min-width: 1200px){
	.product__contents{
		max-width: 1200px;
		margin: 90px auto;
	}
	.product__wrap{
		width: 45%;
	}
	.product__pretitle{
		font-size: 15px;
	}
}

/*product__list*/
.product__list{
	margin: 30px 40px;
}
.product__list li{
	list-style-type: disc;
	list-style-position: outside;
	margin-top: 10px;
}

