@charset "UTF-8";
/* CSS Document */
.acd-check{
    display: none;
}
.acd-label , .side_category a.sc_link ,.acd-content ul.koCate.farm li {
    border-bottom: 1px solid #F1F1F1;
    background: #fff;
    color: #333;
    display: block;
    padding: 10px 0 10px 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05em;
	cursor: pointer; 
}
.acd-label:after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    display: block;
    position: absolute;
    right: 15px;
    top: 30%;
    transform: rotate(45deg);
    transition: all 0.2s ease-out;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: all 0.2s ease-out;
    visibility: hidden;
}
.acd-check:checked + .acd-label:after{
    right: 15px;
    top: 40%;
    transform: rotate(225deg);
	transition: all 0.2s ease-out;
}
.acd-check:checked + .acd-label + .acd-content{
    height: max-content;
    opacity: 1;
    padding: 10px 0;
    visibility: visible;
	transition: all 0.2s ease-out;
}
.acd-check:checked + .acd-label + .acd-content.farm{
    padding: 0;
}
.acd-content ul.koCate {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.acd-content ul.koCate li {
    list-style: none;
    line-height: 1;
    width: 48%;
    margin-bottom: 3%;
}
.acd-content ul.koCate.farm li {
    width: 100%;
    padding: 10px 0 10px 30px;
}
.acd-content ul.koCate li a{
	width: 100%;
	display: block;
	text-decoration: none;
	color: #333;
}

.acd-content ul.koCate li.acd_btn {
	text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 3% auto;
}

.acd-content ul.koCate li.acd_btn a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.4em;
    border: 1px solid #333;
    position: relative;
}

.acd-content ul.koCate li.acd_btn a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 16px;
    top: calc(50% - 2px);
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform: rotate(45deg) translateY(-50%);
    color: inherit;
}

.acd-content ul.koCate li.acd_btn a:hover {
	background: #ffffff;
    border: 1px solid #fd6500;
    color: #fd6500;
}

.acd-content ul.koCate li.acd_btn a:hover::after  {
	border-top: solid 1px #fd6500;
    border-right: solid 1px #fd6500;
}

@media(max-width:768px){
	.acd-content{
		transition: all 0s ease-out;
	}
	.acd-check:checked + .acd-label + .acd-content{
		transition: all 0s ease-out;
	}
}
