body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 1280px;
    height: 100%;
    box-sizing: border-box;
    display:block;
}

#navbar-manager {
    width: 100%;
    padding: 6px 0 6px 0;
    background-color: #0356b4;
    overflow: hidden;
}
   

#navbar-manager .account {
	float:right;
    padding: 8px;
    font-size: 19px;
    margin: 0 auto;
    color: #FFF;
    text-align: right;
    margin-right: 10px;
   
}

#navbar-manager .account img{
      width:30px;
      height:30px;
  }

#navbar-manager .menuarea {
	float:right;
    margin-top: 3px;
    font-size: 18px;
    margin: 0 auto;
    color: #FFF;
    text-align: right;
    margin-right: 10px;
    padding-top:5px;
}

.menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている */
  width: 300px;
  height: 100%;
  background-color: #fafad2;
  color: #333;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}

.hamburger {
  /*position: fixed;*/
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #000;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #000;
}

.hamburger.active{
 	position: fixed;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #FFF;
  margin: 5px 0;
  transition: 0.4s;
}
.menu.open {
  right: 0;
}

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
}

.menu li {
  padding: 20px 0;
  border-bottom: 1px solid #444;
}

.menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}


#navbar-manager .tool a {
    color: #FFF;
}

div#header {
    display: flex
;
    justify-content: space-between;
    position: relative;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 5px 10px;
}



div#body {
    position: relative;
    width: 100%;
    padding: 20px 20px 45px;
    min-height: calc(100vh - 66px);
    box-sizing: border-box;
}

.h3, h3 {
/*    font-size: 24px;*/
    margin-bottom: 20px;
    font-size: 24px;
    border-left: 5px solid #2589d0;
    color: #fff;
    padding: .5em .7em;
}

#container {
    margin: 10px 20px;
    padding: 25px 25px;
    /*border: 2px solid #aaa;*/
    min-width: 800px;
    min-height: 500px;
    background: linear-gradient(45deg, #99CCFF, #CCCCFF);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

#login-container {
    margin: 10px 20px;
    padding: 25px 25px;
    width: 450px;
    vertical-align:center;
    position: absolute;
    top: 30%;
    left: 40%;
    background: linear-gradient(45deg, #99CCFF, #CCCCFF);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

#container .statement-list {
    margin: 30px 10px;
}


/*入力エリア*/
input {
  /*width: 90%;*/
  padding: 15px;
  margin-bottom: 10px;
/*  border: 1px solid #ccc;*/
  border: 1px solid #8f9094;
  border-radius: 5px;
  font-size:medium;
}

input::placeholder {
    color: #929191;
}
  
input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.mail, .password{
    width:350px;
}

/*プルダウン*/
.selectbox {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.selectbox::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #8f9094;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}


/*ボタン表示*/
.add{
    background-color: 	#fc983a;
    border-color: #fc983a;
    color: #fff;
    width:200px;
}

.add:hover {
    color:#fc983a;
    background-color: rgba(255, 255, 255, 1);
}

.back {
    /*margin-left:200px;*/
}

button {
    background-color: rgba(255, 255, 255, 1);
    color:#6699FF;
    border-color: #6699FF;
    border-radius: 5px;    
    font-size: 13px;
    font-weight: bold;
    width: 95%;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius:30px;
    cursor: pointer;
    margin:15px;
}

button:hover {
    background-color: 	#6699FF;
    color: #fff;
}
.btnlist{
    margin:0;
}

/*チェックボックス*/
 input[type=checkbox] {
	width:			18px;
	height:			18px;
	-moz-transform:		scale(1.4);
	-webkit-transform:	scale(1.4);
	transform:		scale(1.4);
    margin:5px;
}

input[type="file"] {
    visibility:hidden;
}

/*TABLE*/
table{
    border-collapse:  collapse; 
}
th,td
{
    border: solid 1px;  /* 枠線指定 */
    padding: 10px 15px 10px 15px;      /* 余白指定 */
}
th{
    background-color: #78a5fd;
    border-color: #000;
    color:#fff;

}
td{
    background-color: #fff;
    color:#000;
    border-color: #000;
}

/* エラーメッセージ */
.validation {
    font-weight: bold;
    color: #FA5C65;
    margin: 0.3rem;
    padding-left:20px;
}

.overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
.flash_message{
    /*margin:20px;
    font-weight:bold;
    font-size:20px;
    color:#535353;
    */

/*    position: absolute;
    position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 20px 40px;
      border-radius: 10px;
      font-size: 1.2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index:9;
      display: flex;
      justify-content: center;
      align-items: center;
*/
       background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
      font-size: 1.2em;
      
}

.form-input.error {
    border:2px solid #ff0000;
    background-color:#eee;
  }
  
.validation-area{
   background: url('../image/warning.png') no-repeat left/cover;
   background-size: 50px;
   display: inline-block;
    margin-right: 10px;
    vertical-align: top;
    background-color: #fce3e3;
    border-radius: 8px;
    background-color: #fce3e3;
    border: 2px solid #ba2020;
    border-left-width: 8px;
    color: #ba2020;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 15px;
    text-indent: -30px;
}