.top_nologin {
    text-align: center;
    background-color: #efefef;
    padding: 40px;
}
.top_nologin a{
    text-decoration: underline !important;
}

.top-heading{
    text-align: center;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 24px;
}
@media (max-width: 767.9px) {
    .top-heading{
        margin-bottom: 16px;
        font-size: 24px;
    }
}
.top-container{
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 80px 0;
}
@media (max-width: 767.9px) {
    .top-container{
        padding: 40px 0;
    }
}
.top-news {
    background-color: #f5f5f5;
}
.top-news-inner {
    margin: 0 auto;
    max-width: 1024px;
    width: 90%;
}
.top-news_items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.top-news_item {
    display: grid;
    gap: 10px;
    align-items: baseline;
    justify-content: start;
    grid-template-columns: 140px 6em auto;
    background: #fff;
    padding: 16px;
}
@media (max-width: 767.9px) {
    .top-news_item {
        grid-template-columns: 100px auto;
        font-size: 0.9rem;
    }
}
.top-news_item:hover{
    text-decoration: none !important;
    color: inherit;
    background-color: #c4e7e8;
}
.top-news_item-category {
    font-size: 0.8em;
    background-color: #dbf1f1;
    padding: 8px;
    text-align: center;
    display: inline-block;
}
.top-news_item-date{
    color: #444;
    font-weight: 400;
    display: inline-block;
    margin-left: 8px;
}
.top-news_item-title{
    width: 100%;
    line-height: 1.8;
}
@media (max-width: 767.9px) {
    .top-news_item-title {
        grid-column: 1 / 3;
    }
}
.top-seminar {
    background-color: #fff;
}
.top-seminar-inner{
    margin: 0 auto;
    max-width: 1024px;
    width: 90%;
}
.top-seminar_label {
    text-align: center;
    font-size: 20px;
}
.top-seminar_items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.top-seminar_item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
}
@media (max-width: 767.9px) {
    .top-seminar_item {
        font-size: 0.9rem;
    }
}
.top-seminar_item a{
    display: block;
    padding: 20px;
    width: 100%;
    background-color: #ecf3f3;
}
.top-seminar_item a:hover{
    text-decoration: none !important;
    color: inherit;
    background-color: #c4e7e8;
}


.top-seminar_item-title {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.top-seminar_item-description {
    color: #444;
    font-weight: 400;
}
.top-service{
    background-color: #f5f5f5;
}
.top-service-inner{
    max-width: 1024px;
    margin: 0 auto;
    width: 90%;
}
.top-service_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
}
@media (max-width: 767.9px) {
    .top-service_items {
        gap: 16px;
    }
}
.top-service_item{
    flex: 0 0 325px;
}
.top-service_item:hover{
    text-decoration: none !important;
}
.top-service_item img{
    max-width: 100%;
    height: auto;
}
.top-service_title{
    text-align: center;
    background-color: #187d80;
    color: #fff;
    padding: 5px;
}
@media (max-width: 767.9px) {
    .top-service_title {
        font-size: 14px;
    }
}

.top-button-wrapper{
    text-align: center;
    margin-top: 16px;
}
.top-button{
    display: inline-block;
    width: fit-content;
    padding: 8px 32px;
    color: #fff;
    background-color: #187d80;
    border: 1px solid #187d80;
    text-decoration: none !important;
}
.top-button:hover{
    background-color: #fff;
    color: #187d80;
}