.container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: auto;
	position: relative;
}

.pcBg{
	position: fixed;
  	width: 100%;
  	height: 100%;
  	z-index: -1;
}
.mobileBg {
	position: fixed;
  	width: 100%;
  	height: 100%;
  	z-index: -1;
}

.content {
	position: absolute;
	width: 100%;
	z-index: 9;
	top: 0;
	left: 0;
}

.headNav {
	width: 100%;
	padding: 0 14px;
	height: 98px;
	background: #051327;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.headNav .mobile, .headNav .pc{
	width: 100%;
	object-fit: contain;
}
 .headNav .pc {
	max-width: 100%;
 }

.headNav .mobile {
	max-width: 100%;
}

.list {
	max-width: 1300px;
	width: 100%;
	padding: 70px 95px 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	justify-content: space-between;
	box-sizing: border-box;
}

.list-item {
	/* max-width: 568px; */
	width: 42%;
	/* min-width: 480px; */
	box-sizing: border-box;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #000;
	border-radius: 6px;
	color: #fff7b2;
	margin: 0 42px 35px 0;
	font-size: 14px;
	padding-left: 35px;
}


.list-item:nth-child(2n) {
	margin-right: 0;
}

.list-item:hover {
	background: #be3f3f;
	color: #fff;
}
.list-item p {
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.item-spead {
	margin-right: 3vw;
}
.list-item img {
	width: 30px;
}










@media screen and (min-width: 751px) {
	.pcBg {
		display: block;
	}
	.mobileBg {
		display: none;
	}
	.headNav .mobile {
		display: none;
	}
	
}

@media screen and (max-width: 960px) {
	.list-item {
		width: 568px;
		margin: 0 auto 40px;
	}
	.list-item:nth-child(2n) {
		margin: 0 auto 40px;
	}
	.a-mobile {
		display: none;
	}
}

@media screen and (max-width: 750px) {
	.pcBg {
		display: none;
	}
	.mobileBg {
		display: block;
	}
	.headNav {
		height: auto;
		padding: 10px 14px;
	}
	.headNav .pc {
		display: none;
	}
	
	.list {
		padding: 50px 30px 0;
	}
	
	.list-item {
		margin-bottom: 30px;
		min-width: 45%;
		padding-left: 20px;
		font-size: 14px;
		transition: font-size .5s ease;
	}
	.list-item img {
		width: 28px;
	}
	.list-item p {
		margin-right: 10px;
	}
}


