* {
    box-sizing: border-box;
    font-family: sans-serif;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
body {
    background: #f5f5f5;
    background-repeat: repeat-x;
    background-attachment: fixed;
    color: black;
}
a {text-decoration: none;}
a:hover {text-decoration: underline;}

ol,ul {
    list-style: none;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
}
p {
    margin: 0 0 0.5em 0;
    font-size: 100%;
    line-height: 150%;
    text-indent: 1em;
}

#container{
    position: relative;
    background: #fff;
    width: 1180px;
    margin: auto;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 0px 4px 0px #ddd;
}

#header{
    position: relative;
    line-height: 2em;
    padding: 3px 10px 8px 10px;
    background: #4682b4;
}
#header .title{
    display: inline-block;
    font-size: 22px;
    text-align: center;
    line-height: 22px;
    color: #fff;
    font-family: sans-serif;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    margin-right: 2em;
}
#header a:link,
#header a:visited,
#header a:active,
#header a:hover {
    color: #fff;
}
#header .headerLink {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 10px;
}
#header .headerLink a {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
}

 /* === ボタンを表示するエリア ============================== */
.switchArea {
    line-height    : 30px;                /* 1行の高さ          */
    letter-spacing : 0;                   /* 文字間             */
    text-align     : center;              /* 文字位置は中央     */
    font-size      : 13px;                /* 文字サイズ         */

    position       : absolute;
    top            : 50px;
    right          : 5px;
    width          : 88px;
}

 /* === チェックボックス ==================================== */
.switchArea input[type="checkbox"] {
  display        : none;            /* チェックボックス非表示 */
}

 /* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
  display        : block;               /* ボックス要素に変更 */
  box-sizing     : border-box;          /* 枠線を含んだサイズ */
  height         : 30px;                /* ボタンの高さ       */
  border         : 1px solid #999999;   /* 未選択タブのの枠線 */
  border-radius  : 15px;                /* 角丸               */
}

 /* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type="checkbox"]:checked +label {
  border-color   : #4682b4;             /* 選択タブの枠線     */
}

 /* === 表示する文字（標準） ================================ */
.switchArea label span:after{
  content        : "AIST";               /* 表示する文字       */
  padding        : 0 0 0 30px;          /* 表示する位置       */
  color          : #999999;             /* 文字色             */
}

 /* === 表示する文字（ONのとき） ============================ */
.switchArea  input[type="checkbox"]:checked + label span:after{
  content        : "PUBLIC";                /* 表示する文字       */
  padding        : 0 30px 0 0;          /* 表示する位置       */
  color          : #4682b4;             /* 文字色             */
}

 /* === 丸部分のSTYLE（標準） =============================== */
.switchArea .swImg {
  position       : absolute;            /* 親要素からの相対位置*/
  width          : 24px;                /* 丸の横幅           */
  height         : 24px;                /* 丸の高さ           */
  background     : #999999;             /* カーソルタブの背景 */
  top            : 3px;                 /* 親要素からの位置   */
  left           : 3px;                 /* 親要素からの位置   */
  border-radius  : 12px;                /* 角丸               */
  transition     : .2s;                 /* 滑らか変化         */
}

 /* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type="checkbox"]:checked ~ .swImg {
  transform      : translateX(58px);    /* 丸も右へ移動       */
  background     : #4682b4;             /* カーソルタブの背景 */
}



/* タブメニュー */
.tab_box ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.tab_box input[type=radio] {
    left: -9999px;
    position: absolute;
    top: -9999px;
}

.tab_box .tabs {
    font-size: 0;
    position: relative;
    padding-top: 15px;
    white-space: nowrap;
    z-index: 999;
}

.tab_box .tabs label {
    box-sizing: border-box;
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 12px 0 0;
    padding: 5px 5px 5px 5px; 
    text-transform: uppercase;
    vertical-align: bottom;
    border-bottom: 1px solid #ccc;
}

.tab_box .tabs label:first-child {
    margin-left: 0;
}

.tab_box .tabs label:hover {
    background: #DDD;
}

.tab_box input:nth-child(1):checked ~ .tabs label:nth-child(1),
.tab_box input:nth-child(2):checked ~ .tabs label:nth-child(2),
.tab_box input:nth-child(3):checked ~ .tabs label:nth-child(3),
.tab_box input:nth-child(4):checked ~ .tabs label:nth-child(4),
.tab_box input:nth-child(5):checked ~ .tabs label:nth-child(5),
.tab_box input:nth-child(6):checked ~ .tabs label:nth-child(6),
.tab_box input:nth-child(7):checked ~ .tabs label:nth-child(7) {
    border-bottom: 3px solid steelblue;
    color: black;
    background-color: #efefef;
    padding-bottom: 3px;
}

.tab_box .sections {
    padding-top: 10px;
    padding-bottom: 10px;
}
.tab_box .sections li {
    box-sizing: border-box;
    display: none;
    padding: 0 0 0 0;
}

.tab_box input:nth-child(1):checked ~ .sections li:nth-child(1),
.tab_box input:nth-child(2):checked ~ .sections li:nth-child(2),
.tab_box input:nth-child(3):checked ~ .sections li:nth-child(3),
.tab_box input:nth-child(4):checked ~ .sections li:nth-child(4),
.tab_box input:nth-child(5):checked ~ .sections li:nth-child(5),
.tab_box input:nth-child(6):checked ~ .sections li:nth-child(6),
.tab_box input:nth-child(7):checked ~ .sections li:nth-child(7) {
    display: block;
}

.searchbox {
    display: flex;
    width: 80%;
    max-width: 600px;
    flex-direction: column;
    margin: auto;
}
.searchbox .word_box {
    width: 15em;
}
.searchbox input[type="text"] {
    float: left;
    -webkit-appearance: none;
    margin: 0 0 0 0;
    height: 36px;
    width: calc(100% - 56px);
    padding: 0px 3px;
    background-color: #fcfcfc;
    border: 2px solid #666;
    border-radius: 5px 0 0 5px;
    border-right: none;
}
.searchbox input[type="text"]:focus {
    background-color: #fff;
    outline: none;
}
.searchbox button[type=submit] {
    float: left;
    -webkit-appearance: none;
    color: #FFF;
    font-size: 20px;
    margin: 0 0 0 0;
    padding: 0 14px;
    height: 36px;
    background: #666;
    border: 2px solid #666;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
.searchbox.toppage {
    display: block;
    margin: 0 20px 35px 20px;
    padding: 1em 0;
    background: #efefef;
    text-align: center;
}
.searchbox .db_description {
    margin-bottom: 12px;
    text-align: left;
}
::placeholder {
    color: #bbb;
}

#breadcrumbs {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 80%;
}

.searchbox .top_sarch_title {
    font-size: 120%;
    margin-top: 15px;
    text-align: left;
}
#content_searchbox {
    display: block;
    margin: 0;
    padding: 0 5px 0 5px;
    text-align: center;
}
#content_main {
    display: block;
    margin: 0;
    padding: 0 5px 20px 5px;
    text-align: center;
}
#about_download {
    display: inline-block;
    font-size: 100%;
    line-height: 150%;
    margin: 30px auto 15px auto;
    padding: 8px 15px;
    background: #fff;
    border: solid 1px #aaa;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    word-break: break-all;
    word-wrap: break-word;
}

#about_download * {
    text-align: left;
}
table.download_outer {
    margin-top: 5px;
    margin-bottom: 10px;
    border: solid 1px #ccc;
}
table.download_outer td {
    padding: 3px 15px;
}
table.download_inner {
    font-size: 80%;
    border-collapse: collapse;
    margin: 5px 10px;
}
table.download_inner tr {
    border: solid 1px #ccc;
}
table.download_inner td {
    padding: 3px 12px;
}

#txt_about.toppage {
    display: block;
    margin: 15px auto 10px auto;
    padding: 0 0;
    max-width: 600px;
    background: #fdfdfd;
    font-size: 150%;
}
#txt_about div{
    display: inline-block;
}
#toppage_logo {
    margin-right: 15px;
    font-size: 60px;
    font-weight: bold;
    line-height: 75px;
    color: #888;
    font-family: Arial,HiraKakuProN-W3,'ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック',sans-serif;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
}

#mainMenu{
    position: relative;
    float: right;
    width: 190px;
    margin: 0px;
    padding: 0px;
}

div.menuTitle{
    font-size: 100%;
    margin: 15px 5px 5px 5px;
    padding: 5px 5px 3px 15px;
    color: #fff;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.6);
    background: #191970;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

div.menuList{
    margin-bottom: 20px;
}

div.menuList ul{
    padding: 0px;
    margin: 0px;
}

div.menuList li{
    font-size: 90%;
    padding: 0px;
    margin: 0 5px 3px 5px;
    border: solid 1px #ccc;
    border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
div.menuList li a {
    display: block;
    color: #888;
    padding: 3px 5px 3px 15px;
}
div.menuList li a:hover {
    display: block;
    color: #000;
    background: #eef;
}
div.menuList li a:active {
    -ms-transform: translate(1px, 1px);
}
div.menuList li:active {
    transform: translate(1px, 1px);
    -ms-transform: translate(1px, 1px);
    -moz-transform: translate(1px, 1px);
    -webkit-transform: translate(1px, 1px);
}

div.menuList li.gsj-logo {
    background: url(img/gsj-logo.png) no-repeat -1px -1px;
    background-size: 190px 25px;
}
div.menuList li.gsj-logo a:hover {
    opacity: 0.5;
}
div.menuList li.aist-logo {
    background: url(img/aist-logo.png) no-repeat -1px -1px;
    background-size: 190px 25px;
}
div.menuList li.aist-logo a:hover {
    opacity: 0.5;
}

div.menuBanner img {
    border: solid 1px #ccc;
    margin-bottom: 3px;
    margin-left: 0px;
    width: 190px;
    height: 25px;
}
div.menuBanner a:hover img {
    opacity: 0.5;
}


div.menuList1 ul{
    padding-left: 40px;
    margin: 0px;
}

div.menuList1 li{
    padding-left: 40px;
    margin: 0px;
    list-style-type: circle;
    line-height: 20px;
}

#content {
    position: relative;
    width: 100%;
    margin: 0;
    padding-bottom: 15px;
    text-align: left;
}
#content > * {
    margin-left: 15px;
    margin-right: 15px;
}
#content .licenses {
    font-size: 90%;
    background-color: #f8f8f8;
    line-height: 1.5em;
    margin: 2em 0 0 0;
    padding: 5px 10px;
    border-radius: 6px;
}

div.linkBtn {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    padding: 1px 5px;
    border: solid 1px #aaa;
    border-radius: 3px;
    background-color: #eee;
}
div.linkBtn:hover {
    background-color: #e0e0e0;
}

#content .resTitle {
    color: #006;
    font-size: 100%;
    font-weight: bold;
    margin-top: 0.5em;
    line-height: 1.25em;
}
#content .resAuthor {
    font-size: 100%;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    line-height: 1.25em;
}

div.cc-image img {
    border: none;
}

div.subContents {
}
img.rightFloat {
    float: right;
    margin-left: 1em;
}
div.clear {
    height: 1em;
    clear: both;
}

div.subContents {
    padding-top: 13px;
}
div.subContents p {
    margin-top: 1em;
    line-height: 140%;
}

div.subContents h2 {
    margin-bottom: 20px;
    padding-bottom: 2px;
    line-height: 120%;
    font-size: 120%;
    border-style: solid;
    border-color: #228;
    border-width: 0px 0px 2px 0px;
    text-indent: 0em;
    color:#000;
}
div.subContents h3 {
    margin-bottom: 10px;
    padding: 2px 8px;
    color:#000;
    border-style: solid;
    border-color: #228;
    border-width: 0px 0px 1px 0px;
}

div.subContents dl {
    margin-bottom: 20px;
}
div.subContents dt {
    color: #000080;
    font-weight: bold;
}
div.subContents dd {
    margin-left: 2em;
    margin-top: 0.25em;
    margin-bottom: 0.75em;
}

div.item p {
    line-height: 140%;
}
div.item {
    border: 1px solid #cccccc;
}
div.itemHead {
    padding: 3px;
    background-color: #2b56a6;
    color: #fff;
    text-shadow: 1px 1px 0px #666;
    border-bottom: 1px solid #cccccc;
}
div.itemInfo {
    text-align: right;
    padding: 3px;
    background-color: #efefef;
    border-top: 1px solid #cccccc;
}
div.itemBody {
    margin-top: 0.5em;
    padding-left: 5px;
}
div.itemBody p.itemText {
    margin-bottom: 0.5em;
    margin-left: 1em;
    font-size: 90%;
    text-indent: -1em;
}
div.itemBody p.itemText:first-line {
    font-size: 100%;
    text-shadow: 1px 1px 0px #ddd;
}

.itemFoot {
    text-align: right;
    padding: 3px;
    background-color: #efefef
}

#footerbar {
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
    clear: both;
    text-align: center;
    line-height: 110%;
    color: #fff;
    height: auto;
    font-size: 12px;
    background: #4682b4;
}
ul.ft-list {
    list-style: outside none none;
}
ul.ft-list li {
    border-left: 1px solid #799eb3;
    display: inline-block;
    padding: 6px 8px;
}
#footerbar a, 
#footerbar a:link, 
#footerbar a:visited {
    color: #ffffff;
}


.titleName_ruby {
    font-size: 150%;
    line-height: 180%;
}

/* .resTable 詳細表示用のテーブル */
.detailedViewTitle {
    color: rgba(34, 34, 102, 1);
    font-size: 120%;
}
.detailedViewTitle::before{
    font-family: "FontAwesome";
    content:"\f1c0";
    line-height: 1;
    margin-right: 5px;
    color:#888;
}

p.resTable {
    margin: 0.5em 15px 0.5em 15px;
    line-height: 1.25em;
}
span.rq_url {
    color: #444;
    font-weight: bold;
}
table.resTable {
    width: calc(100% - 30px);
    margin: 0 15px 1em 15px;
    border-collapse: collapse;
}
table.resTable th,
table.resListTable th {
    border: solid 1px #888;
    padding: 2px 5px;
    color: #fff;
    font-weight: 400;
    background-color: #226;
    background: #4682b4;
}
table.resTable.inner th,
table.resListTable.inner th {
    font-size: 85%;
    font-weight: 400;
    line-height: 100%;
    background-color: #222;
    background: #666;
}
table.resTable td,
table.resListTable td {
    vertical-align: top;
    border: solid 1px #888;
    padding: 2px 5px;
    color: #000;
    background-color: #fff;
    line-height: 1.25em;
    word-break: break-all;
    word-wrap: break-word;
}
table.resTable > tbody > tr > td:first-child {
    max-width: 25%;
    min-width: 6em;
    background-color: #f0f0f0;
}
table.resTable.col2 > tbody > tr > td:first-child {
    max-width: 25%;
    min-width: 6em;
    background-color: #f0f0f0;
}
table.resTable > tbody > tr.linkdata > td:first-child {
    background-color: #cccccc;
}

table.resTable td.reference {
    background: #fff;
}
table.resTable td.reference.header {
    background-color: #f0f0f0;
    background: linear-gradient(to bottom, rgba(200, 200, 200, 0.75) 0px, rgba(200, 200, 200, 1));
}

.tableinfo {
    margin-bottom: 4px;
}
.tableinfo div {
    font-size: 12px;
    color: #888;
    line-height: 150%;
}
.tableinfo div.detailedViewTitle {
    font-size: 18px;
    color: #666;
    padding-bottom: 5px;
}

td.tableContainer {
    padding: 1px !important;
}

table.resListTable td.thumbImageTD {
    padding: 2px;
    line-height: 0;
    width: 104px !important;
    height: 104px;
}
table.resListTable td.thumbImageTD img {
    object-fit: contain;
    width: 100px;
    height: 100px;
}


/* .resListTable リスト表示用のテーブル */
table.resListTable {
    width: calc(100% - 30px);
    margin: 0;
    border-collapse: collapse;
}
table.resListTable td {
    padding: 4px 5px;
}

table.resListTable > tbody > tr > td:first-child {
    max-width: 25%;
    min-width: 7em;
}
table.resListTable > tbody > tr > th:first-child.openFlg,
table.resListTable > tbody > tr > td:first-child.openFlg {
    min-width: 50px;
    width: 50px;
    text-align: center;
}

table.resListTable.inner td:first-child {
    min-width: 6em;
    max-width: 10em;
}
table.resListTable tr:nth-child(2n) td {
    background-color: #f8f8ff;
}
table.resListTable .title {
    line-height: 150%
}
table.resListTable .article_body {
    font-size: 90%;
    line-height: 125%
}
table.resListTable th.refid {
    min-width: 7em;
}
table.resListTable.col3.inner tr > td:nth-child(2n) {
    width: 40%;
}

/* 地質年代表 */
.ageTree {
    padding: 0;
}
.ageTree table {
    border-collapse: collapse;
    margin: -1px 0 0 -1px;
    padding: 0;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    border: none;
    background-color: #eee;
}
.ageTree table td.tableContainer {
    padding: 0 !important;
}
.ageTree table td.tableContainer > div {
    height: 100%;
    padding: 4px 3px;
}
.ageTree > table {
    border-bottom: solid 1px #aaa;
    border-right: solid 1px #aaa;
    border-top: none;
    border-left: none;
}
.ageTree table td {
    vertical-align: middle;
    font-size: 12px;
    padding: 4px 3px;
    border-top: solid 1px #aaa;
    border-left: solid 1px #aaa;
    border-bottom: none;
    border-right: none;
    word-break: break-word;
}
.ageTree table td:first-child {
    width: 92px;
}
.ageTree a:link,
.ageTree a:visited,
.ageTree a:active,
.ageTree a:hover {
    color: inherit;
}
.ageTreeNode {
    display: flex;
    align-items: center;
    position: relative;
    vertical-align: middle;
}
.ageTreeNode .ageNodeLabel {
    position: absolute;
    color: #000;
    font-size: 10px;
    right: 6px;
    bottom: -8px;
    z-index:1;
}
@media only screen and (max-width:725px){
    .ageTree table td:first-child {
        width: 20px;
    }
    .ageTree table td:first-child > a {
        writing-mode: vertical-rl;
    }
}


/* URIリンク表示 */
a.uri {
    font-size: 80%;
}
a.uri::before{
    font-family: "FontAwesome";
    content:"\f14c";
    line-height: 1;
    margin-right: 5px;
    font-size: 120%;
    color:#444;
}

/* td内の入れ子用テーブル */
table.resTable.inner,
table.resListTable.inner {
    width: 100%;
    border: 0px;
}
table.resTable.inner td:first-child,
table.resListTable.inner td:first-child {
    width: 9rem; /* auto; */
}
table.resListTable.inner td.innerHeader {
    background-color: #cccccc;
}

table.resListTable .kwdHighlight {
    padding: 0px 3px;
    background-color: #ffff0088;
}

.page_navigation {
    text-align: center;
}
.page_navigation div {
    display: inline-block;
    padding: 0.75em 0.25em 1em;
    font-size: 90%;
}
.page_navigation div.right_space {
    margin-right: 20px;
}
.page_navigation div.left_space {
    margin-left: 20px;
}
.page_navigation div a, 
.page_navigation div a:link, 
.page_navigation div a:visited {
    color: #4285f4;
}

.link_box {
    position: relative;
    border: solid 1px #888;
    padding: 5px 0;
    color: #aaa;
    font-size: 150%;
    font-weight: bold;
    text-align: center;
    background: #eee;
}
.link_box:hover {
    background: #d8d8d8;
}
.link_box.prev {
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
}
.link_box.next {
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
    border-radius: 0 0 6px 6px;
}
.link_box a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}
.link_box a:hover{
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

table.responseTable {
    margin: 2px 0;
    border-collapse: collapse;
}
table.responseTable.outer {
    margin-left: 15px;
}
table.responseTable th {
    border: solid 1px #888;
    padding: 2px 5px;
    color: #fff;
    background-color: #226;
    background: linear-gradient(to bottom, rgba(34, 34, 102, 0.8) 0px, rgba(34, 34, 102, 1));
}
table.responseTable td {
    vertical-align: top;
    border: solid 1px #888;
    padding: 2px 5px;
    color: #000;
    background-color: #fff;
}
table.responseTable td:first-child {
    color: #000;
    background-color: #eee;
    background: linear-gradient(to bottom, rgba(238, 238, 238, 0.5) 0px, rgba(238, 238, 238, 1));
}

div.jsonData {
    font-size: 90%;
    color: navy;
    margin: 0.5em 15px 2em 15px;
    padding: 0.5em 2em;
    border: solid 1px #ccc;
    background-color: #f8f8f8;
}

table.maplist {
    margin: 10px 0 10px 0;
    border-collapse: collapse;
    background-color: #fff;
    border: solid 1px #ccc;
}
table.maplist td,
table.maplist th {
    padding: 0 5px;
    background-color: #fff;
    border: solid 1px #ccc;
    font-size: 80%;
}
table.maplist th {
    background-color: #e8e8e8;
    padding: 0 5px;
}

table.checkedBrowser {
    margin: 10px 0 0 2em;
    border-collapse: collapse;
    background-color: #fff;
    border: solid 1px #ccc;
}
table.checkedBrowser td,
table.checkedBrowser th {
    padding: 0 5px;
    background-color: #fff;
    border: solid 1px #ccc;
}
table.checkedBrowser th {
    background-color: #e8e8e8;
    padding: 0 5px;
}
table.checkedBrowser th:first-child {
    width: 90px;
}
table.checkedBrowser th:nth-child(2) {
    width: 100px;
}
table.checkedBrowser.en th:nth-child(2) {
    width: auto;
}

table.noborderTable {
    margin: 0;
    border: none;
}
table.noborderTable td {
    padding: 2px 5px;
    border: none;
}

dl.faq_list dt{
    text-indent: -1.5em;
    line-height: 150%;
    margin: 0 0 0.5em 1.5em;
}
dl.faq_list dd{
    text-indent: -1.5em;
    line-height: 150%;
    margin: 0 0 1em 1.5em;
}

.linkBtns a {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
    margin: 1px 0 1px 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc #999 #999 #ccc;
    border-radius: 2px;
    color: #000;
    font-size: 90%;
    text-shadow: 0 1px 1px #FFF, -1px 0 1px #FFF, -1px 0 1px #aaa;
    box-shadow: 1px 1px 2px #E7E7E7;
    background-color: #F1F1F1;
    background: linear-gradient(to bottom, #fff, #F1F1F1 1%, #F1F1F1 50%, #DFDFDF 99%, #ccc);
}
.linkBtns a:hover {
    background: linear-gradient(to bottom, #fff, #e1e1e1 1%, #e1e1e1 50%, #cfcfcf 99%, #ccc);
}

#ld_map {
    width: 100%;
    height: 100%;
    background-color: #aaa;
}
.mapSelectBtn {
    cursor: pointer;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    padding: 0 10px;
    margin: 1px 0 1px 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc #999 #999 #ccc;
    border-radius: 2px;
    font-size: 90%;
    box-shadow: 1px 1px 2px #E7E7E7;
    color: #ffffff;
    background: #bbbbbb;
}
.mapSelectBtn:hover {
  	background-color: #dce1e4;
}
.mapSelectBtn.active {
    background: #404040;
    color: #fff;
}


/* DB管理部 */
.adminDB {

    background-color: #ebf6f7;
    padding: 5px 10px;
}
div.commandBtn {
    display: inline-block;
    margin-top: 15px;
    margin-right: 10px;
    padding: 3px 8px;
    border: solid 1px #2a83a2;
    border-radius: 3px;
    background-color: #84b9cb;
}
div.commandBtn:hover {
    background-color: #83ccd2;
}
div.commandBtn a:link,
div.commandBtn a:visited,
div.commandBtn a:active,
div.commandBtn a:hover {
    color: #000000;
}
div.commandBtn a {
    text-decoration: none;
}

/* 図幅Pageタブ部 */
.page_tab_box .page_btn_area {
    margin: 0;
    display: -webkit-box;
    display: flex;
}
.page_tab_box .page_tab_btn {
    cursor: pointer;
    user-select: none;
    display: inline-block;
    margin: 6px 0 0 0;
    padding: 3px 12px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    background: #bbbbbb;
    border-radius: 6px 6px 0 0;
    transition: all 0.2s ease 0s;
}
.page_tab_box .page_tab_btn + .page_tab_btn {
	  margin-left: 4px;
}
.page_tab_box .page_tab_btn:hover {
  	background-color: #dce1e4;
}
.page_tab_box .page_tab_btn.active {
    background: #404040;
    color: #fff;
}
.page_tab_box .page_panel_area {
    padding: 0;
}
.page_tab_box .page_tab_panel {
    display: none;
}
.page_tab_box .page_tab_panel.active {
    display: block;
}


/* Width: 451px - 820px */
@media only screen and (max-width:1200px){
    .non_ios {
        display: none;
    }

    body {
        width: device-width;
        -webkit-text-size-adjust: none;
    }

    #container{
        width: 95%;
        margin: auto;
        padding: 0;
    }

    #mainMenu{
        position: relative;
        float: right;
        width: 152px;
        margin: 0;
        padding: 0;
    }
    div.menuTitle{
        font-size: 11pt;
        margin: 10px 5px 5px 5px;
        padding: 5px 5px 3px 10px;
    }
    div.menuList {
        margin-bottom: 10px;
        padding: 0;
    }
    div.menuList li {
        font-size: 10pt;
    }
    div.menuList li a {
        padding: 3px 3px 3px 3px;
    }
    div.menuBanner img {
        width: 152px;
        height: 20px;
    }
    #twitterDiv {
        display: none;
    }

    #content {
        position: relative;
        width: 100%;
        margin-right: 0;
    }

    div.subContents {
        padding-top: 5px;
        width: 100%;
    }

    div.subContents h1,h2,h3 {
        margin: 5px 3px 6px 3px;
    }

    table.checkedBrowser {
        padding: 0 0px;
        margin: 1em 0 2em 0;
        width: 100%;
    }
    table.checkedBrowser th:first-child {
        width: 80px;
    }
    table.checkedBrowser th:nth-child(2) {
        width: 80px;
    }
    table.checkedBrowser td,
    table.checkedBrowser th {
        font-size: 12px;
        padding: 0 4px !important;
    }
}

/* Width: 351px - 450px */
@media only screen and (max-width:450px){
    #container{
        width: 100%;
        margin: 0;
        padding: 0;
    }
    #txt_about.toppage {
        margin: 5px auto 0 auto;
        padding: 0 5px;
        font-size: 120%;
    }
    #txt_about div{
        display: inline-block;
    }
    #toppage_logo {
        font-size: 48px;
        line-height: 58px;
    }

    #header .headerLink {
        display: none;
    }

    .tab_box .tabs label {
        font-size: 11px;
        letter-spacing: 0px;
        margin: 0 8px 0 0;
        padding: 5px 4px 4px 4px; 
    }

    .searchbox {
        width: 92%;
    }
    .searchbox input[type="text"] {
        width: calc(100% - 54px);
    }
    #header .title{
        font-size: 20px;
        line-height: 20px;
        margin-right: 0;
    }
    table.resTable {
        width: calc(100% - 6px);
    }
    table.resListTable {
        width: calc(100% - 6px);
    }
    .page_navigation div {
        display: inline-block;
        padding: 2px 0.15em 15px;
        font-size: 85%;
    }

    #mainMenu{
        position: relative;
        float: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    div.menuTitle{
        width: 90%;
        margin: 0 auto 5px auto;
    }

    div.menuList {
        width: 90%;
        margin: 0 auto;
    }

    div.menuList ul {
        width: 100%;
        margin-bottom: 8px;
    }

    div.menuList li {
        width: 100%;
        margin: 0 auto 3px auto;
    }

    div.menuBanner {
        width: 90%;
        text-align: center;
        margin: 0 auto 3px auto;
    }
    div.menuBanner img {
        width: 190px;
        height: 25px;
    }
    #twitterDiv {
        display: block;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    #content {
        position: relative;
        float: none;
        width: 100%;
        margin: 0.5em 0 2em 0;
        padding: 0 !important;
    }
    #content > * {
        margin-left: 3px;
        margin-right: 3px;
    }

    div.subContents {
        width: 100%;
    }

    div.subContents p{
        margin: 0 3px;
    }

    div.subContents dl {
        padding: 5px 3px 6px 3px;
    }

    div.item {
        margin: 0 3px;
    }
}

