@charset "utf-8";

.form_link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: #fff !important;
	max-width: 350px;
	margin: auto;
    width: 100%;
    height: 70px;
    padding: 7px 40px 7px 20px!important;
    background: #012454!important;
    border-radius: 8px;
    position: relative;
    transition: all .3s ease;
}

.form_link_btn:hover {
    color: #FFF !important;
    background: #7A8DCB !important;
}

.form_link_btn::after {
    position: absolute;
    content: '';
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: calc(50% - 6px);
    right: 25px;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.category_list {
	display: flex;
	gap: 20px;
    padding: 0;
    justify-content: space-between;
}

.category_list li {
	list-style: none;
    margin: 0;
    width: calc(25% - (20px / 3));
}

.category_list .link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: #222 !important;
	max-width: 350px;
	margin: auto;
    width: 100%;
    height: 70px;
    padding: 7px 40px 7px 20px;
    background: #eee;
    border-radius: 8px;
    position: relative;
    transition: all .3s ease;
}

.category_list li:nth-child(1) .link_btn, .category_list li:nth-child(2) .link_btn {
    color: #fff !important;
    background: #337ab7;
}

/*
.category_list .link_btn:hover {
    color: #FFF !important;
    background: #7A8DCB;
}*/

.category_list .link_btn::after {
    position: absolute;
    content: '';
    width: 11px;
    height: 11px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    top: calc(50% - 6px);
	bottom: auto;
    right: 25px;
    transform: rotate(135deg);
    transition: all .3s ease;
}

.category_list li:nth-child(1) .link_btn::after, .category_list li:nth-child(2) .link_btn::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/*
.category_list .link_btn:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}*/

.scroll_table {
	margin-bottom: 20px;
}

.student_form {
    display: flex;
    gap: 15px;
}

.student_form a {
	height: 90px;
    padding: 15px 40px 15px 20px !important;
    margin-bottom: 20px;
	font-weight: 500;
}

/**********************************************
    * news
*********************************************/
.link_more {
    display: flex;                
    align-items: center;
    justify-content: center;
    width: max-content;            
    margin-left: auto;             
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #002353 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    border-radius: 50px;
    position: relative;
    white-space: nowrap;
}

.news_area {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.news_list {
    border-top: 1px solid #F0F0F0;
	padding: 0;
    margin-top: 20px;
}

.news_list li {
    border-bottom: 1px solid #F0F0F0;
	list-style: none;
}

.news_list li a {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
	color: #222;
	font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 24px 98px 20px 0;
    box-sizing: border-box;
    transition: all .3s ease;
	align-items: center;
    position: relative;
}

.news_list li a::after {
    position: absolute;
    content: '';
    width: 11px;
    height: 11px;
    border-top: 2px solid #DADEDC;
    border-right: 2px solid #DADEDC;
    top: calc(50% - 6px);
    right: 32px;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.news_list li a[href$=".pdf"]::after {
	position: absolute;
	content: '';
	width: 14px;
	height: 14px;
	border: none;
	background: url(../images/icon_pdf.svg) no-repeat;
	top: calc(50% - 6px);
	right: 32px;
	transform: none;
	transition: all .3s ease;
}

.news_list li a[href$=".pdf"] {
    padding-right: 0;
    background: none;
}

.news_cate {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    color: #222;
    width: 130px;
    margin-right: 20px;
    padding: 3px 10px 2px;
    background: #F0F0F0;
    border-radius: 3px;
    transition: all .3s ease;
    max-height: 100%;
}

.news_date {
    font-size: 1.5rem;
	font-weight: 500;
    letter-spacing: 0.1em;
    width: 100px;
    margin-right: 9px;
    max-height: 100%;
}

.news_title {
    font-size: 1.5rem;
	font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8;
    max-width: calc(100% - 260px);
    max-height: 100%;
}

/* hover */
.news_list li a:hover {
    color: #337ab7;
}

.news_list li a:hover .news_cate {
    color: #FFF;
    background: #337ab7;
}

.news_list li a:hover::after {
    border-color: #337ab7;
}

table th, table td {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 10px 20px;
    vertical-align: top;
}

table th {
    text-align: center;
}



@media screen and (max-width: 767px) {

    .form_link_btn {
        height: 50px;
        padding: 5px 20px;
    }
	.category_list .link_btn {
		height: 60px;
	}
	.category_list {
	    flex-wrap: wrap;
    }
    .category_list li {
        width: calc(50% - 10px);
    }

	.student_form {
		display: block;
	}
	
	.student_form a {
		height: 70px;
	}
	
	
	/**********************************************
        * news
    *********************************************/
    .link_more {
        font-size: 1.3rem;
        max-width: 100%;
        padding: 5px 0px;
    }

    .news_area {
        margin: auto;
        position: relative;
    }

    .news_list {
        border-top: 1px solid #F0F0F0;
    }

    .news_list li {
        border-bottom: 1px solid #F0F0F0;
    }

    .news_list li a, .news_list li a[href$=".pdf"] {
        padding: 11px 34px 12px 0;
    }

    .news_list li a::after {
        width: 10px;
        height: 10px;
        right: 17px;
    }

    .news_cate {
        font-size: 1.2rem;
        font-weight: 500;
        width: 106px;
        margin-right: 10px;
        padding: 3px 7px 2px;
        background: #F0F0F0;
        border-radius: 3px;
        transition: all .3s ease;
    }

    .news_date {
        font-size: 1.3rem;
        letter-spacing: 0;
        width: 80px;
        margin: 2px 0 0;
    }

    .news_title {
        font-size: 1.3rem;
		width: 100%;
        max-width: none;
        margin: 8px 0 0;
    }

	.news_list li a::after, #index_news .news_list li a[href$=".pdf"]::after {
		right: 5px;
	}
	
}