﻿* {
	margin:0;
	padding:0;
}
html {
	/*font-family:"游ゴシック","ヒラギノ角ゴ ProN",sans-serif;*/
	font-size:10pt;
	height:100%;
}
body {
	height:100%;
	background:#FFFFFF;
	overflow:hidden;
	position:relative;
}
body, input {
	color:rgb(70,70,70);
}
body {
	display:flex;
	justify-content:center;
	height:fit-content;
}
img {
	vertical-align:top;
}
.frame {
	margin:1em;
	padding:1em 2em 1em 2em;
	border:2px solid rgba(70,70,70,0.5);
	border-radius:8px;
	width:fit-content;
}
/*タイトル*/
.title {
	font-size:1.8rem;
	padding:0.3rem 0 0 0.4rem;
/*	background-color:rgb(70,70,70);
	color:white;*/
	font-weight:bold;
	height:40px;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	user-select:none;
}
.title .name {
	font-size:1.8rem;
	font-weight:bold;
	user-select:none;
}
/*コンテンツ*/
.contents {
	padding-top:3rem;
	display:flex;
	justify-content:center;
	width:100%;
}
.subtitle {
	font-size:1.5rem;
	font-weight:bold;
}
.message {
	padding-top:1rem;
	font-size:1.2rem;
}
.ipbox {
	padding-top:1rem;
}
.contents form {
	width:24rem;
}
.contents form input[type='text'] {
	font-size:1.1rem;
	padding:.5rem;
	width:100%;
	outline:none;
	border:none;
	border-bottom:1px solid rgb(69,69,69);
/*	border:1px solid rgb(69,69,69);
	border-radius:2px;*/
	box-sizing:border-box;
}
.contents form input[type='password'] {
	font-size:1.1rem;
	padding:.5rem;
	ime-mode:inactive;
	width:100%;
	outline:none;
	border:none;
	border-bottom:1px solid rgb(69,69,69);
/*	border:1px solid rgb(69,69,69);
	border-radius:2px;*/
	box-sizing:border-box;
}
.footer {
	font-size:0.9rem;
	margin-top:3rem;
	text-align:center;
}
.err {
	color:red;
	font-size:1.1rem;
	font-weight:bold;
}
.msg {
	font-size:1.2rem;
	font-weight:bold;
}
.btnbox {
	display:flex;
	justify-content:flex-end;
}
.btnbox input[type="submit"] {
	font-size:1.2rem;
	font-weight:bold;
	border:1px solid rgb(69,69,69);
	padding:.4rem;
	cursor:pointer;
	border-radius:2px;
}
.btnbox input[type="submit"]:hover {
	box-shadow:0 3px 6px 0 rgba(0,0,0,0.15);
}
