@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    background-color: #bebebe;
  }
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 10px;
}

.aikon {
  position: absolute;
  left: 20px;
  top: 10px;
}

.aikon img {
  width: 40px;
  height: auto;
  cursor: pointer;
}


.sidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
}

.sidebar a:hover {
  background-color: transparent; 
  color: #568cff; 
}


.intro {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
  }

  .character-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  
  .characters {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4列に並べる */
    gap: 20px;
    padding: 40px;
    background-color: #60d3fd;
  }
  
  
  
  .character-card {
    width: 220px; /* 少しだけ小さく */
    background-color: #9a8ff3;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    margin: 0 auto;
  }
  
  .character-card img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-width: 180px; /* ちょっと控えめに */
  }
  
  
  .kimeraanto {
    margin-top: 60px; /* ヘッダーの高さと同じくらい */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .kimeraanto img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }
  
