

/* 20220823 popup */
.popup_box {
    position:absolute;
    /* top:150px;
    left:20px;  */
    /* width:calc(100% - 40px); */
    /* max-width:460px; */
    z-index:999;
}
.popup_box .img_box {
	position: relative;
    width:100%;
}
.popup_box .img_box img {
    width:auto;
    max-width:100%;
    height:auto;
}
.popup_box .btn_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width:100%;
    background-color:#f2f2f2;
}
.popup_box .btn_box button {
    width:70px;
    line-height: 40px;
    font-size: 17px;
    font-weight: 500;
    background-color:#f2f2f2;
}


@media screen and (max-width:860px) {
	.popup_box {
		width:calc(100% - 40px) !important;
		left:20px !important;
	}
}
