@charset "UTF-8";

body.single{
	padding-top: 57px;
	background: #EDF1F3;
}

body.single header{
    background-color: #000;
}

#pageHead{
	background: #333;
	padding: 20px 0;
	margin-bottom: 40px;
}

h1.pageTtl{
	background: #233;
	color: #fff;
	font-size: 22px;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 20px;
}

.pageMain{
	margin-bottom: 40px;
}


#pageCont h3{
	border-top: 1px solid #233;
	border-bottom: 1px solid #233;
	padding: 10px 0;
	font-size: 20px;
	color: #233;
}


#pageCont p{
	margin-bottom: 1em;
}

#pageCont strong{
	font-weight: bold;
	margin-bottom: 10px;
}

.dFlex{
	display: flex;
	align-items: flex-start;
	padding-top: 40px;
}

.dFlex aside{
	width: 100%;
	max-width: calc(300px - 40px);
	height: 100%;
	
}

.dFlex #pageCont{
	width: 100%;
	max-width: calc(100% - 300px);
	margin-right: 40px;
	background: #FFF;
	border-radius: 5px;
}

.single article{
	padding: 40px;
}

.entry-meta{
	text-align: right;
	margin-right: 20px;
}

aside{
	min-height: 100vh;
	-webkit-border-radius: 5px;
	        border-radius: 5px;
	    padding-bottom: 10px;
}

aside .fixBox{
	position: sticky;
	top: 97px;
	background: #FFF;
	padding: 8px;
	-webkit-border-radius: 5px;
	        border-radius: 5px;
}
aside h4{
	color: #233;
	border-bottom: 3px solid #233;
	padding: 10px;
	font-weight: bold;
	margin-bottom: 10px;
	margin-top: 20px;
	text-align: center;
}

aside h4:first-of-type{
	margin-top: 0;
}

aside dl{
	padding: 0 10px;
}

aside dl dt{
	padding:10px;
	border-top: 1px solid #233;
	cursor: pointer;
	position: relative;
	font-weight: bold;
	color: #233;
 transition: all 0.3s ease;
}

aside h4 + dl dt{
	border: none;
}

.fixBox dd{
	display: none;
margin-bottom: 20px;
}

.fixBox dd.open {
    display: block;
}


aside dl dt:after{
	content: "▼";
	font-weight: bold;
	font-size: 12px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}

aside dl dt.active:after{
	content: "▲";
	font-size: 12px;
	font-weight: bold;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}


aside dl dd a{
	display: block;
	padding: 10px;
	position: relative;
	text-indent: 1em;
	border-bottom: 1px dotted #ccc;
}

aside dl dd a:last-of-type{
	border: none;
}

aside dl dd a:before{
	content: "▶";
	font-size: 7px;
	color: #4641A4;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(-50%, -50%);
}

#pageCont a{
	text-decoration: underline;
}

.c-container a{
	text-decoration: none !important;
}

/*single*/
@media screen and (max-width: 768px) {

	aside{
		display: none;
	}

	.dFlex{
		display: block !important;
	}

	.dFlex #pageCont{
		max-width: none;
	}

	.page article{
		padding: 20px;
	}


}