@charset "UTF-8";

.top_sliderarea {
    position: relative;
    margin-bottom: 30px;
}
#top_topics_wrap{
    width: 90%;
    max-width: 1000px;
    display: block;
    font-size: 1.2em;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 12px;
    margin: 0 auto;
        font-weight: normal;
    font-size: .8rem;
    color: #fff;
    text-shadow: 1px 2px 4px #333333;
}
.home #wrap {
    position: relative;
    height: 90%;
    min-height: 90%;
    display: block;
    right: 0px;
    left: 0px;
    top: 90%;
    z-index: 1;
}
.news_box {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border: 3px solid #19acc1;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-shadow: none;
}
h3.top_topics{
    padding: 4px 40px;
    letter-spacing: 2px;
    font-size: 1.3rem;
	font-weight: normal;
    color: #fff;
    background-color: #19acc1;
    width: fit-content;
    height: auto;
    box-sizing: border-box;
	display: flex;
    align-items: center;
}
#top_topics{
width: 100%;
    display: block;
    margin: 0 auto;
    background: #fff;
}
#top_topics ul{
    display: block;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}
#top_topics ul li a{
	text-decoration:none;
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    display:inline-block;
	color: #363636;
}
#top_topics ul li a:hover {
    transform: translateY(-2px);
}
@media screen and (max-width: 870px) {
    h3.top_topics{
        padding: 4px 12px;
    }
}