body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.25;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    table-layout: fixed;
}

table tr {
    background-color: #fff;
    border: 1px solid #bbb;
    padding: .35em;
}

table th,
table td {
    padding: 1em 10px 1em 1em;
    border-right: 1px solid #bbb;
}

table th {
    font-size: .85em;
}

table thead tr {
    background-color: #eee;
}

.txt {
    text-align: right;
    font-size: .65em;
}

.simg {
    width: 50%;
}

.btn {
    white-space: nowrap;
    text-align: center;
    font-size: .85em;
}

.btn-square-little-rich {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #03A9F4;
    /*色*/
    border: solid 1px #0f9ada;
    /*線色*/
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.btn-square-little-rich:active {
    /*押したとき*/
    border: solid 1px #03A9F4;
    box-shadow: none;
    text-shadow: none;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
        width: 100%
    }

    table th {
        background-color: #eee;
        display: block;
        border-right: none;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        display: block;
        margin-bottom: .625em;
    }

    table td {
        border-bottom: 1px solid #bbb;
        display: block;
        font-size: .8em;
        text-align: right;
        position: relative;
        padding: .625em .625em .625em 4em;
        border-right: none;
    }

    table td::before {
        content: attr(data-label);
        font-weight: bold;
        position: absolute;
        left: 5px;
    }

    table td:last-child {
        border-bottom: 0;
    }

    .btn {
        text-align: right;
    }
}

.selectbox {
    padding: 10px;
    width: 100%;
}


/* base */

.select01 {
    padding: 20px;
}

.car-info-box {
    text-align: center;
    margin: 40px auto 20px;
    padding: 16px 24px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #444;
    max-width: 500px;
}

.car-info-box p {
    margin: 6px 0;
}

.car-info-box strong {
    color: #555;
    font-weight: 600;
}

.layout-thumb {
    max-width: 70px;
    cursor: pointer;
    transition: 0.3s;
}

/* モーダルのスタイル */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}