@charset "utf-8";

.box_outline {
    margin-top: 120px;
}
.box_outline h3 {
    font-size: 24px;
    letter-spacing: .1rem;
    text-align: left;
}
.box_outline table {
    width: 100%;
}
.box_outline table tr {
    font-size: 16px;
    text-align: left;
}
.box_outline table tr th {
    width: 300px;
    padding: 35px 25px 12px 0;
    letter-spacing: 0.1rem;
    vertical-align: middle;
    position: relative;
}
.box_outline table tr th::before {
    content:"";
    display: block;
    width: 85%;
    border-bottom: 1px solid var(--yellow);
    position: absolute;
    left: 0;
    bottom: 0;  
}
.box_outline table tr td {
    width: calc(100% - 300px);
    padding: 35px 0 12px 0;
    border-bottom: 1px solid #cfd1d2;
    line-height: 1.5;
}

@media screen and (max-width: 640px) {
    
    .box_outline {
        margin-top: 40px;
    }

    .box_outline h3 {
        font-size: 20px;
    }
    .box_outline table tr {
        display: block;
        margin-top: 15px;
    }
    .box_outline table tr th {
        display: block;
        width: 100%;
        padding: 0;
        color: var(--yellow);
    }
    .box_outline table tr th::before {
        content: none;
    }
    .box_outline table tr td {
        display: block;
        width: 100%;
        padding: 0 0 8px 0;
    }

}