@media screen and (max-width: 780px) {

  .header {
    background: #fff;
  }

  .header_line {
    background-color: #3287D3CC;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 5px 0;
  }

  .containar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 15px;
  }

  .containar .ham {
    float: right;
    margin: 0;
  }

  .header_logo {
    margin: 0;
    /* margin-left: 28px; */
    text-align: left;
    width: auto;
    float: none;
  }

  .header .containar .header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    margin-right: 20px;
    flex-wrap: nowrap;
  }

  .header .containar .header_right .mypage {
    background-color: #FFA05A;
    padding: 4px 21px;
    border-radius: 16px;
    margin-top: 0;
    margin-right: 11px;
  }

  .header .containar .header_right .oem {
    background-color: #5BAA77;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 0;
    margin-right: 0;
  }

  .header .containar .header_right .mypage a {
    text-decoration: none;
    color: black;
    font-size: 12px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }

  .header .containar .header_right .oem a {
    color: #fff;
  }

  .header .containar .header_right .right {
    float: none;
  }

  .header .containar .header_right .mypage img {
    width: 14px;
    height: auto;
  }

  .header .containar .header_right .ham {
    float: none;
    margin: 0;
  }

.header-inner{
  padding: 10px 0px;
}
  .ham {
    position: relative;
    width: 30px;
    height: 40px;
    cursor: pointer;
    background-color: #fff;
  }

  .ham_line {
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #3287D3;
  }

  .ham_line1 {
    top: 10px;
  }

  .ham_line2 {
    top: 18px;
  }

  .ham_line3 {
    top: 26px;
  }

  .ham_line {
    transition: all 0.3s;
  }

  .clicked .ham_line1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .clicked .ham_line2 {
    width: 0px;
  }

  .clicked .ham_line3 {
    transform: rotate(-45deg);
    top: 20px;
  }

  .menu {
    width: 300px;
    height: 300px;
    background-color: #fff;
  }

  .menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: -600px;
    background-color: #fff;
    transition: all 0.3s;
  }

  .clicked .menu {
    left: 0px;
  }


  .menu ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0 10px;
  }

  .menu .menu-list {
    margin: 12px auto 0;
    padding-left: 28px;
    padding-right: 20px;
  }

  .menu .menu-item,
  .menu .menu-section {
    border-bottom: solid 1px #E3EEF8;
    padding: 12px 6px;
  }

  .menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu .menu-item-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #1F5EA8;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding: 0;
    gap: 10px;
  }

  .menu .menu-item-link span:first-child {
    padding-left: 22px;
    position: relative;
  }

  .menu .menu-item-link span:first-child::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #7FA6D8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu .menu-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 12px;
    margin-right: 8px;
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .menu .menu-arrow::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #7FA6D8;
  }

  .menu .menu-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0 6px;
    margin: 0 -6px;
  }

  .menu .menu-section-head.menu-section-clickable {
    user-select: none;
    -webkit-user-select: none;
  }

  .menu .menu-section-label,
  .menu .menu-section-link {
    text-decoration: none;
    color: #1F5EA8;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-left: 22px;
    flex: 1;
  }

  .menu .menu-section-label::before,
  .menu .menu-section-link::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #7FA6D8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    padding: 6px 10px;
    color: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
  }

  .menu .menu-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #7FA6D8;
    transition: transform 0.25s ease;
    transform-origin: 50% 35%;
  }

  .menu .menu-section.open .menu-toggle::after {
    transform: rotate(-180deg);
  }

  .menu .submenu {
    display: none;
    padding: 10px 0 0 22px;
  }

  .menu .menu-section.open .submenu {
    display: block;
  }

  .menu .submenu li {
    padding: 6px 0;
  }

  .menu .submenu a {
    text-decoration: none;
    color: #1F5EA8;
    font-size: 14px;
  }
.dli-user {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
}

.dli-user::before, .dli-user::after {
  content: '';
  display: block;
  margin: 0 auto;
  border: 0.1em solid currentColor;
  box-sizing: border-box;
}

.dli-user::before {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  margin-bottom: 0.05em;
}

.dli-user::after {
  width: 1em;
  height: 0.4em;
  border-bottom: 0;
  border-radius: 50% / 100% 100% 0 0;
}
}
