@charset "utf-8";
/* CSS Document */

.btn01 {
top: 232px;
}
/*label*/
.switchbox label {
display: block;
cursor: pointer;
}
/*checkbox*/
.switchbox input {
display: none; 
}
/*close*/
.switchbox .swimg {
height: 0;
overflow-y: hidden;
transition: 0.9s;
opacity: 0;
}
/*open*/
.switchbox input:checked + label + div {
height: auto;
opacity: 1;
}