input[type="checkbox"]{
    width: 30px;
    height: 30px;
    vertical-align: middle;
}
input[type="radio"]{
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.button {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 18pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #009999;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  width         : 90%;         /* 幅　　     */
  height        : 60px;        /* 高さ       */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  border        : 2px solid #009999;    /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #009999;     /* 文字色     */
  background    : #ffffff;     /* 背景色     */
}



.cp_iptxt {
	position: relative;
	width: 100%;
	margin: 40px 3%;
}
.cp_iptxt input[type='text'] {
	font: 24px/36px sans-serif;
	box-sizing: border-box;
	width: 100%;
	padding: 0.3em;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #000;
	border: none;
	border-bottom: 2px solid #009999;
	background: transparent;
}
.ef input[type='text']:focus {
	border-bottom: 2px solid #ff8040;
	outline: none;
    