@charset "UTF-8";
/* CSS Document */

.content.topics .wrapper_fixbg {
	padding: 100px 0;
}

.content.topics .list_box {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 0 0;
	background-color:#FFF;
	border-radius: 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.content.topics .list_box a {
	width: 85%;
	margin: 5px 7.5% 0;
	padding: 0;
	float: left;
	color: #000;
	border-bottom: #000 1px dotted;
	transition: ease 0.5s all;
}

.content.topics .list_box .more_btn a {
	margin: 0;
	border-bottom: none;
}

.content.topics .list_box table {
	width: 100%;
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}

.content.topics .list_box td {
	text-align: center;
	padding: 10px;
	transition: ease 0.5s all;
}

.content.topics .list_box a:hover td {
	background-color: rgba(252,252,233,1.00);
}

.content.topics .list_box td:nth-of-type(1) {
	width: 120px;
}

.content.topics .list_box td:nth-of-type(2) {
	width: 120px;
}

.content.topics .list_box td:nth-of-type(2) span {
	background-color: #0058A6;
	color: #FFF;
	width: 100%;
	display: block;
	font-size: 14px;
}

.content.topics .list_box td:nth-of-type(2) a {
	background-color: #0058A6;
	color: #FFF;
	width: 100%;
	display: block;
	font-size: 14px;
}

.content.topics .list_box td:nth-of-type(3) {
	text-align: left;
}

.content.topics .list_box td:nth-of-type(4) {
	width: 50px;
	color: #B5B5B5;
	font-size: 13px;
	text-align: left;
	background-image: url("../images/common/arr_topics.png");
	background-repeat: no-repeat;
	background-position: center right;
	vertical-align: middle;
}


/* **************************************************************** */
/*  RESPONSIVE  RAYOUT  MAX-WIDTH 780px */
/* **************************************************************** */

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

.content.topics .wrapper_fixbg { padding: 50px 0; }
.content.topics .list_box {	padding: 0; }
.content.topics .inner_box { padding-bottom: 0; }

.content.topics .list_box td:nth-of-type(1), 
.content.topics .list_box td:nth-of-type(2) { width: 46%;float: left;margin: 0;padding: 0 2%; }
.content.topics .list_box td:nth-of-type(1) { text-align: justify; }
.content.topics .list_box td:nth-of-type(3) { width: 100%;float: left; }
.content.topics .list_box td:nth-of-type(4) { display: none; }

}

/* **************************************************************** */
/*  RESPONSIVE  RAYOUT  MAX-WIDTH 480px */
/* **************************************************************** */

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

.content.topics .list_box td:nth-of-type(1), 
.content.topics .list_box td:nth-of-type(2) { width: 96%; }

}


