/* ---------------------------------- **
        Modal Window
** ---------------------------------- */
#layer_board_area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 3vw;
    overflow-y: auto;
    box-sizing: border-box; /*スクロールバーを非表示*/
    -ms-overflow-style: none; /*スクロールバーを非表示*/
    scrollbar-width: none; /*スクロールバーを非表示*/
    z-index: 2;
}
#layer_board_area::-webkit-scrollbar {
    display:none; /*スクロールバーを非表示*/
}
.layer_board_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    cursor: pointer;
    background: #000;
    z-index: 0;
}
/* --modalWindow ポップアップ部分-- */
.layer_board {
    display: none;
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 3em auto;
    padding: 4em;
    border-radius: 5px;
    box-sizing: border-box;
    background: #fff;
    z-index: 10;
}
.layer_board.shortLayer {
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


/* --modalWindow タイトル部分-- */
.layer_borad_title {
    font-size: 200%;
    font-weight: 200;
    color: #ED344E;
}
/* --modalWindow コンテンツ部分-- */
.layer_borad_content {

}
/* --modalWindow ボタン-- */
.layer_board .square_btn {
    display: block;
    position: relative;
    font-size: 35px;
    width: 100%;
    border: 1px solid #C9C6C0;
    border-radius: 6px;
    padding: 8px 5% 8px;
    font-size: 15px;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5em;
    display: block;
    text-align: center;
    color: #454545;
    text-decoration: none;
}

#layer_board_area .data_finish {
margin: 0;
line-height: 1.5em;
border-bottom: 1px solid #D3D3D3;
padding-bottom: 1em;
font-size: 1.2em;
text-align: center;
}
#layer_board_area .summary{
margin: 1em auto;
display: block;
word-break: break-all;
line-height: 1.5em;
text-align: left;
}
#layer_board_area .sum_small {
color: #888888;
font-size: .9em;
padding-top: 0;
}
#layer_board_area .sum_small a {
    display: inline;
}


@media screen and (max-width:480px) {
    .layer_board {
        width: 90%;
        margin: 3em auto;
        padding: 1.5em;
    }

}