@charset "utf-8";

#modal_wrap {
    display: none;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100010;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal_content{
    position: relative;
    align-self: center;
    max-width: 400px;
	width: 100%;
	margin: 15px;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    transition: 0.5s;
}

.modal_content p.tit {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}

.modal_content p.telinfo {
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	color: var(--c-brand);
	margin-bottom: 15px;
}

.modal_content p.small {
	font-size: 10px;
}

.close_button{
    position: absolute;
    top: -4px;
    right: 2px;
    font-size: 30px;
    cursor: pointer;
}