@charset "UTF-8";
#topic{
width:1200px;
margin:0 auto 95px;
padding-top: 88px;
padding-bottom: 0px;
}
#topic .topic_list_ttl{
width:80%;
margin: 0 auto 20px;
font-size: 20px;
}
#topic .topic_list_area{
display:flex;
width:80%;
margin: 0px auto 40px;
justify-content: space-between;
}
#topic .topic_left{
width:40%;
max-width:330px;
}
#topic .topic_right{
width:50%;
}
#topic .topic_list_txt{
font-size:18px;
margin-bottom: 15px;
}
#topic .topic_button{
    margin: auto;
    width: 300px;
    text-align: center;
}
#topic .topic_detail{
    position: relative;
    display: inline-block;
    color: white;
    background-color: #2FC6CB;
    margin-top: 15px;
    padding: 20px 55px;
    font-size: 18px;
    font-weight: bold;
    border: #25babf 2px solid;
    border-radius: 4rem;
    transition: 0.4s;
}
#topic .topic_detail:hover{
color:#2d2d2d;
background-color:white;
transition: 0.4s;
}
@media screen and (max-width:1200px){
#topic{
width:100%;
}
}
@media screen and (max-width:767px){
#topic{
margin: 0 auto 5rem;
padding-top: 5rem;
padding-bottom: 0px;
}
#topic .topic_list_ttl{
width:80%;
margin: 0 auto 2rem;
font-size: 2rem;
}
#topic .topic_list_area {
display:block;
margin: 0px auto 4rem;
}
#topic .topic_left{
width:100%;
max-width:100%;
}
#topic .topic_right{
width:100%;
}
#topic .topic_list_txt{
font-size:1.8rem;
margin-bottom: 1.5rem;
}
#topic .topic_button{
    width: 30rem;
}
#topic .topic_detail {
    margin-top: 1.5rem;
    padding: 2rem 5.5rem;
    font-size: 1.8rem;
}
}