
/* スクロールの幅の設定 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* スクロールの背景の設定 */
::-webkit-scrollbar-track {
    background-color: black;
}

/* スクロールのつまみ部分の設定 */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #ff6666;
}

a, a:visited, a:active {
    color: rgb(204,148,37);
}

/*
--------------------------------*/
li {
    list-style-type: none
}

/*
---------------------------------*/
table {
    border-collapse: collapse;
    border-bottom: 5px solid #333333;
    border-right: 5px solid #333333;
    border-left: 5px solid #333333;
    line-height: 1.5;
    text-align: left;
    width: 100%;
  }
table thead th {
    background-color: #333333;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-top: 5px solid #000000;
    border-right: 5px solid #000000;
    color: #ffffff;
    font-weight: normal;
    padding: 10px 30px;
    text-align: center;
    vertical-align : middle;
}
table thead th:last-child{
    border-right:none;
}
table thead th:first-child{
    border-left:none;
}
table thead tr:first-child th {
    border-bottom:none;
}
table tbody th {
    background-color: #FFFFFF;
    border-bottom: 5px solid #333333;
    border-right: 5px solid #333333;
    border-left: 5px solid #333333;
    box-sizing: border-box;
    font-weight:bold;
    padding: 15px;
    text-align: center;
    vertical-align : middle;
}
table td {
    background-color: #FFFFFF;
    border-bottom: 5px solid #333333;
    border-right: 5px solid #333333;
    box-sizing: border-box;
    padding: 15px;
    vertical-align: top;
    color: #000000;
    padding: 0.6rem;
}
table td:first-child {
    border-left: 5px solid #333333;
}


/*
---------------------------------*/
h1 {
    border-bottom: solid 3px white;
    display: inline-block;
    padding: 0.5rem 3.0rem 0.5rem 1.0rem ;
    font-size: 3.0rem;
}
h1:first-letter {
  margin-right: .1rem;
  font-size: 6.0rem;
}

h2 {
    padding-left: 10px;
    border-left: solid 3px white;
    border-bottom: solid 1px white;
    display: inline-block;
    font-size: 2.4rem;
    /* text-decoration: underline; */
}

/*
---------------------------------*/
figure {
    display: inline-block;
    margin: 0;
}

figure > figcaption {
    text-align: center;
    font-size: 1.8rem;
}

/*
---------------------------------*/
html {
    font-size: 62.5%;
}

body {
    font-family: 'Sawarabi Mincho', sans-serif;
    /* font-family: 'Noto Serif JP', serif; */
    font-size: 2.0rem;
    line-height: 3.5rem;
    overflow-x: hidden;
}

@media screen and (max-width:768px) {
    h1 {
        border-bottom: solid 3px white;
        display: inline-block;
        padding: 0.5rem 3.0rem 0.5rem 1.0rem ;
        font-size: 2.5rem;
    }
    html {
        font-size: 50%;
    }
    /* body {
        font-size: 1.5rem;
        line-height: 2.5rem;
    } */
} 
