@charset "utf-8";
/* CSS Document */	
	.page_title_wrap + section > div h2:first-of-type{
		margin-top: 3.67em;
	}
	
section {
position: relative;
    z-index: 0;
}
	
section > .sec-inner > :is(p, dl, table, blockquote, div, ol, h3) {
    width: 90.91%;
    margin-inline:auto;
}

		
section > div p {
	letter-spacing: 0.05em; 
	/*letter-spacing: 0.075em; */
	text-align: justify; 
	font-family: 'BIZ UDPGothic', sans-serif; 
	font-weight: 700;    
	        line-height: 1.88;
}		

section .sec-inner h2 + p {
	margin-top: 2.38em;
}

section .sec-inner h2 + h3{
    margin-top: 2.18em;

}

section .sec-inner h3 {
    color: #603813;
    border-bottom: 0.15em solid #F28E1E;
    font-size: 1.25em;
    padding-bottom: 0.8em;
        margin-top: 6rem;

}

section .sec-inner h3 + *{
    margin-top: 0.63em;

}

section .sec-inner p + p{
margin-top:2em;
}


section .sec-inner p span{
display: block;
}


section .sec-inner .ga4 + .ga4{
margin-top:0;
}
section .sec-inner ol{
	counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */
	display: flex;
	flex-direction: column;
	        gap: 1em;
	margin-top: 1.88em;
	
}

section .sec-inner ol li{
display: flex;
        align-items: baseline;
        letter-spacing: 0.05em;
        gap: 0.75em;
	        max-width: 60.25em;
	        line-height: 1.56;
	        text-align: justify;

}
section .sec-inner ol li::before{
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum)'.'; /* カウントした数に応じて番号を表示 */
	color: #E88A25;
	
}