@charset "UTF-8";

.header_inner {
  padding-right: 30px;
  height: 75px;
}

.header_nav {
  padding-right: 25px;
}
.header_apply_btn_wrap {
  position: relative;
  display: flex;
  gap: 8px;
}
.header_apply_btn {
  position: relative;
  right: 0;
  width: 135px;
  height: 135px;
  font-size: 1.6rem;
  top: 23px;
}
.header.is_fixed .header_apply_btn {
  position: relative;
}
.bg_l-green {
  background-color: #b9e254;
}
.header.is_fixed .header_apply_btn::after {
  width: 16px;
  height: 16px;
  background-size: 9px;
}
.header_apply_btn.bg_l-green:hover {
  background-color: #d5ee98;
}
.fixed_btn {
  width: auto;
  flex: 1;
  line-height: 1.3;
  height: 46px;
  border-radius: 25px;
}

@media screen and (max-width:767px) {
  .header_inner {
    height: 60px;
  }
  .fixed_btn_wrap {
    padding-inline: 3%;
    gap: 5px;
  }
  .fixed_btn_wrap .fixed_btn {
    border-width: 2px;
    font-size: min(1.5rem, 3.8vw);
    
  }
  .fixed_btn_wrap .fixed_btn::after {
    width: 15px;
    height: 15px;
    background-size: 8px;
  }
}