/** コンテナサイズの変更 */
@media (min-width: 1200px) {
    .container-md {
    max-width: 1200px;
    }
}
/** 文字サイズ対応 */
/** 大デバイス（デスクトップ, 1200px 未満） */
@media (min-width: 992px) {
    html {
       font-size: 14px;
    }
    body {
       padding-top: 55px;
    }
    .passowrd_card {
        width: 500px;
    }
}
/** 中デバイス（タブレット, 992px 未満） */
@media (max-width: 991.98px) {
    html {
        font-size: 14px;
    }
    body {
        padding-top: 55px;
    }
    .password_card {
        width: 500px;
    }
}
/** 小デバイス（横向きモバイル, 768px 未満） */
@media (max-width: 767.98px) {
    html {
       font-size: 16px;
    }
    body {
       padding-top: 61px;
    }
    .password_card {
        width: 100%;
    }
}
/** 極小デバイス（縦向きモバイル, 576px 未満） */
@media (max-width: 575.98px) {
    html {
       font-size: 16px;
    }
    body {
       padding-top: 61px;
    }
    .passowrd_card {
        width: 100%;
    }
}


#global_nav {
    border-top-style: solid;
    border-top-color: #E60027;
    border-top-width: 5px;
    background-color: #F2F2F2;
}

#group_logo {
    height: 25px;
    margin-right: 10px;
}

.card_header_dec {
    border-left-style: solid;
    border-left-color: #E60027;
    border-left-width: 20px;
}

footer {
    background-color: #F2F2F2;
    color: #333;
}

.password_form {
    width: 23.0em;
    margin: 0 auto;
}

input[type="radio"],input[type="checkbox"]{
  position: relative;
  top: 2px;
}

/** placeholderの文字色修正 */
input::-webkit-input-placeholder { /* WebKit browsers */
  color: #ccc!important;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #ccc!important;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #ccc!important;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #ccc!important;
}
textarea::-webkit-input-placeholder { /* WebKit browsers */
  color: #ccc!important;
}
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #ccc!important;
}
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #ccc!important;
}
textarea:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #ccc!important;
}
select[class*="is-invalid"]{
   background-position: right calc(1em + .1875rem) center !important;
}
