body {
    text-align: center;
    font-family: 'Kiwi Maru' , serif;
    margin-bottom: 30px;
}
#todaysHoman {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1020px;
    margin: auto;
    padding: 30px;
}
img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
h1 {
    margin: 30px 0;
    font-size: 40px;
}
h2 {
    margin-top: 6px;
}
.hidden {
    display: none;
}

/* More...ボタン */
#loadMore {
    color:black;
    border-radius: 5px;
    border:solid 1px black;
    padding:3px 20px;
}

/*モーダルウィンドウに選択された写真を表示*/
.open {
    opacity: 0; /*アニメーション適用のためデフォルトは透明*/
    cursor: pointer;
}
#close {
    margin-top: 20px;;
    cursor: pointer;
}
#mask {
    background: rgba(0, 0, 0, .6);
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
}
#modal {
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}
#modalImage {
    max-width: 50%;
    max-height: 50%;
    margin-top: 50px;
}
/*フッター*/
footer {
    text-align: center;
    padding: 1rem;
}
footer small {
    color: #c7c3ba;
    font-size: .875rem;
}