/* dl */

.container>dl {
	border-bottom: 1px solid #D6D6D6;
}

.container>dl,
.container>dl>dl {
	padding-bottom: 5px;
	margin-bottom: 5px;
	width: 100%;
	-js-display: flex;
	display: -webkit-box;
	display: box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	box-pack: justify;
	flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.container>dl>dl>dt {
	padding-left: 2em;
	position: relative;
}

.container dt a {
	color: #000;
}

.container>dl>dl>dt:before {
	position: absolute;
	content: '∟';
	width: 1em;
	height: 1em;
	left: .5em;
	top: .2em;
}


/* PC */

@media screen and (min-width: 980px) {
	/* dl */
	.container>dl:last-child {
		margin-bottom: 40px;
	}
	.container>dl>dd,
	.container>dl>dl>dd {
		position: relative;
		width: 820px;
		font-size: 20px;
	}
	.container>dl>dd:before,
	.container>dl>dl>dd:before {
		position: absolute;
		content: '・・・・';
		left: -4em;
		top: 0;
		width: 4em;
		height: 1em;
	}
	.container dt a {
		font-size: 20px;
	}
	.container>dl>dt {
		width: 290px;
	}
	.container>dl>dl>dt {
		width: 220px;
	}
	.container>dl>dl>dt:before {
		left: .5em;
		top: .2em;
	}
}


/*SP*/

@media screen and (max-width: 980px) {
	/*SP*/
	.container>dl {
		padding: 0 10px;
	}
	.container>dl>dl>dt:before {
		left: .5em;
		top: 0;
	}
	.container>dl>dt,
	.container>dl>dl>dt,
	.container>dl>dd,
	.container>dl>dl>dd {
		width: 100%;
	}
	.container>dl>dl>dd {
		padding-left: 2em;
	}
}