@charset "UTF-8";

/* レスポンシブ */
.pc-on { display: block; }
.sp-on { display: none; }

/* 行と列 */
.mfp_rows {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.mfp_col1 { width: 9%; }
.mfp_col2 { width: 19%; }
.mfp_col3 { width: 29%; }
.mfp_col4 { width: 39%; }
.mfp_col5 { width: 49%; }
.mfp_col6 { width: 59%; }
.mfp_col7 { width: 69%; }
.mfp_col8 { width: 79%; }
.mfp_col9 { width: 89%; }
.mfp_col10 { width: 100%; }
.mfp_col1, .mfp_col2, .mfp_col3, .mfp_col4, .mfp_col5, 
.mfp_col6, .mfp_col7, .mfp_col8, .mfp_col9, .mfp_col10 
{ margin-bottom: 0.5em; }
.mfp_rows *:last-child {
	margin-bottom: 0;
}

/* 要素 */
.mfp_element_textarea {
	height: 12em;
}

/* フォーム本文追加スタイル */
.menu_name {
	display: inline-block;
	min-width: 9em;
}
.menu_name > .must {
	font-weight: bold;
	display: inline-block;
	line-height: 1.5;
}
.content form#mailformpro .menu_name + input[type="text"].mfp_element_all {
	max-width: none;
}
.menu_name + input[type="text"] {
	width: calc(100% - 13em);
}

form#mailformpro dl dd ul.ul_list li {
	margin-left: 1.5em;
	position: relative;
}
form#mailformpro dl dd ul.ul_list li:before {
	content: '';
	width: 4px;
	height: 4px;
	background-color: var(--black);
	border-radius: 50%;
	position: absolute;
	left: calc(-1em + 2px);
	top: calc(0.5em + 2px);
}

/* 確認画面 */
#mfp_overlay_inner h4 {
	text-align: center;
	font-weight: bold;
	font-size: 115%;
	margin: 1em 0;
}

table#mfp_confirm_table {
	border-bottom: solid 1px #CCC;
	margin-bottom: 1em;
}

/* ボタン */
div.mfp_buttons button {
	background: #949494;;
	border: none;
	color: #fff;
	font-family: "NotoSansJP-Medium";
	transition: .2s;
	padding: 0.6em 2em;
	font-size: 1.6rem;
}
div.mfp_buttons button:hover {
	opacity: .85;
}
div.mfp_buttons button#mfp_button_send {
	background: var(--green);
}

@media screen and (max-width: 800px) {
	.pc-on { display: none; }
	.sp-on { display: block; }
	
	.menu_name + input[type="text"] {
		width: 100%;
	}

	table#mfp_confirm_table tr th,
	table#mfp_confirm_table tr td {
		width: 100%;
		display: block;
	}
	table#mfp_confirm_table tr th {
		font-weight: bold;
	}
}
