@charset "UTF-8";
/* CSS Document */

.guide_dl h2 {
  position: relative;
  padding: 0.25em 0;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding: 5px 20px;

}

.guide_dl h2:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(229, 144, 91), transparent);
  background: linear-gradient(to right, rgb(229, 144, 91), transparent);
}

.guide_dl li {
	padding-left: 1em;
	text-indent: 1em;
}

.info_table {
	width: 80%;
	border-collapse: collapse;
}

.info_table th {
    background: #f2f2f2 none repeat scroll 0 0;
}

.info_table tr td,
.info_table tr th {
	border: solid 1px #dedede;
    padding: 5px 10px;
    vertical-align: center;
}
.info_table tr th {
	width: 30%;
	text-align: center;
    white-space: nowrap;
}    


@keyframes blinkAnime{
   0% { color: #ff0000 }
 100% { color: rgba(255, 255, 255, 0.10) }
}