@charset "UTF-8";

/* ==================================================
 Sign.css
=========== */
.wrapper_signin_left {
	display: none;
}
.wrapper_signin_left .img_box {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.wrapper_signin_left .img_box img {
	width: 200px;
}
.wrapper_signin_right {
	width: 100%;
	height: 100vh;
}
.signin_1st {
	width: 100%;
}
.signin_2nd {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
}
.wrapper_signup_sub_flex_column {
	width: 100%;
	height: calc(100vh - 250px);
	display: flex;
	flex-direction: column;
   	align-items: center;
}
.wrapper_signin_sub_flex_column {
	width: 100%;
	height: calc(100vh - 200px);
	display: flex;
	flex-direction: column;
   	align-items: center;
}
.signin_sub_2nd {
	width: 100%;
	margin-top: auto;
}
.signin_head {
	padding-top: 60px;
	color: #000000;
}
#signin_button_area {
	padding-top: 20px;
    background-color: inherit;
}
.head_guid_up {
	-webkit-border-radius:6px 6px 0px 0px;
	-moz-border-radius:6px 6px 0px 0px;
	border-radius:6px 6px 0px 0px;
	background-color: #914DD1;
	color: #FAFAFA;
}
button.sign_up {
	background-color: #EB823D;
	border: 1px solid #EB823D;
}
button.guid_up {
	background-color: #914DD1;
	border: 1px solid #914DD1;
}

#link_singup {
	text-align: center;
	padding: 10px;
	/*margin-top: 10px;*/
	color: #999;
}
#link_singin {
	width: 150px;
	text-align: center;
	padding: 10px;
	margin-top: 10px;
	background-color:#FFFFF;
	-webkit-border-radius:6px;
    -moz-border-radius:6px;
	border-radius: 6px;
}
#link_foo {
	margin-top: 10px;
	margin-bottom: 10px;
	-webkit-transition: .5s;
	transition: .5s;
	display: inline-block;
	width: 100%;
	max-width: 400px;
	color: #000;
}

#profile_img_send_obj {
	padding: 20px;
}
.js_up_photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;/*画像の縦横比を保ったまま領域をカバー */
}
#signup_profile_img_obj {
	 padding: 0;
	 width: 120px;
	 display: inline;
	 float: right;
}
#signup_profile_img_obj input { /* inputは隠す */
	display: none;
}
#signup_profile_img_obj img {
	width: 120px;
}

/* checkbox */
.igree_checkbox {
	width: 40px;
	display: none;
}
.igree_checkbox + label {
	padding-left: 30px;
}
.igree_checkbox + label::before {
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    margin-top: -8px;
    width: 15px;
    height: 15px;
    content: '';
    background: #FFF;
    border-radius: 50%;
	border: 1px solid #999;
}
.igree_checkbox:checked {
	width: 40px;
	display: none;
}
.igree_checkbox:checked + label::before {
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    margin-top: -8px;
    width: 17px;
    height: 17px;
    content: '';
    background: #4BAF55;
    border-radius: 50%;
	border: none;
}
.igree_checkbox:checked + label::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
    display: block;
    height: 7px;
    left: 10px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}


/* 上はスマホに適用するスタイルを書く */
@media screen and (min-width:600px) and ( max-width:959px) {
	/* タブレットに適用したいスタイル */
	.wrapper_signin_left {
		display: block;
		flex-basis: 62%;
	}
	.wrapper_signin_right {
		flex-basis: 37%;
	}

}
@media screen and (min-width:960px) and ( max-width:1280px) {
	/* 通常のデスクトップに適用したいスタイル */
	.wrapper_signin_left {
		display: block;
		flex-basis: 67%;
	}
	.wrapper_signin_right {
		width: 32%;
	}

}
@media screen and (min-width:1281px) {
	/* 横幅の広いデスクトップに適用したいスタイル */
	.wrapper_signin_left {
		display: block;
		flex-basis: 70%;
	}
	.wrapper_signin_right {
		width: 29%;
	}

}
