@charset "utf-8";

/* tags */
html {
	font-size: 100%;
}
body {
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
}
img {
	display: block;
	max-width: 100%;
}
ul {
	list-style:none;
}
a {
	text-decoration: underline;
	color: #4D4D4D;
}
a:hover {
	text-decoration: none;
}
a:link,
a:visited {
	color: #00d;
	text-decoration: none;
}
a:hover {
	color: #f22;
	text-decoration: underline;
}

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

/* common */
.inner {
	margin: auto;
	padding: 0 2rem;
	max-width: 940px;
}
.copyright {
	width: 100%;
	margin: 2rem 0 0;
	padding: .5rem 0;
	font-size: 12px;
	color: #fff;
	background: #333;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.inner {
		padding: 0 10px;
	}
	.copyright {
		margin-top: 1rem;
		font-size: 10px;
	}
}

/* フォーム共通ヘッダー */
.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;
}

@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;
	}
}

/* フォーム入力画面 */
.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,
.form-table th .any {
	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;

	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}
.form-table th .required {
	background-color: #ea5405;
}
.form-table th .any {
	background-color: #9D9D9D;
}
.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 {
	box-sizing: border-box;
	padding: 0 1rem;
	width: 100%;
	height: 60px;
	font-size: 16px;
	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;
}
.form_input .confirm {
	display: block;
	margin: auto;
	width: 22.5rem;
	height: 5.625rem;
	font-size: 1.25rem;
	font-weight: bold;
	color: #fff;
	background-color: #ea5405;
	cursor: pointer;
	border: none;
	border-radius: 2.8125rem;
	-webkit-border-radius: 2.8125rem;
	-moz-border-radius: 2.8125rem;
	-ms-border-radius: 2.8125rem;
	-o-border-radius: 2.8125rem;
}
.form_input .confirm[disabled] {
	box-shadow: none;
	color: #fff;
	background-color: #ccc;
}
.button_wrap {
	display: flex;
	justify-content: center;
}
.button.submit {
	display: block;
	margin-bottom: 1.5rem;
	width: 22.5rem;
	height: 5.625rem;
	color: #fff;
	border-radius: 2.8125rem;
	box-shadow: unset;
	border: none;
	font-size: 1.25rem;
	font-weight: bold;
	background-color: #ea5405;
}
.button.back {
	display: block;
	appearance: none;
	padding: 0 0 .25rem;
	font-size: 1rem;
	color: #888;
	font-weight: bold;
	background-color: unset;
	border-bottom: .0625rem solid #888;
	border-width: 0 0 .0625rem;
}
.input_note {
	margin-bottom: 32px;
	font-size: 14px;
	text-align: center;
}
.input_note p {
	margin: 0;
}
.input_note p:not(:last-child) {
	margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
	.form_input {
		margin-bottom: 30px;
	}
	.input_note {
		font-size: 10px;
	}
	.form-table tr:not(:last-child) {
		margin-bottom: 1.66666667rem;
	}
	.form-table th {
		font-size: 1.25rem;
		margin-bottom: .5rem;
	}
	.form-table th .required {
		width: 2.91666667rem;
		height: 1.6666667rem;
		font-size: .66666667em;
		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;
	}
	.form_input .confirm {
		width: 100%;
	}
	select,
	.form_input .form-table td input {
		height: 56px;
	}
	.button.submit {
		margin: 0 0 1.33333333rem;
		width: 100%;
		font-size: 1.5rem;
	}
	.button.back {
		font-size: 1.16666667rem;
	}
}

.form_head_note {
	position: relative;
	margin: 3rem 0;
	padding: 2rem 1rem;
	font-size: 1.375rem;
	text-align: center;
}
.form_head_note i {
	position: absolute;
	top: -2rem;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0 1rem;
	width: fit-content;
	background-color: #fff;
}
.form_head_note p {
	margin: 0;
}
.form_head_note span {
	font-weight: 900;
	background-image: linear-gradient(0deg, #FFCC0A 40%, transparent 0);
}
.form_head_note b {
	margin: 0 .25rem;
	font-size: .88888889em;
	font-weight: normal;
}

@media screen and (max-width: 768px) {
	.form_head_note {
		margin: 3rem auto 2rem;
		padding: 1.25rem 0 0;
		font-size: 1.33333rem;
	}
	.form_head_note i {
		max-width: 3rem;
	}
}

/* デバイスごとの表示の切り替え */
.pcnone {
	display: none;
}
@media screen and (max-width: 768px) {
	.pcnone {
		display: block;
	}
}

/* header */
.header {
	position: relative;
	z-index: 2;
	padding: 20px 0;
}
.header_flex {
	display: flex;
	align-items: center;
}
.header_logo {
	margin-right: 12px;
	max-width: 183px;
}
.header_flex span {
	font-size: 12px;
}

@media only screen and (max-width: 768px) {
	.header {
		padding: 10px 0;
	}
	.header_logo {
		margin-right: 9px;
		max-width: 152px;
	}
	.header_flex span {
		font-size: 10px;
	}
}

select {
	width:100%;
	height: 60px;
	font-size: 16px;
	text-indent: .5em;
	color: #333;
	border: 2px solid #ccc;
	border-radius: .375rem;
	-webkit-border-radius: .375rem;
	-moz-border-radius: .375rem;
	-ms-border-radius: .375rem;
	-o-border-radius: .375rem;
}
.ERR {
	color:#f00;
	margin: .5rem 0 0;
}
.required-focus {
	background: #fce2e2 !important;
	border-color: #E75B5B !important;
}

/*------------------------------------------------------*/
/*　media Queries PCサイズ　　　　　*/
/*------------------------------------------------------*/

.notel {
	color: inherit;
	pointer-events: none;
	text-decoration: none;
}
.notel:hover {
	color: inherit;
}

/* edit 2024.6.12 apply-complete.cssから移動 */
.complete-thanks {
	margin: 0;
	font-size: 1.125rem;
	font-weight: bold;
	text-align: center;
}
.complete-form-details {
	margin: 4rem auto;
	max-width: 43.75rem;
}
.complete-form-details h3 {
	margin: 0 0 1.25rem;
	padding-left: .625rem;
	font-size: 1.40625rem;
	font-weight: bold;
}
.complete-form-details-table {
	width: 100%;
	font-size: 1.25rem;
	border: .0625rem solid #ccc;
	border-width: .0625rem 0;
	border-collapse: collapse;
}
.complete-form-details-table th {
	padding-left: .625rem;
	text-align: left;
	width: calc(8em + 1rem);
}
.complete-form-details-table td {
	padding-left: 3.125rem;
}
.complete-form-details-table tr:first-child th,
.complete-form-details-table tr:first-child td {
	padding-top: 1.5rem;
}
.complete-form-details-table th,
.complete-form-details-table td {
	padding-bottom: 1.5rem;
}
.complete-wrap {
	margin: 20px 0;
	padding: 20px;
	background-color: #fff5d3;
}
.complete-text {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #f7313b;
	text-align: justify;
}
.complete-text i {
	display: inline-block;
	max-width: 27px;
	transform: translateY(4px);
}
.complete-tel-wrap {
	display: flex;
	flex-direction: column;
	font-size: 42px;
	color: #000;
}
.complete-tel-span {
	font-weight: 500;
	font-size: .333333em;
}
.complete-tel-number {
	display: flex;
	align-items: center;
	margin: 2px 0 4px;
	font-size: 1em;
}
.complete-tel-number i {
	max-width: 40px;
	margin-right: 4px;
	transform: translateY(3px);
}
.complete-tel-time {
	font-size: 14px;
	font-weight: normal;
}
.complete-back {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-indent: -.5em;
	text-align: justify;
	color: #000;
}
.complete-back span {
	color: #f7313b;
	font-weight: bold;
	border-bottom: 1px solid #f7313b;
}
.complete-note {
	margin: 0;
	padding: 0;
}
.complete-note li:first-child {
	margin-bottom: 4px;
	text-indent: -.5em;
	font-weight: 500;
}
.complete-tel-number a {
	flex-shrink: 0;
	font-weight: bold;
	color: #f7313b;
	line-height: 1;
	letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
	.complete-form-details {
		margin: 3.5rem auto 5.33333rem;
	}
	.complete-form-details h3 {
		margin-bottom: 1rem;
		padding-left: .833333333rem;
		font-size: 1.333333rem;
	}
	.complete-form-details-table {
		font-size: 1.16666667rem;
	}
	.complete-form-details-table th {
		padding-left: 1rem;
	}
}

@media screen and (max-width: 376px) {
	.complete-tel-number {
		font-size: 10.08vw;
	}
}