@charset "utf-8";
/* CSS Document */	


section.page_title_wrap span{
display: block;	
}
	.page_title_wrap + section > div h2:first-of-type{
		margin-top: calc(32px + 17px);
	}
	

section {
position: relative;
    z-index: 0;
}
	
section > .sec-inner > :is(p, dl, table, blockquote, div, ol, h3) {
    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.875;
}		

section .sec-inner h2 + p {
	margin-top: 1.7rem;
}

section .sec-inner h2 + h3{
        margin-top: 1.7rem;

}

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

}

section .sec-inner h3 + *{
    margin-top: 1.5rem;

}

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


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: 2.6rem;
}

section .sec-inner ol li{
display: flex;
        align-items: baseline;
        letter-spacing: 0.05em;
        gap: 1rem;
	line-height: 1.66;
	text-align: justify;

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