@charset "utf-8";

body,
p {
    letter-spacing: .3px;
    color: #333;
}

.inner {
    width: 940px;
}

strong {
    font-weight: 600;
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 70%, #ffeb00 0%) repeat scroll 0 0;
}
.lp_title h2 {
    font-weight: 800;
}
.dl_base dt {
    border-bottom: 2px solid var(--blue2)
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

@media screen and (max-width: 767px) {

    @keyframes ttl_before {
        0% {
            height: 0
        }

        100% {
            height: 40px
        }
    }
}


@keyframes hero_ttl_bg {
    0% {
        left: 0;
        right: 100%
    }

    40% {
        left: 0;
        right: 0
    }

    60% {
        left: 0;
        right: 0
    }

    100% {
        left: 100%;
        right: 0
    }
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadein_lft {
    0% {
        opacity: 0;
        transform: translateX(-8px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.ikt2 {
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px 0px;
    width: 440px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #fff !important;
    text-decoration: none;
    background-image: -webkit-linear-gradient(45deg, #ffb100 0%, #f55e31 100%);
    background-image: linear-gradient(45deg, #ffb100 0%, #f55e31 100%);
    border-radius: 40px;
    border-bottom: solid 4px #b35008;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
    text-shadow: 0px 2px 2px #bd5315;
}
.ikt2:hover {
    background-image: -webkit-linear-gradient(-45deg, #ffb100 0%, #f55e31 100%);
    background-image: linear-gradient(-45deg, #ffb100 0%, #f55e31 100%);
    border-bottom: solid 4px #522300;
    text-decoration: none !important;
}
.ikt2:after {
	position: absolute;
	content: "\f054";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	top: 50%;
    right: 60px;
	left: auto;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ikt2:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: -30%;
    top: -50%;
    content: "";
    width: 25px;
    height: 150px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.7)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,0.7),rgba(255,255,255,0) 100%);
    animation: shiny 3s infinite linear;
    -webkit-animation: shiny 3s infinite linear;
    -moz-animation: shiny 3s infinite linear;
}

@keyframes shiny {
	0% {
		left: -30%;
	}
	20% {
		left: 120%;
	}
	100% {
		left: 120%;
	}
}
@-webkit-keyframes shiny {
	0% {
		left: -30%;
	}
	20% {
		left: 120%;
	}
	100% {
		left: 120%;
	}
}
@-moz-keyframes shiny {
	0% {
		left: -30%;
	}
	20% {
		left: 120%;
	}
	100% {
		left: 120%;
	}
}

