
/* ------------------------------
 見出し・テキスト（PC）
------------------------------ */
/* -- h1 -- */
.heading p {
	font-size: 4.0rem;
	line-height: 1.5;
	text-align: center;
	font-weight: bold;
	padding: 50px 0;
}
.heading p span {
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
	color: #6f777e;
}
.heading p::after {
	content: "";
	display: block;
	width: 38px;
	height: 3px;
	background: rgb(0,98,171);
	background: linear-gradient(90deg, rgba(0,98,171,1) 50%, rgba(217,100,129,1) 50%);
	margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
	.heading p {
		font-size: 3.0rem;
		padding: 30px 0;
	}
	.heading p span {
		font-size: 1.2rem;
	}
	.heading p::after {
		margin: 10px auto 0;
	}
}

/* -- h1 -- */
.contents:has(.heading p) h1 {
	position: relative;
	display: block;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.5;
	border-bottom: 3px solid #bdccdc;
	padding-bottom: 15px;
	margin-bottom: 50px;
}
.contents:has(.heading p) h1::before {
	content: "";
	display: block;
	position: absolute;
	width: 64px;
	height: 3px;
	background-color: #0062ab;
	left: 0;
	bottom: -3px;
}
@media screen and (max-width: 767px) {
	.contents:has(.heading p) h1 {
		font-size: 2.0rem;
		padding-bottom: 10px;
		margin-bottom: 25px;
	}
}

/* -- h2 -- */
.contents:has(.heading p) h2 {
	font-size: 2.2rem;
	font-weight: bold;
	border-left: 3px solid #164A91;
	padding-left: 10px;
	line-height: 1.3;
	margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}
.contents:has(.heading p) h2::before {
    content: none;
}
/* -- h3 -- */
.contents:has(.heading p) h3 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 10px;
    border-left: none;
    padding-left: 0;
    line-height: inherit;
}
/* ------------------------------
 見出し・テキスト（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- h2 -- */
	.contents:has(.heading p) h2 {
		font-size: 1.8rem;
		padding-left: 10px;
	}
	/* -- h3 -- */
	.contents:has(.heading p) h3 {
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
}

/* ------------------------------
 コンテンツ
------------------------------ */
*:not(.wp-block-group) + .btn {
	margin-top: 80px;
}
/* ------------------------------
 コンテンツ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	*:not(.wp-block-group) + .btn {
		margin-top: 60px;
	}
}
.sideNavi {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}
.sideNavi li {
	width: auto;
	margin: 0 10px;
}
.sideNavi li a {
	font-weight: 600;
	display: block;
	width: fit-content;
	font-size: 1.6rem;
	color: #233c6e;
	background: #fff;
	cursor: pointer;
	border: solid 1px #fff;
	border-radius: 50px;
	padding: 1px 15px;
	margin-bottom: 10px;
	transition: background-color 0.3s;
	height: 34px;
    min-width: 110px;
	text-align: center;
}
/* タブ選択時 */
.sideNavi li.on a {
	color: #fff;
	background: #233c6e;
	border: solid 1px #233c6e;
}

.sideNavi li.on a::before {
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	content: "";
	background: #fff;
	vertical-align: middle;
	margin-right: 6px;
}