	/* 簡易フォーム全体 */
.easyFormWrapper {
	margin: 10px 0;
}
.form_area {
	background: #f5f5f5;
	border: 5px solid #2eb6a2;
	box-sizing: border-box;
}
.easyform__mainTtl {
	background: #2eb6a2;
}
.displayContents {
	display: none;
}
.displayContents.active {
	display: block;
	animation: appear 2s ease;
}
@keyframes appear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.radio_input {
	display: none;
}
button {
	outline: 0;
	border: none;
	background: none;
}
.quest_box {
	padding: 5vw 8vw;
}
.quest_ttl {
	margin-bottom: 2vw;
	font-size: 5vw;
	font-weight: bold;
	text-align: center;
}
/* ページ 1 2-1 2-2 */
.choices__item {
	position: relative;
	height: 15vw;
	font-size: 5vw;
	line-height: 1;
	background: #fff;
	border: 2px solid #2eb6a2;
	border-radius: 5px;
	box-shadow: 0 3px 3px #CCC;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.choices__item:after {
	content: "▶";
	color: #2eb6a2;
	position: absolute;
	right: 1em;
	font-size: 1rem;
	z-index: 1;
}
.choices__item .btn_icon {
	width: 7vw;
	margin-right: 3vw;
}
.choices__item .btn_text {
	padding: 1vw 5vw 0 0;
}
.choices__list select {
	width: 100%;
	font-size: 4.5vw;
	padding: 4vw;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid #999;
	background-color: #fff;
}
/* ページ 3 電番入力・送信 */
.confirm__txt {
	margin: 1em 0;
	font-size: 3.5vw;
	text-align: center;
	line-height: 1.3;
}
.customer_tel_ttl {
	margin: 1em 0 0.5em;
	font-size: 4vw;
	text-align: left;
}
.customer_tel input {
	width: 100%;
	font-size: 4.5vw;
	padding: 4vw;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid #999;
	background-color: #fff;
}
.customer_tel input::-webkit-inner-spin-button,
.customer_tel input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
	-moz-appearance:textfield;
}
.validate_error {
	color: #F00;
	font-size: 1rem;
	text-align: center;
}
.validate_error p {
	margin:1em 0;
}
.form__txt {
	margin: 1em 0;
	font-size: 3vw;
	font-weight: bold;
	text-align: center;
}
.submit__btn {
	width: 100%;
	margin: 3vw 0;
	padding: 4vw 0;
	color: #fff;
	font-size: 5vw;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	background: #fb8402;
	box-shadow: 0 3px 3px #CCC;
	cursor: pointer;
}
.submit__note {
	margin-top: 1.5em;
	font-size: 10px;
	color: #333;
}
.submit__note a {
	font-weight: bold;
}
.notice {
	margin-top: 0.8em;
	font-size: 0.8em;
}
.loading-hide,
.notice-hide {
	display: none;
}
.loading img {
	max-width: 50px;
	width: 10%;
	margin: 1vw auto;
}
.help-block {
	font-size: 0.9em;
}
.help-block p {
	margin-top: 0.3em;
}
/* 東証上場 */
.tosho_box {
	padding: 2vw 3vw;
	text-align: left;
	background: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2vw;
}
.tosho_box_img {
	width: 15%;
}
.tosho_box_txt {
	font-size: 3.6vw;
	line-height: 1.5;
}
.tosho_box_company {
	font-weight: bold;
}
.tosho_box_note {
	font-size: 2.5vw;
}
/* 戻る */
.backTxt {
	margin: 1em 0 0;
	font-size: 4vw;
	font-weight: normal;
	display: none;
}
.backTxt.active {
	display: block;
}
.backTxt span {
	cursor: pointer;
}


	@media (min-width: 766px) {


		/* 簡易フォーム全体 */
		.easyFormWrapper {
			margin: 10px 0;
		}

		.form_area {
			background: #f5f5f5;
			border: 5px solid #2eb6a2;
			box-sizing: border-box;
		}

		.easyform__mainTtl {
			background: #2eb6a2;
			margin-top:0;
		}

		.displayContents {
			display: none;
		}

		.displayContents.active {
			display: block;
			animation: appear 2s ease;
		}

		@keyframes appear {
			0% {
				opacity: 0;
			}
			100% {
				opacity: 1;
			}
		}
		.radio_input {
			display: none;
		}

		button {
			outline: 0;
			border: none;
			background: none;
		}

		.quest_box {
			padding: 0 40px 50px;
		}

		.quest_ttl {
			margin-bottom: 20px;
			font-size: 24px;
			font-weight: bold;
			text-align: center;
		}

		.choices__list {
			display: flex;
			justify-content: space-around;
			gap: 15px;
		}

		/* ページ 1 2-1 2-2 */
		.choices__item {
			position: relative;
			height: 60px;
			width: 30%;
			font-size: 22px;
			line-height: 1;
			background: #fff;
			border: 2px solid #2eb6a2;
			border-radius: 5px;
			box-shadow: 0 3px 3px #CCC;
			box-sizing: border-box;
			display: flex;
			justify-content: center;
			align-items: center;
			cursor: pointer;
		}

		.choices__item:after {
			content: "▶";
			color: #2eb6a2;
			position: absolute;
			right: 1em;
			font-size: 1rem;
			z-index: 1;
		}

		.choices__item .btn_icon {
			position: absolute;
			width: 40px;
			left: 10px;
		}

		.choices__item .btn_text {
			font-size: 24px;
			line-height: 60px;
			padding-right: 80px;
			padding-top:0;
		}

		.choices__list select {
			width: 70%;
			font-size: 20px;
			padding: 10px;
			box-sizing: border-box;
			border-radius: 10px;
			border: 1px solid #999;
			background-color: #fff;
		}

		/* ページ 3 電番入力・送信 */
		.confirm__txt {
			margin: 1em 0;
			font-size: 22px;
			text-align: center;
			line-height: 1.3;
		}

		.customer_tel_ttl {
			margin: 1em auto 0;
			font-size: 22px;
			text-align: left;
			width: 70%;
		}

		.customer_tel input {
			width: 70%;
			font-size: 22px;
			padding: 10px;
			box-sizing: border-box;
			border-radius: 10px;
			border: 1px solid #999;
			background-color: #fff;
			margin: auto 15%;
		}

		.customer_tel input::-webkit-inner-spin-button,
		.customer_tel input::-webkit-outer-spin-button {
			-webkit-appearance: none;
			margin: 0;
			-moz-appearance: textfield;
		}

		.validate_error {
			color: #F00;
			font-size: 1rem;
			text-align: center;
		}

		.validate_error p {
			margin: 1em 0;
		}

		.form__txt {
			margin: 1em 0;
			font-size: 22px;
			font-weight: bold;
			text-align: center;
		}

		.submit__btn {
			width: 60%;
			margin: 10px 20% 20px;
			padding: 20px 0;
			color: #fff;
			font-size: 2rem;
			font-weight: bold;
			border: none;
			border-radius: 5px;
			background: #fb8402;
			box-shadow: 0 3px 3px #CCC;
			cursor: pointer;
		}

		.submit__note {
			margin-top: 0.5em;
			font-size: 16px;
			color: #333;
			line-height: 1.2;
		}

		.submit__note a {
			font-weight: bold;
		}

		.notice {
			margin-top: 0.8em;
			font-size: 0.8em;
		}

		.loading-hide,
		.notice-hide {
			display: none;
		}

		.loading img {
			max-width: 50px;
			width: 10%;
			margin: 1vw auto;
		}

		.help-block {
			font-size: 0.9em;
		}

		.help-block p {
			margin-top: 0.3em;
		}

		/* 東証上場 */
		.tosho_box {
			padding: 2vw 3vw;
			text-align: left;
			background: #fff;
			display: flex;
			justify-content: flex-start;
			align-items: center;
			gap: 2vw;
		}

		.tosho_box_img {
			width: 15%;
		}

		.tosho_box_txt {
			font-size: 3.6vw;
			line-height: 1.5;
		}

		.tosho_box_company {
			font-weight: bold;
		}

		.tosho_box_note {
			font-size: 2.5vw;
		}

		/* 戻る */
		.backTxt {
			margin: 1em 0 0;
			font-size: 22px;
			font-weight: normal;
			display: none;
		}

		.backTxt.active {
			display: block;
		}

		.backTxt span {
			cursor: pointer;
		}

		.easyFormWrapper {
			width: 1000px;
			margin: auto !important;
			margin-bottom:40px !important;
		}

		.easyform__mainTtl > img {
			display: block;
			width: 45%;
			margin: auto;
		}

		.quest_box .tosho {
			width: 100%;
			margin: auto;
			background: white;
		}


		/*******************
		*   thanks page    *
		********************/
		/* thanks */
		.thanks {
			background: #fff;
		}

		.thanks .thanks__ttl {
			margin: 0 0 20px;
			font-size: 30px;
			font-weight: bold;
			letter-spacing: -1px;
			line-height: 1.6;
			color: #2eb6a2;
		}

		.thanks .thanks__txt {
			margin: 0 0 20px;
			font-size: 22px;
			line-height: 1.2;
		}

		.thanks .thanks__txt--note {
			color: red;
		}

		.thanks .thanks__tel {
			margin: 30px 0;
			text-align: center;
			line-height: 1;
			border: 2px solid #fb8402;
		}

		.thanks .thanks__tel_txt {
			padding: 15px 0;
			font-size: 20px;
			font-weight: bold;
		}

		.thanks .thanks__tel_num {
			font-family: 'Poppins', sans-serif;
			font-size: 50px;
			color: #fb8402;
		}

		/* price */
		.price {
			background: #e8f8f6;
			border-top: 3px solid #2eb6a2;
			padding-bottom: 20px;
		}

		.price .price__ttl {
			margin: 0 0 1.3vw;
			font-size: 30px;
			font-weight: bold;
			letter-spacing: -1px;
			line-height: 1.6;
			color: #2eb6a2;
			padding-left: 1.5rem
		}

		.price .price__txt {
			font-size: 22px;
			line-height: 1.2;
			padding: 2rem;
		}

		.price .price__result {
			margin: 20px 0;
			padding: 12px 10px;
			font-size: 22px;
			font-weight: bold;
			color: #2eb6a2;
			background: #fff;
			border: 2px solid #2eb6a2;
			line-height: 1.5;
			text-align: center;
		}

		.price .price__result .failure {
			font-size: 30px;
		}

		.price .price__table {
			width: 94%;
			border-spacing: 0 20px;
			margin: 20px 3%;
		}

		.price .price__table th,
		.price .price__table td {
			font-weight: bold;
			text-align: left;
			line-height: 1;
			white-space: nowrap;
		}

		.price .price__table th {
			padding: 0 15px;
			font-size: 22px;
			color: #fff;
			background-color: #2eb6a2;
			width: 1px; /* thの幅を最短化しつつ自動調整 */
		}

		.price .price__table td {
			padding: 15px 15px 10px;
			font-size: 18px;
			color: #2eb6a2;
			background-color: #fff;
			border: 2px solid #2eb6a2;
		}

		.price .price__table td .num {
			font-size: 18px;
			font-family: 'Poppins', sans-serif;
		}

		/* faq */
		.faq__ttl {
			margin-bottom: 30px;
			margin-top: 25px;
			padding-left: 20px;
			font-size: 24px;
			font-weight: bold;
			line-height: 1.2;
			text-align: left;
			border-left: 4px solid #2EB6A2;
			color: #2EB6A2;
		}

		.faqBox__ttl {
			color: #2EB6A2;
			font-size: 20px;
			font-weight: bold;
			margin: 15px 0;
			padding: 0 0 5px;
			border-bottom: 1px solid #C9C9C9;
		}

		.faq__list__outer {
			background: #EAF9F6;
			padding: 5px;
		}

		.faq__list {
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}

		.faq__list__item {
			width: 50%;
			background: url(/resource/sp/img/voice/ic_q.png) no-repeat 20px 10px;
			background-size: 30px;
			padding: 8px 0 8px 60px;
		}

		.faq__list__item a {
			color: #2EB6A2;
			font-size: 20px;
			font-weight: 700;
			text-decoration: underline;
		}

		.faq .faqBox__item {
			border: 2px solid #2EB6A2;
			margin-bottom: 15px;
		}

		.faqContents {
			width: 740px;
			float: left;
			margin-bottom: 50px;
		}

		.faqBox__item__q {
			background: #2EB6A2 url(/resource/sp/img/voice/ic_q.png) no-repeat 20px 10px;
			background-size: 30px;
			padding: 8px 0 8px 60px;
			color: #FFF;
			font-size: 20px;
			font-weight: bold;
		}

		.faqBox__item__a {
			background: url(/resource/sp/img/voice/ic_a.png) no-repeat 20px 10px;
			background-size: 30px;
			padding: 8px 0 8px 60px;
			font-size: 20px;
		}

		.faqBox__item .post-note li {
			font-size: 14px;
			width: 84%;
			margin: 0 auto;
			color: #666;
		}

		.faqBox__item .post-note li:before {
			content: "※";
		}

	}
