@charset "UTF-8";

.column_two {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.column_two > div {
  margin-bottom: 30px;
  text-align: left;
  width: 47%;
}

@media screen and (max-width:767px) {
  .column_two {
    display: block;
  }
  .column_two > div {
    
    width: 100%;
  }
}

.ttl_underline {
  background: linear-gradient(transparent 70%, #ffff00 0%);
  display: inline;
  padding: 0 2px 4px;
} 


.btn_list_area {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
.btn_list_area li {
  font-size: .9em;
  margin-bottom: 1em;
  width: 47%;
}
.btn_list_area li a {
  /*background: #174e95;*/
  background: #0082b7;
  border-radius: 5px;
  color: #fff;
  display: block;
  padding: .5em 1.5em .5em .5em;
  position: relative;
  text-decoration: none;
}
.btn_list_area li a:hover {
  opacity: .8;
}

.btn_list_area li a:after {
  border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	display: inline-block;
  height: 8px;
	margin: 0 10px;
	position: absolute;
	right: 4px;
	top: 50%;
	transform: rotate(45deg) translateY(-50%);
	width: 8px;
}
@media screen and (max-width:767px) {
  .btn_list_area li {
    font-size: .8em;
  }
  .btn_list_area li a {
    padding: 1em 1.5em 1em .5em;
  }
}

.txt_link a:after {
  border-top: 2px solid #333;
	border-right: 2px solid #333;
	content: "";
	display: inline-block;
  height: 8px;
	margin: 0 10px;
	position: relative;
	transform: rotate(45deg) ;
	width: 8px;
}

.txt_link_red a {
  color: #d00 !important;
}