﻿.title-1 {
    color: var(--text-color) ;
    padding: 10px 10px 10px 10px;
    font-size:1.7rem;
    border-bottom:3px solid var(--color-main);
    margin-bottom:1rem

}
.title-2 {
    padding: 0.5rem 1rem;
    margin: 0.5rem 0 1rem ;
    background-color: var(--color-sub-1);
    color: var(--text-color-reversal);
    font-size:1.3rem;
}
.title-3 {
    margin: 0.5rem 0 .75rem;
    font-size: 1.2rem;
}
.title-4{

}

.fs-lg {
    font-size: 1.2rem
}

.fs-sm{
    font-size:0.9rem
}

button.link-text {
    width: 100%;
    height: 25px;
    background-color: transparent;
    color: blue;
    border-style: none;
    text-decoration: underline
}


.category-right-img img *{
    color:var(--color-main) !important;
}


/*テーブル*/

.thead-common-color th {
    background-color: var(--color-sub-3);
}

.thead-secondary-color th {
    background-color: var(--bs-gray-300);
}

.table-list th{
    font-weight:normal
}

.table-list td{
    padding-left:1rem;
}

.table-separate {
    border-collapse: separate;
    border-spacing: 3px;
}
    .table-separate td {
        border-width:0;
    }
    .table-separate.separate-border td {
        border: 1px solid var(--bs-gray-300);
    }

.table.table-separate > :not(caption) th {
    border-bottom-width: 0px;
}

.table-padding-min th,
.table-padding-min td{
    padding:0.25rem ;
}
@media screen and (max-width: 768px) {

    .table-responsive-separate.table-bordered > :not(caption) > * {
        border-width: 0px;
    }


    .table-responsive-separate {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .table-responsive-separate colgroup {
            display: none;
        }

        .table-responsive-separate thead,
        .table-responsive-separate tbody {
            display: block;
        }

        .table-responsive-separate .head-last {
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 1rem;
        }

        .table-responsive-separate th,
        .table-responsive-separate td {
            border-top: 1px solid #dee2e6;
            display: block;
            height: 50px;
        }

        .table-responsive-separate th {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .table-responsive-separate tr {
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
            display: block;
        }
}


.box-border {
    display: block;
    margin-left: auto;
    margin: auto;
    border: 1px solid var(--color-sub-1);
    border-radius: 4px;
    width: 35rem ;
    max-width:100%;
    padding: 1rem 2rem 1.5rem;
}


.pe-cursor {
    cursor:pointer;
}

.certification-device{
    display:flex;
     grid-template-columns:1fr 1fr;
    justify-content:start;
}
.certification-device > *:nth-child(1){
    display:inline-block;
    margin-right:1rem;
}
.certification-device > *:nth-child(3)::before{
    content:'、'
}


.arror {
    display: inline-block;
    width: 0;
    height: 0;
    border-right: .35rem solid transparent;
    border-left: .35rem solid transparent;
    border-bottom: .5rem solid currentColor;
    transform: translateY(-2px) rotateZ(180deg);
    margin-right: 0.3rem;
    transition: 0.1s;
}

.accordion-header h5[aria-expanded="true"] .arror {
    transform: translateY(-2px) rotateZ(0deg);
}

.accordion-header h5[aria-expanded="false"] .arror {
    transform: translateY(-2px) rotateZ(180deg);
}