@charset "utf-8";


div#agreement {
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
  border-top: 1px solid #cccccc;
}

div#agreement h3 {
  font-size: 1.5em;
/*  font-size: 135%; */
/*  font-weight: bold; */
}

div#agreement div {
  height: 200px;
  margin: 15px 0;
  padding: 20px 30px;
  background: #fafafa;
  border: 1px solid #cccccc;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

div#agreement div h4 {
  margin-top: 30px;
  font-weight: bold;
}

div#agreement div h4:first-child {
  margin-top: 0px;
}

div#agreement input[type="checkbox"] {
  margin-right: 10px;
}

div#agreement span {
  display: block;
  font-size: 85%;
  color: #3377ff;
}

form#mail_form div#agreement span.error_check {
  display: none;
  color: #ff0000;
  margin-top: 3px;
}


div#agreement ul li {
  position: relative;
}

div#agreement ul li::after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 8px;
  height: 3px;
  border-left: 2px solid #3498db;
  border-bottom: 2px solid #3498db;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

div#agreement div ul.privacylink {
  padding-left: 30px;
  line-height: 1.5em;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {

  div#agreement h3 {
    font-size: 1.1em;
  }

  div#agreement div {
    padding: 20px 10px;
    font-size: 0.9em;
    line-height: 1.5em;
  }

  div#agreement div ul.privacylink {
    line-height: 2em;
  }

}

