@charset "UTF-8";
/* CSS Document */

section,
#category {
	padding: 20px;
	padding: 2rem;
}
#category {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media(max-width: 767px){
section,
#category {
	padding: 0px;
	padding: 0rem;
}
}

/* question-list*/
.cp_actab {
    position: relative;
    overflow: hidden;
    margin: auto;
}
.cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.cp_actab label {
  padding: 0.8rem 1rem;
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	position: relative;
	cursor: pointer;
	text-shadow: 1px 1px #FFFFFF;
	background-color: #E6E6E6;
  border-radius: 0.3rem;
  letter-spacing: 0.1rem;
}
.cp_actab input:checked + label {
  padding: 0.8rem 1rem;
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	position: relative;
	cursor: pointer;
	text-shadow: 1px 1px #FFFFFF;
	background-color: #CBE7CD;
  border-radius: 0.3rem;
  letter-spacing: 0.1rem;
}
.cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.35s;
    transition: max-height 0.35s;
    color: #000000;
    background: #ffffff;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
    max-height: 19em;
}

@media(max-width: 575px){
.cp_actab input:checked ~ .cp_actab-content {
    max-height: 95em;
  }
}


/* Icon */
.cp_actab label::after {
    line-height: 2.8;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 3em;
    height: 3em;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    color: #51B058;
    font-size: 20px;
}
.cp_actab input[type=checkbox]:checked + label::after {
    font-family: "Font Awesome 5 Free";
    content: "\f139";
    color: #51B058;
    font-size: 20px;
}
label{
  margin-bottom: 0.25rem;
}


/* PDF */
#report figure{
  padding: 1.5rem;
  text-align: center;
}
#report figure img{
  border: 1px solid #333333;
  margin-bottom: 0.5rem;
}
#report figcaption{
  font-size: 16px;
  color: #333333;
  font-weight: bold;
}

@media(max-width: 575px){
#report figure{
  padding: 1rem;
  }
}
