@charset "UTF-8";
/*	header
------------------------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  background: #f4f7fa;
  position: fixed;
  z-index: 10;
  width: calc(100% - 270px);
}

header.header.print {
    display: none;
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    display: block;
    padding: 0;
  }
}

.header_ttl {
  font-size: 1.4rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .header_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    background: #fff;
    padding: 8px 16px;
  }
}

.header_ttl .sp_menu_icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .header_ttl .sp_menu_icon {
    display: inline-block;
    cursor: pointer;
  }
}

.header_box {
  text-align: right;
  position: relative;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .header_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 16px;
    text-align: left;
  }
}

.header_txt {
  display: inline-block;
  font-size: 1.4rem;
  vertical-align: middle;
  margin-right: 20px;
}

@media screen and (max-width: 1023px) {
  .header_txt {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header_txt {
    font-size: 1.4rem;
  }
}

.header_user {
  font-weight: 700;
}

.header_acount {
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  border-radius: 26px;
  padding: 5px 17px 6px 10px;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .header_acount {
    padding: 4px 6px 6px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header_acount::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/ic_user.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .header_acount::before {
    width: 18px;
    height: 18px;
    background-size: contain;
    margin-right: 5px;
  }
}

.header_acount::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 12px;
  background: url(../img/arrow_gy_s.svg) no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .header_acount::after {
    margin-right: 6px;
  }
}

.header_acount_num {
  display: inline-block;
  padding-right: 10px;
  line-height: 1.3;
  font-size: 1.2rem;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .header_acount_num {
    font-size: 1.2rem;
  }
}

.header_acount_menu {
  display: none;
  position: absolute;
  background: #fff;
  text-align: left;
  padding: 15px;
  top: 105%;
  right: 0;
  -webkit-box-shadow: #00000016 0px 3px 6px;
          box-shadow: #00000016 0px 3px 6px;
}

@media screen and (max-width: 768px) {
  .header_acount_menu {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .header_acount_menu_inr {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .header_acount_menu_list {
    background: #fff;
    padding: 10%;
    width: 90%;
    border-radius: 5px;
  }
}

.header_acount_menu_item {
  display: block;
  color: #777777;
  padding-bottom: 2rem;
}

.header_acount_menu_login {
  background: #f4f7fa;
  color: #777777;
  padding: 2px 10px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .header_acount_menu_login {
    font-size: 1rem;
    padding: 10px;
  }
}

/*	header_login
------------------------------*/
.header_login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 30px;
  background: #fff;
  width:100%;
}

.header_login_ttl {
    font-size: 2.5rem;
    font-weight: 700;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    letter-spacing: 0;
    color: #2390ed;
}

@media screen and (max-width: 768px) {
  .header_login {
    display: none;
  }
}

.header_company_name.hidden_text {
  visibility: hidden;
}
.header_user.hidden_text {
  visibility: hidden;
}
.admin_config_company.hidden_text {
  visibility: hidden;
}

/*	header 管理者
------------------------------*/

.header.admin {
  background: #2390ed;
  color: #fff;
}

.header.admin .header_acount_num {
  color: #3c3c3c;
}

.header_admin_ttl {
  padding: 0 0 0 4px;
}

@media screen and (max-width: 1023px) {
  .header_admin_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  }
}

.change_icon img{
  width: 18px;
  height: 18px;
  margin: 2px 0 0 5px;
}

.admin_config_company {
  padding: 0 0 0 5px;
  font-weight: 300;
}

.sp_icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .admin_config_company{
    display: flex;
    justify-content: flex-end;
    align-content: center;
    padding-right: 16px;
    padding-top: 10px;
  }
  .header_admin_ttl {
    display: none;
  }
  .sp_admin_ttl {
    color:#3c3c3c;
  }
  .pc_icon {
    display: none;
  }
  .sp_icon {
    display: inline-block;
  }
  .change_icon img{
    width: 20px;
    height: 20px;
  }
}
