@charset "Shift_JIS";
/* --------------------------------------------------------------------
	size chart
-------------------------------------------------------------------- */
.size_chart_outer {
	text-align: right;
	width: 99%;
}
#btn_size_chart_modal {
	cursor: pointer;
	color: #333333;
	text-decoration: underline;
}
#btn_size_chart_modal:hover {
  text-decoration: none;
}
#size_chart {
	display: none;
	width: 1000px;
	height: 500px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -250px;
	margin-left: -500px;
	z-index:1100;
}
#size_chart * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#size_chart_close {
	position: absolute;
	display: block;
	width: 50px;
	height: 0;
	padding-top: 50px;
	text-indent: -9999px;
	overflow: hidden;
	background: url(../img/usr/size_chart/close.png) no-repeat;
	top: -15px;
	right: -15px;
	cursor: pointer;
}
#size_chart .container_ {
	background-color: #ffffff;
	padding: 30px;
	height: 100%;
}
#size_chart_tab {
	position: relative;
	display: table;
	margin: 0 auto 25px;
}
#size_chart_tab:after {
	content:"";
	display: block;
	position: absolute;
	width: 100%;
	border-bottom: 1px solid #b68400;
	bottom: 0;
	left: 0;
	z-index: 1;
}
#size_chart_tab li {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	height: 50px;
	font-size: 14px;
	text-align: center;
	padding: 0 15px;
	z-index:2;
	cursor: pointer;
}
#size_chart_tab li.active_ {
	color: #b68400;
	border-top: 1px solid #b68400;
	border-right: 1px solid #b68400;
	border-bottom: 1px solid #ffffff;
	border-left: 1px solid #b68400;
	padding: 0 14px;
}
#size_chart_content {
	background-color: #ffffff;
	height: 365px;
}
#size_chart_content li {
	height: 100%;
	display: none;
}
#size_chart_content li .inner_ {
	display: table;
	width: 100%;
	height: 100%;
	position: relative;
}
#size_chart_content li .inner_ .content_ {
	display: table-cell;
	text-align: center;
	vertical-align:middle;
	width: 100%;
}
#size_chart_content li .inner_ .content_ .ttl_ {
	font-size: 22px;
	color: #a88313;
	position: absolute;
	top: 0;
	left: 20px;
}
#size_chart_overlay{
  position: fixed;
	z-index:1000; 
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
	opacity: 0.7;
  display: none;
}
