.RGform1{
	padding-top:10px;
}
.RGform1 dl{
	position:relative;
	margin:auto;
	padding-top:5px;
	padding-bottom:15px;
}
.RGform1 dl dt{
	font-size:13px;
	font-weight:500;
	padding-bottom:5px;
	text-align:center;
}
.RGform1 dl dd{
	position:relative;
	text-align:center;
}
.RGform1 dl dd input{
	width:95%;
	height:35px;
	padding:1%;
	border-radius:15px;
	border:4px solid #85CAFF;
	background-color:#FFFDF0;
}
:focus::-webkit-input-placeholder { color: white; } /* Chrome・Safari・Opera用(※Edgeにも使える) */
:focus:-moz-placeholder { color: white; }  /* Firefox18以前用 */
:focus::-moz-placeholder { color: white; } /* Firefox19以上用 */
:focus::placeholder { color: white; } /* CSS標準(予定)の記述 */

.RGform1 dl dd iframe {
	width:94%;
	height:200px;
	border:1px solid #CCC;
}


/*登録フォーム*/
#gender {
	display: table;
	width: 60%;
	margin:auto;
	margin-bottom: 10px;
	position:relative;
}
#gender input {
	display: none;
}
#gender label{
	display: block;
	float: left;
	cursor: pointer;
	width: 45%;
	margin: 0;
	padding: 1% 2.5%;
	background: #bdc3c7;
	color: #869198;
	font-size: 16px;
	text-align: center;
	line-height: 30px;
	transition: .2s;
}
#gender label:first-of-type{
	border-radius: 15px 0 0 15px;
	-webkit-border-radius: 15px 0 0 15px;
	-moz-border-radius: 15px 0 0 15px;
}
#gender label:last-of-type{
	border-radius: 0 15px 15px 0;
	-webkit-border-radius: 0 15px 15px 0;
	-moz-border-radius: 0 15px 15px 0;
}
#gender input[type="radio"]:checked + .switch-on {
	background-color: #1672C0;
	color: #fff;
}
#gender input[type="radio"]:checked + .switch-off {
	background-color: #EB4C7D;
	color: #fff;
}


.bg_checkbox p {
    position: relative;
    margin: 0 32px 0 0;
    padding: 0;
	margin-top:10px;
	font-size:15px;
}
 
.bg_checkbox input {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;  
    height: 100%;
}
 
.bg_checkbox input[type="checkbox"] + label {
    display: block;
    background-image: url(../image/checkbox_off.png);
    background-size: 24px;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 4px 0 0 28px;
}
 
.bg_checkbox input[type="checkbox"]:checked + label {
    background-image: url(../image/checkbox_on.png);
}

.PinkBtn{
	text-align:center;
	padding-top:20px;
	display:flex;
	justify-content:center;
}
.PinkBtn input{
	width:80%;
	height:50px;
	background-color:#FF4B7C;
	border-radius:10px;
	border:none;
	color:#FFF;
	font-size:16px;
}
.PinkBtn input:hover{
	background-color:#FF7096;
}

/*ログイン*/
#LoginForm{
	position:relative;
	width:100%;
	margin:auto;
	padding-bottom:30px;
}
#LoginForm dl{
	width:90%;
	display:table;
	position:relative;
	padding-bottom:20px;
	margin:auto;
}
#LoginForm dl > *{
	display:table-cell;
	vertical-align:middle;
	position:relative;
}
#LoginForm dl dt{
	width:35%;
	font-size:15px;
	color:#A0A0A0;
}

section#LoginForm dl dd {
    width: calc(100% - 105px);
}

#LoginForm dl dd input{
	width:100%;
	height:35px;
	border-radius:5px;
	border:3px solid #85CAFF;
	padding:2px;
	background-color:#FFFDF0;
}
.BlueBtn{
	text-align:center;
	padding-bottom:20px;
}
.BlueBtn input{
	width:180px;
	background-color:#006EFF;
	border:none;
	height:50px;
	color:#FFF;
	font-size:16px;
	border-radius: 8px;
}
.BlueBtn input:hover{
	background-color:#A5D8FF;
}