/* CSS Document */
.card_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -6px;
    margin-right: -6px;
    margin-bottom: 1em;
    align-content: stretch;
}
@media screen and (max-width: 639px) {
.card_list {
    padding: 0 0.7rem;
    margin-left: -4px;
    margin-right: -4px;
}
}


.card_list .margin-child {
    width: calc(100% / 3);
    padding: 0px 6px 15px;
}
@media screen and (max-width: 639px) {
.card_list .margin-child {
    width: calc(100% / 2);
    padding: 0px 4px 12px;
}
}

.card_list .margin-child .card {
    border: 1px solid #eee;
    background-color: #fff;
    padding: 8px;
    height: 100%;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.4s;
}
.listMode .card_list .margin-child:nth-child(even) .card:hover,
.card_list .margin-child .card:hover,
.listMode .card_list .margin-child .card:hover {
    background-color: #ffffe0;
    transition: background 0.1s;
}
.card_list .margin-child.head {
    display: none;
}


.card_list .margin-child .card .img_box {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-bottom: 0.5em;
}
    
.card_list .margin-child .card .img_box .enlargement {
	pointer-events: none;
	content: '';
	width: 200px;
	height: 280px;
	position: absolute;
    transition: 0.3s;	
	z-index: 100;
	top: 50%;
	left: 50%;
	opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-box-shadow: 0px 8px 24px rgba(0,0,0,0.50);
	box-shadow: 0px 8px 24px rgba(0,0,0,0.50);
	border-radius: 18px;
}
@media screen and (max-width: 639px) {
.card_list .margin-child .card .img_box .enlargement {
    display: none;
}
}

.card_list .margin-child .card:hover .img_box .enlargement {
	content: '';
	width: 400px;
	height: 560px;
	opacity: 1;
	transition: 0.1s;
}



.card_list .margin-child .card .img_box .enlargement.PIECE {
	width: 280px;
	height: 200px;
}
.card_list .margin-child .card:hover .img_box .enlargement.PIECE {
	width: 560px;
	height: 400px;
}



.card_list .margin-child .card .img_box::before {
    content:  '';
    display: block;
    padding-top: 139.6%;
}

.card_list .margin-child .card p {
    line-height: 1.2;
    margin-bottom: 0.3em;
}
.card_list .margin-child .card p.cardStatus span::before{
    content: ' / ';
}
.card_list .margin-child .card p.cardStatus span:first-child::before{
    content: none;
}

/** list表示**/
.listMode .card_list {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
}
.listMode .card_list .margin-child {
    width: 100%;
    padding: 0;
}
.listMode .card_list .margin-child .card {
    border: none;
    display: flex;
    padding: 0;
    background-color: #f9f9fc;
}
@media screen and (max-width: 639px) {
.listMode .card_list .margin-child .card {
    display: block;
    margin-bottom: 1rem;
    background-color: #fff;
}
}


.listMode .card_list .margin-child.head {
    display: block;
}
.listMode .card_list .margin-child.head p:last-child {
    border-right: none;
}

.listMode .card_list .margin-child.head .card {
    background-color: #333;
    color: #fff;
}

.listMode .card_list .margin-child:nth-child(even) .card {
    background-color: #fff;
}
.listMode .card_list .margin-child .card .img_box {
    display: none;
}

.listMode .card_list .margin-child .card p {
    margin-bottom: 0;
    border-collapse: collapse;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}


@media screen and (max-width: 639px) {
.listMode .card_list .margin-child .card p {
    border-right: none;
    padding: 0.5rem;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
}

.listMode .card_list .margin-child .card p.cardNo {
    width: 18%;
}
@media screen and (max-width: 639px) {
.listMode .card_list .margin-child .card p.cardNo {
    width: 100%;
    border-top: 1px solid #ccc;
}
}


.listMode .card_list .margin-child .card p.cardStatus span.asc::after,
.listMode .card_list .margin-child .card p.cardNo.asc::after,
.listMode .card_list .margin-child .card p.cardName.asc::after {
    content: '▲';
    font-size: 0.5rem;
    margin-left: 0.2rem;
}
.listMode .card_list .margin-child .card p.cardStatus span.desc::after,
.listMode .card_list .margin-child .card p.cardNo.desc::after,
.listMode .card_list .margin-child .card p.cardName.desc::after {
    content: '▼';
    font-size: 0.5rem;
    margin-left: 0.2rem;
}
.listMode .card_list .margin-child .card p.cardName {
    width: 32%;
}
@media screen and (max-width: 639px) {
.listMode .card_list .margin-child .card p.cardName {
    width: 100%;
}
}

.listMode .card_list .margin-child .card p.cardStatus {
    display: flex;
    width: 50%;
    align-items: stretch;
}
@media screen and (max-width: 639px) {
.listMode .card_list .margin-child .card p.cardStatus {
    padding: 0;
}
}


@media screen and (max-width: 639px) {
.listMode .card_list .margin-child .card p.cardStatus {
    width: 100%;
}
}


.listMode .card_list .margin-child .card p.cardStatus span {
    border-right: 1px solid #eee;
    word-break: break-all;
    width: 18%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 639px) {
.listMode .card_list .margin-child .card p.cardStatus span {
    border-right: 1px solid #ccc;
}
}

.listMode .card_list .margin-child .card p.cardStatus span:nth-child(2),
.listMode .card_list .margin-child .card p.cardStatus span:nth-child(3) {
    width: 32%;
}

.listMode .card_list .margin-child .card p.cardStatus span:last-child {
    border-right: none;
}
.listMode .card_list .margin-child .card p.cardStatus span::before{
    content: none;
}




.card_color_W {
    color: #d68f34;
}
.card_color_U {
    color: #3b76fd;
}
.card_color_B {
    color: #983cff;
}
.card_color_R {
    color: #fd3776;
}
.card_color_G {
    color: #249d77;
}
.card_color_C {
    color: #000;
}

.page-nav {
    display: flex;
    justify-content: center;
}
.page-nav > div {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-weight: 700;
    background-color: rgba(0,0,0,0.60);
    color: #fff;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid rgba(0,0,0,0.0);
}
.page-nav > div.current {
    border-color: #ccc;
    background-color: #fff;
    color: #333;
}
.viewChangeNav {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.viewChangeNav > div {
    font-weight: 700;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    width: 150px;
    background-color: #eee;
    color: #888;
    transition: 0.3s;
}
.viewChangeNav > div:hover {
    background-color: #fff;
}
.viewChangeNav > div.current {
    background-color: #666;
    color: #fff;
    transition: 0.1s;
}


.searchBox_wrap {
    background-color: rgba(0,0,0,0.15);
    margin-bottom: 3rem;
}
.searchBox {
    width: 100%;
    padding: 2rem 1rem 0;
    display: flex;
    flex-wrap: wrap;
    font-weight: 700;
    align-items: center;
    text-align: left;
    position: relative;
}
@media screen and (max-width: 639px) {
.searchBox {
    padding: 1rem 0.7rem 0;
}
}


.expand {
    display: none;
}
.searchBox > input[type='text'] {
    width: 79%;
    padding: 5px 8px;
    border: 1px solid #999;
    margin-bottom: 0.5rem;
}
@media screen and (max-width: 639px) {
.searchBox > input[type='text'] {
    width: 100%;
    margin-bottom: 0.9rem;
    }
}
.searchBox > label {
    width: 21%;
    margin-bottom: 0.5rem;
}
@media screen and (max-width: 639px) {
.searchBox > label {
    width: 100%;
    margin-bottom: 0.3rem;
}
}

.searchBox > .checkboxArea {
    width: 79%;
    display: flex;
    margin-bottom: 0.1rem;
    flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
.searchBox > .checkboxArea {
    width: 100%;
    margin-bottom: 0.5rem;
}
}

.searchBox > .checkboxArea input[type="checkbox"],
.searchBox > .checkboxArea input[type="radio"] {
    display: none;
}
.searchBox > .checkboxArea input[type="checkbox"] + label,
.searchBox > .checkboxArea input[type="radio"] + label {
    background-color: #fff;
    padding: 0.3rem 0.5rem;
    text-align: center;
    border: 1px solid #999;
    transition: 0.3s;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
}

.searchBox > .checkboxArea input[type="checkbox"] + label img,
.searchBox > .checkboxArea input[type="radio"] + label img {
    max-width: 50px;
    height: auto;
}
.searchBox > .checkboxArea input[type="checkbox"] + label.story img {
    max-width: inherit;
    height:  35px;
}

.searchBox > .checkboxArea input[type="checkbox"] + label:hover,
.searchBox > .checkboxArea input[type="radio"] + label:hover {
    background-color: #ececff;
    transition: 0.1s;
}

.searchBox > .checkboxArea.num4 input[type="radio"] + label {
}
.searchBox > .checkboxArea.num7 input[type="checkbox"] + label {
}


.searchBox > .checkboxArea input[type="checkbox"]:checked + label,
.searchBox > .checkboxArea input[type="radio"]:checked + label {
    background-color: #3b89fd;
    color: #fff;
}

.productCategorySub {
    background-color: rgba(0,0,0,0.15);
    margin-bottom: 0;
    padding: 0 0.8rem;
    width: 100%;
    height: 0;
    transition: 0.2s;
    overflow-y: scroll;
}
.productCategorySub.show {
    height: auto;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
.productCategorySub.show {
    max-height: 150px;
	display: block;
}
}

.searchBox > .productCategorySub input[type="checkbox"],
.searchBox > .productCategorySub input[type="radio"] {
    display: none;
}
.searchBox > .productCategorySub input[type="checkbox"] + label,
.searchBox > .productCategorySub input[type="radio"] + label {
    display: block;
    padding-left: 25px;
    position: relative;
	min-width: 50%;
    margin-bottom: 0.3rem;
}
@media screen and (max-width: 639px) {
.searchBox > .productCategorySub input[type="checkbox"] + label,
.searchBox > .productCategorySub input[type="radio"] + label {
    padding-left: 22px;
    margin-bottom: 0.3rem;
	min-width: inherit;
}
}

.searchBox > .productCategorySub input[type="checkbox"] + label::before,
.searchBox > .productCategorySub input[type="radio"] + label::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #999;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);    
}
.searchBox > .productCategorySub input[type="radio"] + label::before {
	border-radius: 10px;
}




@media screen and (max-width: 639px) {
.searchBox > .productCategorySub input[type="checkbox"] + label::before,
.searchBox > .productCategorySub input[type="radio"] + label::before {
    width: 15px;
    height: 15px;
}
}

.searchBox > .productCategorySub input[type="checkbox"]:checked + label::after,
.searchBox > .productCategorySub input[type="radio"]:checked + label::after {
    content: '';
    width: 8px;
    height: 12px;
/*    background-color: #3b89fd;
    border-radius: 7px;
	*/
    position: absolute;
    top: 46%;
    left: 4px;
    border-right: 4px solid #3b89fd; 
    border-bottom: 4px solid #3b89fd; 
	/*
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
	*/
	
    transform: translate(0, -50%) rotate(45deg);
    -webkit-transform: translate(0, -50%) rotate(45deg);
    -ms-transform: translate(0, -50%) rotate(45deg);
	
	
}
.searchBox > .productCategorySub input[type="radio"]:checked + label::after {
    width: 14px;
    height: 14px;
    background-color: #3b89fd;
    border-radius: 7px;
	border: none;
    top: 50%;
    left: 4px;
	
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
	
	
}



@media screen and (max-width: 639px) {
.searchBox > .productCategorySub input[type="checkbox"]:checked + label::after,
.searchBox > .productCategorySub input[type="radio"]:checked + label::after {
    width: 5px;
    height: 9px;
    left: 3px;
}
.searchBox > .productCategorySub input[type="radio"]:checked + label::after {
    width: 10px;
    height: 10px;
    left: 4px;
}
	
	
	
}

.searchBox > .productCategorySub p{
color: #3b89fd;
    margin-bottom:0.3rem;
	width: 100%;
}
.searchBox > .selectBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.searchBox > .selectBox .select-wrap {
    width: 19%;
    position:relative;
}
@media screen and (max-width: 639px) {
.searchBox > .selectBox .select-wrap {
    width: 100%;
}
}
.searchBox > .selectBox .select-wrap:before {
    pointer-events: none;
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}
.searchBox > .selectBox .select-wrap select{
    outline:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none #ffffff;
    vertical-align: middle;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px;
    border: 1px solid #999;
    color:#444;
    width:100%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    transition: 0.3s;
}
@media screen and (max-width: 639px) {
.searchBox > .selectBox .select-wrap select{
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}
}


.searchBox > .selectBox .select-wrap select:hover{
    background-color: #ececff;
    transition: 0.1s;
}
select option{
  background-color: #fff;
}




.select-wrap.select-inverse > select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #fff;
}








.searchBox .buttonArea {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dotted #222;
    padding-bottom: 2rem;
}
.searchBox .buttonArea .button {
padding: 0.8rem 3rem;
    line-height: 1;
    transition: .3s;
    background-color: #ffdee9;
    display: inline-block;
    cursor: pointer;
}
.searchBox .buttonArea .button:hover {
    background-color: #fd3776;
    color: #fff;
    transition: .1s;
}
.searchBox .buttonArea .button.reset {
    background-color: rgba(0,0,0,0.15);
}
.searchBox .buttonArea .button.reset:hover {
    background-color: #fff;
    color: #222;
}



.searchBox .expandButton {
    width: 100%;
    background-color: rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0.3em;
    transition: 0.3s
}
.searchBox .expandButton:hover {
    background-color: #fff;
    transition: 0.1s
}
.searchBox .expandButton span {
    display: flex;
    align-items: center;
}
.searchBox .expandButton span::after {
    pointer-events: none;
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #444;
  border-right: solid 2px #444;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
    display: inline-block;
    margin-left: 0.5em;
    transition: 0.3s;
}
.searchBox .expandButton.open span::after {
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


.resultsBox {
    border-bottom: 2px solid #333;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 639px) {
.resultsBox {
    padding: 0 0.7rem;
}
}


.resultsBox .results {
    font-size: 3rem;
    line-height: 1;
    margin: 0;
}
@media screen and (max-width: 639px) {
.resultsBox .results {
    font-size: 2.4rem;
}
}

.resultsBox .results span {
    font-size: 1.2rem;
}
.resultsBox .pages {
    line-height: 1;
    margin: 0;
    font-size: 1.2rem;
}



