@charset "utf-8";

.modal-base {
    display: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #666666;
    position: fixed;
    z-index: 2;
    width: 700px;
    height: 400px;
    text-align: center;
}

/* モーダル 背景エリア */

#modal-bg {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.tip-base {
    border: 1px black solid;
    display: none; /*-- 基本は非表示 --*/
    background-color: white;
	padding: 10px;
	position: absolute;
	z-index: 0;
}
