.contactIndex ul.switchTab{
	display: flex;
	width: 100%;
	gap: 10px;
	border-bottom: solid 1px #003c96;
}
.contactIndex ul.switchTab li{
	position: relative;
	width: calc((100% - 20px )/ 3);
    box-sizing: border-box;
}

.contactIndex ul.switchTab li a{
    display: flex;
    padding: 20px 10px;
    flex-direction: column;
    align-items: center;
	background-color: #f2f2f2;
	color: #000000;
	text-decoration: none;
	transition: 0.3s;
    height: 100%;
    box-sizing: border-box;
    justify-content: center;
    line-height: 1.5;
}

.contactIndex ul.switchTab li a.select,
.contactIndex ul.switchTab li a:hover{
background-color: #004cad;
color: #FFFFFF;
font-weight: bold;
}

.contactIndex .listWrapper{
	position: relative;
	padding: 40px 0px;
}

.contactIndex .listWrapper .list{
	position: relative;
	display: none;
}

.contactIndex .listWrapper .list ul{
display: flex;
    position: relative;
    gap: 10px;
    flex-wrap: wrap;
}

.contactIndex .listWrapper .list ul li{
    width: calc((100% - 10px) / 2);
    position: relative;
	box-sizing: border-box;
}

.contactIndex .listWrapper .list ul li a{
    display: flex;
    padding: 15px 40px 15px 10px;
    flex-direction: column;
    align-items: flex-start;
    color: #000000;
    text-decoration: none;
    height: 100%;
    box-sizing: border-box;
    background-color: #e9eef4;
    justify-content: center;
    border-bottom: 1px solid #f2f2f2;
    border-top: 1px solid #f2f2f2;
	position: relative;
	transition: 0.3s;

}
.contactIndex .listWrapper .list ul li a:before{
    width: 8px;
    height: 15px;
    background-image: url('/jp/ja/common/v2/img/icon/ico-btn-arrow-blue.png');
    margin-top: -7.5px;
    right: 14px;
	position: absolute;
	    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.contactIndex .listWrapper .list ul li a:after{
	transition: 0.4s opacity linear;
    opacity: 0;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1b5a95;
}


.contactIndex .listWrapper .list ul li a:hover:after{
	opacity: 0.25;
}

.contactIndex .forSp{
    display: none;
}

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

    .contactIndex ul.switchTab li a{
        font-size: 1.2rem;
        padding: 5px 5px;
        text-align: center;
    }
    .contactIndex .listWrapper{
        padding: 20px 0;
    }
    .contactIndex .listWrapper .list ul li{
        width: 100%;
    }
    .contactIndex .listWrapper .list ul li a{
        padding: 10px 45px 10px 10px;
    }



.contactIndex .forPc{
    display: none;
}
.contactIndex .forSp{
    display: block;
}

}
