@charset "utf-8";
/*----------------------------------------
	タイトル関連
-----------------------------------------*/
/*固定ページ見出しH"*/
.midashi01,.main_wrap h1,.main_wrap h2{
	margin-bottom:20px;
	line-height: 1.5;
	font-size: 2.1rem;
	letter-spacing: 0.1em;
	margin-top: 0;
	font-weight: 700;
	padding-bottom: 14px;
	position: relative;
	color: #c07944;
}
.main_wrap h3,.midashi03{
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 1.8rem;
	position: relative;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #c07944;
	padding-bottom: 10px;
	font-weight: 700;
	color: #c07944;
}
.main_wrap h4{
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	font-weight: 700;
	color: #c07944;
}
.main_wrap h5{
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	font-weight: 700;
	color: #c07944;
}
.main_wrap h6{
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 100%;
	font-weight: bold;
}
.main_wrap p{
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 2.0rem;
	font-weight: 500;
}
.main_wrap ul,.main_wrap ol,.main_wrap table{
	margin-bottom: 40px;
	line-height: 1.7;
}
.main_wrap p a ,.main_wrap ul a,.main_wrap ol a,.main_wrap table a{
	color: #0071bc;
	text-decoration: underline;
}
.main_wrap p a:hover,.main_wrap ul a:hover,.main_wrap ol a:hover,.main_wrap table a:hover{
	opacity: 0.7;
	text-decoration: none;
}
@media(max-width: 768px){	
.midashi01,.main_wrap h1,.main_wrap h2{
    font-size: 2.0rem;
}
.main_wrap h3,.midashi03{
	font-size:1.8rem;
}
.main_wrap h4,.main_wrap h5{
	font-size:1.6rem;
}
.main_wrap p{
	margin-bottom: 20px;
}
.main_wrap p{
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 1.6rem;
	font-weight: 500;
}
}
/*----------------------------------------
	レイアウト関連
-----------------------------------------*/
.main_wrap img{
	margin-bottom:5px;
}
.main_wrap .aligncenter {
	display: block;
	text-align:center;
	max-width: 100%;
	 margin: 0 auto;
}
.main_wrap .alignleft {
	float: left;
	margin-right:20px;
	max-width: 100%;
}
.main_wrap .alignright {
	float: right;
	margin-left:20px;
	max-width: 100%;
}
.wp-caption{
	margin-bottom: 20px;
}
.wp-caption img {
margin-bottom: 10px;
padding: 0;
border: 0 none;
}

.wp-caption .wp-caption-text {
	text-align: center;
	margin-right: 20px; /* 右側の余白調整 */
	font-size: 86%!important;
	font-weight: 300;
}
p.wp-caption-text {
	margin-bottom: 0!important;
}
/*2列レイアウト*/
.col-2_list {
	display: flex;
	flex-wrap: wrap;
	 gap: 15px 15px;
	justify-content: space-between;
}
.col-2_list::after{
  content:"";
  display: block;
  max-width: 570px;
  width: calc(100% / 2 - 15px);
}
.col-2_list .col_box{
	max-width: 570px;
  width: calc(100% / 2 - 15px);
}
/*3列*/
.col-3_list {
	display: flex;
	flex-wrap: wrap;
	 gap: 20px 20px;
	justify-content: space-between;
	position: relative;
	
}
.col-3_list::after{
  content:"";
  display: block;
	 width: calc(100% / 3 - 20px);
	 max-width: 350px;
}
.col-3_list .col_box{
	 width: calc(100% / 3 - 20px);
	 max-width: 350px;
}
.col_box {
	margin-bottom: 15px;
}
@media(max-width: 768px){
.main_wrap .alignright, .main_wrap .alignleft {
    float: none;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
}
/*2列レイアウト*/
.col-2_list {
	 gap: 10px 10px;
}
.col-2_list .col_box{
	 width: calc(100% / 2 - 10px);
}
/*3列*/
.col-3_list {
	 gap: 10px 10px;
}
/*.col-3_list .col_box{
	 width: calc(100% / 2 - 10px);
}	*/
}
@media(max-width: 550px){
/*3列*/
.col-2_list {
	flex-direction: column;
}	
.col-2_list .col_box{
	 width: 100%;
	margin: 0 auto 15px auto;
}
/*3列*/
.col-3_list {
	flex-direction: column;
}	
.col-3_list .col_box{
	width: 100%;
	max-width: 330px;
	margin: 0 auto 15px auto;
}	
	
	}
/*----------------------------------------
	リスト関連
-----------------------------------------*/
.main_wrap ul,.main_wrap ol{
	margin-bottom:40px;
}
.main_wrap ul li{
	position:relative;
	margin-bottom: 10px;
	padding-left: 15px;
}
.main_wrap ul li:before{
	background-color: #d45215;
	width: 5px;
	height: 5px;
    content: "";
    vertical-align: middle;
	display: block;
	left: 0;
	top: 0.5em;
	border-radius: 50px;
	position: absolute;
}
.main_wrap ol{
	counter-reset:number; /*数字をリセット*/
	list-style-type: none; /*数字を一旦消す*/
}
.main_wrap ol{
	counter-reset: item;
}
.main_wrap ol li{
	position:relative;
	padding:0 0 1.0em 1.125em;
}
.main_wrap ol li:before{
	counter-increment: item;
	content: counter(item);
	position:absolute;
	top:0;
	left:0;
	font-size:100%;
	font-weight:bold;
	font-style: italic;
	color:#afd146;
}

@media(max-width: 768px){
}
/*----------------------------------------
	囲みボックス
-----------------------------------------*/
.main_wrap .box {
    padding: 1em;
    border: dashed 1px #d45215;/*点線*/
}
.main_wrap .box p{ 
	margin-bottom: 0!important;
	line-height: 2;
}	
@media screen and (max-width: 768px){

}
/*----------------------------------------
	テーブル関連
-----------------------------------------*/
.main_wrap table,.gaiyo {
  width: 100%;
	 border-top: 1px solid #c07944;
	 border-bottom: 1px solid #c07944;
}
.main_wrap table, .main_wrap table td, .main_wrap table th ,.gaiyo,.gaiyo td,.gaiyo th{
  border-collapse: collapse;
}
.main_wrap table td, .main_wrap table th,.gaiyo td,.gaiyo th {
  padding: 1.2em 0.5em;
}
.main_wrap table th,.gaiyo th {
  border-bottom: 1px solid #c07944;
	width: 25%;
}
.main_wrap table td,.gaiyo td {
  border-bottom: 1px solid #c07944;
}
@media screen and (max-width: 550px) {
.main_wrap table th,.gaiyo th {
	width: 30%;
}
}