:root {
    --page-header-height: 75px;
    --page-footer-height: 54px;
}
html{
    font-size: 20px;
    top: 0;
}

.page-header {
    position: fixed;
    top: 0;
    height: var(--page-header-height);
    width: 95%;
    background-image: linear-gradient(90deg, rgba(89, 248, 57, 1), rgba(97, 94, 48, 1));
    background-position:center;
    padding: 7px;
    display:flex;
    gap: 2rem;
}

.top-menu {
    color: #000000;
    font-size: 1.2rem;
}

body {
    padding-top: calc(var(--page-header-height) + 10px);
    padding-bottom: calc(var(--page-footer-height) + 20px);
    padding-left: 15px;
}

 h2 a {
    color: #00ac0e;
    font-size: 1.5rem;
}

.page-footer {
    position: fixed;
    bottom: 0;
    height: var(--page-footer-height);
    width: 95%;
    background-image: linear-gradient(90deg, rgba(89, 248, 57, 1), rgba(97, 94, 48, 1));
    background-position:center;
    padding: 7px;
    font-size: 0.8rem;
}

.kiji-list-container {
    display: flex; /* フレックスボックスを有効にする */
    justify-content: flex-start;
    align-items: top; /* 要素を縦方向の中央に揃える */
    width: 95%;
}
.kiji-list-item1 {
    background-color: #f0f0f0;
    padding: 5px;
    box-sizing: border-box; /* パディングを含めたサイズを計算 */
    align-self: flex-start;
    width:30%;
    flex: 1;
}
.kiji-list-item2 {
    background-color: #f0f0f0;
    padding: 5px;
    align-self: flex-start;
    text-align: left;
    width:70%;
    box-sizing: border-box; /* パディングを含めたサイズを計算 */
    flex: 2;
}




