@charset "utf-8";


/*==========================================
 login
===========================================*/
#login{}

form {
	width: 100%;
	max-width: 800px;
	padding: 40px 10px;
	background-color: #000;
	text-align: center;
	margin: 0 auto;
}

form span{
	color: #fff;
}

form h1{
	font-size: 1.5rem;
}
form h1,form p {
	color: white;
	font-weight: 500;
}

form p {
	padding-bottom: 10px;
}

form input[type = "id"],form input[type = "password"] {
  background: none;
  display: block;
  margin: 20px auto;
  border: 2px solid #b1ebfc;
  padding: 15px 10px;
  width: 40%;
	max-width: 400px;
  outline: none;
  border-radius: 24px;
  transition: 0.25s;
  text-align: center;
}

form input[type = "id"]:focus,form input[type = "password"]:focus {
  width: 50%;
  background-color: #f0f8ff;
}

form input[type = "submit"]{
  background: none;
  display: block;
  margin: 20px auto;
  border: 2px solid #f0f8ff;
  padding: 15px 10px;
  width: 40%;
	max-width: 400px;
  outline: none;
  color: white;
  border-radius: 25px;
  transition: 0.25s;
  text-align: center;
  cursor: pointer;
}

form input[type = "submit"]:hover {
  background-color: #b1ebfc;
  border: 2px solid #b1ebfc;
	color: #000;
}


/*==========================================
 customer
===========================================*/
#customer{}

#customer_topix{}
#customer_topix .list{
	display: block;
	text-decoration: none;
	color: #000;
	border-radius: 20px;
	position:static;
	border: 1px solid #ccc;
}

#customer_topix .list h4 {
	font-size: 1.5em;
	text-align: center;
}

#customer_topix a:hover h4,
#customer_topix a:active h4{
	color: #004ab8;
}

#customer_topix .list img{
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	display: block;
}

#customer_topix .list p{
	font-size: 1rem;
}

