#main-contents {
    /* ヘッダの高さ + 20pxの余白 */
    padding: 20px;
    margin-bottom: 90px;
}
#footer {
    margin-top: 10px;
}
a {
    text-decoration: none;
}
ul {
    list-style-type: none;
}
/* ヘッダの背景色 */
.navbar-lw {
    background-color: white;
}
.navbar-text,
.nav-link {
    color: #ff9900;
}
/* ナビゲーションリンクのホバースタイル */
.navbar-lw .navbar-nav .nav-link:hover {
    color: #ff9900;
    /* マウスオーバー時の色（オレンジ） */
}

/* フッタの背景色 */
.footer-lw {
    background-color: #f0f0f0;
    /* 灰色 */
}

/* フッタのリンク色 */
.footer-lw .list-inline-item a {
    color: #333333;
}

/* フッタのリンクのホバースタイル */
.footer-lw .list-inline-item a:hover {
    color: #ff9900;
    text-decoration: underline;
}
.txt-caution {
    color: darkcyan;
}
.image-container {
    width: 100%;
    /* または任意の幅 */
    height: auto;
    /* または任意の高さ */
    overflow: hidden;
    /* 画像がコンテナを超えた場合に切り取る */
}

.image-container img {
    width: 100%;
    /* コンテナの幅に合わせて画像を拡大/縮小 */
    height: auto;
    /* 画像の比率を保持 */
    object-fit: cover;
    /* 画像の比率を保ちながら、コンテナ全体をカバー */
}