@charset 'UTF-8';

/* second */
.second .h1-wrap {
	background: var(--key-color);
}

.second .h1-wrap h1 {
	color: #fff;
}

/* progressbar */
.progressbar {
	position: relative;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

.progressbar li {
	position: relative;
	list-style-type: none;
	text-align: center;
	width: 50%;
	font-weight: bold;
	line-height: 1.5;
}

.progressbar li:before {
	display: block;
	width: 14px;
	height: 14px;
	margin: 9px auto 15px auto;
	content: '';
	text-align: center;
	border-radius: 50%;
	background: #C7C7C7;
}

.progressbar li.active:before {
	width: 32px;
	height: 32px;
	margin: 0 auto 6px auto;
	background: #fff;
	border: 9px solid var(--key-color);
	position: relative;
	z-index: 1;
}

.progressbar li:after {
	position: absolute;
	z-index: 0;
	top: 15px;
	left: -50%;
	width: 100%;
	height: 2px;
	content: '';
	background: #C7C7C7;
}

.progressbar li:first-child:after {
	content: none;
}

.progressbar li.active,
.progressbar li.complete {
	z-index: 1;
}

.progressbar li.complete:before {
	background: var(--key-color);
}

.progressbar li.active:after,
.progressbar li.complete:after {
	background: var(--key-color);
}

/* time */
.time-wrap {
	text-align: center;
	font-weight: bold;
	color: var(--key-color);
}

.time-box {
	font-family: 'Roboto';
	font-size: 7rem;
}

/* toggle */
.toggle-wrap .toggle:nth-child(2n+1) {
	background: #F4F4F4;
}

.toggle-wrap .toggle {
	padding: 30px 20px;
}

.toggle-wrap .toggle .toggle-ttl {
	cursor: pointer;
	font-size: 1.6rem;
	padding: 0 2em;
	position: relative;
	display: flex;
	align-items: center;
}

.toggle-wrap .toggle .toggle-btn {
	right: 0;
	width: 2.3rem;
	height: 2.3rem;
}

.toggle-wrap .toggle .toggle-btn::after,
.toggle-wrap .toggle .toggle-btn::before {
	content: "";
	position: absolute;
	display: block;
	background: var(--key-color);
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-ms-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.toggle-wrap .toggle .toggle-btn::after {
	width: 23px;
	height: 3px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.toggle-wrap .toggle .toggle-btn::before {
	right: 10px;
	width: 3px;
	height: 23px;
}

.toggle-wrap .toggle .toggle-ttl.opentoggle .toggle-btn::before {
	transform: rotate(90deg);
	opacity: 0;
}

.toggle-wrap .toggle .toggle-txt {
	display: none;
	padding-left: 2em;
	position: relative;
}
.toggle-wrap .toggle .toggle-ttl::before,
.toggle-wrap .toggle .toggle-txt::before {
	font-family: 'Roboto';
	color: var(--key-color);
	font-size: 2.8rem;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
	line-height: 1;
}

.toggle-wrap .toggle .toggle-ttl::before {
	content: "Q";
}

.toggle-wrap .toggle .toggle-txt::before {
	content: "A";
}

form hr {
	padding-top: 2em;
	margin-top: 2em !important;
}

/* table-scroll */
.table-scroll table {
	min-width: 700px;
}

.table-scroll table tr+tr {
	border-top: 1px solid #fff;
}

.table-scroll table tr th+th,
.table-scroll table tr td+td {
	border-left: 1px solid #fff;
}

.table-scroll table tr th,
.table-scroll table tr td {
	vertical-align: middle;
	padding: 1em;
}

@media screen and (min-width:768px) {
	.table-scroll table {
		width: 100%;
	}
}

@media screen and (max-width:768px) {
	.table-scroll {
		overflow: scroll;
	}
}