@charset "utf-8";
.privacy-confirm-btn {
    padding: 30px;
}
/* checkbox */
.privacy-confirm-btn input[type="checkbox"]
{
    opacity: 0;
}

.privacy-confirm-btn input[type="checkbox"]+label
{
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 30px;
    padding-right: 10px;
    font-size: 1.2rem;
}

.privacy-confirm-btn input[type="checkbox"]+label::before {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    margin-top: -14px;
    left: 0;
    top: 50%;
    border: 2px solid;
    border-color:  #42acd6;
    background-color: #FFF;

}

.privacy-confirm-btn input[type="checkbox"]:checked+label::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #585753;
}

/* button */
.btn {
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 0px none;
  padding: 10px 100px;
  font-weight: bold;
  margin: 0px;
  letter-spacing: 3px;
}

.btn-primary {
  background: rgb(66,172,214);
  background: linear-gradient(180deg, rgba(66,172,214,1) 0%, rgba(36,124,167,1) 100%);
  color: #FFF;
  font-weight: normal;
  -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    opacity: 0.9;
}
