.inputWindow {
    position: absolute;
    width: 300px;
    height: 200px;
    background: #fff;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0 0 10px rgb(82 107 115 / 31%);
}
.inputArea {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.pw {
    border: 1px solid #efefef;
    border-radius: 2px;
    color: #aaa;
}

.loginBtn {
    width: 100px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b6cad1;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
}
.returnToTop {
    display: block;
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 10px;
    color: #b6cad1;
}
.returnToTop::before {
    content: "◀";
    padding-right: 3px;
    font-size: 8px;
}

@keyframes shakeWindow {
	    0% {transform: translateX(  0px);background:#ffc6c6;}
	   10% {transform: translateX( 10px);}
	   20% {transform: translateX(-10px);}
	   30% {transform: translateX( 10px);}
	   40% {transform: translateX(-10px);}
	   50% {transform: translateX( 10px);}
	   60% {transform: translateX(-10px);}
	   70% {transform: translateX( 10px);}
	   80% {transform: translateX(-10px);}
	   90% {transform: translateX( 10px);}
	  100% {transform: translateX(  0px);background:#fff;}
}







/* 管理画面 */
.modeSelectWindow {
	position: absolute;
    width: fit-content;
    height: fit-content;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 50px;
    background: #fff;
    box-shadow: 0 0 10px rgb(82 107 115 / 31%);
    z-index: 10;
}

.selectArea {
    display: flex;
    flex-direction: column;
}

.selectRecArea {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rec {
    display: flex;
    gap: 5px;
    font-size: 13px;
    color: #333;
    letter-spacing: 2px;
}
.checkMark {
    width: 20px;
    height: 20px;
    border: 1px solid #efefef;
    border-radius: 50px;
}

.btnArea {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.rtnBtn{
	width: 100px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b1b1b1;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
}

.bgBack{
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	backdrop-filter: blur(2px);
	z-index: 15;
	animation: bgDisp 0.2s ease-out 0s alternate forwards;
}
@keyframes bgDisp {
	  0% {opacity:0;}
	100% {opacity:1;}
}

.resultWindow {
	position: absolute;
	display: none;
    width: fit-content;
    height: fit-content;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 50px;
    background: #fff;
    font-size: 14px;
    box-shadow: 0 0 10px rgb(82 107 115 / 31%);
    z-index: 20;
	animation: dispWindow 0.2s ease-out 0s alternate forwards;
}

@keyframes dispWindow {
	  0% {transform: translateY(50px);opacity:0;filter: blur(5px);}
	100% {transform: translateY( 0px);opacity:1;filter: blur(0);}
}

a.topBtn {
    display: block;
    width: 100px;
    margin: 20px auto 0;
    padding: 5px;
    font-size: 11px;
    text-align: center;
    background: #b6cbd1;
    font-weight: bold;
    color: #fff;
}