@charset "utf-8";
/*//////////////////フッター//////////////////*/
footer{
	padding:20px 0 0;
	background:#f8f8f8;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
	line-height:2;
	text-align: left;
}
.wrp {
    width: 920px;
    margin: 0 auto;
    position: relative;
}
footer #footLInk{
	display: flex;
	flex-wrap:wrap
}
footer strong{
	font-size:18px;
	font-weight: bold;
	display: block;
	margin-bottom:10px;
}
footer .footLink a{
	display: inline-block!important;
	min-width:23%;
	margin-right:1%;
	font-size:13px;
	color:#189edd!important;
	text-decoration:none;
}
footer .footLink a::before{
	content:'';
	background:url(/img/icon/arrow2_blue.svg) no-repeat;
	background-size:contain;
	width:9px;
	height:9px;
	display:inline-block;
	margin-right:3px;
}
footer .copyright{
	font-size:12px;
	text-align: center;
	margin-top:20px;
	background:#333;
	color:#fff;
	padding:5px;
}
footer .copyright a{
	color:#fff!important;
	text-decoration:underline;
}
#companyInfo {
    margin: 20px 0;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}
#companyInfo ul{
	display:flex;
	align-items: stretch;
	flex-wrap:wrap;
}
#companyInfo li{
	border-right:1px #ccc dotted;
	display: flex;
	align-items: flex-start;
	padding:10px;
    width:50%;
	line-height:1.4;
	box-sizing: border-box;
}

#companyInfo p{
	text-align: left;
	font-size:11px;
	margin:0;
}
#companyInfo li img{
	width:auto;
	height:45px;
	margin-right:10px;
}
#companyInfo li a{
	text-decoration:none;
	color:#189edd!important;
}
#companyInfo li:last-of-type, #companyInfo li:nth-of-type(2){
	border-right:none;
}
#companyInfo li:nth-of-type(1), #companyInfo li:nth-of-type(2){
	border-bottom:1px dotted #ccc;
}


/*//////////////////ページトップへ戻る//////////////////*/
.topBtn {
	position: fixed;
	bottom: 90px;
	right: 8px;
	display: block;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 11px;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 22px;
	border-radius: 30px;
	padding-top: 30px;
	box-sizing: border-box;
	z-index: 99999;
}
.topBtn::before {
	content: ''!important;
	background:url(/img/icon/arrow_white.svg) no-repeat center;
	transform: rotateZ(-90deg);
	width:25px;
	height:25px;
	display:block;
	position: absolute;
	top: 16px;
	left: 0;
	width: 100%;
	text-align: center;
}
.topBtn::after{
	content:none!important;
}
.topBtn:hover {
	opacity: 0.6;
}
/*//////////////////モーダル//////////////////*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	width: 100%;
	z-index:99999;
}
.modalBk{
    background: rgba(0,0,0,0.6);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modalContent{
    background: #fff;
    left: 50%;
    padding: 30px 2%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    border-radius:6px;
}
.modalContent .closeBtn{
    border: 1px solid #189edd;
    border-radius: 25px;
    text-align: center;
    width: 200px;
    color: #0294d8;
    margin: 20px auto 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:16px;
}
.modalContent .closeBtn::before{
	content:'×';
	font-size:30px;
	font-weight:bold;
}
.modalContent .closeBtn::after{
	content:none;
}
.modalContent .closeBtn:hover{
	text-decoration:none;
	opacity:.6;
}