/*
Theme Name: Total Child Theme
Theme URI: https://your-site.com
Description: Your site description. Go to Appearance > Editor to modify this file.
Author: Your Name
Author URI: https://your-site.com
Template: Total
Version: 1.0
*/

/* Animation ?????????? */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ???????????????? */
.top-right-fixed {
  position: fixed; /* ??????????? */
  top: 150px;      /* ????????????????? (????????????????????) */
  right: 0;        /* ?????? */
  z-index: 99999;  /* ????????! ???????????? ??????????? Header ??? Total Theme */
  
  /* ????????????????????????? */
  width: 150px;    
  height: auto;
  
  /* ???????? Animation */
  animation: float 3s ease-in-out infinite;
  
  /* (?????) ????????????????? */
  text-decoration: none;
  border: none;
}

.top-right-fixed img {
    display: block; /* ????????????????????? */
    width: 100%;
    height: auto;
}

/* (?????) ???????????? (???????????????? /* ???) */
/*
@media (max-width: 767px) {
  .top-right-fixed { display: none; }
}
*/
