@charset 'UTF-8';

.condition {
    border-bottom: 1px solid #dedede;
    padding-bottom: 16px;
    margin-bottom: 16px;
    margin-left: 8px;
    margin-right: 8px;
    display: flex;
    line-height: 27px;
}
.condition span {
    font-weight: bold;
    padding-top: 2px;
    display: inline-block;
    width: 80px;
    white-space: nowrap;
}
.condition ul {
    display: flex;
    flex-wrap: wrap;
}
.condition ul li {
    margin-bottom: 4px;
}
.condition ul a {
    display: inline-block;
    color: #333333;
    font-size: 13px;
    padding: 6px 22px 6px 8px;
    line-height: 1em;
    border: 1px solid #cccccc;
    border-radius: 4px;
    position: relative;
    margin-right: 5px;
}
.condition ul a:before {
    content: "";
    position: absolute;
    background-color: #333;
    width: 12px;
    height: 1px;
    right: 6px;
    top: 12px;
    transform: rotate(-45deg);
}
.condition ul a:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 12px;
    height: 1px;
    right: 6px;
    top: 12px;
    transform: rotate(45deg);
}

.noresult {
    padding: 80px;
    text-align: center;
}

.accordion .toggle:checked+.title+.content {
	max-height: 1000px;
}