/***********
 * レイアウト
 ***********/

html {
    font-size: 16px;
}

body {
    padding: 20px;
    margin: 0px;
}

#base__root {
    min-height: calc(100vh - 6rem);
}


/* 細かい部分は各ページのスタイルで実装 */
#base__content {
}

/* 細かい部分は各ページのスタイルで実装 */
#base__bread {
    margin-bottom: 2rem;
}

#base__bread_level1 {

}

#base__bread_level2 {
    margin-left: 20px;
}

#base__bread_level3 {
    margin-left: 40px;
}

#base__bread_level2::before,
#base__bread_level3::before {
    content: "＞ ";
}

#base__footer {
    border-top: 1px solid black;
    text-align: center;
    height: 6rem;
}

/******
 * 表示
 *****/

a {
    color: blue;
    text-decoration: none;
    cursor: pointer;
}





#base__content {
    padding: 20px;
    color: #555;
}

h2 {
    margin-top: 60px;
}


/**
 * 全体
 **/
#base__content {
    background-color: #CEC;
}

#description {
}

#announce {
    background-color: white;
    border: 1px solid red;
}

#announce:empty {
    border: none;
    display: none;
}

#announce .date {
    margin-left: 1rem;
}

#announce p {
    margin-left: 2.5rem;
}

#error_message {
    padding: 5px 20px;
    background-color: white;
    border: none;
    margin-bottom: 30px;
    color: red;
}

#info_message {
    padding: 5px 20px;
    background-color: white;
    border: none;
}

.annotation {
    font-size: 0.7rem;
    color: #5f5f5f;
    display: inline-block;
    line-height: 0.9rem;
}

/***********
 * フォーム *
 ***********/

textarea {
    height: 20rem;
}

.errorlist {
    color: red;
}


/*****************
 * 結果表示（構成） *
 *****************/
#result_table {
    margin-bottom: 2rem;
}

.result {
    border-collapse: collapse;
    font-size: 12px;
}

.result tr {
    height: 15px;
}

#result_idx td {
    text-align: left;
    width: 270px;
}

.result td {
    text-align: center;
    vertical-align: center;
    padding: 0px;
    background-color: white;
    border: 1px dotted gray;
    height: 15px;
    white-space: nowrap;
}

#result_button tr td {
    border: 1px dotted #CEC;
    background-color: #CEC;
}

span.result_header {
    width: 18px;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    white-space: nowrap;
    margin: 0px;
    padding: 0px;
}

.up_down_button {
    cursor: pointer;
    margin: 0px;
    width: 14px;
    line-height: 15px;
}

#result_idx tr:nth-child(1) td,
#result_button tr:nth-child(1) td,
#result_content tr:nth-child(1) td {
    height: 270px;
}

/**********************
 * 結果表示（ハイライト） *
 **********************/

.result td.white {
    background-color: white;
}

.result td.white.highlight {
    background-color: yellow;
}

.result td.green {
    background-color: greenyellow;
}

.result td.green.highlight {
    background-color: lime;
}

/************************
 * 結果表示　now loading...
 ************************/
#now_loading {

}


