body {
    width: auto;
    color:#4a4a4a;
    font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'Osaka', 'MS PGothic', arial, helvetica, sans-serif;
    height: 100%;
}
/*
---------- template grid ----------
*/

#grid-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-rows: 60px minmax(calc(100vh - 120px), 1fr) 60px;

    display: -ms-grid;
    -ms-grid-columns: 260px 1fr;
    -ms-grid-rows: 60px minmax(calc(100vh - 120px), 1fr) 60px;
}

#header {
    grid-column: 1 / 3;
    grid-row: 1 / 2;

    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-column-span: 2;
}

#main {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding-left: 5%;
    padding-right: 5%;

    -ms-grid-column: 2;
    -ms-grid-row: 2;
}

#side {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: #fff;

    -ms-grid-column: 1;
    -ms-grid-row: 2;
}

#footer {
    grid-column: 1 / 3;
    grid-row: 3 / 4;

    -ms-grid-column: 1;
    -ms-grid-row: 3;
    -ms-grid-column-span: 2;
}

#gnavi {
    padding-right: 2.6%;
}

/*
---------- Font ----------
 */

.font-over {
    font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'Osaka', 'MS PGothic', arial, helvetica, sans-serif;
}

.bold {
    font-weight: bold;
}

.font-green {
    color: forestgreen;
}

.font-red {
    color: crimson;
}

/*
---------- Common -----------
 */
 hr {
    margin-left: 10px;
    margin-right: 10px;
    border-top: 2px solid #eee;
}

 .container {
    height: auto;
    position: absolute;
    top:150px;
    left:0;
    right:0;
    margin:auto;
  }

.wrapper {
    min-height: calc(100vh - 80px);
 }

.bg-white {
    background-color: #fff;
    position: relative;
    height: -webkit-fill-available;
}

.form-label {
    margin-top: 1.5rem;
}

.margin_left10 {
    margin-left: 10px;
}

.padding-lavel {
    padding: 10px;
}

.article_title {
    margin-left: 10px;
    color: #3097D1;
}

.page-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 24px;
    font-weight: bold;
}

.flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#detail_button  {
    width: 10%;
  }

  .error-wrap {
    width: 80%;
    margin: auto;
  }

.text-alert {
    color: red;
    font-size: 12px;
}

.card {
    background-color: #fff;
    border-radius: 4px;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 4px 4px rgba(220, 220, 220, 0.5);
    margin-bottom: 5rem;
}

.card-lg {
    background-color: #fff;
    border-radius: 4px;
    min-width: 400px;
    box-shadow: 0 4px 4px rgba(220, 220, 220, 0.5);
    margin-bottom: 5rem;
}

.card-header {
    height: auto;
    border-bottom: solid #3E9DF3 2px;
}

.card-title{
    font-size: 18px;
    padding: 18px 0 12px 24px;
    margin: 0;
}

.card-content input {
    margin-bottom: 12px;
}

.card-content{
    padding: 12px 24px 18px 26px;
}

/*
---------- Label ----------
*/
.labeling {
    display: inline-block;
    border-radius: 5px;
    padding: 5px;
}

.label-green {
    background-color: forestgreen;
    color: white;
}

.label-red {
    background-color: #f87161;
    color: white;
}

.label-orange {
    background-color: rgb(223, 145, 0);
    color: white;
}

.label-gray {
    background-color: rgb(122, 122, 122);
    color: white;
}


/*
---------- Button ----------
*/

@media screen and (max-width:768px) {
    .btn-primary {
        margin-top: -280px;
        background-color: #3e9df3;
        border-color: #688ec9;
    }
}

.btn-primary {
    background-color: #3e9df3;
    border-color: #688ec9;
}
.btn-danger {
    background-color: #f87161;
    border-color: #f87161;
}

.btn-inquiry {
        height: 100%;
        width: 200px;
        background-color: #fff;
        border-color: #3097D1;
        color: #3097D1;
        margin-right: 10px;
}
.btn_full {
  height: 70px;
  width: 300px;
}
.btn-info-blue {
    background-color: #3e9df3;
}
.btn-color-skyblue {
    background-color: #8eb4cb;
}
.btn-info:disabled {
    background-color: #9b9b9b;
}

.btn-hidden {
    border: solid 1px #fff;
    background-color: #fff;
}


/*
---------- Table -----------
*/
.table{
    table-layout: fixed;
    word-wrap: break-word;
    width: 100%;
}

thead{
    background-color: #E7F0FB;
}

.table>tbody>tr:hover {
    background-color: #eee;
}

.table_short {
    width: 50%;
}

.table_head {
    width: 15%;
}

.table_head_num {
    width: 20px;
}

.table_head_long {
    width: 35%;
}

.table_head_short {
    width: 8%;
}

.table_article {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border-spacing: 0;
  padding: 8px;
  line-height: 1.6;
  vertical-align: top;
  border-top: none;
}
.table_title {
    width: 150px;
    height: 60px;
    background-color: #fff;
    border-top: 0px;
}

/*
---------- Header -----------
*/
.logo {
    width: 200px;
    padding: 20px;
}

.header-bar {
    display: flex;
    justify-content: space-between;
}

.select{
    outline:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    height: 22px;
    border:1px solid #ddd;
    color:#4a4a4a;
    padding-left: 4px;
    width:100%;
    border-radius:3px;
}
.select option{
  background-color: #fff;
  color: #4a4a4a;
}
.select::-ms-expand {
  display: none;
}
.select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

.logo_min {
    margin: 15px 0 0 20px;
    width: 100px;
}

/*
---------- Side Bar ----------
*/
.side_bar_input_hidden {
    display: none;
}

.nav-user {
    height: 72px;
    padding: 14px 24px 14px 25px;
    background-color: #3E9DF3;
    display: flex;
    justify-content: left;
}

.user-icon {
    box-sizing: content-box;
}

.user-info-wrapper {
    padding-right: 5%;
    display: flex;
}

.user-info {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.user-arrow {
    box-sizing: content-box;
    bottom: 0;
    cursor: pointer;
}

.nav-label {
    padding-left: 25px;
    margin-bottom: 0;
    height: 54px;
    line-height: 54px;
    cursor: pointer;
    display: block;
}

.nav-label:hover, .accordion-inside>li>a:hover {
    background-color: #eee;
}

.nav-arrow {
    margin-right: 10px;
    transform: rotate(-90deg);
    transition: transform ease 0.4s;
}

.nav-circle {
    margin-right: 16px;
}

.accordion-inside {
    list-style: none;
    padding: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.accordion-inside>li{
    padding: 0;
    height: 0;
    margin: 0;
    list-style: none;
    transition: all 0.5s;
    background-color: #fff;
}

.nav-item {
    color: #4a4a4a;
    padding-left: 25px;
    line-height: 54px;
    height: 54px;
    text-decoration: none;
    font-weight: bold;
}

.nav-item:hover {
    color: #4a4a4a
}

.accordion-inside>li>a{
    text-decoration: none;
    display: block;
    line-height: 54px;
    padding: 0 0 0 54px;
    box-sizing: border-box;
}

.nav-check:checked ~ .accordion-inside>li {
    display: block;
    height: 54px;
    box-sizing: border-box;
}

.nav-check:checked + .nav-label>.nav-arrow{
    transform: rotate(0deg);
}

.nav-pills>li>a:active,
.nav-pills>li>a:hover {
    background-color: #fff;
}

.navbar-bordernone {
    border: none;
}

.nav>li>a {
    cursor: pointer;
}

/*
---------- Footer -----------
*/
.footer {
    position: absolute;
    height: 40px;
    width: 100%;
    padding-top: 10px;
    background-color: #3097D1;
    color: #fff;
    text-align: center;
    bottom: 0;
}

.lower {
    display: flex;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .lower {
        display: block;
        justify-content: center;
    }
}
.lower li {
    list-style-type: none;
}

.lower a {
    margin: 10px;
    display: block;
    padding: 15px;
    text-decoration: underline;
}
.lower_service_img {
    width: 200px;
    padding-bottom: 20px;
}

.lower_privacy_img {
    margin: 0 0 0 20px;
    height: 120px;
}

.lower2 {
    text-align: center;
    height: 60px;
    /* background: #688ec9;*/
    background: #3e9df3;
    color: #fff;
}

.lower2 p {
    padding: 20px 0 0 0;
}

.footer_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
}

.footer_link {
    height: 60px;
    margin-top: 20px;
  /*bottom: -50px;*/
  /* position: absolute;/*下に固定*/
  width: 100%;
}

.login_page_footer_link {
  bottom: 0;
  width: 100%;
  position:fixed;
  margin-top: 180px;
}
@media screen and (max-height: 820px) {
    .login_page_footer_link {
      width: 100%;
      position: relative;
    }
}

/*
---------- Login ----------
*/

.container_login {
    height: auto;
    margin:auto;
    top:60px;
    position: relative;
}

.login_main {
    margin-top: 70px;
}

/*
---------- ISAO Menu ----------
*/

.isao_item {
    display: block;
    text-align: center;
    padding: 20px;
    background-color: white;
    margin-right: 4rem;
    box-sizing: border-box;
    border-radius: 5%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: black;
}

.isao_item:hover{
    transform: scale(1.05, 1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: black;
    text-decoration: none;
}

/*
---------- User Log ----------
*/
.card_log {
  background-color: #fff;
  border-radius: 4px;
  width: 443px;
  box-shadow: 0 4px 4px rgba(220, 220, 220, 0.5);
  margin-bottom: 5rem;
}
.card-content_log input {
    margin-bottom: 30px;
}
.card-content_log img {
    cursor: pointer;
    margin-left: 7px;
    margin-right: 20px;
    vertical-align: middle;
    width:24px;
}
.card-content_log{
    padding: 23px 24px 25px 26px;
}

.log-date{
  width: 103px;
  display: inline;
}
.log-time{
  width: 62px;
  display: inline;
}
.log-user_id{
  width: 330px;
  display: inline;
  margin-left: 30px;
}
.form-control[readonly]{
    background-color: white;
    opacity: 1;
}
.tilde {
  margin-right: 7px;
}

.btn-block_log {
    display: block;
    width: 100px;
}
.btn-lg_log {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1.3333333;
    border-radius: 6px;
}
