@charset "utf-8";
footer div{
	padding-top: 20px;
}
/*[開始]TOPへもどるボタン*/
#top_button {
	position: fixed;
	bottom: 1em;
	right: 1em;
	z-index: 1;
	width: 100%;
	max-width: 70px;
	filter: drop-shadow(0 3px 3px #e6e4e2);
	-webkit-filter: drop-shadow(0 3px 3px #e6e4e2);
}
#top_button:hover {
	opacity: 0.7;
}
/*[終了]TOPへもどるボタン*/
h2 {
	padding-left: 0.7em;
	border-left: #cc0033 5px solid;
	border-bottom: 2px #ccc solid;
}
h3 {
	padding-left: 0.7em;
	border-left: #cc0033 2px solid;
}
/*[終了]見出しデザイン*/
.anchor {
	margin-top: -60px;
	padding-top: 60px;
}
.anchor_link {
	margin-bottom: 3em;
}
.anchor_link p {
	width: 100%;
	background-color: #fff;
	border-radius: 10px;
	filter: drop-shadow(0 3px 3px #e6e4e2);
	-webkit-filter: drop-shadow(0 3px 3px #e6e4e2);
}
.anchor_link p a {
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 5px;
	color: #333;
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	cursor: pointer;
}
.anchor_link p a:before {
	content: "▼";
	position: absolute;
	left: 15px;
}
/*
---------------------------------------------------
*/
/*[開始]コンテンツ幅指定*/
#content_wrap {
	width: 100%;
	max-width: 1080px;
	margin: 90px auto 0;
}
#content {
	width: 88.88%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}
/*[終了]コンテンツ幅指定*/
section {
	margin-bottom: 2em;
}
section[id^="kiyaku"] {
	padding-bottom: 2em;
	border-bottom: 1px #ccc solid;
}
section[id^="kiyaku"]:last-of-type {
	border-bottom: none;
}
h2 ~ p, h2 ~ ul {
	margin-bottom: 2em;
}
li {
	margin-bottom: 0.4em;
}
/*カッコのリストカウンタ*/
ol.kakko {
	margin-left: 1.5em;
}
ol.kakko > li {
	position: relative;
	list-style-type: none;
}
ol.kakko > li:before {
	position: absolute;
	right: calc(100% + 0.5rem);
	content: "("counter(list-item) ")";
}
/*ローマ数字のリスト*/
ol.roman {
	margin-left: 1em;
}
ol.roman > li {
	list-style-type: lower-roman;
}
/*普通の数字のリスト*/
ol.decimal {
	margin-left: 1em;
}
ol.decimal > li {
	list-style-type: decimal;
}
/*黒丸のリスト*/
ul.disc > li:before {
	content: "・";
}
ul.disc > li {
	text-indent: -1em;
	padding-left: 1em;
}
/*米印のリスト*/
ul.kome > li:before {
	content: "※";
}
ul.kome > li {
	text-indent: -1em;
	padding-left: 1em;
}