@charset "UTF-8";

.container {
    display: flex; /* Flexコンテナ */
    background: black;
}

.column {
    flex: 1; /* 各列を均等に */
    padding: 10px; /* 任意のマージン */
    box-sizing: border-box;
    border-right: 1px solid black; /* 右側に線を引く */
    border-color: white;
    padding: 5px; /* 線とコンテンツの間隔を調整 */
}

.last-border{
    border-right: none; /* 最後の要素は右線を消す */

}

h3, pt {
    font-style: oblique;
    font-family: "Times New Roman" ;
    font-size: 90%;
    color: #ffffff;

}

n {
font-style: nomal;

}


footer {
    background-color: #00000; 
    font-style: normal;  
    font-family: "Times New Roman" ;
    color: #a61e29; 
    margin-left: 5px; 
    margin-right: 5px; 
    text-align: center;

}