.text_red {
  color: #F13E3E;
}
.text_blue {
  color: #3478FE;
}
.text_orange {
  color: #F13E3E;
}
.text_green {
  color: #5FA91E;
}
.text_flow {
  display: flex;
  align-items: #002C5F;
}

.button_menu {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: transparent url("../../images/header/icon_menu.svg") padding-box no-repeat;
  background-size: auto;
}
.button_back {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: transparent url("../../images/header/icon_back.svg") padding-box no-repeat;
  background-size: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid #CCD0D3;
  padding: 15px 16px 14px;
  box-sizing: border-box;
}
.header_wrap {
  display: flex;
}

.menu_list {
  display: flex;
  position: absolute;
  z-index: 1000;
  top: 50px;
  width: 100%;
  height: -webkit-fill-available;
  background: #fff;
}
.menu_list_source {
  font-family: "Kia Signature Bold";
  font-size: 20px;
}
.menu_list_title {
  background-color: #EFF0F1 !important;
  justify-content: center;
  padding-left: 10px;
}
.menu_list_title span {
  color: #05141F;
}
.menu_list_row {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 40px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  overflow: hidden;
}
.menu_list_row_child {
  width: 100%;
  background-color: transparent;
}
.menu_list_row_child span {
  color: #fff;
}
.menu_list_row_child:hover span {
  color: #05141F;
}
.menu_list_row > button {
  border-bottom: 1px solid #CCD0D3;
}
.menu_list_open {
  height: -moz-fit-content;
  height: fit-content;
  left: 0px;
}
.menu_list_open .menu_list_menu {
  padding: 0px 20px;
}
.menu_list button:hover {
  background-color: #EFF0F1;
}
.menu_list_color_gray {
  background-color: #F5F6F7;
}
.menu_list_menu {
  padding: 0px 10px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.menu_list .hasMenu {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}