@charset "utf-8";
.progress_box {
	padding: 10px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}
.prg_box {
	box-sizing: border-box;
	width: 90%;
	height: 45px;
	line-height: 45px;
	background: #FF6699;
	color: #FFE6EE;
	border-radius: 45px;
	letter-spacing: 0.25em;
	font-weight: bold;
}
.sp_prg {
	display: none;
	font-weight: normal;
}
.section_inner {
	box-sizing: border-box;
	margin: 10px auto;
	width: 100%;
	max-width: 650px;
}
.input_label {
	box-sizing: border-box;
	padding: 10px;
	text-align: left;
	font-size: 0.9em;
}
.input_label span {
	padding: 0 0 0 20px;
	font-size: 0.8em;
	color: #FE0000;
	
}
.input_content {
	box-sizing: border-box;
	padding: 5px 10px;
}

.input_gender {
}
.input_gender input[type="radio"] {
	position: relative;
	top: -1px;
	margin-right: 5px;
}
.input_gender input {
	width: auto;
	height: auto;
}

.input_gender label {
	padding: 0 20px;
}

.input_agree {
}
.input_agree input {
	width: auto;
	height: auto;
}
.input_agree input[type="checkbox"] {
	position: relative;
	top: -1px;
	margin-right: 5px;
}
.input_agree a {
	color: #222222;
	text-decoration: underline;
}
input {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 10px;
	border: 1px solid #FF6699;
	background: #FFE6EE;
}
button {
	margin: 20px auto;
	width: 180px;
	height: 45px;
	border-radius: 45px;
	background: #FFE6EE;
	color: #FF6699;
	border: 1px solid #FF6699;
	letter-spacing: 0.15em;
}
textarea {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	resize: none;
	border: 1px solid #FF6699;
	background: #FFE6EE;
	padding: 10px;
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 768px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	.progress_box {
		gap: 10px;
	}
	.sp_prg {
		display: block;
		background: #FFE6EE;
		color: #FF6699;
	}
	.input_gender {
		text-align: left;
	}
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
	.prg_box {
		width: calc(100% / 3 - 100px);
	}
}