:root {
  --bk1-color: #4472c4;
  --bk2-color: #5b9bd5;
  --bk3-color: #ddebf7;
  --body-color: #ddebf7;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: var(--body-color);
}

fieldset {
  background-color: #ffffff;
}

.bk-0{
  background-color: #ffffff;
}

.bk-1{
  background-color: var(--bk1-color);
}

.bk-2{
  background-color: var(--bk2-color);
}

.bk-3{
  background-color: var(--bk3-color);
}

.th-width-10 {
  width: 10%;
}

.th-width-15 {
  width: 15%;
}

.th-width-20 {
  width: 20%;
}

.th-width-25 {
  width: 25%;
}

.th-width-30 {
  width: 30%;
}

.th-width-40 {
  width: 40%;
}

.th-width-60 {
  width: 60%;
}

.th-width-80 {
  width: 80%;
}

.required-input {
  background-color: #FFDBE1;
}

.header-1:hover {
  cursor: pointer;
}

.nav-btn {
  display: inline-block;
  width: 100px;
  white-space:nowrap;
}

.screen-name {
  font-size: 1rem;
  white-space:nowrap;
}
@media (min-width: 768px) {
  .screen-name {
    font-size: 1.5rem;
    white-space:nowrap;
  }
}

.header-right {
  display: flex;
  flex-direction: row-reverse;
}

.profile {
  padding: 6px;
}

.profile ul{
  padding-left: 10px;
}

.profile ul .key{
  display: inline-block;
  width: 45px;
}

.required:after {
  content: "*";
  font-weight: bold;
  color: red;
}

.font-size-sm1{
  font-size: 1rem;
}

/* select要素（multi）の代用のための要素のスタイル※レポート画面・タグ選択画面 */
div.listbox {
  height: 15em;
  overflow: auto;
}
.item {
  cursor: pointer;
}
.item.selected {
  background-color: #eee;
}

ul{
  list-style:none;
  padding-left: 0px;/*左の余白を無くす*/
  margin: 0;
}

a{
  color:#333;
  text-decoration: none;
}

/* テーブル内のaタグやbuttonタグは親要素の大きさに広げる */
td a {
  display: block;
  width: 100%;
  height: 100%;
}
td button {
  width: 100%;
  height: 100%;
}

th {
  text-wrap: nowrap;
}

/*==================================================
　3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:var(--bk2-color);
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
