@charset "UTF-8";
/* PC */
/* PC */
/* Common Layout
***************************************************************/
.modalinfo_wrap{
    position: fixed;
	width: 300px;
    right: 50%;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
}
.modalinfo_wrap .modalinfo{
    position: relative;
    width: 100%;
}
.modalinfo_wrap .modalinfo img {
	width:100%;
}
.modalinfo_wrap .modalinfo a {
    display: block;
    cursor: pointer;
    /*box-shadow: 0 0 5px rgba(0,0,0,0.2);*/
}
.modalinfo_wrap .close{
    position: absolute;
    right: 0;
    top: -25px;
    line-height:0;
    cursor: pointer;
    transition: opacity 0.3s;
}
.modalinfo_wrap .close img {
	width:25px;
	line-height:0;
}
body:not(.mobile) .modalinfo_wrap .close:hover{
    opacity: 0.6;
}

@media screen and (max-width: 960px) {
.modalinfo_wrap {
	width: 200px;
    bottom:50px;
}
.modalinfo_wrap .close{
    top: -25px;
}
}