@charset "utf-8";


/* statistics
----------------------------------------------- */

.statistics {
	position: relative;
	margin: 70px 0 0;
}
.statistics__inner {
	display: flex;
	justify-content: space-between;
}
.statistics__graph {
	margin: 0 80px;
	width: calc(50% - 160px);
}
.statistics__data {
	width: 50%;
	background-color: #fff;
}
.statistics__lists {
	padding: 15px 20px;
	font-size: 0;
}
.statistics__list {
	display: flex;
	align-items: center;
	margin: 10px 0;
	font-size: 13px;
	letter-spacing: 0.04em;
}
.statistics__list span {
	display: block;
	margin: 0 10px 0 0;
}
.statistics__list span:nth-child(1) {
	width: 17px;
	height: 17px;
}
.statistics__list span:nth-child(2) {
	margin: 0 15px 0 0;
	width: 35px;
	width: 45px;
	text-align: right;
}
.statistics__text {
	margin: 0 20px;
	padding: 20px 0 0;
	font-size: 14px;
	text-align: justify;
	letter-spacing: 0.03em;
	line-height: 24px;
}


/* faq
----------------------------------------------- */

.faq {
	display: grid;
	margin: 50px auto 0;
	max-width: 1500px;
}
.faq__inner {
	margin: -50px 135px 0;
	padding: 0 0 180px;
}
.faq__ques {
	display: flex;
	position: relative;
	margin: 50px 0 0;
	color: #000;
	background: #ff2d59;
	overflow: hidden;
	cursor: pointer;
}
.faq__ques:before,
.faq__ques:after {
	display: block;
	content: "";
	position: absolute;
}
.faq__ques:before {
	top: 0;
	left: 0;
	width: 60px;
	height: 100%;
	background-image: url(../../more/images/icon_ques@0,5x.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 32px;
	background-color: #ff2d59;
	z-index: 1;
}
.faq__ques:after {
	top: 50%;
	right: 25px;
	margin: -6px 0 0;
	width: 20px;
	height: 13px;
	background-image: url(../images/arrow_black_up.svg);
	background-size: 20px 13px;
}
.faq__ques span {
	display: flex;
	align-items: center;
	padding: 5px 40px 5px 75px;
	min-height: 50px;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 35px;
}
.faq__answer {
	padding: 0 0 50px;
}

.faq__point {
	display: flex;
	align-items: center;
	position: relative;
	margin: 40px 0 30px 60px;
	width: 180px;
	height: 35px;
	color: #fff;
	font-size: 21px;
	font-weight: 700;
	text-indent: 35px;
	letter-spacing: 0.11em;
	background-color: #ff2d59;
}
.faq__point--nega {
	background-color: #2d72ff;
}
.faq__point:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: -35px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 35px 0 0 35px;
}
.faq__point--posi:after {
	border-color: transparent transparent transparent #ff2d5b;
}
.faq__point--nega:after {
	border-color: transparent transparent transparent #2d72ff;
}

.faq__column {
	margin: 20px 0 0 60px;
	padding: 10px 0 25px;
	background-color: #fff;
}
.faq__column:first-child {
	margin-top: 40px;
}
.faq__text {
	margin: 0 25px;
	padding: 15px 0 0;
	font-size: 14px;
	text-align: justify;
	letter-spacing: 0.03em;
	line-height: 24px;
}
.faq__text a {
	text-decoration: underline;
}
.faq__text--title {
	font-size: 18px;
	font-weight: 700;
}
.faq__text--posi {
	color: #ff2d59;
}
.faq__text--nega {
	color: #2d72ff;
}
.faq__lists {
	margin: 0 25px;
	padding: 15px 0 0;
}
.faq__list {
	padding: 0 0 0 14px;
	font-size: 14px;
	text-indent: -14px;
	text-align: justify;
	letter-spacing: 0.03em;
	line-height: 24px;
}
.about_interview{
	margin: 20px 0px 0 60px;
	padding: 25px 20px;
    font-size: 14px;
	background: #eee;
}
.about_interview .ttl{
	font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}
.about_interview p{
	line-height: 1.6;
}

/* ready */

.js-indicate-ready .faq__ques span {
	transform: translateX(-100%);
	transition-property: transform;
}
.js-indicate-ready .faq__ques:before {
	transform: translateY(-100%);
	transition-property: transform;
}
.js-indicate-ready .faq__ques:after {
	opacity: 0;
	transition-property: opacity;
}

/* start */

.js-indicate-start .faq__ques span {
	transform: translateX(0);
	transition-duration: 0.8s;
	transition-delay: 0.25s;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.js-indicate-start .faq__ques:before {
	transform: translateY(0);
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.js-indicate-start .faq__ques:after {
	opacity: 1;
	transition-duration: 0.25s;
	transition-delay: 0.7s;
}

/* hide */

.js-faq-hide .faq__ques {
	color: inherit;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 49%, #f4f4f4 50%, #f4f4f4 100%);
}
.js-faq-hide .faq__ques:after {
	background-image: url(../images/arrow_black_down.svg);
}


/* pc
----------------------------------------------- */

@media print, screen and (min-width:1000px) {


	/* faq
	----------------------------------------------- */
	
	.faq__ques {
		transition-property: color, background;
		transition-duration: 0.25s;
	}

	/* hover */

	.js-faq-hide .faq__ques:hover {
		color: #000;
		background: #ff2d59;
	}
	.js-faq-hide .faq__ques:hover:after {
		background-image: url(../images/arrow_black_down.svg);
	}


	/* retina
	----------------------------------------------- */
	
	@media only screen and (-webkit-min-device-pixel-ratio: 2) { 
	}


}


/* tablet
----------------------------------------------- */

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


/* mobile
----------------------------------------------- */

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


	/* statistics
	----------------------------------------------- */
	
	.statistics {
		margin: 0;
	}
	.statistics__inner {
		display: block;
	}
	.statistics__graph {
		margin: 40px 54px 0;
		width: auto;
	}
	.statistics__data {
		margin: 40px 0 0;
		padding: 5px 0 20px;
		width: auto;
	}
	.statistics__lists {
		margin: 0 20px;
		padding: 15px 0 0;
	}
	.statistics__list {
		margin: 10px 0 0;
	}
	.statistics__list:first-child {
		margin: 0;
	}
	.statistics__text {
		margin: 0;
		padding: 15px 20px 0;
	}


	/* faq
	----------------------------------------------- */
	
	.faq {
		max-width: auto;
		margin-top: 0;
	}
	.faq__inner {
		margin: 0 10px;
		padding: 0 0 100px;
	}
	.faq__ques {
		margin: 20px 0 0;
	}
	.faq__ques:before {
		width: 40px;
		background-size: 21px;
	}
	.faq__ques:after {
		display: none;
	}
	.faq__ques span {
		padding: 10px 20px 10px 55px;
		min-height: 23px;
		font-size: 14px;
		line-height: 21px;
	}
	.faq__answer {
		padding: 0 0 40px;
	}
	
	.faq__point {
		margin: 40px 0 0;
		width: 150px;
		height: 30px;
		font-size: 18px;
		text-indent: 20px;
	}
	.faq__point:after {
		right: -30px;
		border-width: 30px 0 0 30px;
	}
	
	.faq__column {
		margin: 20px 0 0;
		padding: 25px 0;
	}
	.faq__column:first-child {
		margin-top: 20px;
	}
	.faq__text {
		margin: 15px 15px 0;
		padding: 0;
	}
	.faq__text--title {
		margin: 0 15px;
		font-size: 16px;
	}
	.faq__lists {
		margin: 10px 15px 0;
		padding: 0;
	}
	.about_interview{
		margin: 30px 0 0 0;
		font-size: 14px;
		padding: 25px 20px;
	}
	.about_interview .ttl{
		font-weight: bold;
		font-size: 16px;
		margin-bottom: 10px;
	}
	.about_interview p{
		line-height: 1.6;
	}

}


