@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 {
	width: 100%;
}
form table th, form table td {
	font-size: 16px;
}
form table tr:last-child th, form table tr:last-child td {
	border-bottom: 0;
}
form table tr{
	display: flex;
	align-items: flex-start;
}
form table tr th{
	padding-top: 10px;
}
form table tr+tr{
 padding-top: 40px;
}
form table th {
	width: 250px;
	font-weight: bold;
}
form table td {
	width: 550px;
}
form table td .kome {
	font-size: 14px;
	line-height: 1.4;
	margin-top: 15px;
	padding-right: 40px;
	padding-left: 14px;
	text-indent: -14px;
}
/*==================================
 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;
    line-height: 1;
	vertical-align: 1px;
}
.must {
	background: #233482;
}
.nin {
	background: #dee1ec;
	color: #293485;
}
@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: #f0f1f7;
	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: 550px;
	height: 45px;
}
select {
	width: 300px;
	height: 45px;
}
.fbox_wrap input {
	width: 300px;
	height: 45px;
}
.th_small input {
	width: 80px;
	display: inline-block;
}
select {
	background: url("../../common/images/ic_arrow.svg") no-repeat right 15px center, #edf0f0;
	background-size: 12px 10px, auto;
	cursor: pointer;
}
@media all and (-ms-high-contrast: none) {
	select {
		background: #f4f4f4;
		background-size: auto;
	}
}
textarea {
	width: 100%;
	min-height: 45px;
	height: 120px;
	min-width: 550px;
	max-width: 550px;
}
input[type=file] {
	border: 0;
	padding: 8px 10px;
	height: 45px;
	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: 6px;
	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: 8px;
	transform: rotate(45deg);
	width: 5px;
}
.checkbox.mfp_checked::after {
	opacity: 1;
}
@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: 18px;
	font-weight: bold;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
	background-color: var(--black-color);
	border: 1px solid var(--black-color);
	transition: all .3s ease;
}
#mfp_button_send:hover, #mfp_element_submit:hover, #mfp_button_cancel:hover {
	opacity: 0.7;
}
#mfp_element_submit, #mfp_button_send {
	color: #fff;
	z-index: 1;
	background: #df4436;
	border-radius: 50px;
    font-family: "Noto Sans JP", sans-serif;
}
#mfp_element_submit::after, #mfp_button_send::after {
	content: "";
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: #df4436;
	transition: 0.3s;
	z-index: -1;
	 border-radius: 50px;
}
#mfp_element_submit:hover::after, #mfp_button_send:hover::after {
	opacity: 1;
	border-radius: 50px;
}
#mfp_element_submit .btn_area, #mfp_button_send .btn_area {
	font-family: "Noto Sans JP", sans-serif;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	z-index: 2;
	border-radius: 50px;
}

#mfp_element_submit {
	margin: 0 auto;
}
#mfp_button_cancel {
	color: #fff;
	background: #666;
	border-radius: 50px;
}
#mfp_button_cancel:hover {
	opacity: 0.7;
}
.mfp_buttons {
	width: 630px;
	margin: 50px auto 0;
	overflow: hidden;
	clear: both;
}
.mfp_buttons #mfp_button_cancel {
	float: left;
	font-family: "Noto Sans JP", sans-serif;
}
.mfp_buttons #mfp_button_send {
	float: right;
    font-family: "Noto Sans JP", sans-serif;
}
/*==================================
 mfp_confirm_table
===================================*/
#mfp_phase_confirm {
	display: none;
	width: 800px;
	background: #fff;
	margin: 0 auto;
	padding: 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: 4vw;
	}
	form table tr+tr{
		padding-top: 0;
	}
	form table th, form table td {
		border-bottom: 0.3vw solid #ccc;
	}
	form table th {
		padding: 0 0 2.7vw;
		border-bottom: 0;
	}
	form table td {
		padding: 0 0 4vw;
		border-bottom: 0;
	}
	form table td .kome {
		font-size: 3.2vw;
		margin-top: 4vw;
		padding-right: 0;
		padding-left: 3.2vw;
		text-indent: -2vw;
	}
	/*==================================
 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;
	}
	/*==================================
 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, #f4f4f4;
		background-size: 4vw auto, auto;
	}
	textarea {
		min-height: 40vw;
		height: 40vw;
		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;
	}
	.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: 64vw;
		padding: 5.3vw 0;
		border-radius: 50px;
	}
	.mfp_buttons {
		width: 100%;
		margin: 6.6vw auto;
		padding-top: 2vw;
	}
	.mfp_buttons #mfp_button_cancel {
		float: none;
		margin-top: -4vw;
	}
	.mfp_buttons #mfp_button_send {
		float: none;
		margin-bottom: 2vw;
	}
	/*==================================
 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;
	}
	#mfp_element_submit{
		height: 14vw;
		border-radius: 13vw;
	}
}