@charset "UTF-8";
/* --------------------------- */
/* PC and Mobile */
/* --------------------------- */

/* base
	--------------------------------- */
.footerFix{
    width: 90vw;
    max-width: 330px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    margin-bottom: 12px;
	background-color: #fff;
    border: 1px solid #dbdce1;
    border-radius: 8px;
    padding: 16px;
	box-sizing: border-box;
	z-index: 1000000;
}
.footerFixIn{
	position: relative;
}
.footerFixClose{
	position: absolute;
	top: -25px;
	right: -20px;
    width: 30px;
    height: 30px;
	background: none;
	border: none;
}
.footerFixClose::after {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    background: url(/common/img/ico_close04.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}

.footerFixTxt {
    margin: 2% 0 0 0;
	color: #14141e;
	font-size: 12px;
	line-height: 1.4;
	padding: 0;
	text-align: start;
}

.footerFixBtn{
    align-items: center;
	margin: 16px 0 10px;
    padding: 0;
	}

.footerFixBtn [class^="btn"]{
	font-size: 12px;
	padding: 10px 10px;
	text-align: center;
	border: none;
	color: #fff;
	background-color: #042376;
	border-radius: 6px;
	text-decoration: none;
	line-height: 1.15;
}

.footerFixBtn a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 541px) {
	.footerFixIn{
        margin: 0;
	}
	.footerFixTxt {
		line-height: 1.3;
	}
}

