@charset "utf-8";

/* bgGray */
.bgGray {
	position: relative;
	padding-bottom: 10rem;
}
.bgGray::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	transform: skewY(-11deg);
	position: absolute;
	left:0;
	top: 0;
	z-index: -1;
}

/* main */
main {
	margin-top: 10rem;
}
@media (max-width: 768px) {
	main {
		margin-top: 12rem;
	}
}

/* list */
.list {
	margin-top: 4rem;
}
.list .listTtl {
	padding: 3rem;
	background: #000;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	position: relative;
}
.list .listTtl::before,
.list .listTtl::after {
	display: block;
	content: "";
	width: 2px;
	height: 4rem;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 5rem;
	margin-top: -2rem;
	transition: transform 0.3s ease-out;
}
.list .listTtl::before {
	transform: rotate(-90deg);
}
.list .listTtl.open::after {
	transform: rotate(-90deg);
}
.list .listTtl .icons {
	display: flex;
	align-items: center;
}
.list .listTtl span {
	margin-left: 2rem;
	font-family: korolev-condensed, sans-serif;
	font-weight: 700;
	color: #fff;
	line-height: 2rem;
	vertical-align: middle;
}
.list .listTtl span.iconNew {
	padding: 0.3rem 1rem 0.1rem 1rem;
	background: #eb5505;
	font-size: 1.8rem;
}
.list .listTtl span.iconFirst {
	padding: 0.4rem 1rem 0.1rem 1rem;
	background: #13a4bc;
	font-size: 1.5rem;
}
@media (max-width: 768px) {
	.list {
		margin-top: 0;
		margin-left: -4rem;
		margin-right: -4rem;
		border-top: 0.3rem solid #fff;
	}
	.list:first-of-type {
		margin-top: 9rem;
	}
	.list .listTtl {
		padding: 4.8rem 4rem;
		font-size: 3.8rem;
		flex-direction: column;
		justify-content: flex-start;
	}
	.list .listTtl::before,
	.list .listTtl::after {
		width: 0.5rem;
		height: 8rem;
		right: 8rem;
		margin-top: -4rem;
	}
	.list .listTtl .icons {
		margin-bottom: 1.5rem;
	}
	.list .listTtl span {
		line-height: 3rem;
	}
	.list .listTtl span.iconNew {
		padding: 0.5rem 1rem 0.1rem 1rem;
		font-size: 3rem;
	}
	.list .listTtl span.iconFirst {
		padding: 0.5rem 1rem 0.1rem 1rem;
		font-size: 2.4rem;
	}
}

.list .detail {
	display: none;
	margin-bottom: 9rem;
	padding: 3rem 4rem 5rem;
	border: 1px solid #000;
	line-height: 1.88;
}
.list .detail .wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.list .detail .wrap > dl {
	width: 49%;
}
.list .detail dl {
	margin-top: 3rem;
}
.list .detail dt {
	padding: 1.1rem 3rem;
	font-size: 2rem;
	font-weight: 800;
	background: #e6e6e6;
}
.list .detail dd {
	margin-top: 1.5rem;
}
.list .detail dd ul + p,
.list .detail dd p + p {
	margin-top: 4rem;
}
.list .detail dd ul.mgt {
	margin-top: 4rem;
}
.list .detail dd ul li.indent {
	padding-left: 4em;
	text-indent: -4em;
}
.list .detail dd a {
	text-decoration: underline;
}
.list .detail dd + dt {
	margin-top: 3rem;
}
.list .btnWrap {
	margin-top: 4rem;
	padding-top: 4rem;
	border-top: 1px solid #000;
}
.list .btnEntry {
	margin: 0 auto;
	width: 40rem;
}
.list .btnEntry a {
	display: block;
	padding: 2rem;
	background: #000;
	font-size: 2.6rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
.list .btnEntry a:hover {
	background: #13a4bc;
}
@media (max-width: 768px) {
	.list .detail {
		margin-bottom: 14rem;
		padding: 6.5rem 4rem 0;
		border: none;
	}
	.list .detail .wrap {
		flex-direction: column;
	}
	.list .detail .wrap > dl {
		width: 100%;
	}
	.list .detail dl {
		margin-top: 9rem;
	}
	.list .detail dt {
		padding: 1.8rem 3rem;
		font-size: 3.2rem;
	}
	.list .detail dd {
		margin-top: 7rem;
	}
	.list .detail dd ul + p,
	.list .detail dd p + p {
		margin-top: 7.5rem;
	}
	.list .detail dd ul.mgt {
		margin-top: 7.5rem;
	}
	.list .detail dd + dt {
		margin-top: 9rem;
	}
	.list .btnWrap {
		margin-top: 14rem;
		padding-top: 14rem;
	}
	.list .btnEntry {
		width: 100%;
	}
	.list .btnEntry a {
		padding: 2.5rem 2rem;
		font-size: 4.6rem;
	}
}