@charset "UTF-8";
#mfp_loading, #mfp_loading_screen, #mfp_overlay_background, #mfp_overlay {
	display: none;
}
div#mfp_hidden {
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0px;
	margin: 0px;
}
div.mfp_thanks ul.mfp_caution {
	margin: 0px;
	padding: 0px;
}
.consent {
	font-size: 16px;
}
.consent a {
	color: #151515;
	text-decoration: underline;
}
/*==================================
 table
===================================*/
form {
	width: 100%;
	margin: 0 auto;
}

form .table_wrap .table_mail {
	width: 720px;
	margin: 0 auto;
}
form .table_wrap .table_mail tbody tr {
	margin-bottom: 45px;
	display: flex;
	flex-direction: column;
}
form .table_wrap .table_mail tbody .row {
	flex-direction: row;
	align-items: baseline;
}
form .table_wrap .table_mail tbody tr th {
	margin-bottom: 12px;
}
form .table_wrap > p {
	width: 720px;
	margin: 0 auto;
	font-weight: 500;
}

/*==================================
 validation
===================================*/
.mfp_err {
	font-size: 14px;
	color: red;
	margin-top: 15px;
	font-weight: bold;
	display: none;
}
.mfp_checked, .mfp_not_checked {
	height: 0;
}
div.mfp_ok {
	display: none;
	content: "";
	width: 27px;
	height: 27px;
	border-radius: 27px;
	background: url("../../common/images/ic_form_checked.svg");
	background-size: 100% auto;
	position: absolute;
	right: -22px;
	top: 35px;
	text-indent: -9999px;
	overflow: hidden;
}
.problem, .mfp_not_checked::before {
	border: 1px solid #ffb8c5 !important;
	background: #ffdcdc !important;
}
.problem::placeholder {
	color: #ff8299;
}
/*==================================
 must / nin
===================================*/
.must, .nin {
	display: inline-block;
	text-align: center;
	/*width: 40px;*/
	/*height: 18px;*/
	font-size: 13px;
	right: 0;
	font-weight: bold;
	color: #fff;
	margin-right: 12px;
	/*padding-top: 2px;*/
	padding: 5px 13px 6px;
	line-height: 1;
	vertical-align: 1px;
}
.must {
	background: #e50012;
}
.nin {
	background: #888888;
}
@media all and (-ms-high-contrast: none) {
	.must, .nin {
		padding: 5px 5px 5px;
		top: auto;
		margin-top: -4px;
	}
}
/*==================================
 basic parts
===================================*/
input, select, textarea {
	/*reset*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	outline: none;
	/*custom*/
	display: block;
	border: none;
	background: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
}
::placeholder {
	color: #BDBDBD;
}
input[type=text], input[type=email], select, textarea {
	padding: 10px;
}
input[type=text], input[type=email] {
	width: 100%;
	height: 55px;
}
select {
	width: 300px;
	height: 45px;
}
.fbox_wrap input {
	width: 300px;
	height: 45px;
}
.th_small input {
	width: 80px;
	display: inline-block;
}
.th_middle input {
	/*width: 60%;*/
	display: inline-block;
	border-radius: 4px;
  border: 1px solid #CCCCCC;
}
select {
	background: url("../../common/images/ic_arrow.svg") no-repeat right 15px center, #f0f1f7;
	background-size: 12px 10px, auto;
	cursor: pointer;
}
@media all and (-ms-high-contrast: none) {
	select {
		background: #f4f4f4;
		background-size: auto;
	}
}
textarea {
	width: 100% !important;
	min-height: 45px !important;
	height: 260px !important;
	border-radius: 4px;
	border: 1px solid #c7c8c8;
	/*min-width: 550px;
	max-width: 550px;*/
}
input[type=file],
input[type=date] {
	border: 0;
	padding: 8px 10px;
	height: 45px;
	width: 100%;
	cursor: pointer;
}

/*==================================
 radio
===================================*/
input[type=radio] {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	margin-right: 5px;
	vertical-align: -4px;
	cursor: pointer;
}
input[type=radio]::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 10px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -5px;
	margin-top: -5px;
	background: green;
	opacity: 0;
}
.mfp_checked input[type=radio]::after {
	opacity: 1;
}
.radio_wrap label {
	display: block;
	height: 20px;
	margin-bottom: 15px;
}
.radio_wrap label:last-child {
	margin-bottom: 0;
}
/*==================================
 checkbox
===================================*/
input[type=checkbox] {
	display: none;
}
.checkbox_wrap {
	/*text-align: center;*/
	margin: 30px auto 60px;
}
.checkbox {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 2px 0 3px 30px;
	position: relative;
	width: auto;
}
.checkbox::before {
	background: #fff;
	border: 1px solid #233482;
	content: '';
	display: block;
	height: 20px;
	left: 0px;
	position: absolute;
	top: 3px;
	width: 20px;
	box-sizing: border-box;
}
.checkbox::after {
	border-right: 3px solid #002744;
	border-bottom: 3px solid #002744;
	content: '';
	display: block;
	height: 10px;
	left: 6px;
	opacity: 0;
	position: absolute;
	top: 4px;
	transform: rotate(45deg);
	width: 5px;
}
.checkbox span {
	font-weight: bold;
	}
.checkbox.mfp_checked::after {
	opacity: 1;
}
.mail_caption {
	position: relative;
	margin-top: 7px;
	padding-left: 25px;
	color: #555555;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.4;
}
.mail_caption::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
@media all and (-ms-high-contrast: none) {
	.checkbox {
		padding: 6px 0 3px 30px;
	}
}
/*==================================
 buttons
===================================*/
#mfp_button_send, #mfp_element_submit, #mfp_button_cancel {
	/*reset*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	outline: none;
	/*custom*/
	cursor: pointer;
	font-size: 24px;
	font-weight: 400;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	margin: 0 auto;
	padding: 25px 0;
	text-align: center;
	letter-spacing: 20px;
	text-indent: 20px;
	border-radius: 15px;
	background-color: #138f2e;
	border: none;
	transition: all .3s ease;
}
#mfp_button_send:hover, #mfp_element_submit:hover, #mfp_button_cancel:hover {
	opacity: 0.95;
	border-radius: 40px;
}
#mfp_element_submit, #mfp_button_send {
	color: #fff;
	z-index: 1;
	background: #138f2e;
	/*border-radius: 50px;*/
	font-family: "Noto Sans JP", sans-serif;
}


#mfp_element_submit {
	margin: 0 auto;
	position: relative;
}
#mfp_element_submit::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 22%;
	transform: translate(0 , -35%);
	background: url("../../common/images/ic_arrow.png") no-repeat;
	background-size: cover;
	width: 22px;
	aspect-ratio: 1 / 1;
	transition: right 0.3s ease;
}
#mfp_element_submit:hover::before {
	right: 18%;
}

#mfp_button_cancel {
	color: #fff;
	background: #666;
	/*border-radius: 50px;*/
}
#mfp_button_cancel:hover {
	opacity: 0.7;
}
.mfp_buttons {
	display: flex;
	justify-content: space-between;
	gap: 2%;
	width: 700px;
	margin: 50px auto 0;
	overflow: hidden;
}
.mfp_buttons #mfp_button_cancel {
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 5px;
	text-indent: 5px;
	width: 49%;
}
.mfp_buttons #mfp_button_send {
  font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 5px;
	text-indent: 5px;
	width: 49%;
}
/*==================================
 mfp_confirm_table
===================================*/
#mfp_phase_confirm {
	display: none;
	width: 800px;
	background: #fff;
	margin: 0 auto;
	padding: 0 50px 50px;
}
#mfp_phase_confirm h4 {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
#mfp_overlay {
	position: absolute;
	display: none;
	z-index: 10001;
}
iv#mfp_overlay_inner {
	background-color: #FFF;
	padding: 15px;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
	width: 640px;
	color: #353535;
	max-width: 90%;
}
div#mfp_overlay_background {
	background-color: #000;
	position: absolute;
	display: none;
	z-index: 10000;
}
#mfp_confirm_table {
	width: 100%;
	border: 1px solid #ccc;
}
#mfp_confirm_table th, #mfp_confirm_table td {
	vertical-align: middle;
	border-bottom: 1px solid #ccc;
}
#mfp_confirm_table th {
	width: 250px;
	font-weight: bold;
	background: #f4f4f4;
	padding: 25px 20px;
}
#mfp_confirm_table td {
	padding: 25px 20px;
}


@media screen and (max-width:750px) {
	/*==================================
 table
===================================*/
	form {
		width: 100%;
	}
	form table, form table tbody, form table tr, form table th, form table td {
		font-size: 4.2vw;
		display: block;
		width: 100%;
	}
	form table {
		border: 0;
	}
	form table tr th{
		padding-top: 0;
	}
	form table tr {
		margin-bottom: 6.7vw;
	}
	/*form table tr+tr{
		padding-top: 0;
	}*/
	form table tr{
		padding-block: 0;
	}
	form table tr:first-child{
		padding-block: 0 0;
	}
	form table th, form table td {
		border-bottom: 0.3vw solid #ccc;
	}
	form table th {
		/*padding: 0 0 3.3vw;*/
		padding: 0;
		border-bottom: 0;
	}
	form table th.policy_must {
		max-width: fit-content;
	}
	form table td {
		/*padding: 0 0 6.7vw;*/
		border-bottom: 0;
	}
	form table td .kome {
		font-size: 3.2vw;
		margin-top: 4vw;
		padding-right: 0;
		padding-left: 3.2vw;
		text-indent: -2vw;
	}
	form .table_wrap .table_mail {
		width: 100%;
		margin: 0 auto;
	}
	form .table_wrap > p {
		width: 100%;
	}
	
	/*==================================
 validation
===================================*/
	.mfp_err {
		font-size: 3.2vw;
		margin-top: 4vw;
	}
	.mfp_checked, .mfp_not_checked {
		height: 0;
	}
	div.mfp_ok {
		display: none !important;
	}
	.problem, .mfp_not_checked::before {
		border: 0.3vw solid #ffb8c5;
	}
	/*==================================
 must / nin
===================================*/
	.must, .nin {
		display: inline-block;
		text-align: center;
		/*width: 12vw;*/
		/*height: 5vw;*/
		font-size: 3.6vw;
		right: 0;
		font-weight: bold;
		margin-right: 3vw;
		/*padding-top: 0.5vw;*/
		line-height: 1;
		vertical-align: 0.2vw;
		letter-spacing: 0.3vw;
	}
	/*==================================
 basic parts
===================================*/
	input, select, textarea {
		font-size: 4.2vw;
	}
	input[type=text], input[type=email], select, textarea {
		padding: 2.6vw 4vw;
	}
	input[type=text], input[type=email], select {
		width: 100%;
		height: 12vw;
	}
	.th_small input[type=text]{
		width: 30%;
	}
	select {
		background: url("../../common/images/ic_form_arrow.svg") no-repeat right 4vw center, #f0f1f7;
		background-size: 4vw auto, auto;
	}
	textarea {
		min-height: 40vw;
		height: 60vw;
		min-width: 100%;
		max-width: 100%;
	}
	input[type=file] {
		padding: 1.5vw 1.5vw;
		width: 100%;
		height: 10vw;
		font-size: 4.2vw;
		display: flex;
		align-items: center;
	}
	/*==================================
 radio
===================================*/
	input[type=radio] {
		width: 4vw;
		height: 4vw;
		border-radius: 4vw;
		margin-right: 2vw;
		vertical-align: -0.5vw;
	}
	input[type=radio]::after {
		width: 2vw;
		height: 2vw;
		border-radius: 2vw;
		margin-left: -1vw;
		margin-top: -1vw;
	}
	.mfp_checked input[type=radio]::after {
		opacity: 1;
	}
	.radio_wrap label {
		display: block;
		height: 4.2vw;
		margin-bottom: 4vw;
	}
	.radio_wrap label:last-child {
		margin-bottom: 0;
	}
	/*==================================
 checkbox
===================================*/
	input[type=checkbox] {
		display: none;
	}
	.checkbox_wrap {
		margin: 0 auto 10.6vw;
	}
	.checkbox {
		padding: 0.2vw 0 0.3vw 8.6vw;
	}
	.checkbox::before {
		border: 1px solid #233482;
		width: 6vw;
		height: 6vw;
		top: 0.5vw;
	}
	.checkbox::after {
		border-right: 0.8vw solid #002744;
		border-bottom: 0.8vw solid #002744;
		height: 3.2vw;
		left: 2vw;
		top: 1vw;
		width: 1.4vw;
	}
	.checkbox span {
		vertical-align: 0;
	}
	.consent, .consent a {
		font-size: 4.2vw;
	}
	#mailform form table td .mail_caption{
		padding-top: 2.6vw;
		font-size: 3.4vw;
		letter-spacing: 0;
	}
/*==================================
 buttons
===================================*/
	#mfp_element_submit {
		width: 70vw;
		padding: 5.3vw 0;
		font-size: 5.2vw;
		margin-bottom: 4.0vh;
	}
	.mfp_buttons {
		width: 100%;
		margin: 6.6vw auto;
		padding-top: 2vw;
	}
	.mfp_buttons #mfp_button_cancel {
		/*margin-top: -4vw;*/
		width: 100%;
		letter-spacing: 0.4vw;
		font-size: 4.4vw;
	}
	.mfp_buttons #mfp_button_send {
		/*margin-bottom: 2vw;*/
		width: 100%;
		letter-spacing: 0.4vw;
		font-size: 4.4vw;
	}
	/*==================================
 mfp_confirm_table
===================================*/
	#mfp_phase_confirm {
		width: 100%;
		padding: 0;
		background: none;
	}
	#mfp_phase_confirm h4 {
		font-size: 4.8vw;
		margin-bottom: 5.3vw;
		/*padding-top: 5.3vw;*/
	}
	#mfp_confirm_table, #mfp_confirm_table tbody, #mfp_confirm_table tr, #mfp_confirm_table th, #mfp_confirm_table td {
		display: block;
		width: 100%;
	}
	#mfp_confirm_table {
		border: none;
	}
	#mfp_confirm_table tr {
		margin-bottom: 0vw;
	}
	#mfp_confirm_table th, #mfp_confirm_table td {
		padding: 4vw;
	}
	#mfp_confirm_table th {
		padding: 4vw;
	}
	
	#mfp_element_submit::after,
	#mfp_button_send::after{
		height: 14vw;
	}
	#mfp_element_submit .btn_area,
	#mfp_button_send .btn_area{
		border-radius: 13vw;
		font-size: 4.2vw;
		padding-bottom: 1vw;
	}
}