@charset "UTF-8";
@import url("default.css");
/*-------------------------------------------------
title       : e알리미
Author      : PLAN I
Create date : 2024-12-10
-------------------------------------------------*/
:root {
  --fs: 1.6rem;
  --cl: #555;
  --lh: 150%;
  --width1: 90rem;
  --width2: 100%;
  --cl1: #00B6FF;
  --cl2: #004B9D;
  --cl3: #00D0FF;
}

#alim {
  width: var(--width1);
  max-width: var(--width2);
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 3rem;
}

#header {
  position: relative;
  margin-bottom: 5rem;
}
#header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.5rem;
  margin-top: 2.5rem;
  padding: 0 2.1rem 0 5rem;
  border-radius: 10rem;
  background-color: var(--cl2);
  font-size: 2.1rem;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .btn {
  padding: 0 1rem;
  height: 2.5rem;
  margin-left: auto;
  border-radius: 2.5rem;
  background-color: #fff;
  font-size: 1.4rem;
  color: #004b9d;
  line-height: 2.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#header .btn::before {
  display: inline-block;
  position: relative;
  top: -0.1rem;
  width: 1.7rem;
  height: 1.1rem;
  margin-right: 0.5rem;
  background: url("../img/btn.png") no-repeat center center;
  content: "";
  vertical-align: middle;
}
#header .btn:hover, #header .btn:focus {
  background-color: #00b6ff;
}

.vol {
  position: absolute;
  top: 2.2rem;
  right: 0;
  font-size: 1.8rem;
  font-weight: 200;
  color: #555;
}
.vol strong {
  position: relative;
  top: 0.1rem;
  margin-right: 0.8rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #333;
}

#gnb a {
  padding: 0 2.8rem;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#gnb a:hover, #gnb a:focus {
  color: var(--cl3);
}

#hnb {
  margin-left: 1rem;
}
#hnb a {
  display: inline-block;
  overflow: hidden;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 2rem;
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
  color: transparent;
}
#hnb a::before, #hnb a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hnb.png") no-repeat;
  background-size: auto 100%;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#hnb a::after {
  top: 100%;
}
#hnb a:nth-child(1)::before, #hnb a:nth-child(1)::after {
  background-position-x: calc(-2.7rem * (1 - 1));
}
#hnb a:nth-child(2)::before, #hnb a:nth-child(2)::after {
  background-position-x: calc(-2.7rem * (2 - 1));
}
#hnb a:nth-child(3)::before, #hnb a:nth-child(3)::after {
  background-position-x: calc(-2.7rem * (3 - 1));
}
#hnb a:nth-child(4)::before, #hnb a:nth-child(4)::after {
  background-position-x: calc(-2.7rem * (4 - 1));
}
#hnb a:nth-child(5)::before, #hnb a:nth-child(5)::after {
  background-position-x: calc(-2.7rem * (5 - 1));
}
#hnb a:nth-child(6)::before, #hnb a:nth-child(6)::after {
  background-position-x: calc(-2.7rem * (6 - 1));
}
#hnb a:hover::before, #hnb a:hover::after, #hnb a:focus::before, #hnb a:focus::after {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#hnb a + a {
  margin-left: 0.2rem;
}

#main h2 {
  margin: 6.5rem 0 2rem;
  text-align: center;
}
#main h2:first-child {
  margin-top: 0;
}

#fnb {
  position: relative;
  z-index: inherit;
  margin-top: 8rem;
  padding: 4.5rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
#fnb::before {
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
  content: "";
  left: 50%;
  width: 10000%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #2E2F30;
}
#fnb a {
  display: inline-block;
  vertical-align: top;
}
#fnb a:last-child {
  margin-right: 0;
}
#fnb a + a::before {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 1rem;
  border-radius: 100%;
  background-color: #404143;
  content: "";
  vertical-align: middle;
}
#fnb a:hover, #fnb a:focus {
  text-decoration: underline;
}

#siteinfo {
  padding: 3rem 14rem 3rem 5rem;
  background: url("../img/footer.png") no-repeat right center;
  font-size: 1.45rem;
  font-weight: 300;
  word-break: keep-all;
}
#siteinfo p {
  margin-bottom: 0.5rem;
}
#siteinfo a {
  display: inline-block;
  position: relative;
  top: -0.2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border: 1px solid #555;
  color: #333;
  line-height: 1.8rem;
  vertical-align: middle;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#siteinfo a:hover, #siteinfo a:focus {
  background-color: #555;
  color: #fff;
}

#snb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 2rem 4rem;
  gap: 1rem;
}
#snb a {
  position: relative;
  z-index: 0;
  display: block;
  padding-bottom: 2rem;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}
#snb a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0.4rem;
  background-color: #2E343A;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#snb a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #F3F5F7;
  content: "";
}
#snb a:hover::before, #snb a:focus::before {
  width: 100%;
}
#snb a.active::before {
  width: 100%;
}

.hotclip {
  display: grid;
  grid-template-columns: repeat(2, calc(100% / 2 - 5rem * (2 - 1) / 2));
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  row-gap: 0;
  margin: 3.5rem 5rem 0;
  color: #000;
}
.hotclip strong {
  font-size: 2rem;
  color: #333;
  line-height: var(--lh);
  display: block;
  margin: 3rem 0 2rem;
  word-break: keep-all;
  letter-spacing: -0.05rem;
}
.hotclip strong:first-child {
  margin-top: 0;
}
.hotclip p {
  max-height: 25rem;
  margin-bottom: 4rem;
  font-weight: 300;
  color: #999;
  letter-spacing: -0.05rem;
}
.hotclip p + span {
  display: inline-block;
  height: 3.5rem;
  line-height: 3.5rem;
  vertical-align: middle;
}
.hotclip p + span::after {
  display: inline-block;
  position: relative;
  top: -0.3rem;
  margin-left: 0.5rem;
  font-size: 2.5rem;
  content: "+";
  vertical-align: middle;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hotclip p b {
  display: inline-block;
  position: relative;
  top: -0.2rem;
  width: 2.3rem;
  font-weight: inherit;
  vertical-align: middle;
}
.hotclip p b + b {
  width: 9.5rem;
}
.hotclip i {
  display: block;
  position: relative;
}
.hotclip i::after {
  position: absolute;
  left: 2rem;
  bottom: -2rem;
  width: 1px;
  height: 4rem;
  background-color: #333;
  content: "";
}
.hotclip i img {
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hotclip a:not(.btn) {
  display: block;
}
.hotclip a:not(.btn):hover strong, .hotclip a:not(.btn):focus strong {
  text-decoration: underline;
}
.hotclip a:not(.btn):hover span::after, .hotclip a:not(.btn):focus span::after {
  top: 0.1rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hotclip .btn {
  height: 3.5rem;
  border: 1px solid #d9d9d9;
  line-height: calc(3.5rem - 1px * 2);
  display: inline-block; /*padding: 0 2rem; border-radius: 2.5rem;*/
  margin-right: 2.5rem;
  border: 0 none;
  vertical-align: middle;
}
.hotclip .btn::after {
  display: inline-block;
  position: relative;
  top: -0.3rem;
  margin-left: 0.5rem;
  font-size: 2.5rem;
  content: "+";
  vertical-align: middle;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hotclip .btn:hover::after, .hotclip .btn:focus::after {
  top: 0.1rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main {
  margin: 0 2rem;
  padding: 3rem;
  border-radius: 1rem;
  border: 0.2rem solid #EDEEF0;
}
.main h3 {
  margin-bottom: 2.5rem;
}
.main + .main {
  margin-top: 2rem;
}
.main.main1 a:hover strong, .main.main1 a:focus strong, .main.main2 a:hover strong, .main.main2 a:focus strong {
  text-decoration: underline;
}
.main a {
  word-break: keep-all;
}

.main1 ul {
  position: relative;
  z-index: 0;
}
.main1 ul::before {
  position: absolute;
  left: 4.5rem;
  top: 0;
  z-index: -1;
  width: 1px;
  height: calc(100% - 2rem);
  background-color: var(--cl1);
  content: "";
}
.main1 ul a {
  display: block;
}
.main1 ul strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
}
.main1 ul span {
  display: inline-block;
  overflow: hidden;
  width: 9rem;
  height: 9rem;
  text-align: center;
  line-height: 9rem;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 2rem;
  border-radius: 100%;
  background-color: var(--cl1);
  font-size: 2.3rem;
  color: #fff;
  text-align: center;
  line-height: 100%;
}
.main1 ul small {
  display: block;
  font-size: var(--fs);
  font-weight: 200;
}
.main1 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 9rem;
  padding-left: 12rem;
  color: #999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main1 ul li + li {
  margin-top: 2rem;
}
.main1 ul li p {
  letter-spacing: -0.05rem;
}

.main2 li + li {
  margin-top: 3rem;
}
.main2 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.9rem;
  font-weight: 500;
  color: #55B023;
}
.main2 li span {
  min-width: 13.5rem;
}
.main2 li strong {
  padding-left: 4.5rem;
  font-weight: 600;
  color: #1a1a1a;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}
.main2 .type1 a {
  color: var(--cl1);
}

.main3 ul {
  display: grid;
  grid-template-columns: repeat(2, calc(100% / 2 - 2rem * (2 - 1) / 2));
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 0.7rem;
}
.main3 ul a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 2rem 0 2rem 3rem;
  font-size: 1.9rem;
  font-weight: 500;
  color: #1a1a1a;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main3 ul li:first-child:last-child {
  grid-column: span 2;
}

.list4 a, .report a, .main3 ul a {
  display: block;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #F5F7F8;
  background-color: #F5F7F8;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list4 a:hover, .report a:hover, .main3 ul a:hover, .list4 a:focus, .report a:focus, .main3 ul a:focus {
  border-color: #A4A4A4;
  background-color: #fff;
}

.report {
  display: grid;
  grid-template-columns: repeat(3, calc(100% / 3 - 2.5rem * (3 - 1) / 3));
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 0;
  margin: 0 5rem;
}
.report h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--cl1);
  text-align: center;
  white-space: nowrap;
}
.report li + li {
  margin-top: 0.4rem;
}
.report a {
  padding: 1.5rem 0.5rem;
  font-weight: 300;
  color: #333;
  text-align: center;
  line-height: 130%;
  word-break: keep-all;
  letter-spacing: -0.05rem;
}
.report.type1 {
  display: block;
}
.report.type1 h3 {
  text-align: left;
}
.report.type1 li + li {
  margin-top: 1.5rem;
}
.report.type1 a {
  padding: 1.5rem 2.5rem;
  text-align: left;
}
.report.type1 .group + .group {
  margin-top: 3rem;
}

.title1 {
  margin-bottom: 2rem;
}

.bul1 {
  margin-bottom: 1rem;
  font-weight: 300;
  counter-reset: bul1;
}
.bul1.type1 > li::before {
  content: counter(bul1, upper-roman) ".";
}
.bul1.type2 > li::before {
  content: counter(bul1) ".";
}
.bul1 > li {
  position: relative;
  padding-left: 2rem;
  text-align: left;
  counter-increment: bul1;
}
.bul1 > li::before {
  position: absolute;
  left: 0;
  top: auto;
  content: "";
}
.bul1 > li::before {
  content: counter(bul1) ")";
}

.bul2 > li {
  position: relative;
  padding-left: 1.2rem;
  text-align: left;
  margin-top: 2rem;
  font-weight: 300;
}
.bul2 > li::before {
  position: absolute;
  left: 0;
  top: auto;
  content: "";
}
.bul2 > li::before {
  top: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--cl1);
}

.btn_library {
  display: block;
  height: 13.8rem;
  margin-top: 2.5rem;
  padding-top: 10rem;
  background: url("../img/btn_library.png") no-repeat center 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.btn_library::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn_library:hover::after, .btn_library:focus::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.btn_library::after {
  display: inline-block;
  position: relative;
  top: -0.2rem;
  margin-left: 1rem;
  font-size: 3rem;
  font-weight: 100;
  content: "+";
  vertical-align: top;
}
.btn_library:hover::after, .btn_library:focus::after {
  top: 0.1rem;
}

.btn_more {
  display: block;
  height: 4rem;
  margin-top: 2rem;
  border-radius: 4rem;
  border: 1px solid #272829;
  background-color: #272829;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 4rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn_more::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn_more:hover::after, .btn_more:focus::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.btn_more::after {
  display: inline-block;
  position: relative;
  top: -0.4rem;
  margin-left: 0.5rem;
  font-size: 2.5rem;
  font-weight: 200;
  content: "+";
  vertical-align: middle;
}
.btn_more:hover, .btn_more:focus {
  background-color: #fff;
  color: #272829;
}
.btn_more:hover::after, .btn_more:focus::after {
  top: 0.1rem;
}

[class*=list] + [class*=list] {
  margin-top: 6rem;
}

.list4, .list3, .list2, .list1 {
  margin: 0 5rem;
}
.list4 li + li, .list3 li + li, .list2 li + li, .list1 li + li {
  margin-top: 3rem;
}
.list4 a, .list3 a, .list2 a, .list1 a {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #1A1A1A;
  word-break: keep-all;
}
.list4 a span, .list3 a span, .list2 a span, .list1 a span {
  font-size: 1.8rem;
}

.list1 {
  position: relative;
  min-height: 10rem;
  margin: 0 2rem;
  padding-left: 12rem;
}
.list1 ul {
  padding-top: 2rem;
}
.list1 h3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 9rem;
  height: 100%;
  padding-top: 2rem;
  border-radius: 45rem;
  background-color: var(--cl1);
  font-weight: 300;
  color: #fff;
  text-align: center;
}
.list1 h3 strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 3.6rem;
}
.list1 a span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--cl1);
}
.list1 a strong {
  font-weight: 600;
}
.list1 a:hover strong, .list1 a:focus strong {
  text-decoration: underline;
}
.list1 + .list1 {
  margin-top: 1rem;
}
.list1 + .list1 h3 {
  background-color: #55b023;
}
.list1 + .list1 a span {
  color: #55b023;
}
.list1 + .list1 + .list1 h3 {
  background-color: #23a7b0;
}
.list1 + .list1 + .list1 a span {
  color: #23a7b0;
}
.list1 + .list1 + .list1 + .list1 h3 {
  background-color: #b09b23;
}
.list1 + .list1 + .list1 + .list1 a span {
  color: #b09b23;
}

.list2 ul {
  padding: 2.5rem 3rem;
  border-radius: 1rem;
  border: 0.15rem solid #EAECED;
}
.list2 strong {
  font-size: 1.8rem;
  font-weight: 400;
  color: #999;
}
.list2 span {
  font-weight: 400;
  margin-left: 1rem;
  color: #55B023;
}
.list2 a:hover p, .list2 a:focus p {
  text-decoration: underline;
}

.list3 ul {
  display: grid;
  grid-template-columns: repeat(2, calc(100% / 2 - 2rem * (2 - 1) / 2));
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1rem;
}
.list3 li + li {
  margin-top: 0;
}
.list3 a {
  overflow: hidden;
  height: 100%;
  padding: 2rem 3rem;
  border-radius: 1rem;
  border: 0.15rem solid #EAECED;
  font-size: 1.9rem;
  line-height: 140%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list3 a:hover, .list3 a:focus {
  border-color: var(--cl1);
}
.list3 span {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 2rem 0.5rem 0;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.05rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list3 span::before {
  position: absolute;
  left: -3rem;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 0 5rem 5rem 0;
  background-color: var(--cl1);
  content: "";
}

.list4 li + li {
  margin-top: 1rem;
}
.list4 a {
  position: relative;
  padding: 2rem 3rem;
  font-size: 1.9rem;
  letter-spacing: -0.05rem;
}
.list4 a::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  right: 3.5rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.2rem solid #A4A4A4;
  border-right: 0.2rem solid #A4A4A4;
  content: "";
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.list5 {
  margin: 3rem 5rem 0;
}
.list5 .item {
  padding-left: 3.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  word-break: keep-all;
}
.list5 .list > li > strong:first-child {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cl1);
}
.list5 i {
  max-width: 23.5rem;
  min-width: 23.5rem;
}
.list5 .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 31.8rem;
  padding-bottom: 6rem;
}
.list5 .group + .group {
  min-height: 43rem;
  margin-top: 5.5rem;
  padding-top: 5rem;
  border-top: 0.15rem solid #EAECED;
}
.list5 .group:last-child .list > li + li {
  margin-top: 1rem;
}
.list5 h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
}
.list5 h3 small {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.7rem;
  font-weight: 300;
  color: #999;
}
.list5 h3 + .bul2 {
  margin-top: 2.5rem;
}
.list5 .btn {
  position: absolute;
  left: 0.7rem;
  bottom: 0;
  width: 21.5rem;
  height: 4rem;
  border-radius: 4rem;
  border: 1px solid #2E2F30;
  background-color: #2E2F30;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  line-height: 4rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list5 .btn::after {
  display: inline-block;
  width: 1.6rem;
  height: 1.4rem;
  margin-left: 1rem;
  background: url("../img/arr1.png") no-repeat center center;
  background-size: 100% auto;
  content: "";
  vertical-align: middle;
}
.list5 .btn:hover, .list5 .btn:focus {
  -webkit-box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.25);
}