@charset "UTF-8";
/* CSS Document */ :root {
  --base-width: min(100%, 980px);
  --base-bottom: auto auto 30px auto;
  --base-font-color: #333333;
}
html {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
  box-sizing: border-box;
}
body {
  color: #583D2C;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "メイリオ", sans-serif;
  background-image: url("../../img/z.png");
  padding: 50px;
}
.logo {
	align-items: center;
	margin: auto;
	text-align:center;
	justify-content: center;
}
.logo img {
  width: 90px;
	padding-top: 10px;
}
* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
h1 {
  font-size: 24px;
}
.login {
  margin: 20px auto;
  width: 300px;
}
.login-screen {
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 8px #B7B5B0;
  margin-bottom: 100px;
}
.app-title {
  text-align: center;
  color: #583D2C;
}
.login-form {
  text-align: center;
}
.control-group {
  margin-bottom: 10px;
}
input {
  text-align: center;
  background-color: #ECF0F1;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 200;
  padding: 10px 0;
  width: 250px;
  transition: border .5s;
}
input:focus {
  border: 2px solid #3498DB;
  box-shadow: none;
}
.btn {
  border: 2px solid transparent;
  background: #D9A891;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 0 auto;
}
.btn:hover {
  background-color: #CB9C86;
}
.login-link {
  font-size: 12px;
  color: #583D2C;
  display: block;
  margin-top: 12px;
}
/*パンくずここから*/
.breadcrumb-001 {
  display: flex;
  gap: 0 22px;
  list-style: none;
  padding: 0;
  font-size: 0.9em;
}
.breadcrumb-001 li {
  display: flex;
  align-items: center;
}
.breadcrumb-001 li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23583d2c'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}
.breadcrumb-001 li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  margin-left: 10px;
  border-top: 1px solid #583d2c;
  border-right: 1px solid #583d2c;
  content: '';
}
.breadcrumb-001 a {
  color: #583d2c;
  text-decoration: none;
}
/*パンクズここまで*/
.app-title p {
  font-size: 14px;
}