@charset "UTF-8";

/* **************************************************

Name: sort.css

***************************************************** */
[class*="flexElement"] {
	display: -webkit-flex;
	display: flex;
  -webkit-flex-flow: row wrap;
  				flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  				justify-content: flex-start;
	margin-bottom: 0.5em;
}
@media screen and (min-width: 768px),print {
	.spOnly {
		display: none;
	}
	.flexElement2 > * {
		width: calc((100% - 15px) / 2);
	}
	.flexElement3 > * {
		width: calc((100% - 30px) / 3);
	}
/* IEでの小数点切り捨てが大きいため余分に余白を設定
	.flexElement4 > * {
		width: calc((100% - 45px) / 4);
	}
*/
	.flexElement4 > * {
		width: calc((100% - 46px) / 4);
	}

	.flexElement5 > * {
		width: calc((100% - 60px) / 5);
	}
	.flexElement6 > * {
		width: calc((100% - 75px) / 6);
	}
	[class*="flexElement"] > * {
		margin: 0 15px 1em 0;
	}
	[class*="flexElement"] > * > *:last-child {
		margin-bottom: 0;
	}
	.flexElement2 > *:nth-child(2n),
	.flexElement3 > *:nth-child(3n),
	.flexElement4 > *:nth-child(4n),
	.flexElement5 > *:nth-child(5n),
	.flexElement6 > *:nth-child(6n),
	.flexElement7 > *:nth-child(7n) {
		margin-right: 0;
	}
	.flexElement2 > li.aRight {
		width: calc((100% - -15px) / 2);
		margin-left: auto !important;
	}
}
.linkBoxWrap01 * {
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
}
.linkBoxWrap01 .categoryList {
	display: -webkit-flex;
	display: flex;
  -webkit-justify-content: flex-start;
  				justify-content: flex-start;
	-webkit-align-items: center;
					align-items: center;
	margin-bottom: 20px;
	background: #f2f2f2;
}
.linkBoxWrap01 .categoryList > dt {
	position:relative;
	min-width: 205px;
	padding: 15px;
	font-size: 112%;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	border-right: solid 1px #cacaca;
}
.linkBoxWrap01 .categoryList > dt:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	height: 0;
	width: 0;
	margin-left: -12px;
	border-top: solid 12px #f2f2f2;
	border-right: solid 12px transparent;
	border-bottom: solid 12px transparent;
	border-left: solid 12px transparent;
}
.linkBoxWrap01 .js-sortList {
	margin-bottom: -10px;
	letter-spacing: -.4em;
}
.linkBoxWrap01 .js-sortList > li {
	display: inline-block;
	margin: 0 0 10px 50px;
	letter-spacing: normal;
}
.linkBoxWrap01 .js-sortList > li label {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
}
@media screen and (min-width: 768px),print {
	.linkBoxWrap01 .js-sortList > li label:hover {
		color: #e60027;
	}
}
.linkBoxWrap01 .js-sortList > li input:checked + label {
	color: #e60027;
}
.linkBoxWrap01 .js-sortList > li label:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	height: 16px;
	width: 16px;
	margin-top: -11px;
	border: solid 2px #bfbfbf;
}
@media screen and (min-width: 768px),print {
	.linkBoxWrap01 .js-sortList > li label:hover:before {
		border: solid 2px #e60027;
	}
}
.linkBoxWrap01 .js-sortList > li input:checked + label:before {
	border: solid 2px #e60027;
}
.linkBoxWrap01 .js-sortList > li input:checked + label:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 3px;
	width: 14px;
	height: 10px;
	margin-top: -6px;
	background: url(/image/common/hht/sort/icon_sort_check.png) no-repeat 0 0;
}
.linkBoxWrap01 .js-sortList > li input {
	display: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
					appearance: none;
	border: none;
	background: none;
}
.linkBoxWrap01 .js-sortBox {
	min-height: 160px;
	/*opacity: 0;*/
}
.linkBoxWrap01 .js-sortBox.ready {
	min-height: 0;
	/*opacity: 1;
	-webkit-transition: opacity 0.5s ease-out 0s;
					transition: opacity 0.5s ease-out 0s;*/
}
.linkBoxWrap01 .sortItem {
	opacity: 0;
}
.linkBoxWrap01 .sortItem > a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	background: #ffffff;
}
@media screen and (min-width: 768px),print {
	.linkBoxWrap01 .sortItem > a:hover {
		opacity: 0.7;
	}
}
.linkBoxWrap01 .sortItem > a > .imageBox {
	margin: 0;
}
.linkBoxWrap01 .sortItem > a > .imageBox img {
	max-width: 100%;
	height: auto;
	opacity: 1;
}
.linkBoxWrap01 .sortItem > a > .textBox {
	position: relative;
	display: -webkit-flex;
	display: flex;
  -webkit-justify-content: flex-start;
  				justify-content: flex-start;
	-webkit-align-items: center;
					align-items: center;
	height: 45px;
	margin: 0;
	padding: 0 20px 0 10px;
	font-size: 87.5%;
	line-height: 1.2;
	background: #000000;
	overflow: hidden;
}
.linkBoxWrap01 .sortItem > a > .textBox:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 5px;
	height: 5px;
	margin-top: -3px;
	border-top: 2px solid #e70127;
	border-right: 2px solid #e70127;
	-webkit-transform: rotate(45deg);
					transform: rotate(45deg);
}
.linkBoxWrap01 .sortItem.new > a > .textBox {
	padding-left: 55px;
}
.linkBoxWrap01 .sortItem.new > a > .textBox:before {
	content: "NEW";
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -8px;
	font-weight: bold;
	line-height: 16px;
}
.linkBoxWrap01 .sortItem > a > .textBox > *:last-child {
	margin-bottom: 0;
}
.linkBoxWrap01 .js-moreBtn {
	text-align: center;
	margin-bottom: 1em;
}
.linkBoxWrap01 .js-moreBtn > a {
	position: relative;
	display: inline-block;
	min-width: 190px;
	padding: 5px 20px;
	color: #575757;
	font-size: 87.5%;
	text-decoration: none;
	background: #ffffff;
	border: solid 1px #e2e2e2;
}
@media screen and (min-width: 768px),print {
	.linkBoxWrap01 .js-moreBtn > a:hover {
		background: #f2f2f2;
	}
}
.linkBoxWrap01 .js-moreBtn > a:before,
.linkBoxWrap01 .js-moreBtn > a:after {
	content: "";
	position: absolute;
	top: 50%;
	background: #e70127;
}
.linkBoxWrap01 .js-moreBtn > a:before {
	right: 11px;
	height: 12px;
	width: 2px;
	margin-top: -6px;
}
.linkBoxWrap01 .js-moreBtn > a:after {
	right: 6px;
	height: 2px;
	width: 12px;
	margin-top: -1px;
}

@media only screen and (max-width: 767px) {
	.pcOnly {
		display: none;
	}
	.flexElement2 > *,
	.flexElement3 > *,
	.flexElement4 > *,
	.flexElement5 > *,
	.flexElement6 > * {
		width: calc((100% - 10px) / 2);
	}
	[class*="flexElement"] > * {
		margin: 0 10px 10px 0;
	}
	[class*="flexElement"] > * > *:last-child {
		margin-bottom: 0;
	}
	.flexElement2 > *:nth-child(2n),
	.flexElement3 > *:nth-child(2n),
	.flexElement4 > *:nth-child(2n),
	.flexElement5 > *:nth-child(2n),
	.flexElement6 > *:nth-child(2n) {
		margin-right: 0;
	}
	.linkBoxWrap01 .categoryList {
		display: block;
		position: relative;
		padding: 10px;
		margin-bottom: 15px;
	}
	.linkBoxWrap01 .categoryList:after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		height: 0;
		width: 0;
		margin-left: -10px;
		border-top: solid 10px #f2f2f2;
		border-right: solid 10px transparent;
		border-bottom: solid 10px transparent;
		border-left: solid 10px transparent;
	}
	.linkBoxWrap01 .categoryList > dt {
		padding: 0 0 10px;
		color: #575757;
		border-right: none;
		border-bottom: solid 1px #d8d8d8;
	}
	.linkBoxWrap01 .categoryList > dt:after {
		display: none;
	}
	.linkBoxWrap01 .js-sortList {
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
						align-items: center;
		-webkit-justify-content: space-between;
  					justify-content: space-between;
		margin-top: 10px;
		letter-spacing: normal;
	}
	.linkBoxWrap01 .js-sortList > li {
		display: block;
		width: calc((100% - 10px) / 3);
		margin: 0 0 10px;
		font-size: 80%;
		line-height: 1.4;
	}
	.linkBoxWrap01 .js-sortList > li label {
		padding-left: 20px;
	}
	.linkBoxWrap01 .js-sortList > li label:before {
		height: 10px;
		width: 10px;
		margin-top: -7px;
	}
	.linkBoxWrap01 .js-sortList > li input:checked + label:after {
		left: 3px;
		width: 8px;
		height: 6px;
		margin-top: -3px;
		-webkit-background-size: 8px 6px;
						background-size: 8px 6px;
	}
	.linkBoxWrap01 .js-sortBox {
		min-height: 120px;
	}
	.linkBoxWrap01 .sortItem > a {
		overflow: hidden;
	}
	.linkBoxWrap01 .sortItem > a > .textBox {
		height: 50px;
		padding: 0 15px 0 10px;
		font-size: 70%;
		/*display: block;
		height: 40px;
		line-height: 40px;
		white-space: nowrap;
		text-overflow: ellipsis;*/
	}
	.linkBoxWrap01 .sortItem > a > .textBox:after {
		right: 5px;
	}
	.linkBoxWrap01 .sortItem.new > a > .textBox {
		padding-left: 38px;
	}
	.linkBoxWrap01 .sortItem.new > a > .textBox:before {
		left: 5px;
		margin-top: -5px;
		font-size: 10px;
		line-height: 10px;
	}
	.linkBoxWrap01 .js-moreBtn > a {
		width: 100%;
		min-width: 100%;
		padding: 10px 20px;
	}
}

