.Title{
    font-size: 24px;
    padding: 1rem 0 1rem 1.5rem;
    border-left: 1.5rem solid deepskyblue;
    margin-bottom: 1rem;
}


.contents{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 300px;
}

.MainContent{
    grid-row: 1;
    grid-column: 1;
}

.sidebar{
    grid-row: 1;
    grid-column: 2;
    margin-left: 20px;
    position: relative;
}

.sidebar-content{
    margin-bottom: 1rem;
    position: sticky;
    top: 100px;
    right: 0;
}

.sidebar-content > *{
    padding-left: 16px;
    line-height: 2rem;
}

.sidebar-content h2{
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 1rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.sidebar-content .chapter{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}


.sidebar-content .views-row {
    font-size: 14px;
    margin: 0.2rem 0;
}
.sidebar-content ul li{
    font-size: 12px;
}

.CompletionImage {
    margin: 0 2rem;
    font-size: 16px;
    text-align: justify;
    letter-spacing: 0.5px;
}

.CompletionImage h4 {
    font-weight: bold;
    border-left: solid 10px deepskyblue;
    padding: 0.4rem 1rem 0.3rem;
}

.CompletionImage img{
  width: 100%;
}

.CompletionImage p{
    margin: 0;
}

.caution {
    display: flex;
    background-color: gold;
    padding: 2rem 1rem 1rem;
    border-radius: 8px;
}

i.fas.fa-exclamation-triangle {
    font-size: 32px;
    margin: 0 auto;
    padding: 1rem 0 1rem 1rem;
}

.message {
    padding-right: 4rem;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.2px;
}

.Tools{
  margin-top: 2rem;
}

.Tools table.table thead tr th,
.Tools table.table tbody tr td
{
    border: 1px solid #000!important;
}

.Tools table.table thead tr th{
    border-bottom: none;
}

.Tools table.table tbody tr td{
    border-top: none;
}

.Tools table.table th.row_0 {
    background-color: dodgerblue;
    color: #fff;
    letter-spacing: 1px;
}

.Tools table.table .col_0, .Tools table.table .col_3{
    text-align: center;
}

.FlexWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
}

.FlexItem {
    width: 210px;
    margin: 1rem 0;
    border: 3px solid dodgerblue;
    padding: 0.5rem;
    border-radius: 4px;
}

.FlexItem.EmptyBox {
    border: none;
}

.FlexItem .Image img {
    vertical-align: middle;
    width: 100%;
}

.FlexItem .id {
    font-size: 16px;
    margin-bottom: 0.5rem;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.comments{
    display: none;
}


@media screen and (max-width: 768px){
    .navbar .logo{
        padding: 0 5px 0 10px;
    }
    /* ヘッダー部分 */
    div.main-container.container {
        width: 100%;
    }

    div#navbar-collapse {
        width: 90%;
        /* background-color: #eee; */
        margin: 0 auto;
        }

    .navbar-nav {
        margin: 0;
        text-align: right;
    }

    .navbar-nav li a {
        margin-top: 0px!important;
        display: inline-block;
    }

    header#navbar {
        width: 100%!important;
    }

    .container > .navbar-header {
        margin: 0;
    }
    /* フッター部分 */
    .adwin .sitemap{
        width: 90%;
    }

    .region.region-content{
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;

    }

    article .Title{
        font-size: 18px;
        font-weight: bold;
        border-left: 1rem solid deepskyblue;
    }

    article .contents {
        display: grid;
        grid-template-rows: auto auto;
        grid-template-columns: auto;
    }

    .contents .sidebar {
        grid-row: 2;
        grid-column: 1;
        margin-left: 0;
    }
    
    .CompletionImage {
        margin: 0 2rem;
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.5px;
    }
    
    i.fas.fa-exclamation-triangle {
    font-size: 24px;
    margin: 0 auto;
    padding: 1rem 0 1rem 1rem;
}

.message {
    padding-right: 1rem;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.2px;
}

    
    table{
      font-size: 12px;
    }
    
    .FlexItem {
    width: 180px;
    margin: 1rem 0;
    border: 3px solid dodgerblue;
    padding: 0.5rem;
    border-radius: 4px;
}



}