	* {
		box-sizing: border-box;
	}
	a {
		/*text-decoration: none;*/
		color: inherit;
	}
	body {
		font-family: sans-serif;
		margin: 0;
		padding: 0;
		/*background: #f9f9f9;*/
	}
	.container {
		max-width: 480px;
		margin: auto;
		padding: 16px;
		background: white;
	}
	.notice {
		background-color: #ffe3c3;
		padding: 12px;
		border-radius: 8px;
		color: #b20000;
		font-weight: bold;
		text-align: center;
/*		margin-bottom: 16px;*/
	}
	.notice span {
		color:#000; 
		font-weight: 400;
	}
	.notice_completed {
		font-size: 20px;
		margin: 0;
		font-weight: bold;
		text-align: center;
		color: #2e55a5;
	}
	.notice_completed span {
		color:#000; 
		font-weight: 400;
		margin-top: 50px;
		display: inline-block;
		font-size: 16px;
	}
	.map-box {
		height: 250px;
		background-color: #ddd;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 8px;
		border: solid 1px #ccc;
		margin-top: 16px;
	}
	.btn {
		width: 100%;
		padding: 12px;
		border: none;
		border-radius: 25px;
		font-size: 16px;
		font-weight: bold;
		cursor: pointer;
	}
	.btn-red {
		background-color: #c62828;
		color: white;
		margin-top: 16px;
/*		margin-bottom: 8px;*/
	}
	.btn-green {
		background-color: #2e7d32;
		color: white;
		margin-top: 16px;
	}
	.btn-cyan {
		width: 50%;
		background-color: #2d7283;
		color: white;
		margin-top: 16px;
	}
	.btn-lite-green {
		width: 50%;
		background-color: #357b31;
		color: white;
		margin-top: 16px;
	}
	.btn-area {
		width: 100%;
	}

	.privacy-link {
		text-align: center;
		font-size: 14px;
		margin-top: 16px;
	}
	.header {
		background: linear-gradient(#316cb0, #2e55a5);
		padding: 24px 0;
		text-align: center;
		color: white;
	}
	.header img {
		width: 100px;
		margin-bottom: 8px;
	}
	.header h2 {
		font-size: 20px;
		margin: 0;
	}
	label {
		display: block;
		margin: 12px 0 6px;
		font-weight: bold;
	}
	select, input {
		width: 100%;
		padding: 10px;
		border-radius: 6px;
		border: 1px solid #ccc;
		font-size: 15px;
	}
