@charset "utf-8";

.l-inner {
    width: 1000px;
    margin: 0 auto;
}
.c-ttl {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 15px;
}

.t-shine {
    display: block;
    position: relative;
    overflow: hidden;
}
.t-shine:hover {
    opacity: 1;
}
    .t-shine::after {
        position: absolute;
        top: 0;
        left: -100%;
        z-index: 2;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        -webkit-transform: skewX(-45deg);
        transform: skewX(-45deg);
    }
    .t-shine:hover::after {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
@-webkit-keyframes shine {
    100% {
        left: 150%;
    }
}
@keyframes shine {
    100% {
        left: 150%;
    }
}