@charset "utf-8";
/* CSS Document */

/*label*/
.switchbox01 label,
.switchbox02 label,
.switchbox03 label {
display: block;
cursor: pointer;
}
/*checkbox*/
.switchbox01 input,
.switchbox02 input,
.switchbox03 input {
display: none;
}
/*close*/
.switchbox01 .swimg,
.switchbox02 .swimg,
.switchbox03 .swimg {
height: 0;
overflow-y: hidden;
transition: 0.9s;
opacity: 0;
box-sizing: border-box;

}
/*open*/
.switchbox01 input:checked + label + div,
.switchbox02 input:checked + label + div,
.switchbox03 input:checked + label + div {
height: auto;
opacity: 1;
border-bottom: 1px solid #c7c7c8;
}
.btn_area{
border-left: 1px solid #c7c7c8;
border-bottom: 1px solid #c7c7c8;
border-right: 1px solid #c7c7c8;
background: #f2f2f3;
padding: 15px 0;
}
.btn_position{
left: 459px;
top: 372px;
}