@charset "UTF-8";
.info_area{
    width: 60%;
    margin: 30px auto 50px;
    display: flex;
    flex-direction: column;
    max-width: 980px;
}
.info_area p{
    font-size: 1.3rem;
    color: #00722b;
}
.info_area dl{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 10px auto;
    border-bottom:2px solid #00722b;
    padding-bottom: 10px;
}
.info_area dt{
    width: 40px;
    margin-right: 15px;
}
.info_area dd{
    font-size: 1.2rem;
}
.info_area dd a{
    color: #000;
    text-decoration: none; 
}
.info_area dd a:hover{
    color: #DAA40C;
    text-decoration: none; 
}
    
@media screen and (max-width:900px){
    .info_area{
    width: 70%;
    margin: 30px auto 50px;
    display: flex;
    flex-direction: column;
    max-width: 980px;
}

}

@media screen and (max-width:480px){
    .info_area{
    width: 90%;
    margin: 20px auto 40px;
    display: flex;
    flex-direction: column;
    max-width: 480px;
}
.info_area p{
    font-size: 1.2rem;
    color: #00722b;
}
.info_area dl{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 15px auto;
    border-bottom:2px solid #00722b;
    padding-bottom: 10px;
}
.info_area dt{
    width: 30px;
    margin-right: 15px;
}
.info_area dd{
    font-size: 1.1rem;
}
.info_area dd a{
    color: #000;
    text-decoration: none; 
}
.info_area dd a:hover{
    color: #DAA40C;
    text-decoration: none; 
}
}