@charset "utf-8";
/* CSS Document */
.item span {
    font-size: 0.8em;
    background-color: rgba(56,182,240,1.00);
    color: rgba(10,41,95,1.00);
    padding: 3px 5px;
    margin-right: 5px;
    border-radius: 5px;
}
.item span:first-of-type {
    background-color: rgba(32,143,5,1.00);
    color: rgba(255,255,255,1.00);
}
.parkb {
    display: -webkit-flex; /* Safari */
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    margin-top: 10px;
}
.parkb p {
    width: 100%;
    text-align: center;
}
.parkb p a {
    display: block;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(186,179,88,1.00);
}
/* ラジオボタンの装飾 */
.radio_input {
    display: none;
}

.radio_parts {
    position: relative;
    margin-right: 20px;
    padding-left: 26px;
}

.radio_parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    border-radius: 50%;
    background-color: white;
}

.radio_input:checked+.radio_parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #0050c1;
    border-radius: 50%;
}

/* チェックボックスの装飾 */
.checkbox_input {
    display: none;
}

.checkbox_parts {
    padding-left: 25px;
    position: relative;
    margin-right: 16px;
    padding-top: 0px;
}

.checkbox_parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    background-color: white;
}

.checkbox_input:checked+.checkbox_parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 6px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #0050c1;
    border-right: 3px solid #0050c1;
}

/*他エリア*/
.wrapper {
    width: 1000px;
    margin: 30px auto;
}

h1{
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #0050c1;
}

.search_area {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.search_area div {
    margin-bottom: 10px;
    background-color: rgba(255,255,255,0.70);
    padding: 5px 10px;
}

.item_container {
    display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}

.item {
    padding-top: 1.0rem;
    padding-right: 1.0rem;
    padding-left: 1.0rem;
    background: #efefef;
    width: 31%;
    margin-bottom: 20px;
    margin-left: 1%;
    margin-right: 1%;
    animation-name: fadew;
  animation-duration: 1s;

}
@keyframes fadew{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/*絞り込み条件外のアイテム*/
.hide_item {
    display: none;
}
.item_container.list {
    margin-left: auto;
    margin-right: auto;
    max-width: 1047px;
}
label {
    cursor: pointer;
}
.ptitle {
    display: inline-block;
    background-color: rgba(255,255,255,0.70);
    padding: 5px 10px;
}




@media screen and (max-width:600px){
.item {
    padding-top: 1.0rem;
    background: #efefef;
    width: 48%;
    margin-left: 0px;
    margin-right: 0px;
}
.item_container.list {
    margin-left: 10px;
    margin-right: 10px;
    max-width: 1020px;
    
display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;}
.search_area {
    max-width: 1020px;
    margin-left: 10px;
    margin-right: 10px;
}
.search_area div {
    margin-bottom: 10px;
    background-color: rgba(255,255,255,0.70);
    padding: 5px 10px;
}
.checkbox_parts {
    padding-left: 25px;
    position: relative;
    margin-right: 10px;
    padding-top: 0px;
    font-size: 3vw;
}
.radio_parts {
    padding-left: 25px;
    position: relative;
    margin-right: 10px;
    font-size: 3vw;
}
/* CSS Document */
.item span {
    font-size: 3vw;
    background-color: rgba(56,182,240,1.00);
    color: rgba(10,41,95,1.00);
    padding: 3px 5px;
    margin-right: 5px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
}
.item_container.list .item .item_name {
    font-size: 3vw;
}
.parkb p a {
    display: block;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(186,179,88,1.00);
    font-size: 3vw;
}









}
