@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: -150px;
  left: 0;
  width: 100vw;
  height: 150vh;
  z-index: -1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.zoom-up.logintop::before {
  transform: scale(0.8);
  animation: zoomBg 2s ease-out forwards; /* アニメーションを追加 */
}
@keyframes zoomBg {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1); /* ズーム倍率 */
  }
}
@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: 7%;
  z-index: 100;
  text-align: center;
}
.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:#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: #fff;
}
.loginmenu li a:hover {
  color: #ffd4d4;
}
.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:#be8b55;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.loginbox .lgnpssbtn .submit:hover {
  background:#a07648;
  color: #fff;
}
.submit01{
  text-align: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background:#be8b55;
  font-size: 2rem;
  padding: 10px 50px;
  width: auto;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
.submit01:hover{
  color: #fff;
  background: #a07648;
}
.Copyright{
  text-align: center;
  display: block;
  padding: 1em 0;
}
.logintop .Copyright{
  padding: 2em 0;
  color: #fff;
}
/*---------------------------------------------*/
/*------------ここからレスポンシブ----------------*/
/*---------------------------------------------*/
@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{
    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;
    color: #be8b55;
  }
  .logintop .Copyright {
    color: #333;
  }
  .submit01{
    color: #fff;
    background: #be8b55;
  }
  .submit01:hover{
    color: #fff;
    background: #a07648;
  }
}

/*ローディングアニメーション*/
#loader {
  position: fixed;
  z-index: 9999;
  /* background: #fff; */
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader .logo {
  position: relative;
  z-index: 9998;
}
.logo-background{
  position: fixed;
  z-index: 9997;
  background: #fff;
  width: 100vw;
  height: 100vh;
  transition: 0.5s;
}
.logo-out .logo-background {
  opacity: 0;
}
#loader .logo-inner {
  /* animation: logoZoom 2s ease-out forwards; */
  animation: logoZoom 2s linear forwards;
  display: inline-block;
}
#loader .logo-inner img {
  width: 150px;
  opacity: 1;
  display: block;
  /* transform: translateY(-50%); */
}
@keyframes logoZoom {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(15);
    opacity: 0;
  }
}
.door {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100vh;
  background: linear-gradient(#dfcfd2, #eae0e3);
  border-left: 1px solid#dcc4c9;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease, transform 1.2s ease-in-out;
}
body.door-visible .door {
  opacity: 1;
}
.door.left {
  left: 0;
}
.door.right {
  right: 0;
}
.doorknob {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  transition: transform 0.6s ease;
}
/* ノブの配置位置 */
.door.left .doorknob {
  right: 20px;
  transform-origin: right center; /* ← 右端を中心に回転 */
  filter: drop-shadow(0px 2px 1px rgba(0,0,0,0.2));
}
.door.right .doorknob {
  left: 20px;
  transform-origin: left center; /* ← 左端を中心に回転 */
  filter: drop-shadow(0px 2px 1px rgba(0,0,0,0.2));
}
/* 回転アニメーション */
body.knob-turned .door.left .doorknob {
  transform: translateY(-50%) rotate(-90deg); /* 左ドア：反時計回り */
  transition-delay: 0.2s;
}
body.knob-turned .door.right .doorknob {
  transform: translateY(-50%) rotate(90deg);  /* 右ドア：時計回り */
  transition-delay: 0.2s;
}
body.loaded .door.left {
  transform: translateX(-100%);
}
body.loaded .door.right {
  transform: translateX(100%);
}
body.loaded #loader {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease 1.2s;
}