@charset "UTF-8";

.char-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  padding-top: 40px;

}

.char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.char img {
  width: 100%;
  height: auto;
  display: block;
  animation: jump 3s ease-in-out infinite;

}
.char2 img {
    width: 100%;
    height: auto;
    display: block;
    animation: jump 3s ease-in-out infinite;
    animation-delay: 0.8s;
}
  
@keyframes jump {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

.border{

    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    max-width: 840px;       
    margin: 0 auto;         
    box-sizing: border-box; 
    border-radius: 12px;
}

.hidden { 
  display: none; 
}
a{
    text-decoration: none;
    color: #ffffff;
}
.yajirusi{
  text-align: center;
  font-size: 36px;
}
.cha {
  transition: transform 0.2s ease;
}
.cha.hovered {
  transform: scale(1.1);
}
