/*
Theme Name: Custom Theme
*/
body,
button,
input,
textarea,
select {
  font-family: "YuGothicM", "Yu Gothic", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in {
  opacity: 0;
}

.slide-in-bottom {
  animation: slideInBottom 0.6s ease-out forwards;
}

/* reCAPTCHAのアイコンを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}
