@charset "utf-8";

/*//////////////////フッター//////////////////*/
footer {
	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: 0;
	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;
	box-sizing: border-box;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.topBtn {
	position: fixed;
	bottom: 90px;
	right: 15px;
	background-color: #f0808094;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 11px;
	width: 80px;
	height: 80px;
	text-align: center;
	border-radius: 40px;
	box-sizing: border-box;
	z-index: 99999;
}

.topBtn:before {
	content: '\f106';
	color: #fff;
	text-align: center;
	font-family: 'Font Awesome 5 Free';
	font-size: 30px;
}

.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;
}