@charset "UTF-8";

/*------歯科材料種類テーブル------*/
.table table {
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--i_sub_color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border-spacing: 0;
    border-collapse: unset;
}
.table table th {
    width: 20%;
    background-color: var(--i_sub2_color);
    text-align: center;
}
.table table th {
    padding: 1rem 2rem;
    border-right: 1px solid var(--i_sub_color);
    border-bottom: 1px solid var(--i_sub_color);
    vertical-align: middle;
}
.table table td {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--i_sub_color);
    vertical-align: middle;
}
.table table tr:last-child th,
.table table tr:last-child td {
    border-bottom: none;
}
.table table tr:last-child th {
    border-radius: 0 0 0 10px;
}
.table table tr:last-child td {
    border-radius: 0 0 10px 0;
}
.table table tr:first-child td {
    border-radius: 0 10px 0 0;
}
.table table tr:first-child th {
    border-radius: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
    .table table,
    .table table tbody,
    .table table tr,
    .table table th,
    .table table td {
        display: block;
        width: 100%;
    }
    .table table {
        border-bottom: none;
    }
    .table table th {
        border-right: none;
    }
    .table table tr {
        border-bottom: 1px solid var(--i_sub_color);
    }
    .table table td {
        border-bottom: none;
    }
    .table table th,
    .table table td {
        box-sizing: border-box;
    }
    .table table tr:last-child th {
        border-bottom: 1px solid var(--i_sub_color);
    }
    .table table tr:first-child th,
    .table table tr:first-child td,
    .table table tr:last-child th,
    .table table tr:last-child td {
        border-radius: 0;
    }
}
/*------歯科技工所------*/
.inner_item_txt dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 692px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.inner_item_txt dl dt:first-of-type {
    margin-bottom: 2rem;
}
.inner_item_txt dl dt {
    width: 30%;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    background-color: var(--i_sub_color);
    color: #fff;
    padding: 2rem 0;
}
.inner_item_txt dl dd:first-of-type {
    margin-bottom: 2rem;
}
.inner_item_txt dl dd {
    width: 70%;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color: #fff;
    padding: 2rem 0;
}
.pcnone {
    display: none;
}
@media screen and (max-width: 768px) {
    .pcnone {
        display: block;
    }
    .inner_item_txt dl dt,
    .inner_item_txt dl dd {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        padding: 1rem;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 0;
    }
    .inner_item_txt dl dt:first-of-type {
        margin-bottom: 0;
    }
}
/*------背景色調整------*/
a#con+section .content_wrapper {
    background: #fff;
}
a#gikou+section .content_wrapper,
a#ireba+section .content_wrapper {
    background: var(--i_sub2_color);
}