@charset "UTF-8";

/*-----------------------------------

	agreement_block

-----------------------------------*/
#agreement_block {
	padding-bottom: 80px;
	line-height: 1.8;
}
#agreement_block .contents_inner {
	max-width: 720px;
}
#agreement_block .agreement_inner:not(:last-of-type) {
	margin-bottom: 60px;
}
#agreement_block h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}
#agreement_block ul li {
    list-style: outside decimal;
    width: calc(100% - 1.2em);
    margin-left: 1.2em;
}
#agreement_block ul li > ul li {
	list-style: none;
    counter-increment: number;
    position: relative;
    margin-left: 10px;
    width: calc(100% - 10px);
    padding-left: 1.3em;
    text-indent: -1.3em;
}
#agreement_block ul li > ul li::before {
	content: counter(number)"　";
	font-size: 14px;
	line-height: 29px;
}
#agreement_block ul li > ul li::after {
	content: "";
	width: 18px;
	height: 18px;
	border: 1px solid #000;
	border-radius: 50%;
	position: absolute;
    top: 7px;
    left: -6px;
}
@media screen and (max-width: 640px) {
	#agreement_block {
		padding-bottom: 40px;
	}
	#agreement_block .agreement_inner:not(:last-of-type) {
		margin-bottom: 30px;
	}
	#agreement_block h2 {
		font-size: 16px;
		margin-bottom: 5px;
	}
	#agreement_block ul li > ul li::before {
		font-size: 10px;
		line-height: 22px;
	}
	#agreement_block ul li > ul li::after {
		width: 14px;
		height: 14px;
		top: 5px;
		left: -5px;
	}
}

