html {
    overflow-y:scroll;
}
body {
    margin: 0;
    padding: 0;
}
button, select {
    text-transform: none;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
*, *::after, *::before {
    box-sizing: border-box;
}

.cf {
    width: 1000px;
    margin: 0 auto;
}

/* 検索文字入力欄 */
#searchText {
    width: 400px;
}
#searchArea {
    margin-top: 20px;
}
#searchArea input[type="button"]{
    margin-top: 8px;
    margin-bottom: 8px;
}
.letterStyle {
    line-height: 2em;
}
.marginBottom {
    margin-bottom: 1em;
}

/* 検索結果文字レイアウト */
#result h4 {
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #0072C1;
    font-size: 150%;
}
#result h4.result01 {
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #000;
}

/* 検索結果テーブルレイアウト */
.table-box {
    border: 1px #0072C1 solid;
    padding: 10px;
}
#table-container {
    max-height: 500px;
    overflow-x: auto;
    overflow-y: auto;
}
.resultTable {
    border-bottom: 1px #0072C1 solid;
    border-right: 1px #0072C1 solid;
    border-collapse: collapse;
    width: 100%;
    margin-top: 23px;
    margin-bottom: 50px;
}
.resultTable th, td {
    border-top: 1px #0072C1 solid;
    border-left: 1px #0072C1 solid;
    padding: 8px;
    text-align: left;
}
tr th {
    background-color: #EBF6FD;
    top: 0;
}
tr td:first-child {
    text-align: center;
}

/* ヘッダー追記 */
header .top_logo a img {
    box-sizing: content-box;
}
.sp-br {
  display: none;
}
/* スマホ画面表示対応 */
@media screen and (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}