.box-related-credit .box-title {
	padding: 10px 15px 7px; 
	color: #ffffff;
	font-weight: bold;
	background: #0056B3;
}
.box-related-credit .box-content {
    padding: 10px 15px;
	border: 2px solid #0056B3;
	list-style: none;
	margin: 0 !important;
}
.box-related-credit .box-content a {
	display: block;
	font-size: 15px;
	font-weight: bold;
	padding: 5px 0;
    margin-bottom: 5px;
	text-decoration: underline;
}
.box-related-credit .box-content a:hover {
    color: #33bad2;
    transition: all 0.3s;
}

.contentText {
	padding: 0.3em 0;
	margin: 1.4em 0 0.5em 0;	
	font-size: 1.2em;
	line-height: 1.4;
	border-bottom: solid 5px #003AA0;
	font-weight: bold;
	color: #000;
}

/* Table of content */
.widget-toc {
	display: block;
	overflow: hidden;
	background-color: #f9f9f9;
	width: 100%;
	margin: 30px 0 20px 0;
	border-radius: 5px;
	transition: height 0.3s;
	border: 1px solid #ddd;
}
.toc-title {
	cursor: pointer;
	font-weight: bold;
}
.toc-title .toc_title_inside {
	text-align: left;
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 20px 0 50px;
	position: relative;
	background-color: #f3f3f3;
	color: #333333;
}
.toc-title .toc_title_inside::before {
	content: "";
	position: absolute;
	background: url('../images/table_of_content_icon.svg') no-repeat center;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	left: 20px;
}
.toc-title .toc_title_inside::after {
	content: "";
	position: absolute;
	background: url('../images/arrow_down.svg') no-repeat center;
	width: 14px;
	height: 7px;
	right: 20px;
	transition: 0.3s;
}
.widget-toc.open .toc-title .toc_title_inside::after {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.widget-toc>ol {
	margin-bottom: 0;
	padding-right: 10px;
	position: relative;
	border-radius: 3px;
	overflow: auto;
	list-style: decimal;
    padding: 5px 0 0 40px;
}
.widget-toc>ol>li {
	margin-bottom: 0;
}
.widget-toc a {
	padding: 5px 0;
	display: block;
}
.widget-toc a:hover {
	color: #F39F2D;
}
@media screen and (max-width: 991px) {
	.widget-toc.sticky {
		position: fixed;
		top: 152px;
		left: 10px;
		width: calc(100% - 20px);	
		border: 0;
		overflow: unset;
		margin: 0;
		z-index: 1;
		transition: unset;
	}
	.widget-toc.sticky>ol {
		background: #fff;
	}
	.widget-toc.sticky.open::before {
		content: "";
		background-color: rgb(0 0 0 / 50%);
		position: fixed;
		height: 100vh;
		width: 100vw;
		top: 0;
		left: 0;
	}
	.widget-toc.sticky .toc-title {
		position: absolute;
		height: 50px;
		width: 50px;
		right: 0px;
		top: -60px;
		font-size: 12px;
	}
	.widget-toc.sticky .toc-title .toc_title_inside {
		flex-direction: column;
		justify-content: center;
		padding: 0;
		width: 50px;
		height: 50px;	
		border-radius: 5px;
		border: 1px solid #ddd;
	}	
	.widget-toc.sticky .toc-title .toc_title_inside::after {
		display: none;
	}
	.widget-toc.sticky .toc-title .toc_title_inside::before {
		position: relative;
		left: unset;
		width: 15px;
		height: 15px;
	}
	.widget-toc.sticky.open .toc-title .toc_title_inside::before {
		background-image: url(../images/x.svg);
	}
}

/* Banner */
.template-banner {
	border: 1px solid #dcdcdc;
}
.template-banner.no-border {
	border: none;
}
.template-banner--title {
	background: #eee;
	color: #6b4d05;
	font-weight: bold;
	padding: 5px 5px 5px 14px;
}
.template-banner--title:before {
	display: inline-block;
	content: "";
	margin-right: 10px;		
	width: 4px;
	height: 28px;
	background-color: #ababab;
	border-radius: 3px;
	vertical-align: middle;
}
.template-banner--text {
	display: flex;
	align-items: flex-start;
	padding: 1rem;
}
.template-banner.no-border .template-banner--text {
	padding: 0 0 1rem;
}
.template-banner--media {
	width: 210px;
	height: auto;
	margin-right: 1rem;
}
.template-banner--media > a {
	display: block;
	margin-bottom: 1rem;
}
.template-banner--wrap {
	flex: 1;
	width: 100%;
}
.template-banner--table {
	display: grid;
	grid-template-columns: 1fr 2fr;
	margin-bottom: 0.5rem;
}
.template-banner--table.two-colums {
	grid-template-columns: 1fr 1fr 1fr 1fr;
	border: 1px solid #c2cddf;
}
.template-banner--point {
	border: 2px solid #666666;
	border-radius: 20px;
	color: #666666;
	text-align: center;
	margin-bottom: 0.5rem;
}
.template-banner--point:before {
	display: inline-block;
	content: url(assets/images/check_icon.jpg);
	width: 25px;
	height: 25px;
}    
.template-banner--table__th, .template-banner--table__td {
	border: 1px solid #dcdcdc;
	font-size: 13px;
	padding: 8px 5px;
	display: flex;
	align-items: center;
}
.template-banner--table__th {
	background-color: #ffffe0;	
}
.template-banner--table__td {
	text-align: right;
}
.template-banner--table__td span:not(.adme_jibun_tekiyou_text) {
	font-size: 20px;
	font-weight: bold;		
}
.template-banner--table.two-colums .template-banner--table__th, .template-banner--table.two-colums .template-banner--table__td {    
    border: 1px solid #c2cddf;
	justify-content: center;
}
.template-banner--table.two-colums .template-banner--table__th {
    background-color: #fafafa;	
	font-weight: bold;
}
.template-banner--table.two-colums .template-banner--table__td {
	text-align: center;
}
.template-banner--btn {
	background: linear-gradient(#008000, #3cb371);
	box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.4);
	color: #fff !important;
	font-weight: 700;
	padding: 12px;
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 10px;
	display: block;
	text-align: center;
	margin: 0 auto 1rem;
	max-width: 50%;
}
.template-banner--btn:not(.btn-orange):before {
	display: inline-block;
	font-family: 'icomoon';
	content: "\ea04";
	margin-right: 5px;
}
.template-banner--btn.btn-orange {
	font-size: 28px;
    background: linear-gradient(#fc9c08, #fa7802);
}
@media screen and (max-width: 575px){
	.template-banner--text {
		flex-direction: column;
	}
	.template-banner--media {
		margin: 0 auto;
	}
	.template-banner--btn {
		max-width: inherit;
		margin: 1rem;
	}
}