/* contents/common
-------------------------------------------*/

#page_header{
	width: 100%;
	padding-bottom: 4%;
}
.page_head__in{
	position: relative;
}
.head_visual{
	overflow: hidden;
	width: 96%;
	height: auto;
	margin: 0 0 0 auto;
	border-radius: 0 0 0 60px;
}
.head_visual img{
	object-fit: cover;
	width: 100%;
}
.head_tit{
	position: absolute;
	bottom: 12%;
	left: 8%;
	display: inline;
	padding: 0 2% 4px;
	border-radius: 8px;
	color: var(--brown);
	font-size: 40px;
	line-height: 1.6;
	font-weight: normal;
	letter-spacing: .1em;
	background-color: #fff;
}
.breadcrumbs{
	width: var(--page-width);
	margin: 0 auto;
	padding: 2% 0;
	text-align: left;
}
.breadcrumbs ul{
	display: flex;
	justify-content: flex-end;
	font-size: 12px;
}
.breadcrumbs ul li{
	color: var(--brown);
}
.breadcrumbs ul li a{
	font-weight: normal;
	color: var(--green);
}
.breadcrumbs ul li a:hover{
	opacity: var(--hover);
}
.breadcrumbs ul > * + *::before {
	content: "/";
	margin-left: 1em;
	margin-right: 1em;
	font-weight: normal;
}
#page_nav ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 12%;
}
#page_nav ul li a{
	display: block;
	height: 66px;
	line-height: 66px;
	border-radius: 33px;
	font-size: 13px;
	font-weight: bold;
	color: var(--brown);
	background-color: var(--bg-sub-color);
}
#page_nav ul li a .button__label{
	padding: 1% 0;
	padding-right: 10%;
	background: url(../img/common/ic_circle_arrow_brown.svg) right center / 18px auto no-repeat;
}
#contents .con__in h3.tit,
#contents #advice h3.tit,
#contents #flow h3.tit,
#contents #types h3.tit{
	display: inline-block;
	position: relative;
	font-size: 32px;
	margin-bottom: 12%;
}
#contents .con__in h3.tit:before,
#contents #advice h3.tit:before,
#contents #flow h3.tit:before,
#contents #types h3.tit:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -20px;
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: var(--font-black);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
}
#contents #types h3.tit:before,
#contents .box h3.tit:before{
	background-color: #fff;
}
#contents .con__in h3.tit .gr{
	color: var(--green);
}
#contents .con__in h3.tit .small{
	font-size: 75%;
}

.sec .tbl dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: left;
	font-size: 16px;
	border: 1px solid;
	border-top: 0;
	border-color: var(--bg-sub-color);
}
.sec .tbl .head{
	border: none;
}
.sec .tbl dl.head dt{
	width: 100%;
	padding: 8px 4px;
	color: #fff;
	text-align: center;
	font-weight: normal;
	background-color: var(--brown);
}
.sec .tbl dt,
.sec .tbl dd{
	padding: 3%;
}
.sec .tbl dt{
	width: 24%;
	font-weight: bold;
}
.sec .tbl dd{
	width: 76%;
	text-align: justify;
	background-color:#fff;
}

@media screen and (max-width: 960px){
	
	#page_header{
		padding-top: 22%;
	}
	.head_visual{
		width: 84%;
		margin: 0 auto;
		border-radius: 40px;
	}
	.head_visual img{
		height: 40vh;
		min-height: 260px;
	}
	.head_tit{
		bottom: 8%;
		left: 4%;
		font-size: 36px;
	}	
}

@media screen and (max-width: 650px){
	
	#page_header{
		padding-top: 40%;
		padding-bottom: 16%;
	}
	.head_visual{
		width: 92%;
		border-radius: 20px;
	}
	.head_visual img{
		height: 260px;
	}
	.head_tit{
		bottom: 40%;
		left: 6%;
		font-size: 24px;
	}
	#page_nav ul{
		padding-bottom: 28%;
		row-gap: 8px;
	}
	#page_nav ul li a{
		height: 52px;
		line-height: 52px;
		border-radius: 26px;
		font-size: 12px;
	}
	#contents .con__in h3.tit,
	#contents #advice h3.tit,
	#contents #flow h3.tit,
	#contents #types h3.tit{
		font-size: 20px;
		margin-bottom: 20%;
	}
	.sec .tbl dl{
		font-size: 14px;
	}
	.sec .tbl dl.head dt{
		padding: 6px 4px;
	}
	.sec .tbl dt,
	.sec .tbl dd{
		padding: 4%;
	}
	.sec .tbl dt{
		width: 30%;
	}
	.sec .tbl dd{
		width: 70%;
	}
	
}