@charset "utf-8";

/*-------------------------------------------------------------------
	共通
-------------------------------------------------------------------*/

.mainExTitle {
	font-size: 2.8rem;
	line-height: 1;
	font-weight: 500;
	color: #70cec6;
	margin-bottom: 15px;
}

.mainExtext {
	color: #a6a7a6;
	line-height: 1;
	letter-spacing: .1em;
}

.requirementsCase .sec01 {
    margin-bottom: 0;
}

.requirementsCase .sec01 .txtbox {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 80%);
}

.reqinner {
	width: 975px;
	max-width: 90%;
	margin: 0 auto;
	padding: 100px 0;
}


.reqTable {
	width: 100%;
	border-top: 1px solid #999999;
	margin-bottom: 110px;
}

.reqTable th,
.reqTable td {
	border-bottom: 1px dashed #999999;
	box-sizing: border-box;
	padding: 15px 25px;
	vertical-align: middle;
	font-weight: 400;
}

.reqTable th {
	background: #f5fafa;
	width: 220px;
	text-align: center;
}

.reqTable td .new::after {
	content: "New！";
	font-weight: 700;
	color: #ff0000;
	display: inline-block;
	margin-left: .5em;
	animation:blink 1.5s step-end infinite;
}

@keyframes blink{
    0% {
		opacity: 0;
	}
	50%,75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.entLink {
	text-align: center;
}

.entLink a {
	display: inline-block;
	width: 450px;
	background: #70cec6;
	color: #fff;
	text-decoration: none;
	padding: 20px 0;
	text-align: center;
	line-height: 1.0;
	position: relative;
	transition: all, .2s;
}

.entLink a::after {
	width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
	content: '';
	position: absolute;
	top: 45%;
	right: 7%;
	transition: all, .2s;
}

.entLink a:hover::after {
	right: 4%;
}







.indentText {
	text-indent: -1.1em;
	padding-left: 1.1em;
}

.pcIn {
	display: inline;
}

.spIn {
	display: none;
}

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

	.mainExTitle {
		font-size: 2.4rem;
		margin-bottom: 10px;
	}
	
	.requirementsCase .sec01 .txtbox {
		padding: 0 5%;
		background: linear-gradient(90deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 80%);
	}
	
	.reqinner {
		padding: 60px 0;
	}
	
	.reqTable,
	.reqTable tbody,
	.reqTable tr,
	.reqTable th,
	.reqTable td {
		display: block;
	}
	
	.reqTable th,
	.reqTable td {
		padding: 15px 5%;
	}
	
	.reqTable {
		margin-bottom: 50px;
	}

	
	.reqTable th {
		width: auto;
	}
	
	.reqTable td {
		border-bottom: 1px solid #999999;
	}
	
	.entLink a {
		width: 80%;
	}
	
	
	.pcIn {
		display: none;
	}

	.spIn {
		display: inline;
	}
	
	
}

