<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";


.WorkArea {
	width: 44%;
	margin-top: 30px;
	min-height: 670px;
	float: left;
	position: absolute;
	left: 0;
	z-index: 2;
    background-color: #fff;
}
.accordion {
	text-align: center;
	font-size: 1.6rem;
}
.accordion .inner {
	display: none;
	text-align: left;
}
.accordion p{
	cursor: pointer;
	padding: 14px 10px;
}
.accordion p.actitle{
	background: #fff;
	border:1px solid #A1DD00;
	color: #A1DD00;
	margin-bottom: 4px;
	font-weight: bold;
	text-align: left;
}
.accordion p.actitle::first-letter {
  color: #ddd;
}
.accordion .inner {
	width:100%;
}
.accordion .inner dl{
	padding: 10px 4px;
	border-bottom: 1px #ddd dotted;
	margin-bottom: 10px;
}
.accordion .inner dl dt ,
.accordion .inner dl dd {
	line-height: 1.7;
}
.accordion .inner dl dt {
	font-weight: bold;
}
.accordion .inner dl dt a {
	text-decoration: underline;
}
.accordion .inner dl dd {
	font-size: 1.4rem;
}
.accordion p:before {
	content: '▶';
	font-size: 1.4rem;
	margin-right: 8px;
}
.accordion p.open:before {
	content: '▼';
	font-size: 1.4rem;
	margin-right: 8px;
}

.workingPlace__body {
    justify-content: start!important;
    text-align: left!important;
    align-items: start!important;
    flex-direction: unset!important;
    position: relative;
    min-height: 670px;
}





@media only screen and (max-width: 768px) {
	.WorkArea {
		width: 98%;
		margin: 10px auto 0 auto;
		min-height: auto;
		position: static;
    float: none;
	}
}</pre></body></html>