@charset "UTF-8";
/* 공통 - common css */
.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  min-height: 100vh;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: content-box;
}

main {
  min-width: 0;
}

@media only screen and (min-width: 1024px) {
  .inner {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1460px) {
  .inner {
    padding: 0;
  }
}
/* Header */
.wrapper.wrap_sub header {
  background: #fff;
}

.wrapper.wrap_sub .m_head {
  border-bottom: 2px solid #d5d5d5;
}

header {
  position: relative;
  z-index: 1000;
  min-width: 0;
}

.m_head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
}

.m_head h1 {
  flex: 1;
  min-width: 0;
}

.m_head .link_logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  max-width: 260px;
}

.m_head .link_logo img:nth-child(1) {
  width: 65%;
}

.m_head .link_logo img:nth-child(2) {
  width: calc(35% - 5px);
}

.m_head .link_learn {
  flex: none;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border-radius: 15px;
  background: #f3f3f3;
}

.m_head .link_learn img {
  width: 50px;
}

.m_head .link_learn i {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.2);
}

.m_head .link_menu_m {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  background: #004170;
}

/* M 매뉴 */
.m_menu {
  --head-menu-height: 88px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.m_menu .head_menu {
  flex: none;
  padding: 15px 15px 0;
  background: #01a571;
}

.m_menu .head_menu a {
  display: inline-block;
  vertical-align: top;
}

.m_menu .head_menu img {
  width: 171px;
}

.m_menu .info_etc {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 36px;
  padding: 15px 0 10px;
}

.m_menu .info_etc a {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
}

.m_menu .info_etc a + a {
  position: relative;
}

.m_menu .info_etc a + a:before {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 1px;
  height: 14px;
  background: #fff;
  opacity: 0.5;
  transform: translateY(-50%);
  content: "";
}

.m_menu .btn_close {
  position: absolute;
  top: 6px;
  right: 0;
  width: 47px;
  height: 47px;
  font-size: 28px;
  color: #fff;
}

.m_menu .btn_close i {
  display: block;
}

.link_menu_m[aria-expanded=true] + .m_menu {
  opacity: 1;
  visibility: visible;
}

.link_menu_m[aria-expanded=true] + .m_menu .area_menu_m {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.m_menu .area_menu_m {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  max-width: 400px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.3s;
}

.m_menu nav {
  flex: 1;
  min-height: 0;
  padding: 30px 30px 0;
  background: #fff;
}

.m_gnb {
  overflow: auto;
  max-height: 100%;
  padding-bottom: 30px;
  word-break: keep-all;
  word-wrap: break-word;
}

.m_gnb .link_depth1 {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  padding: 22px 20px 21px;
  border-top: 1px solid #e3e3e3;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #222;
  box-sizing: content-box;
}

.m_gnb .link_depth1[aria-expanded=true] {
  border-color: transparent;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  background: #01a571;
}

.m_gnb li:last-child .link_depth1 {
  border-bottom: 1px solid #e3e3e3;
}

.m_gnb .link_depth1[aria-expanded=true]:after {
  transform: rotate(180deg);
}

.m_gnb .link_depth1:after {
  margin-left: auto;
  font-size: 17px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  content: "\f107";
}

.m_gnb_depth2 {
  display: none;
}

.m_gnb_depth2 {
  margin: 5px 0 15px;
  padding: 16px 25px;
  border-radius: 8px;
  background: #e9f6f2;
}

.m_gnb_depth2 > li + li {
  margin-top: 5px;
}

.m_gnb_depth2 .link_depth2 {
  display: block;
  padding: 6px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #333;
}

.m_gnb_depth2 .link_depth2.active {
  font-weight: 700;
  color: #01a571;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.m_gnb_depth2 .link_depth2[target=_blank]:after {
  margin-left: 4px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  content: "\f08e";
}

.m_gnb_depth3 {
  padding: 3px 0 4px 5px;
}

.m_gnb_depth3 .link_depth3 {
  display: block;
  position: relative;
  padding: 4px 0 4px 7px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #777;
}

.m_gnb_depth3 .link_depth3.active {
  font-weight: 700;
  color: #3d3d3d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.m_gnb_depth3 .link_depth3:before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.m_gnb_depth3 .link_depth3[target=_blank]:after {
  margin-left: 4px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  content: "\f08e";
}

/* PC 메뉴 */
.pc_head {
  display: none;
  position: relative;
  z-index: 0;
}

.pc_head:before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  content: "";
}

.pc_head.on:before {
  opacity: 1;
  visibility: visible;
}

.pc_head.on .gnb_box {
  background: #fff;
}

.pc_head .etc_box {
  display: flex;
  padding: 6px 30px;
  background: #004170;
}

.pc_head .etc_box nav {
  --gap: 26px;
  display: flex;
  gap: var(--gap);
  align-items: center;
  margin-left: auto;
}

.pc_head .etc_box nav a {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.pc_head .etc_box nav a span {
  position: relative;
}

.pc_head .etc_box nav a i.fa-arrow-up-right-from-square {
  opacity: 0.2;
  transition: opacity 0.3s;
}

.pc_head .etc_box nav a + a {
  position: relative;
}

.pc_head .etc_box nav a + a:before {
  position: absolute;
  top: 50%;
  left: calc(var(--gap) / -2);
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
  content: "";
}

.pc_head .gnb_box {
  display: flex;
  align-items: center;
  padding: 0 30px;
  transition: all 0.2s;
}

.pc_head .gnb_box h1 {
  margin-right: auto;
}

.pc_head .gnb_box .link_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 310px;
  transition: all 0.3s;
}

.pc_head .gnb_box .link_logo img:nth-child(1) {
  width: 65%;
}

.pc_head .gnb_box .link_logo img:nth-child(2) {
  width: calc(35% - 10px);
  max-width: 120px;
}

.pc_head .gnb_box .link_learn {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 43px;
  margin-left: auto;
  margin-right: 4px;
  padding: 0 17px 0 21px;
  border-radius: 22px;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.2);
  background: #f3f3f3;
  transition: all 0.3s;
}

.pc_head .gnb_box .link_learn img {
  width: 77px;
}

.pc_head .gnb_box .link_menu_pc {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  margin-right: -16px;
  font-size: 26px;
  color: #000;
  transition: all 0.3s;
}

.pc_gnb {
  display: flex;
  word-break: keep-all;
  word-wrap: break-word;
}

.pc_gnb .link_depth1 {
  display: block;
  padding: 42px 33px;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #222;
  transition: all 0.3s;
}

.pc_gnb > li.on .pc_gnb_depth2 {
  opacity: 1;
  visibility: visible;
}

.pc_gnb > li.on .link_depth1, .pc_gnb .link_depth1.active {
  font-weight: 700;
  color: #008249;
}

.pc_gnb > li {
  position: relative;
}

.pc_gnb_depth2 {
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 10;
  width: 236px;
  margin: -2px 0 0 -118px;
  border-radius: 0 0 20px 20px;
  border-top: 3px solid #008249;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.pc_gnb_depth2 > li + li {
  border-top: 1px dashed rgba(0, 130, 73, 0.3);
}

.pc_gnb_depth2 .link_depth2 {
  --depth2-side-gap: 20px;
  display: block;
  position: relative;
  padding: 21px calc(34px + var(--depth2-side-gap)) 20px var(--depth2-side-gap);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #525252;
}

.pc_gnb_depth2 .link_depth2:before {
  position: absolute;
  top: 50%;
  right: var(--depth2-side-gap);
  font-family: "Font Awesome 6 Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  font-size: 17px;
  color: #008249;
  opacity: 0.3;
  transform: translateY(-50%);
  content: "\f0a9";
}

.pc_gnb_depth2 .link_depth2:hover, .pc_gnb_depth2 .link_depth2:focus {
  color: #008249;
  background: #e3f6ee;
}

.pc_gnb_depth2 .link_depth2:hover:before, .pc_gnb_depth2 .link_depth2:focus:before {
  opacity: 1;
}

.pc_gnb_depth2 .link_depth2[target=_blank]:before {
  content: "\f08e";
}

/* Footer */
footer {
  position: relative;
  z-index: 900;
  min-width: 0;
  margin-top: auto;
  padding: 24px 0 40px;
  background: #004170;
}

footer .info_etc {
  display: flex;
  gap: 0 62px;
  flex-wrap: wrap;
  padding-bottom: 6px;
}

footer .info_etc a {
  position: relative;
  padding: 10px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.7);
}

footer .info_etc .txt_emph {
  font-weight: 700;
  color: #fff;
}

footer .info_etc a + a:before {
  position: absolute;
  top: 50%;
  left: -31px;
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
  content: "";
}

footer .info_site {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .link_logo_footer {
  display: block;
  width: 171px;
  margin-top: 15px;
}

footer .link_logo_footer img {
  width: 100%;
}

footer address {
  display: flex;
  gap: 3px 30px;
  flex-wrap: wrap;
  margin-top: 11px;
  font-size: 0;
  line-height: 0;
}

footer address .txt_etc {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.7);
}

footer address .txt_etc span {
  margin-right: 10px;
}

footer address .txt_etc span ~ span {
  margin-left: 17px;
}

footer .group_relate {
  --radius: 5px;
  display: inline-flex;
  position: relative;
  margin-top: 20px;
}

footer .group_relate .link_relate {
  display: inline-flex;
  gap: 7px;
  justify-content: space-between;
  align-items: center;
  width: 250px;
  height: 38px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 16px;
  line-height: 38px;
  color: #fff;
  background: #002c4d;
}

footer .group_relate .link_relate[aria-expanded=true] {
  border-radius: 0 0 var(--radius) var(--radius);
}

footer .group_relate .link_relate[aria-expanded=true] + ul {
  display: block;
}

footer .group_relate .link_relate[aria-expanded=true] i {
  transform: rotate(180deg);
}

footer .group_relate ul {
  display: none;
  overflow: auto;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  max-height: 162px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #004e8a;
}

footer .group_relate ul::-webkit-scrollbar {
  width: 6px;
} /* 스크롤 바 전체 너비 */
footer .group_relate ul::-webkit-scrollbar-track {
  background-color: #003660;
  border-radius: 3px;
} /* 전체 게이지 */
footer .group_relate ul::-webkit-scrollbar-thumb {
  background-color: #0564ad;
  border-radius: 3px;
} /* 현재 게이지 */
footer .group_relate ul li + li {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

footer .group_relate ul a {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  opacity: 0.8;
}

footer .area_ask {
  --radius: 8px;
  padding-top: 20px;
}

footer .area_ask strong {
  display: block;
  height: 50px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  background: #467597;
  text-align: center;
}

footer .list_ask {
  padding: 20px 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #265d85;
}

footer .list_ask li {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .list_ask li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
}

footer .list_ask li a span {
  margin-right: 10px;
}

footer .btn_top {
  --btn-size-gap: 14px;
  --btn-size: 44px;
  --btn-right-pos: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: var(--btn-right-pos);
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  border-radius: 50%;
  border: 0;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  background: none;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

footer .btn_top i {
  position: relative;
  font-size: 14px;
  z-index: 10;
}

footer .btn_top:before, footer .btn_top:after {
  position: absolute;
  border-radius: 50%;
  background: #01a571;
  content: "";
}

footer .btn_top:before {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

footer .btn_top:hover:before {
  animation: topBtnAni 1.5s infinite;
}

footer .btn_top:after {
  width: calc(100% - var(--btn-size-gap));
  height: calc(100% - var(--btn-size-gap));
  box-sizing: content-box;
}

footer .btn_top span {
  display: block;
}

footer .btn_top.on {
  opacity: 1;
  visibility: visible;
}

footer .btn_top.btn_fix {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
footer .wrap_img{padding-top: 20px}
footer .wrap_img a{display: block}

@media only screen and (min-width: 768px) {
  footer .inner {
    position: relative;
  }
  footer .group_relate {
    position: absolute;
    top: 2px;
    right: 15px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  header .m_head {
    gap: 20px;
    padding: 20px 30px;
  }
  header .m_head .link_logo {
    width: 212px;
  }
  header .m_head .link_menu_m {
    width: 43px;
    height: 43px;
    font-size: 17px;
  }
  header .m_head .link_learn {
    gap: 15px;
    height: 42px;
    padding: 0 20px;
    border-radius: 21px;
  }
  header .m_head .link_learn img {
    width: 77px;
  }
  header .m_head .link_learn i {
    font-size: 17px;
  }
  footer {
    padding: 35px 0 70px;
  }
  footer .info_etc {
    gap: 84px;
    padding-bottom: 10px;
  }
  footer .info_etc a + a:before {
    left: -42px;
  }
  footer .info_site {
    display: flex;
    gap: 58px;
    padding-top: 26px;
  }
  footer .link_logo_footer {
    flex: none;
    width: 212px;
    margin-top: 0;
  }
  footer address {
    gap: 3px 12px;
    margin-top: 6px;
  }
  footer address .txt_etc:first-child {
    width: 100%;
  }
  footer address .txt_etc span {
    margin-right: 4px;
  }
  footer .group_relate {
    --radius: 19px;
    right: 30px;
  }
  footer .group_relate .link_relate {
    padding: 0 20px;
    border-radius: var(--radius);
  }
  footer .group_relate .link_relate[aria-expanded=true] {
    border-radius: var(--radius);
  }
  footer .group_relate ul {
    bottom: calc(100% + 5px);
    max-height: 260px;
    border-radius: 10px;
  }
  footer .area_ask {
    --radius: 10px;
    display: flex;
    padding-top: 34px;
  }
  footer .area_ask strong {
    padding: 0 30px;
    border-radius: var(--radius) 0 0 var(--radius);
  }
  footer .list_ask {
    flex: 1;
    display: flex;
    gap: 15px;
    min-width: 0;
    padding: 0 15px 0 30px;
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  footer .btn_top {
    --btn-size: 60px;
    --btn-right-pos:30px;
  }
  footer .btn_top i {
    font-size: 19px;
  }
  footer .wrap_img{padding-top: 0;margin-left: auto}
}
@media only screen and (min-width: 1460px) {
  .m_head {
    display: none;
  }
  .pc_head {
    display: block;
  }
  .pc_head .etc_box nav a span:before {
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: all 0.3s;
    content: "";
  }
  .pc_head .etc_box nav a:hover span:before, .pc_head .etc_box nav a:focus span:before {
    width: 100%;
  }
  .pc_head .etc_box nav a:hover i.fa-arrow-up-right-from-square, .pc_head .etc_box nav a:focus i.fa-arrow-up-right-from-square {
    opacity: 0.6;
  }
  .pc_head .gnb_box .link_learn:hover, .pc_head .gnb_box .link_learn:focus {
    background: #ebebeb;
  }
  .pc_head .gnb_box .link_menu_pc:hover, .pc_head .gnb_box .link_menu_pc:focus {
    opacity: 0.6;
  }
  footer .group_relate {
    right: 0;
  }
  footer .info_etc a:after {
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: all 0.3s;
    content: "";
  }
  footer .info_etc a:hover:after, footer .info_etc a:focus:after {
    width: 100%;
  }
}
@media only screen and (min-width: 1800px) {
  .pc_head .etc_box {
    padding: 6px 50px;
  }
  .pc_head .gnb_box {
    padding: 0 50px;
  }
  .pc_head .gnb_box .link_logo {
    width: 470px;
  }
  .pc_gnb .link_depth1 {
    padding: 42px 43px;
  }
  .wrapper.wrap_sub footer .area_ask {
    top: 330px;
  }
  footer .area_ask {
    --radius: 15px;
    flex-direction: column;
    position: fixed;
    top: 200px;
    right: 50px;
    width: 140px;
    padding-top: 0;
    border-radius: var(--radius);
    box-shadow: 2px 2px 12px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.1s;
  }
  footer .area_ask.inactive {
    display: none;
  }
  footer .area_ask:before {
    position: absolute;
    top: -35px;
    left: 50%;
    width: 80px;
    height: 70px;
    margin-left: -40px;
    background: url(/home/www/images/common/ico_quickmenu.png) 0 0 no-repeat;
    background-size: cover;
    content: "";
  }
  footer .area_ask strong {
    height: auto;
    padding: 40px 0 10px;
    border-radius: var(--radius) var(--radius) 0 0;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    background: #00a671;
  }
  footer .list_ask {
    gap: 0;
    flex-direction: column;
    padding: 0 10px 7px;
    border-radius: 0 0 var(--radius) var(--radius);
    background: #fff;
  }
  footer .list_ask li + li {
    border-top: 1px dashed #b8b9b9;
  }
  footer .list_ask li a {
    display: block;
    padding: 17px 0 10px;
    color: #595959;
    text-align: center;
    letter-spacing: -0.025em;
  }
  footer .list_ask li a span {
    display: block;
    width: 97px;
    margin: 0 auto 5px;
    border-radius: 8px;
    color: #333;
    background: #eee;
  }
  footer .list_ask li a:hover span {
    background: #dedede;
  }
  footer .btn_top {
    right: calc(120px - var(--btn-size) / 2);
  }
}
@keyframes topBtnAni {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
/* ----------------- global ----------------- */
.wrap_global .m_head .link_logo {
  width: 169px;
}

.wrap_global .m_menu {
  --head-menu-height: 92px;
}

.wrap_global footer .info_site {
  border-top: 0;
}

.wrap_global footer .info_etc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .wrap_global .m_head .link_logo {
    width: 224px;
  }
  .wrap_global footer .info_etc {
    display: flex;
    opacity: 0;
    visibility: hidden;
  }
  .wrap_global footer .info_site {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
/* 로그인 */
.wrap_etc_form {
  max-width: 685px;
  margin: 0 auto;
  padding: 20px 0 50px;
}

.wrap_etc_form .form_etc {
  position: relative;
  padding: 35px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
}

.wrap_etc_form .form_etc:before, .wrap_etc_form .form_etc:after {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 50px;
  height: 50px;
  border-radius: 10px 0 0 0;
  border: 1px solid #30A053;
  border-right: 0;
  border-bottom: 0;
  pointer-events: none;
  content: "";
}

.wrap_etc_form .form_etc:after {
  top: auto;
  left: auto;
  bottom: -1px;
  right: -1px;
  border-radius: 0 0 10px 0;
  border: 1px solid #30A053;
  border-top: 0;
  border-left: 0;
}

.wrap_etc_form.type_none_user .form_etc:before, .wrap_etc_form.type_none_user .form_etc:after {
  border-color: #014070;
}

.form_etc fieldset > [class*=ico_] {
  display: inline-block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #F2F8F4 50% 50% no-repeat;
  vertical-align: top;
}

.form_etc fieldset > .ico_login {
  background-image: url(/home/www/images/common/ico_login.png);
  background-size: 34px auto;
}

.form_etc fieldset > .ico_user_login {
  background-image: url(/home/www/images/common/ico_user_login.png);
  background-size: 63px auto;
}

.form_etc fieldset > .ico_user_id {
  background-image: url(/home/www/images/common/ico_user_id.png);
  background-size: 63px auto;
}

.form_etc fieldset > .ico_none_user_login {
  background-image: url(/home/www/images/common/ico_none_user_login.png);
  background-size: 34px auto;
  background-color: #F7F9FA;
}

.form_etc .tit_etc {
  display: block;
  padding-top: 15px;
  font-weight: 800;
  font-size: 26px;
  line-height: 32px;
  color: #000;
}

.form_etc .desc_etc {
  padding-top: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #575757;
  word-break: keep-all;
  word-wrap: break-word;
}

.form_etc .group_form {
  max-width: 450px;
  margin: 0 auto;
  padding-top: 20px;
}

.form_etc .group_form .inp_comm {
  border-radius: 5px;
  border-color: #ddd;
  background: #FAFAFA;
}

.form_etc .group_form .inp_comm + .inp_comm {
  margin-top: 5px;
}

.form_etc .group_form .inp_comm + .group_etc_btn {
  margin-top: 10px;
}

.form_etc .group_form .group_etc_btn {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.form_etc .group_form .btn_etc {
  flex-grow: 1;
  display: flex;
  width: 100%;
  font-weight: 700;
  color: #fff;
}

.form_etc .group_form .btn_etc + .btn {
  flex: none;
}

.form_etc .group_form .btn_none_user {
  background: #014070;
}

.form_etc .group_link {
  padding-top: 18px;
  font-size: 0;
  line-height: 0;
}

.form_etc .group_link a {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #929292;
}

.form_etc .group_link a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form_etc .group_link a + a {
  position: relative;
  padding-left: 20px;
}

.form_etc .group_link a + a:before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 1px;
  height: 10px;
  background: #D4D4D4;
  transform: translateY(-50%);
  content: "";
}

.form_etc .group_link a.link_emph {
  color: #626262;
}

.form_etc .txt_etc {
  padding-top: 20px;
  font-weight: 700;
  color: #959595;
  text-align: left;
}

.form_etc .list_search_info {
  display: grid;
  gap: 8px 18px;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.form_etc .list_search_info dt {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #585858;
  text-align: right;
}

.form_etc .list_search_info .btn {
  margin-top: 32px;
}

.form_etc .info_msg {
  display: block;
  padding: 20px;
  margin-top: 30px;
  border-radius: 5px;
  font-weight: 500;
  line-height: 1.3;
  color: #585858;
  background: #F9FAFC;
}

.form_etc .info_msg span {
  font-weight: 700;
}

@media only screen and (min-width: 1024px) {
  /* 로그인 */
  .wrap_etc_form {
    padding: 50px 0 80px;
  }
  .wrap_etc_form .form_etc {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 600px;
    padding: 50px 30px;
  }
  .wrap_etc_form .form_etc:before, .wrap_etc_form .form_etc:after {
    width: 70px;
    height: 70px;
  }
  .form_etc fieldset > [class*=ico_] {
    width: 145px;
    height: 145px;
  }
  .form_etc fieldset > .ico_login {
    background-size: 44px auto;
  }
  .form_etc fieldset > .ico_user_login, .form_etc fieldset > .ico_user_id {
    background-size: 92px auto;
  }
  .form_etc fieldset > .ico_none_user_login {
    background-size: 44px auto;
  }
  .form_etc .tit_etc {
    padding-top: 20px;
    font-size: 30px;
    line-height: 36px;
  }
  .form_etc .desc_etc {
    padding-top: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .form_etc .group_form {
    max-width: 250px;
    padding-top: 30px;
  }
  .form_etc .group_form .inp_comm + .inp_comm {
    margin-top: 10px;
  }
  .form_etc .group_form .inp_comm + .group_etc_btn {
    margin-top: 20px;
  }
  .form_etc .group_link {
    padding-top: 26px;
  }
  .form_etc .group_link a {
    font-size: 14px;
    line-height: 18px;
  }
  .form_etc .txt_etc {
    padding-top: 40px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }
  .area_type_search .group_form {
    max-width: 320px;
  }
  .area_type_search .form_etc {
    justify-content: start;
    min-height: 570px;
  }
  .form_etc .list_search_info dt {
    font-size: 16px;
  }
  .area_form_etc {
    display: flex;
    gap: 40px;
  }
  .area_form_etc .wrap_etc_form {
    max-width: none;
    flex: 1;
    min-width: 0;
  }
}
/* 회원가입 */
.box_top_info {
  padding: 20px;
  border-radius: 10px;
  background: #F9F9F9;
}

.box_certify {
  --box-radius: 5px;
  position: relative;
  padding: 20px 30px;
  border-radius: var(--box-radius);
  border: 1px solid #ddd;
  word-break: keep-all;
  word-wrap: break-word;
  text-align: center;
}

.box_certify:before, .box_certify:after {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 55px;
  height: 55px;
  border-radius: var(--box-radius) 0 0 0;
  border: 1px solid #30A053;
  border-bottom: 0;
  border-right: 0;
  box-sizing: border-box;
  content: "";
}

.box_certify:after {
  top: auto;
  left: auto;
  bottom: -1px;
  right: -1px;
  border-radius: 0 0 var(--box-radius) 0;
  border: 1px solid #30A053;
  border-top: 0;
  border-left: 0;
}

.box_certify .wrap_thumb {
  display: flex;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  background: #F2F8F4;
}

.box_certify .wrap_thumb img {
  width: 65px;
  margin: auto;
}

.box_certify .cont_thumb {
  padding-top: 20px;
}

.box_certify .tit_certify {
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  color: #000;
}

.box_certify .desc_certify {
  padding-top: 10px;
}

.box_certify .btn_certify {
  width: 200px;
  margin: 10px 0 20px;
}

.list_caution {
  padding-top: 20px;
  text-align: left;
}

.list_caution li {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  color: #FF4848;
}

.list_caution li + li {
  margin-top: 4px;
}

.list_caution li i {
  margin-top: 3px;
}

@media only screen and (min-width: 1024px) {
  /* 회원가입 */
  .box_top_info {
    padding: 30px;
  }
  .box_certify {
    --box-radius: 10px;
    display: flex;
    padding: 50px 70px;
    text-align: left;
  }
  .box_certify .wrap_thumb {
    flex: none;
    width: 145px;
    height: 145px;
  }
  .box_certify .wrap_thumb img {
    width: 90px;
  }
  .box_certify .cont_thumb {
    flex: 1;
    min-width: 0;
    padding: 5px 0 0 44px;
  }
  .box_certify .tit_certify {
    font-size: 30px;
    line-height: 36px;
  }
  .box_certify .btn_certify {
    width: 250px;
    margin: 20px 0 30px;
  }
  .box_certify:before, .box_certify:after {
    width: 70px;
    height: 70px;
  }
  .list_caution li i {
    margin-top: 2px;
  }
}
/* 교육통지서 */
.popup_edu_notice {
  position: relative;
}

.popup_edu_notice:before {
  position: absolute;
  z-index: -10;
  top: 146px;
  left: 50%;
  width: 626px;
  max-width: 100%;
  height: 700px;
  background: url(/home/www/images/common/logo_cost_new.jpg) 0 0 no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  content: "";
}

.popup_edu_notice .popup_body {
  padding: 0 30px;
}

.popup_edu_notice .popup_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #000;
}

.popup_edu_notice .popup_head .tit_popup {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.popup_edu_notice .tit_txt {
  display: block;
  padding-top: 30px;
  font-size: 50px;
  line-height: 60px;
  color: #000;
  text-align: center;
  letter-spacing: 0.025em;
}

.popup_edu_notice dl {
  display: grid;
  gap: 24px 8px;
  grid-template-columns: auto 1fr;
  padding: 140px 0 0 40px;
}

.popup_edu_notice dl dt {
  display: flex;
  justify-content: space-between;
}

.popup_edu_notice dl dd:before {
  content: ": ";
}

.popup_edu_notice dl dt, .popup_edu_notice dl dd {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000;
}

.popup_edu_notice p {
  padding-top: 130px;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #000;
}

.popup_edu_notice p + p {
  padding-top: 33px;
}

.popup_edu_notice .txt_date {
  display: block;
  padding-top: 127px;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #000;
  text-align: center;
}

.popup_edu_notice .txt_director {
  display: block;
  padding-top: 81px;
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #000;
  text-align: center;
}

.popup_edu_notice .txt_director sub {
  margin-left: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  vertical-align: baseline;
}

.popup_edu_notice .popup_foot {
  margin: 40px 30px 0;
  padding: 10px 0 20px;
  border-top: 1px dashed #ddd;
}

.popup_edu_notice .popup_foot small {
  font-size: 13px;
  line-height: 18px;
  color: #888;
}

/* 주간식단 */
.popup_diet {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 0 15px;
  background: url(/home/www/images/common/img_bg_diet.gif) 0 0 repeat;
}

.popup_diet .inner_popup {
  max-width: 875px;
  margin: 0 auto;
}

.popup_diet .popup_head, .popup_diet .popup_body {
  flex: none;
}

.popup_diet .popup_head {
  position: relative;
  z-index: 10;
  width: 100%;
}

.popup_diet .popup_head .inner_popup {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  justify-content: center;
  padding-top: 45px;
}

.popup_diet .img_deco {
  display: none;
  flex: 0 1 auto;
  min-width: 0;
  margin: 0 0 -29px;
}

.popup_diet .area_tit_img {
  flex: 0 1 300px;
  position: relative;
  margin-bottom: 23px;
}

.popup_diet .area_tit_img .img_tit {
  max-width: 100%;
}

.popup_diet .area_tit_img .txt_date {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 149px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  text-align: center;
}

.popup_diet .popup_body {
  position: relative;
  width: 100%;
}

.popup_diet .popup_body .txt_etc {
  padding: 17px 0 0 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #5c5c5c;
}

.popup_diet .box_tbl {
  padding: 20px 20px 20px;
  background: #fff;
  border: 8px solid #d5d5d5;
  border-radius: 20px;
}

.popup_diet .tbl_diet {
  width: 100%;
  border-top: 2px solid #3449b7;
  table-layout: fixed;
}

.popup_diet .tbl_diet th {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 20px;
  color: #000;
  background: #eef0f6;
}

.popup_diet .tbl_diet th, .popup_diet .tbl_diet td {
  border-left: 1px solid #d9d9db;
  border-bottom: 1px solid #d9d9db;
}

.popup_diet .tbl_diet tr th:first-child, .popup_diet .tbl_diet tr td:first-child {
  border-left: 0;
}

.popup_diet .tbl_diet td {
  padding: 10px 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #5e5e5e;
  text-align: center;
}

.popup_diet .popup_foot {
  flex: 1;
  padding: 80px 15px 40px;
  margin: -80px -15px 0;
  background: #f7b900;
}

.popup_diet .tit_info_diet {
  display: block;
  padding-top: 36px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #3e0000;
}

.popup_diet .list_info_diet {
  padding-top: 7px;
}

.popup_diet .list_info_diet li {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #3e0000;
}

@media only screen and (min-width: 768px) {
  /* 주간식단 */
  .popup_diet {
    padding: 0 30px;
  }
  .popup_diet .popup_head .inner_popup {
    justify-content: flex-start;
  }
  .popup_diet .img_deco {
    display: block;
  }
  .popup_diet .area_tit_img {
    flex: none;
  }
  .popup_diet .area_tit_img .txt_date {
    bottom: 9px;
    width: 215px;
    font-size: 18px;
    line-height: 22px;
  }
  .popup_diet .box_tbl {
    padding: 32px 25px 27px;
  }
  .popup_diet .popup_foot {
    padding: 80px 30px 40px;
    margin: -80px -30px 0;
  }
}