/* ポップアップ */
.layer {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 99999;
}
.koutuuhi_pop {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    height: auto;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    z-index: 100000;
    padding: 15px 20px;
}
.koutuuhi_pop .koutuuhi {
    font-size: 24px;
    font-weight: bold;
    color: #f00;
    padding: 30px 0 0;
    position: relative;
}
.koutuuhi_pop .koutuuhi div {
    font-size: 50px;
    font-weight: bold;
    color: #f00;
    margin-bottom: 20px;
}
.koutuuhi_pop .koutuuhi div.close {
    position: absolute;
    top: 0;
    right: 0;
}
.koutuuhi_pop .koutuuhi div.close img {
    cursor: pointer;
    width: 15px;
}