@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.kirari {
    position:relative;
    overflow:hidden;
    display: inline-block;
}

/* 画像ブロックの下マージンなし ※背景色が白の場合はコレなくていいかも */
body .wp-block-image.kirari figure {
    margin-bottom: 0;
}

.kirari::before {
    content:"";
    height:100%;
    width:30px;
    position:absolute;
    top:-180px;
    left:0;
    background: rgba(255,255,255,0.25);
    opacity:0;
    -webkit-transform: rotate(45deg);
    -webkit-animation: kirari 2s ease-in-out infinite;
}

@keyframes kirari {
    0% { -webkit-transform: scale(0) rotate(25deg); opacity: 0; }
    75% { -webkit-transform: scale(0) rotate(25deg); opacity: 0.5; }
    76% { -webkit-transform: scale(4) rotate(25deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(25deg); opacity: 0; }
}