html,
body {
    margin: 0;
    padding: 0;
    /* background: linear-gradient(rgb(255, 216, 243), rgb(255, 254, 182)); */
    /* background-color: rgb(2, 10, 58); */
    width: 100%;
    height: 100%;
    /* font-family: "shippori", "san-serif"; */
    font-family: "Zen Antique", serif;
    font-weight: 400;
    font-style: normal;
}

h1{
    padding-left: 0.5rem;
    border-left: 40px solid;
    border-bottom: 1px solid;
    color: rgb(231, 187, 106);
}
h2{
    padding-left: 0.5rem;
    border-left: 10px solid;
    border-bottom: 1px solid;
    margin-top: 2em;
    color: rgb(231, 187, 106);
}

a{
    color: rgb(104, 188, 236);
}

.caution{
    color: rgb(212, 94, 118);
}

.naname{
    font-style: italic;
}

dt{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: large;
}

.large{
    font-size: large;
}

.mainImage{
    max-width: 100%; /* 親要素の幅を超えない */
    height: auto;    /* 縦横比を維持 */
    display: block;  /* 不要な余白を防ぐ */
}

.subImage{
    flex:1 1 auto;
    max-width: 50%;
    height: auto;
    object-fit: cover;    
    /* max-width: 20%;
    height: auto; 
    display: block;
        float: left; */
}

.horArea{
    display: flex;
    flex-direction: row;
}

.horImageArea{
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    overflow: hidden;   
}

#gaiyou{
    width:400px;
}
.box{
    padding:1rem;
}

table {
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    font-family: sans-serif;
    font-size: 1rem;
    letter-spacing: 0px;
    line-height: 1rem;
    width: 100%;
}
td:last-of-type {
    padding-left: 1rem;
    text-align: left;
    border: 2px solid rgb(140 140 140);
}

th{
    border: 2px solid rgb(140 140 140);
}

/* tbody>tr:nth-of-type(even) {
    background-color: rgb(25, 26, 27);
} */

tfoot th {
    text-align: right;
}

tfoot td {
    font-weight: bold;
}

#wrapper{

    width:80%;
    max-width: 1040px;
    margin:0 auto;
    padding-bottom: 50px;

    display: flex;
    flex-direction: column;
        background-color: rgba(0, 0, 0, 0.774);
            justify-content: space-between;

}



#contents{
    /* background-color: rgba(0, 0, 0, 0.5); */

    color:white;
    padding:2rem;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #222120;
    color:rgb(216, 209, 209);
    text-align: center;
    padding: 10px 0;
}

