/*---------------
  common
---------------*/


.crowdfunding #title {
  letter-spacing: 0;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
}

.btn_g{
  display:block;
  width:230px;
  margin:0 auto 20px auto;
  padding:0;
  background:#66991e;
  border-radius: 3px;
  color:#fff !important;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  position: relative;
  transition: 0.2s ease-in-out;
}

.btn_g:after {
  content: "";
  position:absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top:21px;
  right:8px;
}

.btn_g:hover{
  filter: brightness(130%);
}

.crowdfunding h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  padding: 30px 0 20px;
  border-top: 1px dotted #cecece;
}

.crowdfunding p {
  padding: 0 0 20px;
}

.crowdfunding h3 {
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 0 5px;
  margin: 10px 0;
  border-left: 5px solid #000;
  line-height: 1.3;
}

.crowdfunding h4 {
  font-size: 14px;
  font-weight: bold;
}

.caution{
  background: #eee;
  border-radius: 5px;
  padding: 20px 25px;
  margin: 40px 0 30px;
}

.list_caution{
  list-style: none;
  font-size: 12px;
}

.list_caution li{
  padding: 0 0 0 1em;
  position: relative;
}

.list_caution li:before{
  content: "※";
  position: absolute;
  left: 0;
}

.txt_caution{
  font-size: 12px;
  margin-top: -20px;
}

.txt_last{
  text-align: right;
}


