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

/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
	.group_btn{
		text-align: -webkit-center;
	}
	.btn_bs{
		width: 90%;
	}
}
.btn_bs {
  cursor: pointer;
  animation: pulseEffect 1.5s ease-in-out infinite;
}

@keyframes pulseEffect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}