@charset "UTF-8";
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-family: "游明朝体", "游明朝", "Times New Roman", serif;
}
input {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  font-family: "游明朝体", "游明朝", "Times New Roman", serif;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
img {
  vertical-align: bottom;
  width: 100%;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
a:hover{
  color:#999;
}
/*------------------ここまでリセットCSS----------------------*/
html{
  font-size: 62.5%;
}
body {
  color: #333;
  font-size: 1.5em;
  font-family: "游明朝体", "游明朝", "Times New Roman", serif;
}
/*------------------画像を保存させないためのCSS--------------*/
.imgsafe {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-action:none;
  user-select:none;
  pointer-events: none;
}
.inner{
  width: 80%;
  max-width: 1280px;
  margin: auto;
}
section{
  padding: 10rem 0;
}
article{
  margin-bottom: 7rem;
}
/*******背景全画面表示********/
.logintop::before {
  content: "";
  background: url(../images/pc_login.jpg) no-repeat top center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media (max-width: 768px) {
  .logintop::before {
    background: url(../images/sp_login.jpg) no-repeat top center;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
}
/*---------------ログインフォーム-----------------*/
.loginarea .contents{
  position: absolute;
  top: 22%;
  left: 13%;
  z-index: 100;
  text-align: center;
}
.loginsvg{
  width: 50%;
  display: block;
  margin: auto;
  margin-bottom: 4rem;
}
.loginbox .flex li{
  vertical-align: top;
  padding-bottom: 2rem;
}
.loginbox input{
  font-size: 16px;
  padding: 7px 15px;
  max-width: 100%;
  background-color: #fff;
  width: 100%;
}
.loginbox .small{
  color:#333;
  font-size: 1.2rem;
}
.loginbox .pass{
  margin-bottom: 1rem;
}
.loginbox .pass a{
  font-size: 1.5rem;
  color: #333;
}
.loginbox .pass a:hover {
  color: #ccc;
}
.loginmenu li {
  padding-bottom: 10px;
}
.loginmenu li a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #693908;
}
.loginmenu li a:hover {
  color: #000;
}
.loginbox .lgnpssbtn .submit {
  font-size: 16px;
  padding: 7px 15px;
  max-width: 100%;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background:#693908;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.loginbox .lgnpssbtn .submit:hover {
  background:#000;
  color: #fff;
}
.submit01{
  text-align: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background:#693908;
  font-size: 2rem;
  padding: 10px 50px;
  width: auto;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.submit01:hover{
  color: #fff;
  background: #000;
}
.Copyright{
  text-align: center;
  display: block;
  padding: 1em 0;
}
.logintop .Copyright{
  padding: 2em 0;
  color: #693908;
}
/*---------------------------------------------*/
/*------------ここからレスポンシブ----------------*/
/*---------------------------------------------*/
@media (max-width:768px) {
  img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .inner{
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  section{
    padding: 5rem 0;
  }
  .logintop main{
    height: 1200px;
  }
  .loginarea{
    margin-top: 45vh;
    background-color: rgba(255,255,255,.6);
    backdrop-filter: blur(4px);
  }
  .loginarea .contents {
    position: static;
  }
  .loginsvg{
    width: 40%;
    margin-bottom: 4rem;
  }
  .loginbox input{
    background-color: #000;
  }
  .loginbox .pass a{
    font-size: 1.7rem;
    color: #333;
  }
  .loginbox .lgnpssbtn input{
    color: #333;
    border: 1px solid #333;
  }
  .loginmenu li a {
    font-size: 1.8rem;
    color: #693908;
  }
  .logintop .Copyright {
    color: #693908;
  }
  .submit01{
    color: #fff;
    background: #693908;
  }
  .submit01:hover{
    color: #fff;
    background: #000;
  }
}