/* CSS Document */
span.kome{
  display: table;
  padding-left: 1rem;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  box-sizing: border-box;
}
span.kome::before{
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
div.btn{
  display: table;
  margin: 10px auto 0 0;
}
div.btn a{
  display: table;
  padding: 0 calc(10px + 1rem) 0 10px;
  height: 45px;
  line-height: 45px;
  background-color: #F80;
  color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
div.btn a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  display: block;
  z-index: 2;
}
@media only screen and (max-width:999px){
  /*スマホ*/
  span.kome{
    padding-left: 14px;
  }
  br.sp{
  }
}
@media only screen and (min-width:1000px){
  /*PC*/
  br.sp{
    display: none;
  }
}
