@charset "utf-8";
/* CSS Document */
.navbar {
      height: 45px; /* ナビゲーションバーの高さを60pxに設定 */
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar-item {
      line-height: 30px; /* ナビゲーションアイテムの縦位置を中央に調整 */
    }
    .navbar-item img {
      max-height: 2.3rem;
    }
    .navbar-menu {
      align-items: center; /* メニューアイテムを縦に中央揃え */
    }
    .navbar-brand, .navbar-menu {
      height: 100%;
    }
    .navbar-burger {
      display: none; /* ハンバーガーメニューを非表示にする */
    }
    .container {
      max-width: 600px; /* コンテナの最大幅を600pxに設定 */
    }
    .navbar {
	min-height:0rem;
	}

    @media screen and (max-width: 768px) {
      .navbar-brand {
        flex: 1;
        display: flex;
        justify-content: center; /* 中央揃え */
      }
      .navbar-end {
        order: 1; /* 順序を調整して右端に配置 */
      }
    }
