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

p{margin: 0; padding: 0;}

.toggle_area{
	margin-bottom: 3em;
}

.toggle_btn{
	display: block;
	cursor: pointer;
	padding: 3px 10px;
	background-color: #fff;
	border: 1px solid #777;
	border-radius: 3px;
	text-align: center;
	margin-bottom: 1em;
}

.toggle_btn:hover{
	opacity: 0.8;
}

.arrow{
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
}

.arrow::after{
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 5px;
  margin: auto;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 6px solid #000;
}

details[open] .arrow{
	transform: rotate(90deg);
	margin-top: -3px;
}

details[open] .toggle-content{
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


p.toggle_tx_head{
	width: 100%;
	display: inline-block;
	font-weight: bold;
	margin: 0 0 0.5em;
}

p.toggle_tx_read{
	width: 98%;
	padding: 0 0 0 2%;
	display: inline-block;
	margin: 0 0 2em;
	border-left: solid 2px #ccc;
}