@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
*/


/* アニメーション前の状態（隠しておく） */
.fade-up {
  opacity: 0;
  transform: translateY(30px); /* 30px下に配置 */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  visibility: hidden;
}

/* アニメーション実行時の状態 */
.fade-up.is-animated {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
  visibility: visible;
}
