@charset "utf-8";
.toggle_switch {
 position: relative;
 cursor: pointer;
}
.toggle_switch.open {
 padding-bottom: 10px;
}
.toggle_switch:hover {
 opacity: 0.6;
 z-index: 10;
}
.toggle_switch::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 11px;
  background: url(http://agdemo.net/sample/toggle/img/arrow_down.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: transform .2s;
}
.toggle_switch.open::after {
  transform: rotateZ(180deg);
  top: 46%;
}
.toggle_contents {
 display: none;
 padding-right: 10px;
 padding-left: 13px;
 padding-bottom: 5px;
 clear: both;
}
/*.toggle_wrap {
	width: 217px;
	float: left;
}*/
