@charset "UTF-8";
/* CSS Document */

* {
	box-sizing: border-box;
}


.pc { display: block; }
.sp { display: none; }

#product {
	width: 90%;
	max-width: 1000px;
	margin: 50px auto 0;
	height: 500px;
	transition: 0.3s;
}

.main_box {
	display: flex;
	flex-wrap: wrap;
	height: 500px;
}


.product_image {
	width: 40%;
	padding: 0 50px;
	display: flex;
	justify-content: center;
}

.product_about {
	width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
}

.type {
    color: #fff;
	background: #333;
    /*border: 1px #aaa solid;*/
    font-size: 13px;
    width: fit-content;
    text-align: center;
    padding: 5px 15px;
    letter-spacing: 2px;
	margin-bottom: 10px;
}

.name {
    font-size: 25px;
}

.name span {
	font-size: 13px;
	letter-spacing: 2px;
	color: #333;
}

ul.price {
	list-style: none;
	padding: 0;
}

ul.price li {
	display: flex;
	justify-content: space-between;
	padding: 15px 10px 5px;
	border-bottom: 1px #eee solid;
}

.price1,.price2 {
	margin: 0;
	font-size: 15px;
	color: #333;
	letter-spacing: 1px;
}

.price1 span,.price2 span {
	font-size: 11px;
	padding-left: 3px;
}

.p_text {
	font-size: 14px;
	color: #333;
	text-align: justify;
	padding: 10px;
	letter-spacing: 0.3px;
	line-height: 22px;
}

.p_text sup {
	font-size: 10px;
	padding: 0 1.5px;
	vertical-align: baseline;
}

.tyusyaku {
	font-size: 10px;
	color: #aaa;
	text-align: justify;
	padding: 20px 10px;
}

.goexm { 
	padding: 5px 0 0;
	margin: 0 auto;
	text-align: center;
}




#item_area {
	width: 90%;
	max-width: 1000px;
	margin: 50px auto 100px;
	display: flex;
	flex-wrap: wrap;
	transition: 0.3s;
}

.item_list {
	width: calc(100%/5);
	display: flex;
	flex-direction: column;
}

.item_list:hover {
	transform: scale(1.1);
	transition: 1s;
}

.list_image {
	padding: 20px;
	border: 1px #eee solid;
	margin: 10px;
}

.product_btn {
    text-align: center;
    font-size: 13px;
    color: #333;
    font-weight: 400;
    padding: 5px 0;
}


#item_list_pc { display: block; }
#item_list_sp { display: none; }


/* ------------------ タブレット ------------------ */

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

/* ----- item box ----- */
	
}




/* ------------------ スマホ ------------------ */

@media screen and (max-width:767px) {
	
	.pc { display: none; }
	.sp { display: block; }
	
	
	#product {
		width: 90%;
		max-width: 1000px;
		margin: 50px auto 0;
		height: auto;
	}

	.main_box {
		display: flex;
		flex-wrap: wrap;
		height: auto;
	}


	.product_image {
		width: 80%;
		padding: 0 50px;
		margin: 0 auto;
	}

	.product_about {
		width: 95%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 50px 0;
	}
	
	.type {
		margin: 0 0 0 10px;
	}
	
	.name {
		text-align: left;
		padding: 15px 10px;
	}

	ul.price {

	}

	ul.price li {
		padding: 5px 10px;
		border-bottom: 1px #eee solid;
	}

	.price1,.price2 {
		margin: 0;
		font-size: 13px;
		color: #333;
	}

	.p_text {
		font-size: 14px;
		color: #333;
		text-align: justify;
		padding: 10px;
		/*letter-spacing: 1px;*/
	}

	.tyusyaku {
		font-size: 10px;
		text-align: justify;
		padding-top: 20px;
	}

	
	
	#item_area {
		width: 90%;
		margin: 0 auto 50px;
	}

	.item_list {
		width: calc(100%/3);

	}

	.item_list:hover {
		transform: scale(1.0);
		transition: 1s;
	}

	.list_image {
		padding: 10px;
		margin: 5px;
	}

	.product_btn {

	}
	
	#item_list_pc { display: none; }
	#item_list_sp { display: block; padding-top: 20px; }

} 