/*------------------------------------------
黒のオーバーレイを出す
------------------------------------------*/
.lockOverlay {
    position: relative;
}

.lockOverlay:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.lockOverlay_txt>a {
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 1px 1px 3px #555555;
    padding: 15px;
    border-radius: 10px;
    line-height: 1.5;
    width: 250px;
    margin: auto;
    color: #000;
    text-align: center;
}


.lockOverlay_txt.rakuraku {
    font-size: 22px;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    text-align: center;
}

/*------------------------------------------
オーバーレイの上のテキスト
------------------------------------------*/

/* 基本設定
------------------------------------------*/
.lockOverlay_txt {
    text-align: center;
    width: 250px;
}

.lockOverlaytop {
    padding: 10px;
    line-height: 1.5;
}

.lockOverlaytop>.title {
    font-weight: 600;
}



/* 位置調整
------------------------------------------*/
.lockOverlay_txt {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    z-index: 3;
}


.lockOverlay_txt {
    margin: auto;
    width: 100%;
    height: 30px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.lockOverlay_txt.rakuraku {
    height: 88px;
}

.lockOverlay_txt.large {
    height: 450px;
}