/* buttons.css
 * 次へ/戻るボタン（.qnaire-buttons）・スタートボタン（index）
 */

/* ------------------------------------------------------------
 * 共通
 * ------------------------------------------------------------ */
/* スタートボタン（index.php）同じデザイン */
.a0-buttons-wrap input.BTNEXT {
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 24px;
	min-height: 44px;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 8px;
	background-color: #2563eb;
	color: #fff;
}
.a0-buttons-wrap input.BTNEXT:hover {
	background-color: #1d4ed8;
}

.qnaire-buttons-wrap {
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}
table.qnaire-buttons {
	border-collapse: collapse;
	width: 100%;
}
table.qnaire-buttons td {
	padding: 8px;
	vertical-align: middle;
}
table.qnaire-buttons input.BTNEXT,
table.qnaire-buttons input.BTBACK {
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 24px;
	min-height: 44px;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 8px;
}
table.qnaire-buttons input.BTNEXT {
	background-color: #2563eb;
	color: #fff;
}
table.qnaire-buttons input.BTNEXT:hover {
	background-color: #1d4ed8;
}
table.qnaire-buttons input.BTBACK {
	background-color: #fff;
	color: #374151;
	border: 1px solid #d1d5db;
}
table.qnaire-buttons input.BTBACK:hover {
	background-color: #f9fafb;
}

/* ------------------------------------------------------------
 * スマホ（799px以下）
 * ------------------------------------------------------------ */
@media (max-width: 799px) {
	.qnaire-buttons-wrap {
		width: 100%;
		max-width: 100%;
		padding: 0 16px;
		box-sizing: border-box;
	}
	table.qnaire-buttons td {
		padding: 6px 0;
	}
	table.qnaire-buttons input.BTNEXT,
	table.qnaire-buttons input.BTBACK {
		width: 100%;
		min-height: 48px;
		font-size: 17px;
		padding: 14px 20px;
	}
	.a0-buttons-wrap input.BTNEXT {
		width: 100%;
		max-width: 360px;
		min-height: 48px;
		font-size: 17px;
		padding: 14px 20px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}
