.regist{
  padding: 50px 20px 20px;
}
.regist .h1{
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.regist .h3{
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 10px;
}

.regist .head{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
.regist .info{
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.regist .field {
  margin-bottom: 30px;
}

.regist .field-title {
  margin-bottom: 10px;
}

.regist .annot {
  margin-top: 5px;
  color: red;
  font-size: .8em;
  line-height: 1.2;
}
.regist .annot:empty {
  display: none;
}

.input{
  border: 1px solid #000000;
  background : #FFFFFF;
  padding: 10px;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.radio{
  display: inline-block;
}
.radio input{
  display: none;
}
.radio span{
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
}
.radio span::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
  height: 1em;
  width: 1em;
  border-radius: 1em;
  border: 1px solid #000000;
}
.radio input:checked+span::after{
  content: '';
  display: block;
  position: absolute;
  left: .15em;
  top: .15em;
  background: #000000;
  height: .7em;
  width: .7em;
  border-radius: 1em;
  /* border: 1px solid #000000; */
}

.select{
  display: inline-block;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #000000;
  vertical-align: middle;
  text-align: right;
}
.select select{
  width: 100%;
  padding: 10px 1em;
  padding-right: 1.2em;
  border: none;
  text-overflow: ellipsis;
  outline: none;
  box-shadow: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.select::before{
  content: '';
  position: absolute;
  top: calc(10px + .3em);
  right: .3em;
  height: 0px;
  width: 0px;
  border-top: .4em solid #000000;
  border-left: .33em solid transparent;
  border-right: .33em solid transparent;
  border-bottom: none;
}

.checkbox{
  display: inline-block;
}
.checkbox input{
  display: none;
}
.checkbox span{
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
}
.checkbox input+span svg{
  display: none;
  position: absolute;
  width: .8em;
  height: .8em;
  left: .1em;
  top: .1em;
}
.checkbox input+span svg path{
  fill: red;
}
.checkbox span::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
  border: 1px solid #000000;
  height: 1em;
  width: 1em;
}
.checkbox input:checked+span svg{
  display: block;
}

.document{
	overflow:auto !important;
	-webkit-overflow-scrolling:touch !important;
	width:100%;
	height:132px;
	margin:0 auto;
  border: 1px solid #000000;
  background : #FFFFFF;
}
.document>iframe{
	height:130px;
	width:100%;
	border:none;
}

.retry-button {
  border: none;
  text-align: center;
}
.retry-button {
  padding-left: calc(10px + .5em);
  font-weight: bold;
  background: #666666;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: .1em;
  text-decoration: none;
  width: 100%;
  padding: 15px 20px;
  font-size: 22px;
}
.text-center {
  text-align: center;
}
.bg-primary{background: #31AC3A;}
.bg-accent{background: #FF3D3D;}
.txt-accent{color: #FF3D3D;}