@charset "UTF-8";
/* RE薬 */
/* -----------------------------------------------------
 STEP Form
-------------------------------------------------------- */
.mv::before {
	height: 52%;
}
.right_box .form_rap {
	border: none;
	background-color: rgba(255,255,255,0);
}
.blk_form {
	position: relative;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: .5em;
	border: solid 6px #d1d1d1;
}
.blk_form * {
	line-height: 1.5;
}
.flx-head-blk_form {
	display: flex;
	background-color: #d1d1d1;
	font-weight: bold;
	color: #fff;
}

.blk_form .box_form {
	display: none;
}
.errtip {
	position: relative;
	display: block;
}
.errtxt {
	display: none;
	position: absolute;
	top: .25em;
	left: 0;
	padding: .2em .5em;
	font-size: 85%;
	line-height: 1.6em;
	color: #fff;
	border-radius: .5em;
	background-color: #e31b00;
	width: auto;
	z-index: 1;
}
.errtxt::before {
	content: "";
	position: absolute;
	top: -.7em;
	left: 1em;
	display: block;
	width: 1.5em;
	height: 1em;
	clip-path: polygon(0 100%, 50% 0,100% 100%);
	background-color: #e31b00;
}
.errtip.show .errtxt:not(.symbol):not(.machine),
.errtxt.show {
	display: block;
}
.errtip.show2 .errtxt.symbol {
	display: block;
}
.errtip.show3 .errtxt.machine {
	display: block;
}
.finished {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flx-steps-blk_form {
	display: flex;
	align-items: center;
	justify-content: center;
}
.steps-blk_form .step {
	display: block;
	margin: 0 .2em 0 0;
	background-color: #fff;
	border: none;
	border-radius: 50%;
	line-height: 1;
	text-align: center;
	font-family: 'Zen Kaku Gothic New';
	font-weight: normal;
	color: #d1d1d1;
	/* opacity: .8; */
}
.steps-blk_form .step.active {
	background-color: #010101;
	opacity: 1;
}
.steps-blk_form .step.finish {
	opacity: 1;
}
.blk_form select,
.blk_form textarea,
.blk_form input[type='text'],
.blk_form input[type='email'],
.blk_form input[type='submit'],
.blk_form input[type='button'],
.btns-blk_form input[type='button'],
.blk_form input[type='reset'],
.blk_form button {
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
}
.blk_form select,
.blk_form textarea,
.blk_form input[type='email'],
.blk_form input[type='text'] {
	width: 100%;
}
.blk_form select,
.blk_form textarea,
.blk_form input[type='email'],
.blk_form input[type='text'] {
	padding: .5em .25em;
	box-sizing: border-box;
	background: #fff;
	border: solid 4px #ffb000;
	border-radius: .4em;
}
.blk_form .selct select {
	-webkit-appearance: none;
	appearance: none;
}
.blk_form .selct {
	position: relative;
}
.blk_form .selct::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1em;
	display: block;
	width: .75em;
	height: .75em;
	margin: auto;
	background: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014.98%2010.27%22%3E%3Cpath%20d%3D%22M14.98%2C0H0l7.49%2C10.27L14.98%2C0Z%22%20style%3D%22fill%3A%23ffb000%3B%20fill-rule%3Aevenodd%3B%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
	background-size: contain;
}
.blk_form textarea {
	line-height: 1.2;
}
.blk_form input[type='submit'],
.blk_form input[type='button'],
.btns-blk_form input[type='button'],
.blk_form input[type='reset'],
.blk_form button {
	display: inline-block;
	padding: .5em 1.75em;
	border-radius: 1.5em;
	border: none;
	text-align: center;
	color: #fff;
	cursor: pointer;
	transition: background-color .3s ease, color .3s ease;
}
.blk_form select.selectcheck:invalid {
	color: rgba(0,0,0,.7);
}
.blk_form select.selectcheck option {
	color: #000;
}
.blk_form input::placeholder,
.blk_form textarea::placeholder {
	color: rgba(0,0,0,.3);
}
.blk_form input::placeholder {
	font-weight: bold;
}
.btns-blk_form {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 1.5em 1em;
	text-align: center;
}
.btns-blk_form .btn-order {
	display: block;
	margin: auto;
	padding-left: .5em;
	padding-right: .5em;
	background-color: #ff7200;
	border: solid 2px #ff7200 !important;
	border-radius: 1.3em;
	letter-spacing: 0;
}
.btns-blk_form .btn-order:not(.last) {
	padding-left: 1.5em;
	letter-spacing: 1em;
}
.btns-blk_form .btn-order.center {
	margin-right: auto;
}
.btns-blk_form .btn-back {
	position: absolute;
	bottom: 1em;
	left: 1em;
	padding-left: 1em;
	padding-right: 1em;
	background-color: #fff;
	border: solid 2px #fff !important;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	color: #010101;
}
.blk_form input.invalid,
.blk_form textarea.invalid {
  background-color: #f5e6ed;
}
.blk_form .flx-btn-checkbox {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.blk_form .btn-checkbox-wrap {
	position: relative;
	display: block;
	width: 47.586%;
}
.blk_form .btn-checkbox-wrap input {
	opacity: 0;
	position: absolute;
	left: 0;
}
.blk_form .btn-checkbox-wrap label {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5em .1em;
	width: 100%;
	box-sizing: border-box;
	background-color: #fff;
	border: solid 3px #ffb000;
	border-radius: .4em;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 1px;
	font-weight: bold;
	color: #ffb000;
	cursor: pointer;
	transition: .5s;
}
.blk_form .btn-checkbox-wrap input:checked + label {
	background-color: #ffb000;
	color: #FFF;
}
.blk_form .flx-box_form,
.blk_form .flx-box_form2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.blk_form .flx-box_form .col-ttl,
.blk_form .flx-box_form2 .col-ttl {
	font-weight: bold;
}
.blk_form .flx-box_form .col-ttl,
.blk_form .flx-box_form .col-dtl {
	width: 100%;
}
.blk_form .flx-box_form .col-ttl {
	margin-bottom: .75em;
}
.blk_form .flx-box_form .col-dtl,
.blk_form .flx-box_form2 .col-ttl,
.blk_form .flx-box_form2 .col-dtl {
	margin-bottom: 2em;
}
.blk_form .flx-box_form2 .col-ttl {
	width: 34%;
}
.blk_form .flx-box_form2 .col-dtl {
	width: 63%;
}
.blk_form .flx-box_form2 .col-ttl.end {
	margin-bottom: 4em;
}
.blk_form .flx-box_form2 .col-dtl.end {
	margin-bottom: .5em;
}
.blk_form .col-ttl {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.blk_form .col-ttl .icon-label {
	display: inline-block;
	padding: .2em .358em;
	height: 1.5em;
	margin-right: .2em;
	box-sizing: border-box;
	background-color: #ff7200;
	border-radius: .3em;
	line-height: 1;
	font-size: 77.778%;
	font-weight: bold;
	color: #fff;
}
.blk_form .col-ttl .icon-label2 {
	background-color: #979797;
}
.blk_form .select-city {
	width: 100%;
	margin-top: 1em;
}
.notes-form {
	text-align: center;
}
.notes-form p:first-child {
	margin-bottom: .5em;
}
.notes-form a {
	display: inline-block;
	margin: 0 1em;
	text-decoration: underline;
	color: #000;
}
@media screen and (max-width: 767px) {
	.right_box .form_rap {
		height: 93vw;
	}
	.form_rap p {
		font-size: 3.75vw;
	}
	.blk_form {
		height: 93vw;
		border-width: 1vw;
		font-size: 3.75vw;
	}
	.flx-head-blk_form {
		align-items: center;
		justify-content: space-between;
		padding: 1.1em 1.2em 1.4em;
		font-size: 2.8125vw;
	}
	.blk_form .flx-box_form .col-dtl,
	.blk_form .flx-box_form2 .col-ttl,
	.blk_form .flx-box_form2 .col-dtl {
		margin-bottom: 1.5em;
	}
	.ttl-blk_form {
		width: 65%;
		font-size: 4.687vw;
	}
	.blk_form .box_form {
		min-height: 68.59375vw;
	}
	.blk_form .flx-box_form {
		padding: 1em 1em 0;
	}
	.blk_form .btn-checkbox-wrap:not(:first-of-type):not(:nth-of-type(2)) {
		margin-top: 1em;
	}
	.blk_form .btn-checkbox-wrap label {
		border-width: .6vw;
	}
	.blk_form select,
	.blk_form textarea,
	.blk_form input[type='email'],
	.blk_form input[type='text'] {
		border-width: .7vw;
		font-size: max(16px,3.75vw);
	}
	.blk_form textarea {
		height: 18.5vw;
	}
	.btns-blk_form .btn-order {
		width: 45vw;
		display: block;
		font-size: 4.0625vw !important;
	}
	.steps-blk_form {
		text-align: right;
	}
	.steps-blk_form .step {
		width: 3.8vw;
		height: 3.8vw;
		font-size: 3.2vw;
	}
	.steps-blk_form .step + .step {
		margin-left: .5em;
	}
	.notes-form p,
	.notes-form p a {
		font-size: 3.28125vw;
	}
	.errtxt2 {
		left: 30%;
	}
	.finished {
		height: 80vw;
	}
}
@media screen and (min-width: 768px), print {
	/* .form_rap {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		margin: auto;
		max-width: 536px;
	} */
	.form_rap p {
		text-align: center;
		font-size: 18px;
	}
	.blk_form {
		height: 480px;
		/* width: 468px; */
		min-height: 428px;
		margin-left: auto;
		margin-right: auto;
		font-size: 18px;
	}
	.flx-head-blk_form {
		align-items: center;
		justify-content: space-between;
		height: 50px;
		padding: 0 1em 6px;
		font-size: 14px;
	}
	.ttl-blk_form {
		width: 55%;
		font-size: 22.4px;
	}
	.blk_form .box_form {
		min-height: 316px;
	}
	.blk_form .flx-box_form {
		padding: 1em 1.45em 0;
	}
	.blk_form .btn-checkbox-wrap:not(:first-of-type):not(:nth-of-type(2)) {
		margin-top: 1em;
	}
	.blk_form .btn-checkbox-wrap label {
		padding: .25em .1em;
		min-height: 56px;
		line-height: 1;
		font-size: 20px;
	}
	.blk_form .btn-checkbox-wrap label:hover {
		background-color: #fec64b;
		border-color: #fec64b;
		color: #FFF;
	}
	.blk_form .btn-checkbox-wrap label.s {
		letter-spacing: 0;
		font-size: 19px;
	}
	.btns-blk_form .btn-order {
		width: 228px;
		font-size: 20px !important;
	}
	.btns-blk_form .btn-back {
		font-size: 20px !important;
	}
	.btns-blk_form .btn-order:hover {
		background-color: #fff;
		color: #ff7200;
	}
	.btns-blk_form .btn-back:hover {
		background-color: #fff;
		color: #777;
	}
	.steps-blk_form .step {
		height: 20px;
		width: 20px;
		font-size: 18px;
	}
	.notes-form {
		margin-bottom: 1em;
	}
	.notes-form p {
		font-size: 16px;
	}
	.notes-form a {
		font-size: 12px;
	}
	.errtxt2 {
		left: 20%;
	}
	.finished {
		height: 350px;
	}
}

/* confirm */
.confirm .blk_form {
	margin-bottom: 3em;
	padding: 2em;
}
.confirm .flx-tab {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.confirm .btns-blk_form .btn-back {
	background-color: rgba(255,255,255,0);
	border-color: rgba(255,255,255,0) !important;
	color: #010101;
}
.confirm p {
	margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
	.confirm .flx-tab .col-ttl {
		width: 45%;
	}
	.confirm .flx-tab .col-dtl {
		width: 55%;
	}
	.confirm h2 {
		font-size: 5vw;
	}
	.confirm p {
		font-size: 3.75vw;
	}
}
@media screen and (min-width: 768px), print {
	.confirm .flx-tab .col-ttl {
		width: 30%;
	}
	.confirm .flx-tab .col-dtl {
		width: 70%;
	}
	.confirm p {
		font-size: 18px;
	}
}
/* thanks page */
.blk_thanks {
	box-sizing: border-box;
}
.blk_thanks h2 {
	margin-bottom: 1em;
}
.blk_thanks p {
	margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
	.blk_thanks {
		padding: 6vw 0;
	}
	.blk_thanks h2 {
		font-size: 5vw;
	}
	.blk_thanks p {
		font-size: 3.75vw;
	}
}
@media screen and (min-width: 768px), print {
	.blk_thanks {
		padding: 10em 0;
		height: calc(100vh - 262px);
		min-height: 400px;
	}
	.blk_thanks p {
		font-size: 18px;
	}
}