/* 共通css */

/* parts_bgbox */
.p_bgbox{
	height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
}
.p_bgbox img{
	position: absolute;
	top: 0;left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	z-index: -1;
}
.p_bgbox .title{
	font-size: 2.5em;
	line-height: 1.2;
	padding: 0 0 0.2em 0;
	margin: 0;
	text-align: center;
}
.p_bgbox .title__sub{
	font-size: 0.8rem;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

@media screen and (max-width:768px){
	.p_bgbox{
		height: 190px;
	}
	.p_bgbox .title{
		font-size: 26px;
	}

}



.p_lead{
	text-align: center;
	padding: 70px 0;
	font-size: 1.2em;
	font-weight: 600;
	line-height: 1.8em;
}
@media screen and (max-width:768px){
	.p_lead{
	padding: 40px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8em;
	text-align: center;
	background: #fff;
	}
}




/* -------------------------------改行タグ */
br.pc{
	
}
br.sm {
	display: none;
}
@media screen and (max-width:768px){
	br.pc{
		display: none;
	}
	br.sm {
		display: block;
	}
}

/* -------------------------------背景色 */
.p_bg--gray{
	background: #F4F4F4;
}

.p_bg--white{
	background: #fff;
}


/* -------------------------------横幅パーツ */
.p_sec--1200{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.p_sec--980{
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}
.p_sec--860{
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width:768px){
	.p_sec--1200,
	.p_sec--980,
	.p_sec--860{
		width: 90%;
	}
	
}
	
/* -------------------------------見出しパーツ */
.p_tit--under--ja{
	text-align: center;
	line-height: 1.6;
	font-size: 1.2em;
}
.p_tit--under--ja::after{
	display: block;
	content: "";
	width: 45px;
	height: 2px;
	background: #008475;
	margin: 1.5em auto 0;
}


.p_tit--grad{
	background: -webkit-linear-gradient(left, #000000 0%, #07483f 100%);
	background: -o-linear-gradient(left, #000000 0%, #07483f 100%);
	background: linear-gradient(to right, #000000 0%, #07483f 100%);
	color: #fff;
	width: max-content;
	margin-left: auto;
	margin-right: auto;
	padding: 0.4em;
}

.p_tit--black{
	background: #000;
	    display: inline;
	    padding: 0.2em 0;
	    filter: drop-shadow(-0.2em 0px 0px #000) drop-shadow(0.2em 0px 0px #000);
	color: #fff;
	line-height: 1.5;
	left: 0.4rem;
	    position: relative;
}


/* -------------------------------テーブルパーツ */
.p_table{
	display: flex;
}
.p_table .head{
	box-sizing: border-box;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", 'Noto Serif JP', serif;
	color: #007e56;
	font-size: 14px;
	font-weight: normal;
	padding: 30px 10px;
	vertical-align: top;
	border-top: 2px solid #007e56;
	text-align: left;
}
.p_table .body{
	flex:1;
	padding: 30px 20px 50px 20px;
	vertical-align: top;
	border-top: 1px solid #e2e2e2;
	line-height: 1.8;
}


.p_table.is--small .head{
	width: 200px;
}

.p_table.is--medium .head{
	width: 310px;
}
@media screen and (max-width:768px){
	.p_table{
		display: block;
	}
	.p_table .head{
		width: 100% !important;
		padding: 15px 10px 13px 10px;
	}
	.p_table .body{
		padding: 13px 10px 30px 10px;
	}
}

.p_table--box{
	background: #F4F4F4;
	display: flex;
	padding: 2em;
	margin-bottom: 2px;
}
.p_table--box--head{
	color: #016C64;
	font-weight: bold;
	margin-right: 1em;
	line-height: 1.3;
}
.p_table--box--body{
	flex:1;
	line-height: 1.3;

}