@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;
}
.imgsafe {/*画像を保存させないためのCSS*/
  -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;
}
.ds-f-A{
  display: flex;
  justify-content: space-around;
}
.ds-f-B{
  display: flex;
  justify-content: space-between;
}
.textnewline{/*テキストの改行制御*/
  display: inline-block;
}
.inner{
  width: 80%;
  max-width: 1280px;
  margin: auto;
}
section{
  padding: 10rem 0;
}
article{
  margin-bottom: 7rem;
}
.headerarea{
  background: linear-gradient(135deg,#660C1F 0%,#460C1F 100%);
  color: #fff;
  padding: 2rem 0;
  position: fixed;
  z-index: 1000;
  width: 100%;
}
.headerbox{
  align-items: baseline;
}
.headerarea .headerlogo{
  font-size: 1.5rem;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.headerarea .headerlogo:hover{
  opacity: 0.5;
}
.headerarea .headerlogo img{
  width: 100px;
}
#h-nav,.openbtn{
  display: none;
}
nav a {
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
  color: #fff;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
  white-space: nowrap;
}
nav a:hover{
  opacity: 0.5;
}
.headermenu li{
  margin-right: 2rem;
}
/*******背景全画面表示********/
.logintop::before {
  content: "";
  background: url(https://yosukeiida.com/fc/assets/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: 769px) {
  .logintop::before {
    background: url(https://yosukeiida.com/fc/assets/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;
  /* padding: 2rem;
  background-color: rgba(255,255,255,.7); */
}
.loginsvg{
  width: 60%;
  display: block;
  margin: auto;
  margin-bottom: 2rem;
}
.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:#fff;
  font-size: 1.2rem;
}
.loginbox .pass{
  margin-bottom: 1rem;
}
.loginbox .pass a{
  font-size: 1.5rem;
  color: #fff;
}
.loginbox .pass a:hover {
  color: #ccc;
}
/* .loginbox .lgnpssbtn{
  width: 100%;
}
.loginbox .lgnpssbtn input{
  text-align: center;
  background-color: rgba(0,0,0,0);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #fff;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.loginbox .lgnpssbtn input:hover{
  background: #8f2038;
  color: #fff;
} */
.loginmenu li {
  padding-bottom: 10px;
}
.loginmenu li a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
.loginmenu li a:hover {
  color: #ccc;
}
/*---------------新システム追記-----------------*/
.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;
  /* border: 1px solid linear-gradient(135deg,#a8334c 0%,#8f2038 100%);
  background: linear-gradient(135deg,#a8334c 0%,#8f2038 100%); */
  background:#c2a96b;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.loginbox .lgnpssbtn .submit:hover {
  /* background:  linear-gradient(135deg,#660C1F 0%,#460C1F 100%); */
  background:#9e8b5d;
  color: #fff;
}
/*---------------各ページ-----------------*/
.title {
  /* background: #ddd; */
  padding: 9rem 0 6rem 0;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
}
h2{
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}
h3 {
  margin: 0 0 3rem 0;
}
.entrybtn,.passbtn{
  text-align: center;
  padding: 3rem 0;
}
.kiyakubox {
  background: #EAEAEA;
  overflow-y: scroll;
  padding: 1.5rem;
  margin: 0 0 3rem 0;
  height: 400px;
}
.kiyakuboxtitle{
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 3rem 0;
}
.listdesign li{
  margin: 0 0 0 2rem;
  list-style: disc;
}
.submit01{
  text-align: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #660C1F;
  font-size: 2rem;
  padding: 10px 50px;
  width: auto;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.submit01:hover{
  color: #fff;
  background: #8f2038;
}
dl dt{
  padding: 4rem 0 0 0;
  font-weight: bold;
}
.Copyright{
  text-align: center;
  display: block;
  padding: 1em 0;
  background: linear-gradient(135deg,#660C1F 0%,#460C1F 100%);
}
.logintop .Copyright,.loginaftertop .Copyright{
  background: rgba(0,0,0,.0);
  padding: 2em 0;
  color: #fff;
}
.loginaftertop .Copyright{
  color: #fff;
}

/*---------------------------------------------*/
/*------------ここからレスポンシブ----------------*/
/*---------------------------------------------*/
@media (max-width:768px) {
  .textnewline{/*テキストの改行制御*/
    display: inline-block;
  }
  .ds-f-A,.ds-f-B {
    display: block;
  }
  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;
  }
  .headerarea{
    padding: 1rem 0;
  }
  #menu{
    display: none;
  }
  .logintop main{
    height: 1200px;
  }
  .loginarea{
    margin-top: 45vh;
    /* background-color: rgba(255,255,255,.8); */
    background: linear-gradient(135deg,rgba(102, 12, 31,.8) 0%,rgba(70, 12, 31,.8) 100%);
    backdrop-filter: blur(4px);
  }
  .loginarea .contents {
    position: static;
  }
  .loginsvg{
    width: 30%;
    margin-bottom: 2rem;
  }
  .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;
  }
  /*---------------各ページ-----------------*/
  .title {
    font-size: 2.7rem;
  }
  .logintop .Copyright,.loginaftertop .Copyright {
    color: #fff;
  }
  .logout.entry ul.flexcss li input {
    font-size: 2rem;
  }
  .passform input {
    font-size: 2rem;
  }
  .submit01,.passform .passbtn input{
    -webkit-transition: inherit;
    transition: inherit;
  }
  .submit01{
    color: #fff;
    background: #660C1F;
  }
  .submit01:hover{
    color: #fff;
    background: #8f2038;
  }
}