/* ベースとリセット */


/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: white;
}

.logo img {
    width: 43px;
    height: 40px;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center; /* MENUを中央揃え */
    cursor: pointer;
    user-select: none;
}

.btn span {
    background-color: #333;
    height: 4px;
    margin: 2px 0;
    width: 25px;
    display: block;
}

.btn span:last-child {
    margin-bottom: 0; /* 一番下だけ下の余白無し */
}

.menu-label {
    margin-top: 0px;
    font-size: 0.65em;
    color: #333;
    letter-spacing: 1px;
    font-weight: bold;
}

/* メニュー */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 90%;
    max-width: 400px;
    background-color: rgba(247, 247, 247, 0.95);
    z-index: 1000;
    transition: right 0.5s ease;
    overflow-y: auto; /* ← スクロールを可能にする */
    display: block;   /* ← flexを解除して中央寄せをやめる */
}


.menu.active {
    right: 0; /* アクティブ時の表示位置 */
}

.menu-content {
    text-align: left;
    color: white;
    padding: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* JavaScriptで操作するためのクラス */
.menu-item {
    padding: 20px;
}

/* JavaScriptで操作するためのクラス */
.menu-item {
    padding: 20px;


 body {
    display: flex;
    flex-direction: column;
    align-items: center; /* 水平方向の中央寄せ */
    margin: 0;
    min-height: 100vh; /* ビューポートの高さに合わせる */
}

.content {
    max-width: 800px; /* コンテンツの最大幅を設定 */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}   

#blog-table {
  /* スタイルをここに記述 */
  width: 100%;
  font-size: 1rem;
  border-collapse: collapse; /* 例えば、セルの間隔をなくす */
}


#blog-table  tr {
  border-bottom: 1px solid #ccc; /* 行の下に線を引く */
}