body{
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
}
/* login画面 */
.menuTitle{
	display: inline-block;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
    font-size: 26px;
    text-align: center;
    vertical-align: text-top;
}
p.menuTitle img{
    width: 50px;
}
.colId{
    display: block;
    width: auto;
    text-align: center;
}
.colPass{
    display: block;
    width: auto;
    text-align: center;
}
.colWidth{
    width: 50px;
    text-align: center;
}
.loginTitle{
    display: block;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.loginWrapper{
    margin:5px;
    padding:5px;
    border:1px solid rgb(118, 151, 214);
    box-shadow:rgba(118, 151, 214, 0.509804) 3px 3px 4px -2px;
    -webkit-box-shadow:rgba(118, 151, 214, 0.509804) 3px 3px 4px -2px;
    -moz-box-shadow:rgba(118, 151, 214, 0.509804) 3px 3px 4px -2px;
    border-radius: 3px;
}
.loginbuttonWraper {
    width:auto;
    text-align: center;
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom:5px;
    text-align: center;
}
  
/* 打刻画面 */
.sideWrapper {
    width: auto;
    display: flex;
    justify-content: center;
}
.mainWrapper {
    width: auto;
    display: flex;
    justify-content: center;
}

.camera {
    display: flex;
    justify-content: center;
}

.staff {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.staffList {
    font-size: 28px;
    cursor: pointer;
}

#content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 480px;
    height: 360px;
    border: solid 5px #000000;
}

#canvas {
    margin-top: 4px;
    margin-left: 1px;
}

#date, #mmdd {
    color: #fff;
    letter-spacing: 0.1em;
    text-shadow:0px 0px 10px #000000,0px 0px 10px #000000,0px 0px 10px #000000;
    font-size: 50px;
    line-height: 0.5;
    font-family: 'NHKClock-Regular';
}
.panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 20px;
    padding-bottom: 10px;
}

.panelItem {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aqua;
    text-align: center;
    font-size: 40px;
    border: solid 1px orangered;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.panelA {
    color: aliceblue;
    background-color: orange;
    font-size:clamp(50px, 5vw, 120px);
}

.panelB {
    color: antiquewhite;
    background-color: mediumturquoise;
    font-size:clamp(50px, 5vw, 120px);
}

.panelC {
    color: black;
    background-color: lightsalmon;
    font-size:clamp(20px, 2vw, 120px);
}

.panelD {
    color: black;
    background-color: mediumslateblue;
    font-size:clamp(20px, 2vw, 120px);
}

.mainFooter {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px blue;
    border-radius: 5px;
    background-color: cornflowerblue;
    cursor: pointer;
}

.mainFooter p {
    font-size:clamp(20px, 2vw, 120px);
    font-weight: bold;
    color: whitesmoke;
}

#modal {
    font-size: 18px;
    z-index: 5;
    width: 100%;
    height: 100%;
    position: fixed; /* 画面に固定するために指定 */
    background-color: rgba(128,128,128,0.6);
    display: none;
    justify-content: center;
    align-items: center;
}

.modalContentWrapper {
    width: 50%;
    height: 30%;
    position: relative;
    margin: auto;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modalContent{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
}

.modalText {
    width: 100%;
}

.modalButton {
    font-size: 18px;
}
