@charset "utf-8";

/* pageWrap */
.pageWrap{
    background-color: #ebebeb;
    padding: 80px 0;
    box-sizing: border-box;
}

/* pageTitle */
.pageTitle{
    text-align: center;
    margin-bottom: 50px;
}
.pageTitle>h2{
    font-family: "EB Garamond", serif;
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 10px;
}
.pageTitle>p{
    font-family: "Shippori Mincho B1", serif;
    font-size: 1em;
}
@media (max-width:768px){
    .pageTitle>h2{
        font-size: 1.75em;
    }
    .pageTitle>p{
        font-size: 0.9em;
    }
}

/* mainTable */
.mainTable{
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
}
.mainTable>table{
    width: 100%;
    border-collapse: collapse;
}
.mainTable>table>tbody>tr>th{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    width: 30%;
    text-align: left;
    padding: 0.5em 1em;
    box-sizing: border-box;
    border-bottom: 0.5px solid #888;
}
.mainTable>table>tbody>tr>td{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    width: 70%;
    text-align: left;
    padding: 0.5em 1em;
    box-sizing: border-box;
    border-bottom: 0.5px solid #888;
}
@media (max-width:768px){
    .mainTable{
        width: 90%;
    }
    .mainTable>table>tbody>tr>th,
    .mainTable>table>tbody>tr>td{
        font-size: 0.75em;
        display: block;
        width: 100%;
    }
    .mainTable>table>tbody>tr>th{
        font-weight: 500;
        border-bottom: none;
    }
}

/* informationTable */
.informationTable{
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}
.informationTable>table{
    width: 100%;
    border-collapse: collapse;
}
.informationTable>table>tbody>tr>th{
    width: 30%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    text-align: left;
    padding: 0.75em 1em;
    box-sizing: border-box;
    border-bottom: 0.5px solid #888;
}
.informationTable>table>tbody>tr>td{
    width: 70%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.8em;
    padding: 0.75em 1em;
    box-sizing: border-box;
    border-bottom: 0.5px solid #888;
}
@media (max-width:768px){
    .informationTable{
        width: 90%;
    }
    .informationTable>table>tbody>tr>th,
    .informationTable>table>tbody>tr>td{
        font-size: 0.75em;
        display: block;
        width: 100%;
        
    }
    .informationTable>table>tbody>tr>th{
        font-weight: 500;
        padding: 0.75em 1em 0.25em 1em;
        border-bottom: none;
    }
    .informationTable>table>tbody>tr>td{
        padding: 0.25em 1em 0.75em 1em;
    }
}