@charset "utf-8";

/* tags */
html {
	line-height: normal;
}
body {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
}
table {
	font-size: unset;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
}
ul {
	list-style:none;
}
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input:focus,
select:focus,
textarea:focus{
	outline: none;
}

@media screen and (max-width: 768px) {
	html {
		font-size: 3.2vw;
	}
}

/* common */
.inner {
	margin: auto;
	padding: 0 2rem;
	max-width: 980px;
	box-sizing: content-box;
}
.pcnone {
	display: none;
}
.notel {
	pointer-events: none;
	color: inherit;
	text-decoration: none;
}


@media screen and (max-width: 768px) {
	.inner {
		padding: 0 1.33333333rem;
	}
	.pcnone {
		display: block;
	}
	.spnone {
		display: none;
	}
}

/* header */
.header_inner {
	padding: 4.26666667vw 5.33333vw;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-items: center;
}

.header_logo {
	width: 40vw;
}

.header_logo img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.header_utility {
	margin-left: auto;
}

.header_utility p {
	font-size: 2.666666667vw;
	text-align: right;
	line-height: 1.2;
}

.header_utility._flex-start {
	margin-left: 3.2vw;
}

@media (min-width: 750px) {
	.header_inner {
		max-width: 940px;
		margin: 0 auto;
		padding: 20px 0;
	}

	.header_logo {
		width: 148px;
	}

	.header_utility {
		margin-left: auto;
	}

	.header_utility p {
		font-size: 10px;
	}

	.header_utility span {
		margin-left: 1em;
	}

	.header_utility._flex-start {
		margin-left: 24px;
	}
}

/* main */
.main {
	margin-bottom: 4rem;
}

.ERR {
	margin: .25rem 0 0 .5rem;
	color: #d44;
	font-size: .875rem;
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	.ERR {
		bottom: -1.375em;
		font-size: 1rem;
	}
}

/* form */
.form_head {
	margin-bottom: 4rem;
	padding: 2.5rem 0;
	background-color: #f2f2f2;
}
.form_head h2 {
	margin: 0 0 2rem;
	color: #333;
	text-align: center;
	font-size: 2.375rem;
}
.form_head_text_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
.form_head_text_wrap b {
	margin-right: 1rem;
	font-size: 1.25rem;
}
.form_head_text_wrap ul {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	color: #333;
	font-size: 1rem;
	font-weight: 500;
}
.form_head_text_wrap ul li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8.75rem;
	height: 3.75rem;
	background-color: #ccc;
}
.form_head_text_wrap ul li.active {
	color: #fff;
	background-color: #ea5405;
}
.form_head_text_wrap ul li:not(:last-child) {
	margin-right: 2rem;
}
.form_head_text_wrap ul li:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 0 30px 16px;
	border-color: transparent transparent transparent #ccc;
}
.form_head_text_wrap ul li.active:not(:last-child)::after {
	border-color: transparent transparent transparent #ea5405;
}
.form_head_text_wrap i {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: .375rem;
	width: 2rem;
	height: 2rem;
	text-align: center;
	font-style: normal;
	border-radius: .375rem;
	background-color: #fff;
	-webkit-border-radius: .375rem;
	-moz-border-radius: .375rem;
	-ms-border-radius: .375rem;
	-o-border-radius: .375rem;
}
.form_head_text_wrap .active i {
	color: #ea5405;
}
.form_head_h3 {
	margin: 0 0 1.25rem;
	padding: 0;
	font-size: 1.33333rem;
	color: #333;
	border: none;
}
.form_input {
	margin: auto;
	max-width: 1004px;
}
.input_wrap {
	margin-bottom: 5.25rem;
}
.form-table,
.form-table tbody,
.form-table tr,
.form-table th,
.form-table td {
	display: block;
}
.form-table {
	margin-bottom: 6.25rem;
	padding: 0;
	border: none;
	background-color: #fff;
}
.form_input .form-table {
	margin-bottom: 0;
}
.form-table tr:not(:last-child) {
	margin-bottom: 2.5rem;
}
.form-table th {
	display: flex;
	align-items: center;
	padding: 0 0 .75rem;
	text-align: left;
	font-size: 1.125rem;
	background-color: #fff;
	border-bottom:1px solid #333;
	border-width: 0 0 1px;
	font-weight: 400;
}
.form_input .form-table th {
	border: none;
	margin-bottom: 1rem;
	padding: 0;
}
.form-table th .required {
	display: flex;
	align-items: center;
	justify-content: center;
	float: unset;
	margin-right: .75rem;
	padding: 0;
	color: #fff;
	width: 3.125rem;
	height: 2.5rem;
	font-size: .88888889em;
	background-color: #ea5405;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}
.form-table td {
	margin-top: .875rem;
	padding: 0;
	border: none;
	font-size: 1rem;
	font-weight: 500;
}
.form_input .form-table td {
	margin: 0;
}
.form_input .form-table td input,
.form_input .form-table td select {
	box-sizing: border-box;
	padding: 0 1rem;
	width: 100%;
	height: 3.75rem;
	border: 2px solid #ccc;
	background-color: #fff;
	border-radius: .375rem;
	-webkit-border-radius: .375rem;
	-moz-border-radius: .375rem;
	-ms-border-radius: .375rem;
	-o-border-radius: .375rem;
}
.form_input .form-table td input[type=radio] {
	display: none;
}
.form_radio_wrap {
	display: flex;
	justify-content: space-between;
}
.form_label {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(20% - (4rem / 5));
	height: 3.75rem;
	border: 2px solid #ccc;
	cursor: pointer;
	border-radius: .375rem;
	-webkit-border-radius: .375rem;
	-moz-border-radius: .375rem;
	-ms-border-radius: .375rem;
	-o-border-radius: .375rem;
}
.form_label:hover {
	border-color: #ea5405;
}
.form_input .form-table td input[type=radio]:checked + label {
	border-color: #ea5405;
}
.form_note {
	margin: 1rem 0 0;
	font-size: .875rem;
	font-weight: 500;
	line-height: normal;
}
.input_select_wrap {
  position: relative;
}
.input_select_wrap::before,
.input_select_wrap::after {
	content: '';
	position: absolute;
	top: 1.75rem;
	display: block;
	width: .75rem;
	height: 3px;
	background-color: #333;
}
.input_select_wrap::before {
	right: 1.45rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.input_select_wrap::after {
	right: 1rem;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.show .input_select_wrap::before,
.show .input_select_wrap::after {
  display: none;
}
.input_select_wrap select {
  appearance: none;
}

@media screen and (max-width: 768px) {
	.form_head {
		margin-bottom: 2.5rem;
		padding: 2rem 1.33333rem;
	}
	.form_head h2 {
		margin-bottom: 1.33333333rem;
		text-align: left;
		font-size: 1.66666667rem;
	}
	.form_head_text_wrap b {
		font-size: 1rem;
	}
	.form_head_text_wrap ul li {
		width: 5.8333333333rem;
		height: 2.5rem;
		font-size: 1rem;
	}
	.form_head_text_wrap ul li:not(:last-child) {
		margin-right: 1.25rem;
	}
	.form_head_text_wrap ul li:not(:last-child)::after {
		border-width: 1.25rem 0 1.25rem .666666667rem;
	}
	.form_head_text_wrap i {
		width: 1.3333333rem;
		height: 1.3333333rem;
	}
	.confirm_head {
		margin-bottom: 1em;
	}
	.form_input {
		margin-bottom: 5rem;
	}
	.input_wrap:not(:first-child) {
		margin-bottom: 3rem;
	}
	.form-table tr:not(:last-child) {
		margin-bottom: 1.666666rem;
	}
	.form-table th {
		padding-bottom: .5rem;
		font-size: 1.25rem;
	}
	.form_input .form-table th {
		margin-bottom: .5rem;
	}
	.form-table th .required {
		margin-right: .5rem;
		width: 3rem;
		height: 1.66666667rem;
		font-size: .833333rem;
		border-radius: .25rem;
		-webkit-border-radius: .25rem;
		-moz-border-radius: .25rem;
		-ms-border-radius: .25rem;
		-o-border-radius: .25rem;
	}
	.form-table td {
		margin-top: .5rem;
		font-size: 1.25rem;
		line-height: 1;
	}
	.form_input .form-table td input,
	.form_input .form-table td select,
	.form_label {
		padding: 0 1.5rem;
		height: 4.66666667rem;
		border-width: 1px;
	}
	.form_radio_wrap {
		flex-wrap: wrap;
	}
	.form_label {
		width: calc(50% - .25rem);
	}
	.form_label:not(:last-child) {
		margin-bottom: .5rem;
	}
	.form_note {
		font-size: 1rem;
	}
	.button.back,
	.button.submit {
		margin: 0;
		width: 100%;
		font-size: 1.5rem;
	}
	.input_select_wrap::before,
	.input_select_wrap::after {
		top: 2.25rem;
	}
	.input_select_wrap::before {
		right: 1.36rem;
	}
}

@media screen and (max-width: 320px) {
	.form_head h2 {
		margin-bottom: .25rem;
		text-align: center;
	}
	.form_head_text_wrap {
		flex-direction: column;
	}
	.form_head_text_wrap b {
		margin: 0 0 .25rem;
	}
}

/* フォーム完了画面 */
.p-form__complete-inner {
	max-width: 43.75rem;
}
.p-form__complete-lead {
	display: flex;
	gap: .25rem;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	color: #fff;
	background-color: #ea5405;
}
.p-form__complete-lead span {
	font-size: .75em;
}
.p-form__complete-lead b {
	border-bottom: 1px solid;
}
.p-form__details {
	margin-bottom: 4rem;
}
.p-form__details h3 {
	margin: 0 0 1.25rem;
	padding-left: .625rem;
	font-size: 1.40625rem;
	font-weight: bold;
}
.p-form__details-table {
	width: 100%;
	font-size: 1.25rem;
	text-align: left;
	border: .0625rem solid #ccc;
	border-width: .0625rem 0;
}
.p-form__details-table th {
	padding-bottom: 1.5rem;
	padding-left: .625rem;
	width: calc(8em + .625rem);
	font-weight: 500;
}
.p-form__details-table td {
	padding-bottom: 1.5rem;
	padding-left: 3.125rem;
	font-weight: 300;
}
.p-form__details-table tr:first-child th,
.p-form__details-table tr:first-child td {
	padding-top: 1.5rem;
}
.p-form__complete-text h3 {
	margin: 0 0 2rem;
	font-size: 1.25rem;
	color: #db5e29;
	font-weight: bold;
	text-align: center;
}
.p-form__complete-tel-wrap {
	margin-bottom: 2rem;
	text-align: center;
}
.p-form__complete-tel-wrap span {
	display: block;
	margin-bottom: .25rem;
	font-size: .875rem;
}
.p-form__complete-tel-wrap p {
	margin: 0;
	font-size: 1rem;
}
.p-form__complete-tel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	margin-bottom: 1rem;
}
.p-form__complete-tel i {
	width: 2rem;
	transform: translateY(3px);
}
.p-form__complete-tel strong {
	font-size: 3.25rem;
	color: #DB5E28;
	letter-spacing: -1.463px;
	line-height: 1;
	font-weight: 500;
	font-family: Oswald;
}
.p-form__complete-info {
	margin: 4rem auto;
	width: fit-content;
	font-size: 1rem;
}
.p-form__complete-info p {
	margin: 0 0 .5rem;
	font-weight: bold;
}
.p-form__complete-info ul {
	margin: 0;
	padding: 0;
	font-size: .75em;
}
.p-form__complete-info li {
	text-indent: -1em;
	padding-left: 1em;
}

@media screen and (max-width: 768px) {
	.p-form__complete-inner {
		padding: 0 1.66666667rem;
	}
	.p-form__complete-lead {
		padding: 1.5rem 2rem;
		font-size: 1.333333rem;
	}
	.p-form__details h3 {
		font-size: 1.33333rem;
	}
	.p-form__details-table {
		font-size: 1.166666rem;
	}
	.p-form__details-table th {
		padding-left: 1rem;
	}
	.p-form__details-table td {
		padding-left: 3rem;
	}
	.p-form__complete-text h3 {
		margin-bottom: 1.5rem;
	}
	.p-form__complete-tel-wrap {
		margin-bottom: 3rem;
	}
	.p-form__complete-tel-wrap span {
		margin-bottom: .5rem;
		font-size: 1rem;
	}
	.p-form__complete-tel {
		margin-bottom: .5rem;
	}
	.p-form__complete-info {
		font-size: 1.25rem;
	}
	.p-form__complete-info p {
		margin-bottom: .75rem;
	}
}

.rapidssl {
	margin: 30px auto 10px;
	width: 100%;
	text-align: left;
	font-size: 11px;
	line-height: 17px;
	overflow: hidden;
}
.required-focus {
	background: #fce2e2 !important;
	border-color: #E75B5B !important;
}

/* ボタン */
.button.confirm[disabled]{
	background: #E0E0E0;
	cursor: auto;
	box-shadow: none;
	border: none;
	}
.form_buttons_elem {
	width: 100%;
	text-align: center;
}
.form_buttons input[type="submit"],
.form_flex input[type="submit"] {
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	height: 18.66667vw;
	font-size: 4.8vw;
	color: #fff;
	font-weight: 700;
	border-radius: 2.66667vw;
	border: 1.6vw outset #ff6818;
	background-image: linear-gradient(to top, #ba4000, #ff6818);
	-webkit-border-radius: 2.66667vw;
	-moz-border-radius: 2.66667vw;
	-ms-border-radius: 2.66667vw;
	-o-border-radius: 2.66667vw;
}
.form_flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.form_flex input[type="submit"].back {
	margin: auto;
	padding: 0 0 4px;
	width: fit-content;
	height: unset;
	color: #888;
	background: unset;
	border-radius: unset;
	background-color: unset;
	border: 1px solid #888;
	border-width: 0 0 1px;
}

@media only screen and (min-width: 781px) {
	.form_buttons_elem {
		max-width: 465px;
	}
	.form_buttons_elem._is_half {
		width: 50%;
		margin: 0 auto;
	}
	.form_buttons input[type="submit"],
	.form_flex input[type="submit"] {
		width: 100%;
		margin: 0 auto;
		height: 70px;
		font-size: 20px;
		border-radius: 10px;
		border: 6px outset #ff6818;
		}
}

/* footer */
.footer {
	margin-top: 18.66667vw;
}

.footer.is-form {
	margin-top: 9.33333vw;
}

.footer_nav {
	text-align: center;
	margin-bottom: 2.66667vw;
}

.footer_elem {
	font-size: 3.2vw;
	color: #333;
	position: relative;
	display: inline-block;
	padding-right: 1.33333vw;
	text-decoration: none;
}

.footer_elem:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 0.8vw;
	height: 0.8vw;
	margin-top: -0.4vw;
	border-top: solid 0.26667vw #999;
	border-right: solid 0.26667vw #999;
	transform: rotate(45deg);
	content: "";
}

.footer_elem+.footer_elem {
	margin-left: 2.66667vw;
}

.footer .copyright {
	background: #000;
	padding: 3.06667vw 0 2.53333vw;
	text-align: center;
	font-size: 3.2vw;
	color: #fff;
}

@media (min-width: 750px) {
	.footer {
		margin-top: 70px;
	}

	.footer.is-form {
		margin-top: 35px;
	}

	.footer_nav {
		text-align: center;
		margin-bottom: 20px;
	}

	.footer_elem {
		font-size: 16px;
		padding-right: 10px;
	}

	.footer_elem:after {
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: solid 1px #999;
		border-right: solid 1px #999;
	}

	.footer .copyright {
		padding: 20px 0;
		font-size: 12px;
	}
}