/* techsearch.css
 * CSS File for PIAS/WEB
 * create date : 2021/11/15
 * copyright   : 2021 , Shinko Engneering & Maintenance Co.,Ltd.
 */
/* header */
* {
    font-size:x-large;
}
/* トップメニュー */
body{
    background: white;
    margin: 0px;
}

.side {
    background-color: cornflowerblue;
    width: 200px;
}
.contents-body {
    margin-left:5px;
}

article {
    display:flex;
}

#content {
    padding-top: 24px;
    padding-left: 10px;
    padding-right: 10px;
}
#content h1 {
    /*font-style: italic;*/
    color:darkslategray;
    text-shadow: 1px 2px 3px lightblue;
}
#red {
    color: red;
}
#bold {
    font-weight: bold;
}
#content h2 {
    font-size: medium;
}
#site-header{
    background: white;
    display: flex;
    padding: 0px 0px 24px 0px;
    position: fixed;
    justify-content: space-between;
    margin: 0px;
    width: 100%;
}

#gnav{
    position: fixed;
    right: 0px;
    /* width: 300px; 
    border: 3px solid #73AD21;
    padding: 10px;
    width: 100%;
    */
    margin: 0pt;
    background-color: white;
}
#gnav ul li{
    margin: 0px;
    display: inline;
    vertical-align: top;
    font-size: small;
}
.inner {
    margin: 0px;
}
#contents {
    margin-top: 32px;
}

/* テーブルの行列入れ替え */
.cr-change {
    -ms-writing-mode : tb-lr;
    writing-mode : vertical-lr;
}
.cr-change td>span,th>span {
    -ms-writing-mode : lr-tb;
    writing-mode : horizontal-tb;
    white-space : nowrap;
}
#content table {
    width:100%;
    border-color: #666;
    border-width: 2px;
}

/* テーブルの規定値設定 */
#content th {
    background-color: lightblue;
}
#content tr:nth-child(odd) {
    background-color: honeydew;
}
#content tr:nth-child(even) {
    background-color:white;
}
td.right  {
    text-align: right;
}
td.center  {
    text-align: center;
}
td.left  {
    text-align: left;
}

/* Footer */
.content-body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
footer{
    margin-top: auto;
    text-align: right;
    font-size: small;
}

pre{
    background-color: paleturquoise;
    margin: auto;
}


/* enable/disable button */
.right {
    text-align: right;
}

.button-right {
    display: block;
    margin: 0 0 0 auto;
}

.button-enabled {
  background-color: #EA4C89;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-enabled:hover,
.button-enabled:focus {
  background-color: #F082AC;
}


/* CSS */
.button-disabled {
  background-color: #4c91ea;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-disabled:hover,
.button-disabled:focus {
  background-color: #82cdf0;
}