body {
	background: #f8fafc;
	padding:0 10px 20px;
}

table{
	border-collapse:collapse;
	font-size:90%;
	background:#fff;
	margin-bottom:20px;
}

caption{
	color:#fff;
	background:#666;
	padding:5px 10px;
}

td,th {
	border:1px solid #aaa;
	padding:10px;
}

td em{
	color:#cc0000;
	font-style:normal;
	font-size:90%;
}
th{
	white-space:nowrap;
	text-align:left;
}

.form-container {
	max-width: 800px;
	margin:0 auto;
}

.section-title{
	margin:10px 0;
}

	.section-title span{
		font-size:80%;
		margin-left:10px;
	}

	.form-section {
		background: #fff;
		padding: 20px;
		border-radius: 5px;
		box-shadow: 0 0 5px #ddd;
		margin-bottom: 20px;
	}

.agreement-row {
	display: flex;
	justify-content:center;
}

.form-table {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 14px 24px;
}

.form-row {
	display: contents;
}

.form-label {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	min-width: 10em;
	font-weight: bold;
	font-size: 1rem;
	padding-right: 8px;
}

.form-label span{
	white-space:nowrap;
	background:#ed8b21;
	color:#fff;
	border-radius:6px;
	font-weight:normal;
	padding:0px 5px 1px;
	font-size:0.8rem;
	margin:3px 0 0 6px;
}

.form-field {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.err{
	display:block;
	color:#cc0000;
}

.cus{
	margin-bottom:10px;
}

.input {
	width: 95%;
	min-width: 160px;
	padding: 8px 12px;
	font-size: 1rem;
	border: 1px solid #bdbdbd;
	border-radius: 6px;
	background: #f8fafc;
}

.checkbox-group {
	flex-direction: column;
	align-items:flex-start;
}

.list-group {
	flex-direction: column;
	position: relative;
	padding-left: 0.95em;
}

	.list-group span::before {
		content: "•";
		position: absolute;
		left: 0.15em;
	}

.agreement-row a {
	color: #25a0eb;
}

.notice-list {
	font-size: 0.9rem;
}

	.notice-list li {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.notice-sublist {
		margin-top: 3px;
		position: relative;
		padding-left: 1.0em;
		list-style: none;
	}

	.notice-sublist li::before {
		content: "※";
		position: absolute;
		left: 0;
	}

.submit-btn {
	background: #25a0eb;
	color: #fff;
	border: 2px solid #25a0eb;
	padding: 14px 0;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 7px;
	cursor: pointer;
	width: 100%;
	margin-top: 10px;
	transition: background .2s;
	box-shadow:0 0 10px #aaa;
}

	.submit-btn:hover {
		background: #36b1fd;
	}

.submit-btn-disabled {
	background: #fff;
	color: #25a0eb;
	border: 2px solid #25a0eb;
	padding: 14px 0;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 7px;
	cursor:wait;
	width: 100%;
	margin-top: 10px;
}

.back-btn {
	background: #fff;
	color: #666;
	border: 2px solid #aaa;
	padding: 14px 0;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 7px;
	cursor: pointer;
	width: 100%;
	margin-top: 10px;
	transition: background .2s;
}

	.back-btn:hover {
		background: #f0f0f0;
	}

.fix-area {
	position: sticky;
	bottom: 0;
	width: 100%;
}

.applyN {
	font-weight: bold;
	font-size: 1rem;
	text-align: center;
	margin-bottom: 10px;
}

@media (max-width: 600px) {
	.form-table {
		grid-template-columns: 1fr;
		gap: 6px 0;
		max-width: 98vw;
	}

	.form-label {
		justify-content: flex-start;
		min-width: 0;
		padding-right: 0;
		margin-bottom: 3px;
	}

	.form-field {
		width: 100%;
	}
	
	.section-title span {
		display:block;
	}


}
