/* bnr */

.bnr {
	width: 439px;
	height: 300px;
	background: url(../images/bnr/bnr.png) no-repeat;
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
}

.bnr_pos {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}

.bnr_animated {
	animation: bnr_animated 1s ease forwards;
}

@keyframes bnr_animated {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.bnr__close {
	width: 29px;
	height: 29px;
	display: block;
	text-decoration: none;
	position: absolute;
	right: 36px;
	top: 3px;
	cursor: pointer;
}

.bnr__close:after {
	display: block;
	content: "";
	background: url(../images/bnr/close.png) no-repeat;
	width: 45px;
	height: 45px;
	position: absolute;
	right: 6px;
	top: 6px;
	transition: 0s all;
}

.bnr__close:hover:after {
	transform: rotate(360deg);
	transition: 0.3s all;
}

.bnr__content {
	max-width: 180px;
	margin-right: 2.85rem;
}

.bnr__title {
	color: #324450;
	font-family: var(--font-1);
	font-size: 1.5rem;
	line-height: 1.625rem;
	font-weight: 600;
}

.bnr__desc {
	color: #626262;
	font-family: var(--font-2);
	font-size: 1.3rem;
	line-height: 1.3rem;
	margin-top: 0.625rem;
}

.bnr__btn {
	margin-top: 1.25rem;
	margin-left: -13px;
}
.btn_type_1 {
    min-width: 167px !important;
    height: 44px !important;
}
.btn_inna {
    display: inline-grid;
    grid-auto-flow: column;
    grid-gap: 15px;
    gap: 15px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    flex-shrink: 0;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    z-index: 0;
    outline: 0;
    padding: 8px 20px;
    min-width: 184px;
    height: 54px;
    background: transparent;
    border: 0;
    font-family: Trajan Pro\ 3,Philosopher,Times New Roman,Times,serif;
    font-family: var(--font-1);
}
.btn_inna:after, .btn_inna:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -5;
    background-color: transparent;
    border: 0;
    transition: all .2s;
    overflow: hidden;
}
.btn_inna:after {
    right: 1px;
    left: 1px;
    background-image: url(../images/bnr/btn-left-type-1.png),url(../images/bnr/btn-right-type-1.png);
    background-position: 0,100%;
    background-repeat: no-repeat,no-repeat;
    background-size: auto,auto;
    border-radius: 10px;
}
.btn_type_1:after {
    background-image: url(../images/bnr/btn-left-type-1.png),url(../images/bnr/btn-right-type-1.png);
}
.btn_type_1:before {
    right: 21px;
    left: 21px;
    background-image: url(../images/bnr/btn-repeat-type-1.png);
}