.page_title_box {
	position: relative;
	background-image: url("../images/main_visual.jpg");
}

.page_link_list {
	display: flex;
  gap: 20px;
  margin: 0 0 60px;
}

@media only screen and (max-width: 1124px) {
	section{
    padding-top: 80px;
    margin: -80px 0 0;
  }
	.page_link_list {
		gap: 10px;
		flex-wrap: wrap;
	}

}

.page_link_list li {
	width: calc(100% / 3);
  box-sizing: border-box;
}

@media only screen and (max-width: 1124px) {

	.page_link_list li {
		width: calc(50% - 5px);
	}
	
}

@media only screen and (max-width: 480px) {

	.page_link_list li {
		width: 100%;
	}
	
}

.page_link_list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 65px;
  font-size: 16px;
	font-weight: bold;
	color: #333;
  line-height: 1.4;
  padding: 8px;
	text-align: center;
	border: 2px solid;
	background: #fff;
	transition: all .3s ease;
  box-sizing: border-box;
}
@media only screen and (max-width: 1124px) {
  .page_link_list li a{
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .page_link_list li a{
    min-height: 50px;
    font-size: 12px;
  }
}

.page_link_list li a:hover{
  color: #fff;
  background: #002855;
}

h2 {
	font-size: 22px;
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 20px;
	}
}

@media screen and (max-width: 480px) {
	h2 {
		font-size: 18px;
	}
}

.half {
	width: 544.5px;
}

.w110 {
	width: 110px;
	min-width: 110px;
}

@media screen and (max-width: 480px) {
	.w110 {
		width: 80px;
		min-width: 80px;
	}
}

.dotted {
	padding: 0 0 0 14px;
}

@media screen and (max-width: 480px) {
	.dotted {
		padding: 0 0 0 12px;
	}
}

.ast {
	position: relative;
	padding: 0 0 0 12px;
}

.ast::before {
	position: absolute;
	content: "※";
	left: 0;
}

table tr th,
table tr td {
	font-size: 14px;
	padding-top: 10px;
	padding-bottom: 10px;
}

@media screen and (max-width: 480px) {

	table tr th,
	table tr td {
		font-size: 12px;
		padding-top: 6px;
		padding-bottom: 6px;
	}
}

table tr td p {
	font-size: 14px;
}

@media screen and (max-width: 480px) {
	table tr td p {
		font-size: 12px;
		line-height: 1.5;
	}
}

table tr td p:not(:last-child) {
	margin: 0 0 10px;
}

@media screen and (max-width: 480px) {
	table tr td p:not(:last-child) {
		margin: 0 0 8px;
	}
}

table thead tr th {
	font-size: 16px;
	background: rgba(4, 4, 64, 0.08);
}

@media screen and (max-width: 480px) {
	table thead tr th {
		font-size: 14px;
	}
}

table tbody tr:first-child th:first-child {
	width: 110px;
	min-width: 110px;
}

@media screen and (max-width: 480px) {
	table tbody tr:first-child th:first-child {
		width: 80px;
		min-width: 80px;
	}
}

table tbody tr:first-child th:nth-child(2) {
	width: 490px;
}

table tbody tr:first-child th:nth-child(3) {
	width: 600px;
}

table tbody tr th {
	color: #333;
	background: #d6d6d6;
}

table tbody tr th.bg_gray {
	font-weight: 500;
	text-align: left;
}


table tr td .external,
table tr td .pdf {
	position: relative;
	font-weight: 500;
	padding: 0 0 0 18px;
}

@media screen and (max-width: 480px) {

	table tr td .external,
	table tr td .pdf {
		padding: 0 0 0 14px;
	}
}

table tr td .external::before {
	position: absolute;
	content: "\f35d";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: 0;
}

table tr td .pdf::before {
	position: absolute;
	content: "\f1c1";
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	font-size: 16px;
	color: red;
	top: -2px;
	left: 0;
}

@media screen and (max-width: 480px) {
	table tr td .pdf::before {
		font-size: 14px;
		top: -1px;
	}
}

table tr td a {
	display: inline-block;
	font-weight: 500;
	color: #333;
	text-decoration: underline;
}

table tr td a.dotted {
	display: inline-block;
}

table tr td a:hover {
	color: #002855;
}