@charset "UTF-8";

.p-table{
    margin-bottom: 24px;
}
.p-table__table{
    border-collapse: collapse;
    margin-top: 20px;
}
.p-table__th,
.p-table__td{
    border: 1px solid #c9c9c9;
    padding: 8px;
    letter-spacing: 0;
    vertical-align: middle;
}
.p-table__note,
.p-table__th,
.p-table__td{
    line-height: 1.6;
    font-size: 1.5rem;
}
.p-table__th{
    font-weight: bold;
    border-bottom: 2px double #c9c9c9;
    background: #fce8ab;
}
.p-table__th:first-child{
    width: 400px;
}
.p-table__th:last-child{
    width: 100px;
    background: #d9f0d0;
}
.p-table__td:last-child{
    text-align: center;
}
.p-table__symbol{
    display: block;
    position: relative;
    padding-left: 1.3em;
}
.p-table__symbol::before{
    content: attr(data-symbol);
    position: absolute;
    top: 0;
    left: 0;
}
.p-table__note{
    margin: 15px 0;
}
@media screen and (max-width: 768px) {
    .p-table{
        margin-bottom: 4%;
    }
    .p-table__wrapper{
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        margin: 0 -3.5vw;
        padding: 0 3.5vw;
    }
    .p-table__table{
        width: 700px;
    }
    .p-table__th:first-child{
        width: 270px;
    }
    .p-table__th:last-child{
        width: 80px;
        background: #d9f0d0;
    }
}