/* CSS Document */
@charset "utf-8";

body *{
	font-size: 18px;
	line-height: 1.7;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	box-sizing: border-box;
	color: #001e43;
}
body a{
	text-decoration: none;
}

body{
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
body .eng{
	font-family: "Noto Serif", "Times New Roman", serif, sans-serif;
}


h1,h2,h3{
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 1em;
}
h1{
	font-size: 3em;
}
h2{
	font-size: 2em;
}
h3{
	font-size: 1.5em;
}

.conWrap{
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.conWrap_s{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.pc{}
body .sp{
	display: none!important;
}

/* option
***************************************/
.mb10{ margin-bottom: 10px; }
.mb20{ margin-bottom: 20px; }
.mb50{ margin-bottom: 50px; }

.mt10{ margin-top: 10px; }
.mt20{ margin-top: 20px; }
.mt50{ margin-top: 50px; }

.title_01{
	display: block;
	padding: 0.5em 0.5em;
	width: 100%;
	background-color: #001e43;
	color: #FFF;
}

.title_green{
	display: block;
	padding: 0.5em 0.5em;
	width: 100%;
	background-color: #0b985e;
	color: #FFF;
}
.font_size_26{
	font-size: 26px;
}

.text_align_right{
	text-align: right;
}
.text_align_center{
	text-align: center;
}

.tbl01{
	width: 100%;
}
.tbl01 th{
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
.tbl01 th,
.tbl01 td{
	padding: 1em;
	border: 2px solid #001e43;;
}

.list__decimal{
	list-style: decimal;
	margin-left: 1.4em;
}


/* Header
***************************************/
header{
	background-color: #FFF;
	/* padding: 0 0 20px; */
	padding: 0 0;
}
.top header{
	background: none;
}
	.header_wrap{
		display: grid;
        grid-template-columns: 250px auto 149px 264px;
        grid-template-rows: auto;
        gap: 20px 0px;
        padding: 10px;
        /* margin-bottom: 20px; */
        align-items: center;
	}

	header a{
		text-decoration: none;
	}
header .h_logo{
	display: block;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: 0;
	color: #333;
}
	header .h_logo img{
		display: block;
		width: 100%;
		height: auto;
	}
header .h_t01{
	display: flex;
	text-align: left;
	align-items: center;
	font-size: 13px;
	line-height: 1.5;
	margin-left: 10px;
}
header .h_t02{
	display: flex;
	text-align: center;
	align-items: center;
	font-size: 13px;
	line-height: 1.5;
}
header .h_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    background-color: #ed770a;
    color: #FFF;
    border-radius: 32px;
    padding: 15px 10px 15px 50px;
    position: relative;
}
	header .h_cta .h_cta_1{
		font-size: 14px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 27px;
		line-height: 1.2;
		width: 54px;
		height: 52px;
		background-color: #FFF;
		color: #333;
		position: absolute;
		left: 6px;
		top: 50%;
		margin-top: -26px;
	}
	header .h_cta b{
		display: block;
		width: 100%;
		font-size: 20px;
		text-align: center;
		line-height: 1;
		color: #FFF;
	}
	header .h_cta .h_cta_2{
		display: block;
		width: 100%;
		font-size: 13px;
		text-align: center;
		line-height: 1;
		color: #FFF;
	}
header nav{
	grid-column: 1 / 5;
	grid-row: 2 / 3;
}
	header nav ul{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
		header nav ul li a{
			display: block;
			padding: 0.2em 1em;
			font-size: 16px;
			line-height: 1;
		}
		header nav ul li:last-child a{
			border-right: none;
		}

.page_top header{
	padding-bottom: 0;
}
.page_top .header_wrap{
	margin-bottom: 0;
}
.page_top header nav{
	display: none;
}


.page_column header{
	background-color: #001e43;
}
.page_column header .h_logo img{
	filter: brightness(0) invert(1);
}
.page_column header .h_t01{
	color: #FFF;
}

/* CTA */
.btn_cta_fix{
  position: fixed;
  right: 10px;
  bottom: 10px;                 /* 常にbottom:0 を基準にして… */
  transform: translateY(120%); /* 初期は画面外に退避（確実に見えない） */
  transition: transform .4s ease;
  z-index: 9999;
  width: 350px;
}
.btn_cta_fix.show{
  transform: translateY(0);   /* 表示状態（スライドイン） */
}

.btn_cta_fix a{
  display: block;
  width: 100%;
}
.btn_cta_fix a img{
  display: block;
  width: 100%;
  height: auto;
}
.pc.btn_cta_fix{
	display: block;
}






/* Footer
***************************************/
footer{
	background-color: #001e43;
}
	.serviceList{
		display: flex;
		gap: 40px; 
		width: 1100px;
		margin: 0 auto;
		padding: 100px 0;
		justify-content: center;
	}
	.serviceList li{
		width: 33%;
	}
	.serviceList li a{
		display: block;
		text-align: center;
		color: #333;
		text-decoration: none;
	}
		.serviceList li img{
			display: block;
			width: 100%;
			height: auto;
			border: 1px solid #0b985e;
			padding: 20px 40px;
			margin-bottom: 20px;
		}
	.serviceList p{
		font-size: 19px;
		line-height: 1.5;
	}
	.serviceList p b{
		display: block;
		font-size: 26px;
		font-weight: bold;
		margin-bottom: 0.5em;
	}

	.footerWrap{
		width: 1200px;
		margin: 0 auto;
		padding: 100px 0;
		display: flex;
		justify-content: space-between;
	}
		.footerWrap *{
			color: #FFF;
		}
		.footerWrap .logo{
			width: 270px;
			margin-right: 280px;
		}
			.footerWrap .logo a{
				width: 100%;
				display: block;
			}
				.footerWrap .logo a img{
					width: 100%;
					height: auto;
					display: block;
				}
			.footerWrap .logo p {
				font-size: 16px;
				margin-bottom: 1em;
				margin-top: 1em;
				text-align: center;
			}



		.footerWrap .footerWrap_dl_1{
			margin-bottom: 0;
		}
			.footerWrap .footerWrap_dl_1 p{
				font-size: 20px;
				margin-bottom: 1vw;
				font-weight: bold;
			}
			.footerWrap .footerWrap_dl_2 ul{
				margin-top: 2.5em;
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				width: 330px;
			}
				.footerWrap .footerWrap_dl_2 ul li{
					width: 49%;
				}
			.footerWrap .footerWrap_dl_1 ul li,
			.footerWrap .footerWrap_dl_2 ul li{
				margin-bottom: 0.3em;
			}
			.footerWrap .footerWrap_dl_1 ul li a,
			.footerWrap .footerWrap_dl_2 ul li a{
				font-size: 0.8em;
			}

	footer .copyright{
	background-color: #001e43;
		color: #FFF;
		text-align: center;
		padding: 0.5em 0;
		font-size: 0.9em;
	}

/* パンくず
***************************************/
.pankuzu{
	border-top: 1px solid #001e43;
	margin-bottom: 30px;
	padding: 30px 0 40px;
}
	.pankuzu ul{
		width: 1200px;
		padding: 0.3em 0;
		margin: 0 auto;
	}
	.pankuzu ul li{
		display: inline-block;
		position: relative;
		padding-right: 0.8em;
		margin-right: 0.3em;
		color: #001e43;
		font-size: 14px;
	}
	.pankuzu ul li::after{
		content: "";
		display: block;
		height: 18px;
		transform: rotate(15deg);
		border-right: 1px solid #001e43;
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -7px;
	}
	.pankuzu ul li:last-child::after{
		display: none;
	}
	.pankuzu ul li a{
		text-decoration: underline;
		font-size: 14px;
	}

/* ページコンテンツ
***************************************/
.bg_pages{
	background-image: url(../img/common/bg_page.png);
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: contain;
}
.pages_sec{
	background-color: #f6f6f6;
	padding: 60px 40px;
	box-sizing: border-box;
}
.pages_sec h1{
	font-size: 36px;
	font-weight: bold;
}
.pages_sec h2{
	font-size: 30px;
	font-weight: bold;
	margin-top: 2em;
	margin-bottom: 1em;
}
	.pages_sec time{
		display: block;
		margin-bottom: 20px;
	}
	.pages_sec img.img100{
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}

/* タイトル
***************************************/
.ti01{
	font-size: 40px;
	font-weight: bold;
}
.ti02{
	font-size: 16px;
	font-weight: normal;
}

/* ページネーション
***************************************/
.pagenation{
	padding: 50px 0;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
	.pagenation ul{
        display: flex;
        justify-content: left;
        gap: 10px;
	}
		.pagenation ul li{
		}
			.pagenation ul li a{
				display: inline-block;
				padding: 1.5em 1em;
				width: 3em;
				height: 3em;
				background-color: #f7ffef;
				border: 1px solid #0b985e;
				text-decoration: none;
				line-height: 0;
				border-radius: 1.5em;
				text-align: center;
			}
			.pagenation ul li .chk{
				background-color: #0b985e;
				color: #FFF;
			}
			.pagenation ul li .prev,
			.pagenation ul li .next{
				position: relative;
			}
				.pagenation ul li .prev::before,
				.pagenation ul li .next::before{
					content: "";
					display: block;
					width: 10px;
					height: 10px;
					border-top: 2px solid #0b985e;
					position: absolute;
					top: 50%;
					margin-top: -6px;
				}
				.pagenation ul li .prev::before{
					border-left: 2px solid #0b985e;
					transform: rotate(-45deg);
					margin-top: -6px;
					margin-right: -9px;
					right: 50%;
				}
				.pagenation ul li .next::before{
					border-right: 2px solid #0b985e;
					transform: rotate(45deg);
					margin-top: -6px;
					margin-left: -7px;
					left: 50%;
				}

.dl_term{
	width: 100%;
	/* display: flex;
	flex-wrap: wrap;
	border: 2px solid #001e43; */
}
	.dl_term dt{
	width: 100%;
		font-size: 1.2em;
		font-weight: bold;
		padding: 0.5em;
	}
	.dl_term dd{
	width: 100%;
		padding: 0.5em;
	}
	.dl_term dt,
	.dl_term dd{
		/* border-bottom: 2px solid #001e43; */
		box-sizing: border-box;
	}
	
.dl_history{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 1em;
}
	.dl_history > dt{
		width: 9%;
		font-weight: bold;
		border-bottom: 1px solid #001e43;
		margin-bottom: 1em;
	}
	.dl_history > dd{
		width: 91%;
		border-bottom: 1px solid #001e43;
		margin-bottom: 1em;
	}
		.dl_history > dd dl{
			width: 100%;
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			margin-bottom: 1em;
		}
			.dl_history > dd dl dt{
				width: 11%;
			}
			.dl_history > dd dl dd{
				width: 87%;
			}


