  @charset "utf-8";
/* CSS Document */

.content{
	text-align: left;
}
.content .flexBox{
	justify-content: flex-start;
	flex-wrap: wrap;
}
.content .flexBox .listBox{
	width: calc((100% - 30px) / 2);
}
.content .flexBox .listBox:nth-child(even){
	margin-left: 30px;
}
.content .flexBox .listBox:nth-child(n+3){
	margin-top: 40px;
}
.content .flexBox .listBox h3{
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #D1D1D1;
	position: relative;
}
.content .flexBox .listBox h3 a{
	font-weight: 700;
	display: block;
}
.content .flexBox .listBox h3 a::after{
    content: "";
    position: absolute;
	top: 0;
	bottom: 0;
    right: 0;
    width: 10px;
	transition: 0.5s;
    background: url(/ir/img/icon_arrow_black.svg) no-repeat center / contain;
}
.content .flexBox .listBox h3 a:hover::after{
    background: url(/ir/img/icon_arrow_blue.svg) no-repeat center / contain;
}
.content .flexBox .listBox h3 a,
.content .flexBox .listBox ul li a{
	transition: 0.2s;
}
.content .flexBox .listBox h3 a:hover,
.content .flexBox .listBox ul li a:hover{
	color: #003F98;
}

.technology-ttl > a{
	pointer-events: none;
	font-weight: bold;
}
.technology-ttl ul{
	margin: 0 10px;
}
.technology-ttl ul li a:before{
	content: "-";
	display: inline-block;
	padding-right: 5px;
}

@media screen and (max-width: 767px){
	.hd02 {
		font-size: 1.8rem;
		margin: 30px 0 10px;
	}
	.content .flexBox .listBox{
		width: calc((100% / 2) - 15px);
	}
}
@media screen and (max-width: 480px){
	.content .flexBox .listBox{
		width: calc((100% / 1));
	}
	.content .flexBox .listBox:nth-child(even){
		margin-left: 0;
	}
	.content .flexBox .listBox:nth-child(n+3){
		margin-top: 0;
	}
	.content .flexBox .listBox:nth-child(n+2){
		margin-top: 30px;
	}
}