@charset "utf-8";

/* pageTitle */
.pageTitle{
    width: 1100px;
    margin: 0 auto;
    padding: 80px 0;
}
.pageTitle>.title{
    text-align: center;
}
.pageTitle>.title>h4{
    font-family: "Libre Baskerville", serif;
    font-size: 1.25em;
    line-height: 1.8;
    letter-spacing: 0.25em;
}
@media (max-width:1320px){
    .pageTitle{
        width: 80%;
    }
}
@media (max-width:1200px){
    .pageTitle>.title>h4{
        font-size: 1.15em;
    }
}
@media (max-width:960px){
    .pageTitle>.title>h4{
        font-size: 1.05em;
    }
}
@media (max-width:768px){
    .pageTitle{
        width: 90%;
    }
}
@media (max-width:430px){
    .pageTitle{
        padding: 50px 0;
    }
    .pageTitle>.title>h4{
        font-size: 0.95em;
    }
}

/* mainTable */
.mainTable{
    width: 1100px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.mainTable>h5{
    font-size: 1.25em;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
}
.mainTable table{
    width: 100%;
    border-collapse: collapse;
}
.mainTable table tr th{
    width: 30%;
    font-size: 1em;
    letter-spacing: 0.1em;
    padding: 0.5em 1em;
    text-align: right;
    border-right: 1px solid #adaf8d;
    border-bottom: 1px solid #adaf8d;
    box-sizing: border-box;
}
.mainTable table tr:nth-child(1) th,
.mainTable table tr:nth-child(1) td{
    border-top: 1px solid #adaf8d;
}
.mainTable table tr td{
    width: 70%;
    font-size: 1em;
    padding: 1em;
    text-align: left;
    border-bottom: 1px solid #adaf8d;
    box-sizing: border-box;
}
@media (max-width:1320px){
    .mainTable{
        width: 80%;
    }
}
@media (max-width:1200px){
    .mainTable table tr th,
    .mainTable table tr td{
        font-size: 0.9em;
    }
    .mainTable>h5{
        font-size: 1.15em;
    }
}
@media (max-width:960px){
    .mainTable table tr th,
    .mainTable table tr td{
        width: 100%;
        display: block;
        font-size: 0.8em;
    }
    .mainTable>h5{
        font-size: 1.05em;
    }
    .mainTable table tr th{
        border: 1px solid #adaf8d;
        text-align: left;
    }
    .mainTable table tr:nth-child(1) td{
        border-top: none;
    }
    .mainTable table tr td{
        border-bottom: none;
        padding: 1em 0 2em 0;
    }
}
@media (max-width:768px){
    .mainTable{
        width: 90%;
    }            
}
@media (max-width:430px){
    .mainTable{
        margin-bottom: 30px;
    }
    .mainTable table tr th,
    .mainTable table tr td{
        font-size: 0.7em;
    }
}

/* update */
.update{
    width: 1100px;
    margin: 0 auto;
    margin-bottom: 80px;
}
.update ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.update ul li{
    width: 48%;
}
.update ul li:nth-child(1),
.update ul li:nth-child(2){
    margin-bottom: 10px;
}
.update ul li span:nth-child(1){
    font-size: 0.75em;
    display: inline-block;
    padding: 0.5em 1em;
    box-sizing: border-box;
    color: #312a24;
    background-color: #adaf8d;
    margin-right: 1em;
}
.update ul li span:nth-child(2){
    font-size: 1em;
}
@media (max-width:1320px){
    .update{
        width: 80%;
    }
}
@media (max-width:1200px){
    .update ul li span:nth-child(1){
        font-size: 0.65em;
    }
    .update ul li span:nth-child(2){
        font-size: 0.9em;
    }
}
@media (max-width:960px){
    .update ul li span:nth-child(1){
        font-size: 0.55em;
    }
    .update ul li span:nth-child(2){
        font-size: 0.8em;
    }
}
@media (max-width:768px){
    .update{
        width: 90%;
    }
    .update ul li{
        width: 100%;
    }
    .update ul li:nth-child(3){
        margin-bottom: 10px;
    }
}
@media (max-width:430px){
    .update{
        margin-bottom: 50px;
    }
}