body{
  margin: 0;
  background: #e6f4f1;
}
body.paid{
  display:none;
}
header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 3rem;
  height: 3rem;
  background: #ccc;
  background: #e6f4f1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
header .logout, header .adm{
  display: none;
}
main{
  margin-top: 3rem;
}
main h1{
  text-align: center;
}

#top_link{
  min-width: 5rem;
  font-size: small;
  cursor: pointer;
}
#top_link span{
	display: flex;
}
#login_name{
	display: none;
	margin-right: 0.5rem;
}
#login_link{
  min-width: 5rem;
  padding: 0.5rem;
  cursor: pointer;
}

section{
  max-width: 900px;
  margin: 0 auto;
}
h2.pagetitle{
  font-size: medium;
  padding: 0.5rem;
  border-bottom: 1px solid;
}
.box{
  display: flex;
  column-gap: 0.5rem;
  min-height: 8rem;
  border: 1px solid #eee;
  margin-bottom: 1.5rem;
}
.box.clickable{
  cursor: pointer;
}
.summary_wrap{
  font-size: small;
  width: 100%;
  padding: 0.5rem;
  background: #eee8;
  background: #fff;
  box-sizing: border-box;
  word-wrap: break-word;
}
.summary_wrap h4{
  margin: 0;
  border-bottom: 1px solid;
}

._btn{
	min-width: 8rem;
	padding: 0.5rem 1rem;
	border: none;
}

/* Login */
#login_wrap{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aaac;
}
#login_wrap input[type=text], #login_wrap input[type=password]{
	padding: 5px 10px;
	border: 1px solid #cdcdcd;
	line-height: 1.7;
}
.login_navi{
  display: flex;
  column-gap: 5rem;
}

.login h2 {
  text-align: center;
  margin-bottom: 40px;
}
.login .wrap-mini{
  max-width: 800px;
  margin: 50px auto 0;
  padding: 30px;
  background-color: #fff;
}
.login form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#remind_btn{
  margin: 0;
  color: blue;
  text-decoration: underline;
  font-size: 85%;
}
#remind_btn:hover{
  cursor: pointer;
  color: red;
}
#mfa_form, #remind_form{
  display: none;
}

.pass_wrap{
	position: relative;
}
.pass_wrap label{
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}
.show_pass{
	display: none;
}
