

.content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	max-width: 480px;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0 auto;
	background-color: white;

	position: relative;
}

html,body {
	position: relative;
	font-family: "メイリオ","Meiryo","ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","Helvetica Neue","Helvetica","Arial",sans-serif;
	background: #f8f8f8;
	overflow-x: hidden;
	height: 100%;
	margin: 0;
}
.logo {
	text-align: center;
	margin-bottom: 20px;
}
* {
	box-sizing: border-box;
	color : #707070;
}
form, .container {
	padding: 0 22px;
}
form input[type=text],input[type=password],input[type=email],input[type=tel] {
	border: none;
	border-bottom: #3CDEBF 1px solid;
	width: 100%;
	height: 45px;
	font-size: 16px;
}
form input.bottom-gray {
	border-bottom-color: #C1C1C1;
}

form input::placeholder {
	color : #B7B7B7;
}
h1 {
	font-size: 25px;
	color : #4B4B4B;
}
h2 {
	font-size: 22px;
	color : #4B4B4B;
}

form .form-row {
	margin-bottom: 20px;
	position: relative;
}
a {
	color : #3CDEBF;
}
.f20 {
	font-size: 20px;
}
.text-center {
	text-align: center;
}
.button.out-line{
	display: block;
	text-decoration: none;
	text-align: center;
	vertical-align: center;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	width: 100%;
	height: 45px;
	line-height: 45px;
	border: 2px solid #3cdebf;

	background-color: white;

	color : #3CDEBF;
	font-size: 20px;

	border-radius: 6px;
}
.button.line {
	display: block;
	text-decoration: none;
	text-align: center;
	vertical-align: center;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	width: 100%;
	height: 45px;
	line-height: 45px;
	border: 2px solid white;

	background-color: #de3cc3;

	color : white;
	font-size: 18px;

	border-radius: 6px;
}
.button.in-line {
	display: inline-block;
	width: auto;
	font-size: 16px;
	padding: 0 30px;

}
.bottom-btn {
	width: 100%;
	position: absolute;
	bottom : 10px;
	left : 0;
}

button:disabled {
	background-color: #B3B3B3 !important;
	color :white !important;
}

.center-box {
	position: absolute;
	top : 50%;
	left: 0;
	width: 100%;
	transform: translate(0, -50%);
}

button.circle-btn {
	width: 30px;
	height: 30px;
	border: none;
	padding: 0;
	background: transparent;

	position: absolute;
	top : 5px;
	right: 0;
}
form.top {
	margin-top: 110px;
}
.help-text {
	font-size: 13px;
}
.mini-text {
	font-size: 11px;
}
.error-text {
	color : #F41F1F;
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 10px;
}


.sms-box {
	display: flex;
	justify-content: space-between;
}
.sms-box div {
	flex-basis: 23%;
	padding: 5px;
	position: relative;
	background-color: #F2F2F2;
	border-radius: 10px;
	position: relative;
}
.sms-box div:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.sms-box input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: transparent;

	border: none;
	font-size: 40px;
	line-height: 60px;
	appearance: none;
	text-align: center;
}
.sms-box input:focus {
	outline: none;
}

.sms-box input::-webkit-outer-spin-button,
.sms-box input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
a.simple {
	text-decoration: none;
	font-weight: bold;
}


input[type=radio] {
	display: none;
}
.radio {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 5px 38px;
	position: relative;
	width: auto;
	font-weight: bold;
	font-size: 13px;
}
.radio::before {
	background: #fff;
	border: 1px solid #3CDEBF;
	border-radius: 50%;
	content: '';
	display: block;
	height: 22px;
	left: 5px;
	margin-top: -11px;
	position: absolute;
	top: 50%;
	width: 22px;
}
.radio::after {
	background: #3CDEBF;
	border-radius: 50%;
	content: '';
	display: block;
	height: 16px;
	left: 9px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 50%;
	width: 16px;
}
input[type=radio]:checked + .radio::after {
	opacity: 1;
}


input[type="checkbox"]{
	display: none;
}
input[type="checkbox"]+label{
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding-left: 38px;
	padding-right: 10px;
	font-weight: bold;
	font-size: 13px;
}
input[type="checkbox"]+label::before{
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	margin-top: 0px;
	left: 0;
	top: 0;
	border: 1px solid;
	border-color:  #3CDEBF;
	background-color: #FFF;
}
/* チェックが入った時のレ点 */
input[type="checkbox"]:checked+label::after{
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 18px;
	height: 9px;
	margin-top: 1px;
	top: 0%;
	left: 3px;
	transform: rotate(-45deg);
	border-bottom: 3px solid;
	border-left: 3px solid;
	border-color: #3CDEBF;
}


/*下から上*/
@keyframes SlideUp {
	0% {
		opacity: 0;
		transform: translateY(-1%);
	}
	100% {
		opacity: 1;
		transform: translateY(-100%);
	}
}
/*上から下*/
@keyframes SlideDown {
	0% {
		opacity: 1;
		transform: translateY(-100%);
	}
	100% {
		opacity: 0;
		transform: translateY(-1%);
	}
}
.help-modal._slideUp {
	animation: SlideUp .5s ease-in-out forwards;
}
.help-modal._slideDown {
	animation: SlideDown .5s ease-in-out forwards;
}


/*下から上*/
@keyframes toastShow {
	0% {
		opacity: 0;
		transform: translateY(0%);
	}
	100% {
		opacity: 1;
		transform: translateY(140%);
	}
}
/*上から下*/
@keyframes toastHide {
	0% {
		opacity: 1;
		transform: translateY(140%);
	}
	100% {
		opacity: 0;
		transform: translateY(0%);
	}
}
.toast.toastShow {
	animation: toastShow .5s ease-in-out forwards;
}
.toast.toastHide {
	animation: toastHide .5s ease-in-out forwards;
}




.help-modal {
	position: fixed;
	bottom: -100%;
	width: 100%;
	height: 100%;
	left: 0;
	background-color: #F8F8F8;
}
.help-modal header {
	font-size: 16px;
	line-height: 50px;
	height: 50px;
	max-width: 480px;
	text-align: center;
	margin: 0 auto;
	position: relative;
}
.help-modal header button {
	position: absolute;
	top : 10px;
	left: 10px;
	background-color: transparent;
	border: none;
}
.help-modal .body {
	margin: 0 auto;
	max-width: 480px;
	height: 100%;
	background-color: #fff;
	position: relative;
	padding: 20px 0px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;

}

.back-btn {
	position: absolute;
	top :15px;
	left: 22px;
}


.toast {
	position: fixed;
	top : -100px;
	left: 0;
	width: 100%;
}
.toast .body button {
	background-color: transparent;
	border: none;
	position: absolute;
	top : 20px;
	right: 20px;
}
.toast .body {
	position: relative;
	padding: 10px;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}
.toast .body .inner {
	background: rgba(0,0,0,0.7);
	color :white;
	line-height: 50px;
	border-radius: 10px;
	padding-left: 20px;
	font-size: 16px;
}
