@charset "utf-8";
/*___________ common ___________ */
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav {
	margin: 0;
	padding: 0;
	text-align: left;
	margin: 0;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
}
body {
	-webkit-text-size-adjust: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background:#f2fbfc;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
img {
	border: 0;
	max-width:100%;
	vertical-align: bottom;
}
ul, ol, li {
	list-style: none;
}
table {
	border-spacing: 0;
	empty-cells: show;
}
/* ---------- wrapper ---------- */
#wrapper {
	width: 100%;
	margin:0 auto;
	overflow:hidden;
}
#wrapperIn {
	width: 1140px;
	margin:0 auto;
	padding:50px 0;
	overflow:hidden;
}
/* ---------- header ---------- */
header {
	padding:10px 0;
	background-color:#fff;
	overflow:hidden;
}
.headerIn {
	width:1140px;
	margin:0 auto;
}
.headerIn h1 {
	padding: 0px;
	margin: 0 0 5px;
	float:left;
	width:160px;
	text-align:center;
}
.headerIn .tel {
	float:right;
	width:250px;
	margin-top:20px;
}
/* ---------- main ---------- */
#main {
	margin:0 auto;
	padding:0;
	width:500px;
	float:right;
}
#form {
	float:left;
}
/* ---------- footer ---------- */
footer {
	background-color: #1FAC9C;
	padding:0 0 10px;
	width: 100%;
	margin-top: auto;
}
footer p.copy {
	color:#fff;
	text-align:center;
	font-size: 65%;
	line-height: 20px;
	position:relative;
}
footer a {
	color:#fff;
	text-decoration: underline;
}
footer a:hover {
	text-decoration:none;
}
.f_character {
	display:flex;
	justify-content:space-between;
	background-color:#f2fbfc;
}
.f_character li {
	margin:0 2%;
}
.f_navi {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size:11px;
	padding:10px 0;
}
.f_navi li {
	margin:0 1%;
}
.modal {
	display: none;
	position: fixed;
	z-index: 8887;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
	transition: all 1s ease-in-out;
}
.modal-content {
	background: #FFF;
	overflow-y: auto;
	padding: 20px 40px;
	width: 90%;
	max-width: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 400px;
	animation: show 0.6s linear 0s;
	filter: drop-shadow(0px 2px 6px #777);
}
.modal-top {
	display: inline-block;
	position: absolute;
	right: 2px;
	top: 5px;
}
.modal-close {
	color: #111;
	text-decoration: none;
	font-size: 2rem;
	line-height: 1;
	padding: 0 8px;
}
.modal-close:hover, .modal-close:focus {
	text-decoration: none;
	cursor: pointer;
}
@keyframes show {
 from {
 opacity: 0;
}
to {
	opacity: 1;
}
}
.kiyaku {
	color:#111 !important;
	font-size:12px;
}
.kiyaku p {
	margin-bottom:15px;
}
.kiyaku p.c-kiyakutitle {
	padding: 1em;
	border-left:3px solid #6dd0d8;
	background: #f2fbfc;
	margin-bottom:15px;
}
.kiyaku p.c-kiyakutitle2 {
	position: relative;
	text-align: center;
	padding: 1em;
	font-size:16px;
}
.kiyaku p.c-kiyakutitle2::after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #6dd0d8;
}
.kiyaku ul {
	margin-bottom:15px;
}
/* ---------- container ---------- */
#container {
	width:590px;
	margin:0 auto;
	padding: 0;
	position:relative;
}
/* ---------- form ---------- */

.step_title {
	float: left;
	line-height: 20px;
	padding-right: 20px;
	font-size: 90%;
	padding-left: 30px;
	font-weight: bold;
	color: #E7E7E7;
}
.stepimg {
	text-align: center;
	display: block;
	margin:10px 0 20px 0;
}
.hand {
	width: 46px;
	position: absolute;
	top: 15px;
	opacity: 0.8;
	animation: moveX 1.2s linear 0s infinite;
	-ms-animation: moveX 1.2s infinite alternate linear;
	-webkit-animation: moveX 1.2s infinite alternate linear;
	-moz-animation: moveX 1.2s infinite alternate linear;
	transition: 0.3s;
	z-index: 100;
}
@keyframes moveX {
 0%, 100% {
transform: translate(0, 0) scale(1);
}
 50% {
transform: translate(-15px, 0) scale(1.08);
}
}
@-ms-keyframes moveX {
 0%, 100% {
transform: translate(0, 0) scale(1);
}
 50% {
transform: translate(-15px, 0) scale(1.08);
}
}
@-webkit-keyframes moveX /* Safari and Chrome */ {
 0%, 100% {
transform: translate(0, 0) scale(1);
}
 50% {
transform: translate(-15px, 0) scale(1.08);
}
}
@-moz-keyframes moveX /* Firefox */ {
 0%, 100% {
transform: translate(0, 0) scale(1);
}
 50% {
transform: translate(-15px, 0) scale(1.08);
}
}
/* ---------- step1 ---------- */
#step1 {
	margin: 0px;
	padding: 0px 0px 15px 0px;
	width: 100%;
	margin: auto;
}
#step1 h2 {
	font-size: 100%;
	color: #6B6B6B;
	text-align: center;
	line-height: 20px;
	margin:0 auto;
}
#step1 h2 span {
	font-size:12px;
}
#step1 ul.button-check {
	margin:0 auto;
	text-align:left;
}
#step1 ul.button-check li {
	margin: 2%;
	text-align: center;
	display: inline-block;
}
#step1 ul.button-check li input[type="radio"] {
	display: none;
}
#step1 ul.button-check li label {
	margin: auto;
	font-size: 14px;
	text-align: center;
	box-sizing: border-box;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
	font-weight: bold;
	color: #333333;
	border: solid 1px #ccc;
	display: inline-block;
	width: 260px;
	height: 140px;
	border-radius: 10px;
	text-align:center;
	line-height: 230px;
	vertical-align: middle;
	background-color:#fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
#step1 ul.button-check li.btn-1 label {
	background-image: url("/assets/images/lp/st/13/step1_icon_01.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step1 ul.button-check .btn-1 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step1 ul.button-check li.btn-2 label {
	background-image: url("/assets/images/lp/st/13/step1_icon_02.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step1 ul.button-check .btn-2 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step1 ul.button-check li.btn-3 label {
	background-image: url("/assets/images/lp/st/13/step1_icon_03.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step1 ul.button-check .btn-3 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step1 ul.button-check li.btn-4 label {
	background-image: url("/assets/images/lp/st/13/step1_icon_04.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step1 ul.button-check .btn-4 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
/* ---------- step2 ---------- */
#step2 {
	margin: 0px;
	padding: 0px 0px 15px 0px;
	width: 100%;
	margin: auto;
}
#step2 h2 {
	font-size: 100%;
	color: #6B6B6B;
	text-align: center;
	line-height: 20px;
	margin:0 auto;
}
#step2 ul.button-check {
	margin:0 auto;
	text-align:center;
}
#step2 ul.button-check li {
	margin: 2%;
	text-align: center;
	display: inline-block;
}
#step2 ul.button-check li input[type="radio"] {
	display: none;
}
#step2 ul.button-check li label {
	margin: auto;
	font-size: 14px;
	text-align: center;
	box-sizing: border-box;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
	font-weight: bold;
	color: #333333;
	border: solid 1px #ccc;
	display: inline-block;
	width: 260px;
	height: 140px;
	border-radius: 10px;
	text-align:center;
	line-height: 230px;
	vertical-align: middle;
	background-color:#fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
#step2 ul.button-check li.btn-1 label {
	background-image: url("/assets/images/lp/st/13/step2_icon_01.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step2 ul.button-check .btn-1 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step2 ul.button-check li.btn-2 label {
	background-image: url("/assets/images/lp/st/13/step2_icon_02.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step2 ul.button-check .btn-2 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step2 ul.button-check li.btn-3 label {
	background-image: url("/assets/images/lp/st/13/step2_icon_03.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step2 ul.button-check .btn-3 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step2 ul.button-check li.btn-4 label {
	background-image: url("/assets/images/lp/st/13/step2_icon_04.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
    cursor: pointer;
}
#step2 ul.button-check .btn-4 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
/* ---------- step3 ---------- */
#step3 {
	margin: auto;
	padding: 0px 0px 15px 0px;
	width: 100%;
}
#step3 p.private {
	font-size:12px;
	text-align:center;
	margin-bottom:10px;
}
#step3 h2 {
	font-size: 100%;
	color: #6B6B6B;
	text-align: center;
	line-height: 20px;
	margin:0 auto;
}
#step3 .add_contents {
	width:100%;
	margin:0 auto;
	padding-bottom: 0px;
}
#step3 .add_contents .text {
	color: #5B5B5B;
	text-align: center;
	width: 35%;
}
#step3 .add_contents .number {
	margin:0 auto;
	padding:0;
}
#step3 .add_contents .addarea {
	margin:0 auto;
	padding-bottom: 0px;
}
#step3 .add_contents .text2 {
	color: #5B5B5B;
	text-align: left;
	width: 100%;
}
#step3 .add_contents input[type=text] {
	width: 100%;
	outline: none;
	font-size: 20px;
	padding:15px 10px 15px 10px;
	background-color:#fff;
	border : 1px solid #333333;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
#step3 .add_contents input[type=text]:focus {
	background-color: #fff;
}
#step3 .add_contents input[type=text]::-moz-placeholder {
 font-size: 80%;
 color: #999999;
 font-weight: normal;
}
#step3 .add_contents input[type=text]::-webkit-input-placeholder {
 font-size: 80%;
 color: #999999;
 font-weight: normal;
}
#step3 .add_contents input[type=text]:-ms-input-placeholder {
 font-size: 80%;
 color: #999999;
 font-weight: normal;
}
#step3 .add_contents input[type=tel] {
	width: 100%;
	outline: none;
	font-size: 20px;
	background: #fff url("/assets/images/lp/st/13/ico_zip.png") center left 4px no-repeat;
	background-size: 30px;
	padding:15px 10px 15px 40px;
	margin-top:10px;
	border : 1px solid #6dd0d8;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
#step3 .add_contents input[type=tel]:focus {
	background-color: #ffffea;
}
#step3 .add_contents .number_no {
	font-size: 14px;
	display: block;
	background-image: none;
	border-style: none;
	background-color:#F8F8F8;
	text-align: center;
	margin: 10px 0;
	padding:5px;
}
#step3 .add_contents .pd {
	padding: 10px 0px 15px 0px;
	width: 100%;
}
#step3 .add_contents select {
	font-size: 14pt;
	width: 100%;
	border : 1px solid #6dd0d8;
	background: #fff url("/assets/images/lp/st/13/ico_arrow.png") no-repeat 97% center;
	background-size:18px !important;
	padding:15px 10px 15px 10px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: .01px;
	text-overflow: "";
	cursor: pointer;
}
#step3 .add_contents select:focus {
	background-color: #fff;
}
#step3 .comment {
	color: #5F5F5F;
	text-align: center;
}
/* LP14にのみ適用 */
#step3 ul.button-check {
	margin:0 auto;
	text-align:center;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#step3 ul.button-check li {
	margin: 2%;
	text-align: center;
	display: block;
	width:45%;
}
#step3 ul.button-check li input[type="radio"] {
	display: none;
}
#step3 ul.button-check li label {
	margin: auto;
	font-size: 14px;
	text-align: center;
	box-sizing: border-box;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
	font-weight: bold;
	color: #333333;
	border: solid 1px #ccc;
	display: inline-block;
	width: 100%;
	height: 140px;
	border-radius: 10px;
	text-align:center;
	line-height: 230px;
	vertical-align: middle;
	background-color:#fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
#step3 ul.button-check li.btn-1 label {
	background-image: url("/assets/images/lp/st/14/step3_icon_01.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
	cursor: pointer;
}
#step3 ul.button-check .btn-1 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step3 ul.button-check li.btn-2 label {
	background-image: url("/assets/images/lp/st/14/step3_icon_02.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
	cursor: pointer;
}
#step3 ul.button-check .btn-2 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step3 ul.button-check li.btn-3 label {
	background-image: url("/assets/images/lp/st/14/step3_icon_03.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
	cursor: pointer;
}
#step3 ul.button-check .btn-3 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step3 ul.button-check li.btn-4 label {
	background-image: url("/assets/images/lp/st/14/step3_icon_04.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
	cursor: pointer;
}
#step3 ul.button-check .btn-4 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step3 ul.button-check li.btn-5 label {
	background-image: url("/assets/images/lp/st/14/step3_icon_05.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
	cursor: pointer;
}
#step3 ul.button-check .btn-5 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step3 ul.button-check li.btn-6 label {
	background-image: url("/assets/images/lp/st/14/step3_icon_06.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
	cursor: pointer;
}
#step3 ul.button-check .btn-6 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
#step3 ul.button-check li.btn-7 label {
	background-image: url("/assets/images/lp/st/14/step3_icon_07.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: 50% 5px;
	cursor: pointer;
}
#step3 ul.button-check .btn-7 input[type="radio"]:checked + label {
	border: solid 3px #1FAC9C;
	background-position: 50% 3px;
	line-height: 226px;
}
/* ---------- step4 ---------- */
#step4 {
	margin: auto;
	padding: 0px 0px 15px 0px;
	width:100%;
}
#step4 p.private {
	font-size:12px;
	text-align:center;
	margin-bottom:10px;
}
#step4 h2 {
	font-size: 100%;
	color: #6B6B6B;
	text-align: center;
	line-height: 20px;
	margin:0 auto 15px;
}
.step_4_contents {
	margin:0 auto;
	padding-bottom: 0px;
	width:100%;
}
.step_4_contents .block {
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.step_4_contents input[type=text] {
	width:100%;
	outline: none;
	font-size: 20px;
	background-size: 30px;
	background-color:#fff;
	padding:15px 10px 15px 10px;
	border : 1px solid #6dd0d8;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
.step_4_contents input[type=text]:focus {
	background-color: #ffffea;
}
.step_4_contents input[type=tel] {
	width:100%;
	outline: none;
	font-size: 20px;
	background: #fff url("/assets/images/lp/st/13/year.png") center left 4px no-repeat;
	background-size: 40px;
	padding:15px 10px 15px 60px;
	border : 1px solid #6dd0d8;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
.step_4_contents input[type=tel]:focus {
	background-color: #ffffea;
}
.step_4_contents select {
	font-size: 14pt;
	width: 100%;
	border : 1px solid #1FAC9C;
	background: rgba(255, 255, 255, .8) url("/assets/images/lp/st/13/ico_arrow.png") no-repeat 97% center;
	background-size:18px !important;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: .01px;
	text-overflow: "";
	padding:10px;
}
.step_4_contents p {
	font-size:12px;
}
/* ---------- step5 ---------- */
#step5 {
	margin: auto;
	padding: 0px 0px 15px 0px;
	width:100%;
}
#step5 p.private {
	font-size:12px;
	text-align:center;
	margin-bottom:10px;
}
#step5 h2 {
	font-size: 100%;
	color: #6B6B6B;
	text-align: center;
	line-height: 20px;
	margin:0 auto 15px;
}
.step_5_contents {
	margin:0 auto;
	padding-bottom: 0px;
	width:100%;
}
.step_5_contents .block {
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
#step5 h2 span.required {
	color: #FF8989;
	border: 1px solid #FF8989;
	font-weight: normal;
	font-size: 70%;
	padding:0 5px;
	margin-left: 5px;
}
#step5 h2 span.optional {
	color: #55b8d5;
	border: 1px solid #55b8d5;
	font-weight: normal;
	font-size: 70%;
	padding:0 5px;
	margin-left: 10px;
}
.step_5_contents input[type=tel] {
	width: 100%;
	outline: none;
	font-size: 20px;
	padding:15px 10px 15px 10px;
	background-color:#fff;
	border : 1px solid #6dd0d8;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
.step_5_contents input[type=tel]:focus {
	background-color: #ffffea;
}
.step_5_contents input[type=email] {
	width: 100%;
	outline: none;
	font-size: 12px;
	padding:15px 10px 15px 10px;
	background-color:#f2fbfc;
	border:none;
	border-bottom:1px solid #ccc;
}
.step_5_contents input[type=email]:focus {
	background-color: #ffffea;
}
/* ---------- エラー ---------- */
.error_message_0, .error_message_1, .error_message_2, .error_message_3_1, .error_message_3_2, .error_message_3_3, .error_message_3_4 {
	padding: 5px;
	background-color: #FFD7D7;
	color: #FF0004;
	font-size: 90%;
	border: 1px solid #FF0004;
	border-radius: 5px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 0px;
	display: none;
}
.error_message_2_1, .error_message_2_2 {
	padding: 5px;
	background-color: #FFD7D7;
	color: #FF0004;
	font-size: 90%;
	border: 1px solid #FF0004;
	border-radius: 5px;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 0px;
	display: none;
}
.error_message_5 {
	padding: 5px;
	background-color: #FFD7D7;
	color: #FF0004;
	font-size: 90%;
	border: 1px solid #FF0004;
	border-radius: 5px;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 10px;
	display: none;
}
.error_message_4_1, .error_message_4_2, .error_message_4_3, .error_message_4_4, .error_message_4_5 {
	padding: 5px;
	background-color: #FFD7D7;
	color: #FF0004;
	font-size: 90%;
	border: 1px solid #FF0004;
	border-radius: 5px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 0px;
	display: none;
}
/* ---------- ボタン（step1） ---------- */
.next_step_0 {
	font-size: 90%;
	float:right !important;
}
.next_step_0 a {
	color: #333;
}
/* ---------- 非アクティブ ---------- */
.next_step_0_off {
	font-size: 90%;
	float:right !important;
}
.next_step_0_off a {
	color: #333;
}
/* ---------- ボタン（step2） ---------- */
.next_step_1 {
	font-size: 90%;
	float:right !important;
}
.next_step_1 a {
	color: #333;
}
/* ---------- 非アクティブ ---------- */
.next_step_1_off {
	font-size: 90%;
	float:right !important;
}
.next_step_1_off a {
	color: #333;
}
/* ---------- ボタン（step3） ---------- */
.next_step_2 {
	width: 270px;
	height: 60px;
	line-height: 60px;
	font-size: 105%;
	font-weight: bold;
	text-align: center;
	background-color: #FFA826;
	background-image:url("/assets/images/lp/st/13/arrow_btn.png");
	background-repeat: no-repeat;
	background-position: 95%;
	background-size:15px;
	border-radius: 5px;
	float:right !important;
}
.next_step_2 a {
	color: #fff;
}
/* ---------- 非アクティブ ---------- */
.next_step_2_off {
	width: 270px;
	height: 60px;
	line-height: 60px;
	font-size: 105%;
	font-weight: bold;
	text-align: center;
	background-color: #ccc;
	background-image:url("/assets/images/lp/st/13/arrow_btn.png");
	background-repeat: no-repeat;
	background-position: 95%;
	background-size:15px;
	border-radius: 5px;
	float:right !important;
}
.next_step_2_off a {
	color: #fff;
}
/* ---------- ボタン（step4） ---------- */
.next_step_3 {
	width: 270px;
	height: 60px;
	line-height: 60px;
	font-size: 105%;
	font-weight: bold;
	text-align: center;
	background-color: #FFA826;
	background-image:url("/assets/images/lp/st/13/arrow_btn.png");
	background-repeat: no-repeat;
	background-position: 95%;
	background-size:15px;
	border-radius: 5px;
	float:right !important;
}
.next_step_3 a {
	color: #fff;
}
/* ---------- 非アクティブ ---------- */
.next_step_3_off {
	width: 270px;
	height: 60px;
	line-height: 60px;
	font-size: 105%;
	font-weight: bold;
	text-align: center;
	background-color: #ccc;
	background-image:url("/assets/images/lp/st/13/arrow_btn.png");
	background-repeat: no-repeat;
	background-position: 95%;
	background-size:15px;
	border-radius: 5px;
	float:right !important;
}
.next_step_3_off a {
	color: #fff;
}
/* ---------- ボタン（step5） ---------- */
.finish_step_4 {
	width: 500px;
	height: 74px;
	background-image:url("/assets/images/lp/st/13/active_btn.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	float:right !important;
}
.finish_step_4 a {
	color: #fff;
}
/* ---------- 非アクティブ ---------- */
.finish_step_4_off {
	width: 500px;
	height: 74px;
	background-image:url("/assets/images/lp/st/13/inactive_btn.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	float:right !important;
}
.finish_step_4_off a {
	color: #fff;
}
.cvtext {
	font-size: 60%;
	display:block;
	margin-top:15px;
	display: none;
}
.cvtext2 {
	display: none;
}
/* ---------- 戻るボタン ---------- */
.previous_step_1 {
	float:left !important;
}
.previous_step_1 a {
	font-size:90%;
	color: #333;
}
.previous_step_2 {
}
.previous_step_2 a {
	font-size:90%;
	color: #333;
}
.previous_step_3 {
}
.previous_step_3 a {
	font-size:90%;
	color: #333;
}
.previous_step_4 {
}
.previous_step_4 a {
	font-size:90%;
	color:#333;
}
.previous_step_5 {
}
.previous_step_5 a {
	color: #A6A6A6;
	margin-top: 20px;
}
.previous_step_1_off, .previous_step_2_off, .previous_step_3_off, .previous_step_4_off, .previous_step_5_off {
}
.previous_step_1_off a, .previous_step_2_off a, .previous_step_3_off a, .previous_step_4_off a, .previous_step_5_off a {
	color: #A6A6A6;
	margin-top: 20px;
}
.agreementContainer {
	text-align:center;
	margin-top:30px;
}
#thanks {
	width:90%;
	margin:0 auto;
}
#thanks h2 {
	margin:30px 0;
}
#thanks .box {
	padding:20px;
	background-color:#F8F8F8;
	font-size:14px;
}
/* other-style
----------------------------------------------- */
h4 {
	font-size:12px;
	color:#6B6B6B;
	margin-bottom:5px;
}
.txt-right {
	text-align: right !important;
}
.txt-left {
	text-align: left !important;
}
.center {
	text-align: center !important;
}
.color-red {
	color: #dd0000;
}
.font12 {
	font-size: 12px;
}
.font10 {
	font-size: 10px;
}
.font-en {
	font-family:"Times New Roman", serif;
	font-size: large;
}
.lineheight2 {
	line-height: 2.0;
}
.marker {
	padding: 0;
	background: linear-gradient(transparent 50%, #f8ffbb 50%) repeat scroll 0% 0% transparent;
	font-weight: bold;
}
.MT0 {
	margin-top: 0px !important;
}
.MT10 {
	margin-top: 10px !important;
}
.MT20 {
	margin-top: 20px !important;
}
.MT30 {
	margin-top: 30px !important;
}
.MB0 {
	margin-bottom: 0px !important;
}
.MB5 {
	margin-bottom: 5px !important;
}
.MB10 {
	margin-bottom: 10px !important;
}
.MB20 {
	margin-bottom: 20px !important;
}
.MB30 {
	margin-bottom: 30px !important;
}
.MR0 {
	margin-right: 0 !important;
}
.MR10 {
	margin-right: 10px !important;
}
.MR20 {
	margin-right: 20px !important;
}
.MR30 {
	margin-right: 30px !important;
}
.ML10 {
	margin-left: 0 !important;
}
.ML10 {
	margin-left: 10px !important;
}
.ML20 {
	margin-left: 20px !important;
}
.ML30 {
	margin-left: 30px !important;
}
.ML100 {
	margin-left: 100px !important;
}
.MRL-20 {
	margin-left: -20px !important;
	margin-right: -20px !important;
}
.PT0 {
	padding-top: 0px !important;
}
.PT10 {
	padding-top: 10px !important;
}
.PT20 {
	padding-top: 20px !important;
}
.PT30 {
	padding-top: 30px !important;
}
.PB0 {
	padding-bottom: 0px !important;
}
.PB10 {
	padding-bottom: 10px !important;
}
.PB20 {
	padding-bottom: 20px !important;
}
.PB30 {
	padding-bottom: 30px !important;
}

#modalMask {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #343331;
	opacity: 0.5;
	z-index: 200;
	display: none;
}

#modalDummyBtn {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 201;
	display: none;
}

.wrapper {
	width: 100%;
	margin:0 auto;
	overflow:hidden;
}

.wrapperIn {
	width: 1140px;
	margin:0 auto;
	padding:50px 0;
	position: relative;
	height: 100vh;
}

.finish_step_4_float {
	display: inline-block;
	float: none;
	position: absolute;
	right: 550px;
	border: none;
	background-color: transparent;
	top:342px;
	background-image: none;
	padding: 0;
	cursor: pointer;
}

.down_arrow {
	position: absolute;
	right: 758px;
	border: none;
	background-color: transparent;
	top: 232px;
}

@keyframes fuwafuwa {
	0%, 100% {
	  transform: translateY(0);
	}
	50% {
	  transform: translateY(-20px);
	}
}

.anime-fuwafuwa {
	animation: 3s fuwafuwa infinite;
}

.step1_1_1 {
	color: #FF638F;  /* ピンクっぽい赤 */
	font-size: 12px;
	font-weight: normal;  /* 必要に応じて強調 */
}