/* CSS */
/* メニューバーの背景色と高さを設定 */
.topnav {
    background-color: #333;
    height: 50px;
    overflow: hidden;
  }
  
  /* メニューアイテムのスタイルを設定 */
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 0px 20px 0px 20px;
    text-decoration: none;
    font-size: 17px;
    line-height: 50px;
    transition: all 0.3s ease-in-out; /* アニメーションの効果と時間を設定 */
  }
  
  /* メニューアイテムにマウスオーバーしたときのスタイルを設定 */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
    transform: scale(1.1); /* アイテムを少し大きくする */
  }
  
  /* アクティブなメニューアイテムのスタイルを設定 */
  .topnav a.active {
    background-color: #00b170;
    color: white;
  }
  