.page_link_list {
	display: flex;
  gap: 20px;
	flex-wrap: wrap;
  margin: 0 0 60px;
}

@media only screen and (max-width: 1124px) {
	section{
    padding-top: 80px;
    margin: -80px 0 0;
  }
	.page_link_list {
		gap: 10px;
	}

}

.page_link_list li {
	width: calc(100% / 4 - 15px);
  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;
}

.dia {
  position: relative;
  padding: 0 0 0 20px;
}

@media screen and (max-width:768px) {
  .dia {
    padding: 0 0 0 18px;
  }
}

.dia::before {
  position: absolute;
  content: "◆";
  left: 0;
}

.flex_box {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width:768px) {
  .flex_box {
    display: block;
  }
}

.flex_box .left_box,
.flex_box .right_box {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
}

@media screen and (max-width:768px) {

  .flex_box .left_box,
  .flex_box .right_box {
    width: 100%;
  }

  .flex_box .left_box {
    margin: 0 0 28px;
  }
}

.flex_box .txt_box {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  border: 1px solid #000;
  background: #fff;
}

.flex_box .txt_box:not(:last-child){
  border: 1px solid #000;
  border-bottom: none;
}

@media screen and (max-width:768px) {

  .flex_box .left_box .txt_box,
  .flex_box .right_box .txt_box {
    padding: 16px 12px;
  }
}