@charset "utf-8";

#itemInfo > h2 {
	text-align: center;
}

#itemInfo > .detailTxt > strong {
	display: block;
	color: #ff0000;
	margin-top: 40px;
}

#itemInfo > .detailTxt > div {
	font-weight: bold;
	color: #ff0000;
	margin-bottom: 10px;
}

#itemInfo > .detailTxt > ul {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 15px;
	padding: 0;
	border-top: 2px solid #666666;
}

#itemInfo > .detailTxt > ul > li {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding-left: 10px;
	padding-right: 10px;
	border-bottom: 1px solid #999999;
	display: block;
	box-sizing: border-box;
}

#itemInfo > .detailTxt > ul > li > a {
	width: 100%;
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
	position: relative;
	overflow: hidden;
}

#itemInfo > .detailTxt > ul > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	background-color: #c12334;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
}

#itemInfo > .detailTxt > ul > li > a:hover::after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}