@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  入力画面
**************************************************
--------------------------------------------------*/
.example {
	position: relative;
	width: min(894px, var(--content-sp-width-1));
	margin: 120px auto 0;
	padding: 64px 40px 40px;
	background: var(--gray-2);
}

.example .text_1 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 436px;
	padding: 16px 5px;
	background: var(--green-1);
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
	color: var(--white-1);
}

.example .list > li {
	position: relative;
	width: 100%;
	padding: 10px 40px;
	background: var(--white-1);
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--green-1);
}

.example .list > li + li {
	margin-top: 8px;
}

.example .list > li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	display: block;
	width: 8px;
	height: 8px;
	background: var(--green-1);
	border-radius: 50%;
}

.box_1 {
	margin-top: 64px;
	text-align: center;
}

.box_1 .text_1 {
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.5;
}

.box_1 .text_2 {
	margin-top: 16px;
}

.box_1 .text_2 a[href^="tel:"] {
	font-size: 4.0rem;
	font-weight: 600;
	line-height: 1;
}

.box_1 .text_3 {
	margin-top: 8px;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
}

.form_content {
	margin-block: 67px 120px;
}

.form_content .input_item {
	scroll-margin-top: var(--scroll-margin-top-pc);
	display: flex;
	gap: 8px;
}

.form_content .input_item_name {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	width: 272px;
	padding-inline: 16px;
	border-bottom: var(--green-1) 1px solid;
}

.form_content .input_item_name_value {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--green-1);
}

.form_content .input_item_name_value .multi_answer {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	color: var(--black-1);
}
/*
.form_content .input_item_name_value.multi_answer::after {
	content: '※複数回答可';
	position: absolute;
	bottom: -20px;
	left: 0;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	color: var(--black-1);
}
*/
.form_content .must,
.form_content .optional {
	padding: 8px;
	white-space: nowrap;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
}

.form_content .must {
	background: var(--red-1);
	color: var(--white-1);
}

.form_content .optional {
	background: var(--green-3);
	color: var(--black-1);
}

.form_content .input_item_content {
	width: calc(100% - 8px - 272px);
	padding: 32px 24px;
	border-bottom: var(--gray-1) 1px solid;
}

.form_content .input_item_content .note {
	margin-top: 16px;
	font-size: 1.4rem;
	font-weight: 500;
}

.form_content input[type="text"],
.form_content input[type="email"],
.form_content select,
.form_content textarea {
	width: 100%;
	padding: 16px 24px;
	border: var(--gray-1) 1px solid;
	border-radius: 8px;
}

.form_content .mwform-tel-field input[type="text"] {
	width: 32%;
}

.form_content input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	width: 19px;
	height: 19px;
	background: url(../imgs/other/check_01.svg) no-repeat left top / 19px;
}

.form_content input[type="checkbox"]:checked {
	background-image: url(../imgs/other/check_02.svg);
}

.form_content select option {
	width: 100%;
}

.form_content textarea {
	resize: vertical;
	min-height: 120px;
}

.form_content .privacy_box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
}

.form_content .privacy_box a {
	text-decoration: underline;
}

.form_content .submit_box button[type="submit"] {
	position: relative;
	display: block;
	width: 380px;
	margin: 40px auto 0;
	padding: 24px 40px;
	background: var(--black-1);
	border-radius: 50px;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--white-1);
}

.form_content .submit_box button[type="submit"]::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	display: inline-block;
	width: 40px;
	height: 46px;
	background: url(../imgs/common/arrow_2.svg) no-repeat right center / 8px;
	border-left: rgba(255, 255, 255, 0.4) 1px solid;
}

.form_content .error {
	display: inline-block;
	margin-block: 10px;
	color: var(--red-1);
}

/* SP */
@media screen and (max-width: 767px) {
	.example {
		margin-top: 60px;
		padding: 32px 16px 16px;
	}

	.example .text_1 {
		width: 200px;
		padding: 12px 24px;
		font-size: 1.5rem;
	}

	.example .list > li {
		padding: 10px 14px 10px 30px;
		font-size: 1.5rem;
		line-height: 1.46;
	}

	.example .list > li::before {
		left: 12px;
	}

	.box_1 {
		margin-top: 40px;
	}

	.box_1 .text_1 {
		font-size: 2.2rem;
		line-height: 1;
	}

	.box_1 .text_2 a[href^="tel:"] {
		font-size: 3.2rem;
	}

	.box_1 .text_3 {
		margin-top: 4px;
		font-size: 1.4rem;
	}

	.form_content {
		margin-block: 58px 60px;
	}

	.form_content .input_item {
		scroll-margin-top: var(--scroll-margin-top-sp);
		flex-direction: column;
		gap: 0;
	}

	.form_content .input_item_name {
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
		padding: 16px 8px;
	}

	.form_content .input_item_name_value {
		font-size: 1.4rem;
	}

	.form_content .input_item_name .must {
		padding: 6px 8px;
		font-size: 1.1rem;
	}

	.form_content .input_item_content {
		width: 100%;
		padding: 16px 8px;
	}

	.form_content input[type="text"],
	.form_content input[type="email"],
	.form_content select,
	.form_content textarea {
		padding: 8px 12px;
	}

	.form_content .mwform-tel-field input[type="text"] {
		width: 30%;
	}

	.form_content .submit_box button[type="submit"] {
		width: 100%;
	}
}


/*--------------------------------------------------
**************************************************
  送信完了画面
**************************************************
--------------------------------------------------*/
.thanks.box_1 {
	margin-block: 64px 120px;
	text-align: center;
}

.thanks.box_1 .text_1 {
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.5;
}

.thanks.box_1 .text_2 {
	margin-top: 16px;
}

.thanks.box_1 .text_3 {
	display: inline-block;
	margin-top: 24px;
}

/* SP */
@media screen and (max-width: 767px) {

	.thanks.box_1 {
		margin-top: 40px;
	}

	.thanks.box_1 .text_1 {
		font-size: 2.0rem;
		line-height: 1;
	}

	.thanks.box_1 .text_3 {
		width: 100%;
		margin-top: 24px;
	}
}
