@charset "utf-8";
/* CSS Document */
#main .lp_contents p {
  margin-top: 0;
}
.switchbox_wrap {
  padding: 0 29px 29px;
  border: 1px solid #c5c7c8;
  border-top: none;
  background: #eff2f3;
}
.switchbox + .switchbox {
  margin-top: 30px;
}
/*label*/
.switchbox label {
  display: block;
  cursor: pointer;
}
/*checkbox*/
.switchbox input {
  display: none;
}
/*close*/
.switchbox .swimg {
  overflow-y: hidden;
  height: 0;
  opacity: 0;
  transition: 0.9s;
}
/*open*/
.switchbox input:checked + label + .swimg {
  height: auto;
  opacity: 1;
}
