@charset "UTF-8";
/*!
 * Accordion v2.8.0
 * Simple accordion created in pure Javascript.
 * https://github.com/michu2k/Accordion
 *
 * Copyright 2017-2019 Michał Strumpf
 * Published under MIT License
 */
.ac {
	margin-top: 10px;
	border-top:solid 2px #000;
	background-color: #fff;
	box-sizing: border-box
}
.ac>.ac-q {
	font: 500 1.3vw Rubik, sans-serif;
	color: #ff3d55;
	padding:1.7vw 2.5vw 1.2vw 0;
	margin: 0;
	text-decoration: none;
	display: block;
	cursor: pointer;
	position: relative; text-align:left;
}
.ac>.ac-q::after {
	content: '+';
	text-align: center;
	width: 15px;
	right: 10px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	position: absolute
}
.ac>.ac-a {
	overflow: hidden;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease
}
.ac>.ac-a p {
	font: 400 1.2vw Rubik, sans-serif; line-height:2vw;
	color: #000;
	margin: 0;
	padding: 1vw 1vw 0.5vw 0;
}
.ac.js-enabled>.ac-a {
	visibility: hidden
}
.ac.is-active>.ac-a {
	visibility: visible
}
.ac.is-active>.ac-q::after {
	content: '\2013'
}


@media screen and (max-width:767px) {
	.ac>.ac-q {
	font: 500 4vw Rubik, sans-serif; line-height:5vw;
	padding:2vw 0.5vw 2vw 0;
}
.ac>.ac-a p {
	font: 400 4vw Rubik, sans-serif; line-height:5vw;
}
}