
/* .introWrap {
  margin-top: 40px;
}
@media only screen and (min-width: 1080px) {
  .introWrap {
    margin-top: 90px;
  }
} */

.sectionWrap{
	width: 100%;
	margin: 40px auto;
}
@media only screen and (min-width: 1080px) {
	.sectionWrap{
		margin: 90px auto;
	}
}
.sectionWrap > * {
	margin-top: 80px;
}
.sectionWrap > *:first-child {
	margin-top: 0;
}

.section{
	width: 100%;
}
.section > *{
	margin-top: 30px;
}
.section > *:first-child {
	margin-top: 0;
}

.sectionTitleArea + *{
	margin-top: 20px;
}
.sectionTitle{
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.08em;
}

.localTitleArea + *{
	margin-top: 8px;
}
.localTitle{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.08em;
}

.signature{
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.textArea, .numList, .kakkoNumList{
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.08em;
}
.textArea > *{
	margin-top: 1em;
}
.textArea > *:first-child{
	margin-top: 0;
}

.numList > *, .kakkoNumList > *{
	margin-top: 0.6em;
}
.numList > *:first-child, .kakkoNumList > *:first-child{
	margin-top: 0;
}
.numList > li, .kakkoNumList > li{
	line-height: inherit;
	font-size: inherit;
	letter-spacing: inherit;
	position: relative;
	box-sizing: border-box;
}
.numList > li:before, .kakkoNumList > li:before{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.numList {
	counter-reset: num-counter;
}
.numList > li{
	padding-left: 1.2em;
}
.numList.keta2 > li{
	padding-left: 1.8em;
}
.numList > li:before {
	content: counter(num-counter) "";
	counter-increment: num-counter;
}


.kakkoNumList{
	counter-reset: kakkonum-counter;
}
.kakkoNumList > li{
	padding-left: 2em;
}
.kakkoNumList > li:before {
	content: "(" counter(kakkonum-counter) ")";
	counter-increment: kakkonum-counter;
}

.link{
	color: var(--linkBlue);
}
.link:hover{
	text-decoration: underline;
}
