@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap');

body {
	font-family: 'Noto Sans SC',
	sans-serif;
	font-size: 16px;
	margin: 0 0 0 0;
	background: none !important;
}

body * {
	box-sizing: border-box;
}

header {
	padding: 20px 10px;
	display: block !important;
	height: auto;
	border-bottom: 1px solid #ccc;
	max-width: inherit;
	text-align: left;
}

header h1 {
	text-align: left;
	position: static;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

h2 {
	text-align: center;
	font-size: 36px;
	margin: 0 0 30px;
}

.inputbox {
	font-size: 28px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	max-width: 640px;
	margin: 0 auto;
}

.inputbox .inputttl {
	display: block;
	width: 10.0em;
}

.inputbox .input {
	display: block;
	border: 1px solid #000;
	width: calc(100% - 11.0em);
	min-height: 1.6em;
	padding: 5px;
}

.link_txt {
	font-size: 18px;
	margin: 50px 0;
	text-align: center;
}

.link_txt a {
	text-decoration: underline !important;
	color: #fc8aab;
}

.link_txt img {
	width: 24px;
	display: inline-block;
	margin: 0 0 0 5px;
}

footer {
	margin: 0 auto;
	width: 100%;
	padding: 10px;
	background: none;
}


/*---------------------- responsive styles -----------------------*/
@media screen and (max-width:640px) {
	.inputbox {
		display: block;
	}

	.inputbox .inputttl {
		width: 100%;
		text-align: center;
	}

	.inputbox .input {
		width: 85%;
		margin: 0 auto;
		text-align: center;
	}
}