@charset "UTF-8";

#top-prevention + section > .content_wrapper > .wrapper_item{
display: none;
}

#top-prevention + section > .content_wrapper > .heading.block_header_2{
position: relative;
cursor: pointer;
}

#top-prevention + section > .content_wrapper > .heading.block_header_2:hover{
opacity: 0.8;
}

#top-prevention + section > .content_wrapper > .heading.block_header_2::after{
content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 30px;
	width: 10px;
	height: 10px;
	border-right: 3px solid #2d2d2d;
	border-bottom: 3px solid #2d2d2d;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}

#top-prevention + section > .content_wrapper > .heading.block_header_2.open::after{
transform: rotate(225deg);
}


@media (max-width:768px){
#top-prevention + section > .content_wrapper > .heading.block_header_2 > p{
padding-bottom: 4rem;
}
#top-prevention + section > .content_wrapper > .heading.block_header_2::after{
top: inherit;
    bottom: 5%;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
}
#top-prevention + section > .content_wrapper > .heading.block_header_2.open::after{
transform: rotate(225deg);
    bottom: 0;
    right: 48%;
}


}