@charset "UTF-8";

/*------背景色調整------*/
a#con+section .content_wrapper {
    background: #fff;
}
/*------歯科材料種類テーブル------*/
.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;
    }
}
/*------むし歯の治療法------*/
ul.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}
.inner_item_txt ul li.item {
    display: flex;
    margin-bottom: 1rem;
    width: 45%;
    background: #faecd0;
    padding: 1rem;
    align-items: center;
}
.num {
    display: inline-block;
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 4px solid var(--i_sub_color);
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--i_sub_color);
}
@media screen and (max-width: 768px) {
    .inner_item_txt ul li.item {
        width: 100%;
    }
}