@charset "UTF-8";
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 10rem;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .header {
    height: 8.8rem;
  }
}
@media (max-width: 798px) {
  .header {
    height: 5.8rem;
  }
}
.header.fixed {
  background: #fff;
}
.header.fixed .logo img {
  content: url("../img/common/logo_on.png");
}
.header.fixed .gnb .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header.fixed .gnb li > a {
  color: #111111;
}
.header.fixed .gnb .depth1 li > a {
  display: inline-block;
  color: #666666;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  text-align: left;
}
@media (max-width: 1024px) {
  .header.fixed .gnb .depth1 li > a {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .header.fixed .gnb .depth1 li > a {
    font-size: 1.4rem;
  }
}
@media (min-width: 1280px) {
  .header.fixed .gnb .depth1 li:hover a {
    color: #111111;
  }
}
.header.fixed .siteMapBtn > img {
  content: url("../img/common/icon/icon-menu_on.png");
}
@media (min-width: 1280px) {
  .header:hover, .header:has(.gnb_menu.active) {
    background: #fff;
  }
  .header:hover .logo img, .header:has(.gnb_menu.active) .logo img {
    content: url("../img/common/logo_on.png");
  }
  .header:hover .gnb .gnb_menu > a, .header:has(.gnb_menu.active) .gnb .gnb_menu > a {
    color: #111111;
  }
  .header:hover .siteMapBtn > img, .header:has(.gnb_menu.active) .siteMapBtn > img {
    content: url("../img/common/icon/icon-menu_on.png");
  }
}
.header.active {
  background: #fff;
}
.header.active .logo img {
  content: url("../img/common/logo_on.png");
}
.header.active .gnb .gnb_menu > a {
  color: #111111;
}
.header.active .siteMapBtn > img {
  content: url("../img/common/icon/icon-menu_on.png");
}
.header .inner {
  max-width: 160rem;
  height: 100%;
  margin: 0 auto;
}
.header .inner > .flex {
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1680px) {
  .header .inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1024px) {
  .header .inner {
    max-width: unset;
    padding: 0 2.4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 798px) {
  .header .inner {
    padding: 0 1.2rem;
  }
}
.header .logo {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 21.4rem;
}
.header .logo a {
  display: inline-block;
  width: 100%;
}
.header .logo img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .header .logo {
    max-width: 19.1rem;
  }
}
@media (max-width: 798px) {
  .header .logo {
    max-width: 16rem;
  }
}

.gnb-bg {
  display: none;
  position: fixed;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 37.6rem;
  border-radius: 0 0 1.6rem 1.6rem;
  opacity: 0.94;
  background: #fff;
  z-index: 2;
}
.gnb .inner {
  max-width: unset;
  padding: 0;
}
.gnb .flex {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gnb .gnb_menu {
  position: relative;
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gnb .gnb_menu.active a::after {
  left: 50%;
  bottom: 0;
  width: 12rem;
  height: 2px;
  background-color: #2348A3;
}
.gnb .gnb_menu > a {
  color: #fff;
}
.gnb .gnb_menu > a::after {
  content: "";
  position: absolute;
  width: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnb .depth1 {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  z-index: 3;
  width: 100%;
  padding-top: 1.8rem;
}
.gnb .depth1 li {
  width: 100%;
}
.gnb .depth1 li > a {
  display: inline-block;
  padding: 1.15rem 0;
  color: #666666;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  text-align: left;
}
@media (max-width: 1024px) {
  .gnb .depth1 li > a {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .gnb .depth1 li > a {
    font-size: 1.4rem;
  }
}
@media (min-width: 1280px) {
  .gnb .depth1 li:hover a {
    color: #111111;
    font-weight: 500;
  }
}
@media (min-width: 1280px) {
  .gnb:hover .gnb-bg, .gnb:has(.active) .gnb-bg {
    display: block;
  }
  .gnb:hover .flex, .gnb:has(.active) .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gnb:hover .gnb_menu, .gnb:has(.active) .gnb_menu {
    padding: 0 6.25rem;
  }
  .gnb:hover .gnb_menu > a, .gnb:has(.active) .gnb_menu > a {
    color: #111111;
  }
  .gnb:hover .depth1, .gnb:has(.active) .depth1 {
    display: block;
  }
}
@media (max-width: 1024px) {
  .gnb {
    margin-left: auto;
  }
  .gnb-bg {
    top: 8.8rem;
  }
  .gnb .gnb_menu {
    padding: 0;
    width: 13.7rem;
  }
  .gnb .gnb_menu.active > a {
    position: relative;
  }
  .gnb .gnb_menu.active > a::after {
    content: "";
    position: absolute;
    top: calc(100% + 2.8rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 10rem;
    height: 2px;
    background-color: #2348A3;
  }
  .gnb .depth1 {
    position: absolute;
    top: 8.8rem;
    left: auto;
  }
}
@media (max-width: 980px) {
  .gnb {
    display: none;
  }
}

.siteMapBtn {
  background-color: unset;
  width: 4rem;
  cursor: pointer;
}
.siteMapBtn > img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .siteMapBtn > img {
    max-width: 100%;
  }
}
@media (max-width: 798px) {
  .siteMapBtn {
    width: 3rem;
  }
}
.siteMap-inner {
  width: 100%;
  max-width: 162.5rem;
  margin: 0 auto;
  padding: 3rem 2.4rem 3.7rem;
}
@media (max-width: 798px) {
  .siteMap-inner {
    position: relative;
    width: 100%;
    height: 100dvh;
    padding: 0 1.2rem 2.4rem;
  }
}
.siteMap-layer {
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
}
.siteMap-layer.show {
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 20;
}
.siteMap-layer .top-content {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 5.8rem;
}
.siteMap-layer .top-content .logo img {
  display: block;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  content: url("../img/common/logo_on.png");
}
.siteMap-layer .top-content .icon-close {
  font-size: 0;
  width: 4rem;
  height: 4rem;
  background-color: unset;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
  background-image: url("../img/common/icon/icon-close-black.png");
  cursor: pointer;
}
.siteMap-layer .site-list__wrap {
  margin-top: 3rem;
  padding: 5.4rem 0;
  border-top: 1px solid #000;
}
.siteMap-layer .site-list__wrap .depth1-item {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  gap: 14.9rem;
  padding: 5.4rem 4rem;
  border-bottom: 1px solid #DDDDDD;
}
.siteMap-layer .site-list__wrap .depth1-item:first-child {
  padding-top: 0;
}
.siteMap-layer .site-list__wrap .depth1-item > button {
  display: block;
  width: 14rem;
  background-color: unset;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
  text-align: left;
}
@media (max-width: 1024px) {
  .siteMap-layer .site-list__wrap .depth1-item > button {
    font-size: 2.3rem;
  }
}
@media (max-width: 798px) {
  .siteMap-layer .site-list__wrap .depth1-item > button {
    font-size: 2rem;
  }
}
.siteMap-layer .site-list__wrap .depth2-list {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
  width: calc(100% - 28.9rem);
}
.siteMap-layer .site-list__wrap .depth2-item {
  display: block;
  width: 16rem;
  color: #666666;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .siteMap-layer .site-list__wrap .depth2-item {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .siteMap-layer .site-list__wrap .depth2-item {
    font-size: 1.4rem;
  }
}
@media (min-width: 1280px) {
  .siteMap-layer .site-list__wrap .depth2-item:hover {
    color: #2348A3;
    font-weight: 600;
  }
}
.siteMap-layer .bottom-menu {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.siteMap-layer .bottom-menu a {
  position: relative;
  display: inline-block;
  color: #999999;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .siteMap-layer .bottom-menu a {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .siteMap-layer .bottom-menu a {
    font-size: 1.4rem;
  }
}
.siteMap-layer .bottom-menu a + a {
  margin-left: 2.4rem;
  padding-left: 2.3rem;
}
.siteMap-layer .bottom-menu a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 1.2rem;
  background-color: #999999;
}
@media (max-width: 1024px) {
  .siteMap-layer .site-list__wrap {
    padding: 3.6rem 0;
  }
  .siteMap-layer .site-list__wrap .depth1-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8rem;
    height: 12rem;
    padding: 2rem 0;
  }
  .siteMap-layer .site-list__wrap .depth1-item > button {
    width: 14rem;
  }
  .siteMap-layer .site-list__wrap .depth2-list {
    -ms-display: flexbox; /* IE10 */
    display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
    display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    width: calc(100% - 20rem);
  }
  .siteMap-layer .site-list__wrap .depth2-item {
    display: block;
    width: 16rem;
    color: #666666;
  }
}
@media (max-width: 798px) {
  .siteMap-layer {
    padding: 0;
  }
  .siteMap-layer .top-content {
    height: 5.8rem;
  }
  .siteMap-layer .top-content .logo {
    width: 16rem;
  }
  .siteMap-layer .top-content .logo img {
    display: block;
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    content: url("../img/common/logo_on.png");
  }
  .siteMap-layer .top-content .icon-close {
    font-size: 0;
    width: 3rem;
    height: 3rem;
    background-size: 2rem;
    background-image: url("../img/common/icon/icon-close-black.png");
  }
  .siteMap-layer .site-list__wrap {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100dvh - 12rem);
    margin-top: 0;
    padding: 0;
    border-top: 0;
  }
  .siteMap-layer .site-list__wrap .depth1-list {
    border-top: 1px solid #111111;
  }
  .siteMap-layer .site-list__wrap .depth1-item {
    display: block;
    height: auto;
    padding: 0.4rem 0;
    border-bottom: 1px solid #EEEEEE;
  }
  .siteMap-layer .site-list__wrap .depth1-item + .depth1-item {
    margin-top: 0;
  }
  .siteMap-layer .site-list__wrap .depth1-item > button {
    position: relative;
    display: block;
    width: 100%;
    height: 7rem;
    background-color: unset;
    color: #111111;
    text-align: left;
  }
  .siteMap-layer .site-list__wrap .depth1-item > button::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.2rem;
    background-image: url("../img/common/icon/arrow-down-black.png");
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .siteMap-layer .site-list__wrap .depth1-item.active > button::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
  }
  .siteMap-layer .site-list__wrap .depth1-item.active .depth2-list {
    display: block;
    max-height: 300px;
  }
  .siteMap-layer .site-list__wrap .depth2-list {
    overflow: hidden;
    display: block;
    width: 100%;
    max-height: 0;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }
  .siteMap-layer .site-list__wrap .depth2-item {
    display: block;
    width: 100%;
    height: 4.2rem;
    color: #666666;
    font-size: 1.5rem;
  }
  .siteMap-layer .bottom-menu {
    position: absolute;
    bottom: 2.4rem;
    right: 1.2rem;
  }
}

/* footer */
.footer {
  margin-top: 10rem;
  background: #111111;
  border-radius: 2.4rem 2.4rem 0 0;
}
@media (max-width: 1024px) {
  .footer {
    margin-top: 8rem;
  }
}
@media (max-width: 798px) {
  .footer {
    border-radius: 1.6rem 1.6rem 0 0;
  }
}
.footer .inner {
  max-width: 160rem;
  margin: 0 auto;
  padding: 5.8rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1680px) {
  .footer .inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 1024px) {
  .footer .inner {
    max-width: unset;
    padding: 4rem 2.4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 798px) {
  .footer .inner {
    padding: 4rem 1.2rem;
  }
}
.footer_info {
  padding-bottom: 5.9rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #545456;
}
@media (max-width: 1024px) {
  .footer_info {
    padding-bottom: 2.4rem;
  }
}
.footer_info p {
  color: #fff;
}
.footer_info p strong {
  margin-right: 1.6rem;
  color: #D90D66;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .footer_info p strong {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .footer_info p strong {
    font-size: 1.4rem;
  }
}
.footer_info p.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.8rem;
  color: #A2A2A2;
}
.footer_info p.info span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #A2A2A2;
}
.footer_info p.info span + span::before {
  content: "";
  width: 1px;
  height: 1.6rem;
  margin-left: 1.6rem;
  margin-right: 1.5rem;
  background-color: #A2A2A2;
}
.footer_info p.info strong {
  margin-right: 0.8rem;
  color: #A2A2A2;
}
@media (max-width: 798px) {
  .footer_info p {
    font-size: 1.3rem;
    line-height: 1.6;
    word-break: keep-all;
  }
  .footer_info p strong {
    display: block;
    margin-right: 0;
    margin-bottom: 0.8rem;
    font-weight: 700;
  }
  .footer_info p.info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer_info p.info span {
    margin-right: 1.6rem;
  }
  .footer_info p.info span:last-child {
    margin-right: 0;
  }
  .footer_info p.info span + span::before {
    display: none;
  }
  .footer_info p.info strong {
    margin-right: 0.8rem;
    margin-bottom: 0;
  }
}
.footer .footer_menu {
  margin-top: 3.2rem;
}
.footer .footer_menu.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .footer_menu .copyright {
  color: #A2A2A2;
  font-weight: 500;
}
.footer .footer_menu__wrap.flex {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .footer_menu__wrap li {
  margin-left: 3.2rem;
}
.footer .footer_menu__wrap li:first-child {
  margin-left: 0;
}
.footer .footer_menu__wrap li > a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .footer .footer_menu__wrap li > a {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .footer .footer_menu__wrap li > a {
    font-size: 1.4rem;
  }
}
.footer .footer_menu__wrap li > a.fw-700 {
  font-weight: 700;
}
.footer .footer_menu__wrap li > a.fw-600 {
  font-weight: 600;
}
.footer .footer_menu__wrap li > a.fw-500 {
  font-weight: 500;
}
@media (max-width: 798px) {
  .footer .footer_menu {
    margin-top: 2.5rem;
  }
  .footer .footer_menu.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer .footer_menu__wrap.flex {
    margin-top: 2.4rem;
  }
  .footer .footer_menu__wrap li {
    margin-left: 1.6rem;
  }
}

.go-top {
  display: none;
  z-index: 1;
  position: fixed;
  bottom: 6rem;
  right: 4rem;
  width: 6.8rem;
  height: 6.8rem;
  padding-top: 2.3rem;
  border-radius: 999px;
  border: 2px solid #545456;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top 1.8rem center;
  background-size: 1.7rem;
  background-image: url("../img/common/icon/go-top.png");
  color: #545456;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .go-top {
    bottom: 12rem;
    right: 2.2rem;
    width: 5.8rem;
    height: 5.8rem;
    padding-top: 1.4rem;
    background-position: top 1.2rem center;
    background-size: 1.6rem;
  }
}
@media (max-width: 798px) {
  .go-top {
    bottom: 2.4rem;
    right: 1.2rem;
    width: 4.8rem;
    height: 4.8rem;
    padding-top: 1.2rem;
    background-position: top 1rem center;
    background-size: 1.4rem;
    font-size: 1.2rem;
  }
}

/* 버튼 정렬 */
.btn-wrap {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
}
.btn-wrap.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-wrap.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 798px) {
  .btn-wrap {
    gap: 1rem;
  }
}

/* 버튼 */
.btn {
  min-width: 7.7rem;
  height: 4.8rem;
  padding: 0 2.3rem;
  border-radius: 999px;
  border: 1px solid #A2A2A2;
  background-color: #fff;
  color: #111111;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 4.6rem;
  letter-spacing: -0.025em;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .btn {
    font-size: 1.6rem;
  }
}
@media (max-width: 798px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn-l {
  min-width: 9.5rem;
  height: 5.6rem;
  padding: 0 3.1rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 5.4rem;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .btn-l {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  .btn-l {
    font-size: 1.5rem;
  }
}
.btn-m { /* 기본 .btn과 동일 */ }
@media (max-width: 1024px) {
  .btn {
    min-width: 6.9rem;
    padding: 0 2rem;
  }
  .btn-l {
    min-width: 8.5rem;
    padding: 0 2.7rem;
  }
}
@media (max-width: 798px) {
  .btn {
    min-width: 6.6rem;
    height: 4.2rem;
    line-height: 4rem;
  }
  .btn-l {
    min-width: 8.2rem;
    height: 5rem;
    line-height: 4.8rem;
  }
}
.btn-primary-bg {
  border-color: #2348A3;
  background-color: #2348A3;
  color: #fff;
  font-weight: 600;
}
.btn-primary-bg:hover {
  border-color: #22307b;
  background-color: #22307b;
}
.btn-primary-bg:active {
  border-color: #001168;
  background-color: #001168;
}
.btn-primary-line {
  border-color: #2348A3;
  background-color: #fff;
  color: #2348A3;
}
.btn-primary-line:hover {
  background-color: #F5F6F9;
}
.btn-primary-line:active {
  background-color: #F5F5F5;
}
.btn-gray-line {
  border-color: #A2A2A2;
  background-color: #fff;
}
.btn-gray-line:hover {
  background-color: #F5F6F9;
}
.btn-gray-line:active {
  background-color: #F5F5F5;
}

/* === 공통: 테이블 외곽 === */
.table-scroll {
  width: 100%;
  overflow-x: visible;
}
@media (max-width: 798px) {
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll::-webkit-scrollbar {
    width: 3px; /* 세로축 스크롤바 폭 너비 */
    height: 3px; /* 가로축 스크롤바 폭 너비 */
  }
  .table-scroll::-webkit-scrollbar-thumb {
    background: #555555;
    border-radius: 999px;
  }
  .table-scroll::-webkit-scrollbar-track {
    background: #E0E3E5;
  }
}

.table-wrap {
  width: 100%;
}
@media (max-width: 798px) {
  .table-wrap:has(.table-basic:not(.table-res)) {
    min-width: 100rem;
  }
}

/* === 기본 공통: 헤더/셀 === */
.table-basic {
  width: 100%;
  border-top: 2px solid #111111;
  border-collapse: collapse;
  color: #111111;
}
.table-basic th, .table-basic td {
  padding: 2rem 0.8rem;
  border-bottom: 1px solid #DDDDDD;
  text-align: center;
}
@media (max-width: 798px) {
  .table-basic th, .table-basic td {
    padding: 1.5rem 1.6rem;
  }
}
.table-basic thead th {
  border-bottom: none;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FAFAFB;
}
.table-basic tbody th {
  border-right: 1px solid #DDDDDD;
  background-color: #fff;
}
.table-basic th {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .table-basic th {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .table-basic th {
    font-size: 1.4rem;
  }
}
.table-basic td {
  background-color: #fff;
  color: #666666;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .table-basic td {
    font-size: 1.6rem;
  }
}
@media (max-width: 798px) {
  .table-basic td {
    font-size: 1.4rem;
  }
}

/* === table-row: 행기준 기본 테이블 커스텀 === */
.table-basic.table-row tr {
  background-color: #fff;
}
.table-basic.table-row th {
  background-color: #FAFAFB;
  font-weight: 400;
  color: #111111;
  vertical-align: middle;
  white-space: nowrap;
}
.table-basic.table-row th.ta_l {
  text-align: left;
}
.table-basic.table-row td {
  text-align: left;
  vertical-align: middle;
}

/* input */
input:not([type=radio], [type=checkbox], [type=file]) {
  height: 5.6rem;
  padding: 0 3.2rem;
  border-radius: 999px;
  border: 1px solid #A2A2A2;
}
input:not([type=radio], [type=checkbox], [type=file]):focus {
  outline-color: #111111;
}
@media (max-width: 798px) {
  input:not([type=radio], [type=checkbox], [type=file]) {
    height: 5rem;
    padding: 0 2.4rem;
  }
}

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
  display: none;
}

.input_full {
  width: 100%;
}
.input_369 {
  width: 36.9rem;
}
@media (max-width: 798px) {
  .input_369 {
    width: 100%;
    max-width: 36.9rem;
  }
}

/* radio-btn */
input[type=radio] {
  width: 2rem;
  height: 2rem;
  margin: 0;
  margin-right: 0.8rem;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F6F6F6;
  border-radius: 999px;
  border: 1px solid #BEC2C8;
}
input[type=radio] + label {
  color: #999999;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  input[type=radio] + label {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  input[type=radio] + label {
    font-size: 1.5rem;
  }
}
input[type=radio]:checked {
  background: #fff;
  border: 0.6rem solid #001168;
}
input[type=radio]:checked + label {
  color: #111111;
}

.radio_wrap {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio-label {
  margin-right: 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .radio-label {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  .radio-label {
    font-size: 1.5rem;
  }
}
.radio-label:last-child {
  margin-right: 0;
}
@media (max-width: 798px) {
  .radio-label {
    margin-right: 1.6rem;
  }
}

/* 관리자 로그인 폼 */
.mbskin .frm_input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#login_fs {
  text-align: left;
}

#login_fs legend {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#login_fs .sound_only {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  #login_fs .sound_only {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  #login_fs .sound_only {
    font-size: 1.5rem;
  }
}

#login_fs .sound_only strong {
  margin-left: 4px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  #login_fs .sound_only strong {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  #login_fs .sound_only strong {
    font-size: 1.4rem;
  }
}

/* textarea */
textarea {
  min-height: 24rem;
  padding: 3.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.8rem;
  border: 1px solid #DDDDDD;
  color: #333333;
  font-family: "PretendardGOV";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  textarea {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  textarea {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  textarea {
    padding: 2.4rem 3.2rem;
  }
}
@media (max-width: 798px) {
  textarea {
    padding: 1.6rem;
  }
}

.textarea_full {
  width: 100%;
}

/* select */
.select {
  position: relative;
  z-index: 1;
  height: 5.6rem;
}
@media (max-width: 798px) {
  .select {
    height: 5rem;
  }
}
.select_369 {
  width: 100%;
  max-width: 36.9rem;
}
.select.open .optionTit {
  border: 1px solid #111111;
  border-radius: 2.8rem 2.8rem 0 0;
  border-bottom: 1px solid #fff;
}
.select.open .optionTit button {
  background-image: url("../img/sub/icon/icon-select--up.png");
}
.select.open .option-list {
  position: absolute;
  top: calc(100% - 0.55rem);
  left: 0;
  display: block;
  width: 100%;
}
.select.open .option-list ul {
  overflow: hidden;
  border-radius: 0 0 2.8rem 2.8rem;
  border: 1px solid #111111;
  border-top: none;
  background: #fff;
}
.select.open .option-list ul li:last-child {
  margin-bottom: 0.7rem;
}
.select.open .option-list ul li button {
  width: 100%;
  padding: 0.55rem 2.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  color: #111111;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .select.open .option-list ul li button {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  .select.open .option-list ul li button {
    font-size: 1.5rem;
  }
}
.select.open .option-list ul li:hover button {
  background: #F5F5F5;
}
.select .optionTit {
  position: relative;
  width: 100%;
  border: 1px solid #A2A2A2;
  border-radius: 999px;
  background-color: #fff;
}
.select .optionTit button {
  display: inline-block;
  width: 100%;
  height: 5.4rem;
  padding: 1.35rem 2.3rem;
  padding-right: 4rem;
  background-color: unset;
  background-repeat: no-repeat;
  background-position: center right 1.6rem;
  background-size: 2.4rem 2.4rem;
  background-image: url("../img/sub/icon/icon-select--down.png");
  color: #111111;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1024px) {
  .select .optionTit button {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  .select .optionTit button {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .select .optionTit button {
    height: 4.8rem;
  }
}
.select .option-list {
  display: none;
}

.box-full {
  padding: 4rem 4rem;
  border-radius: 1.6rem;
}
.box-full p + p {
  margin-top: 1rem;
}
.box-full .lists.dot-center + .lists.dot-center,
.box-full .lists.dot-center li + li {
  margin-top: 1rem;
}
.box-full .lists.dot-center + .caption_02 {
  margin-top: 0.8rem;
}
@media (max-width: 798px) {
  .box-full {
    padding: 2.4rem 1.6rem;
  }
}

.card-circle-icon-box {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  gap: 2.4rem;
}
.card-circle-icon-box .box {
  width: 100%;
}
.card-circle-icon-box .box .icon {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15rem;
  height: 15rem;
  margin: 0 auto -2.6rem;
  border-radius: 15rem;
  background-color: #87AED9;
}
.card-circle-icon-box .box .icon img {
  display: block;
  width: 6.4rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.card-circle-icon-box .box strong {
  display: block;
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.8rem;
  border: 1px solid #87AED9;
  background-color: #fff;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  .card-circle-icon-box .box strong {
    font-size: 1.7rem;
  }
}
@media (max-width: 798px) {
  .card-circle-icon-box .box strong {
    font-size: 1.5rem;
  }
}
.card-circle-icon-box .box p {
  width: 100%;
  min-height: 15.6rem;
  padding: 2.4rem;
  margin-top: 0.8rem;
  border-radius: 0.8rem;
  background-color: #F5F5F5;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  text-align: left;
  word-break: keep-all;
  text-wrap-style: pretty;
}
@media (max-width: 1024px) {
  .card-circle-icon-box .box p {
    font-size: 1.5rem;
  }
}
@media (max-width: 798px) {
  .card-circle-icon-box .box p {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .card-circle-icon-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-circle-icon-box .box {
    width: 24%;
  }
}
@media (max-width: 798px) {
  .card-circle-icon-box {
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
    row-gap: 2.4rem;
  }
  .card-circle-icon-box .box {
    width: calc(50% - 0.6rem);
  }
  .card-circle-icon-box .box .icon {
    width: 10rem;
    height: 10rem;
    margin: 0 auto -1.2rem;
    border-radius: 10rem;
  }
  .card-circle-icon-box .box .icon img {
    width: 4.8rem;
  }
  .card-circle-icon-box .box strong {
    padding: 1rem;
  }
  .card-circle-icon-box .box p {
    min-height: unset;
    padding: 1.6rem;
  }
}
@media (max-width: 540px) {
  .card-circle-icon-box {
    row-gap: 2.4rem;
  }
  .card-circle-icon-box .box {
    width: 100%;
  }
}

.box-list__wrap {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.box-list__wrap.col-2 {
  gap: 2.4rem;
  width: 100%;
  max-width: 73.8rem;
}
.box-list__wrap.col-3 {
  gap: 3.2rem;
  width: 100%;
  max-width: 88.3rem;
}
.box-list__wrap.col-4 {
  gap: 3.3rem;
}
.box-list__wrap > .box {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
  width: 100%;
  padding: 2.4rem 1.6rem;
  border-radius: 1.6rem;
  text-align: left;
}
.box-list__wrap > .box .subtit_01 {
  padding: 0 0.8rem;
}
.box-list__wrap > .box .subtit_01 span {
  display: block;
  margin-bottom: 0.4rem;
}
.box-list__wrap > .box .box {
  width: 100%;
  min-height: 10.2rem;
  padding: 1.6rem;
  border-radius: 0.8rem;
  color: #545456;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  word-break: keep-all;
  text-wrap-style: pretty;
}
@media (max-width: 1024px) {
  .box-list__wrap > .box .box {
    font-size: 1.6rem;
  }
}
@media (max-width: 798px) {
  .box-list__wrap > .box .box {
    font-size: 1.4rem;
  }
}
.box-list__wrap > .box .box.h-fix-line3 {
  min-height: 11.7rem;
}
.box-list__wrap > .box .box.h-fix-line4 {
  min-height: 14.8rem;
}
.box-list__wrap > .box .box .caption_02 {
  margin-top: 0.8rem;
}
@media (max-width: 1024px) {
  .box-list__wrap > .box .box {
    min-height: 8.4rem;
  }
  .box-list__wrap > .box .box.h-fix-line3 {
    min-height: 11.4rem;
  }
  .box-list__wrap > .box .box.h-fix-line4 {
    min-height: 14.8rem;
  }
  .box-list__wrap > .box .box .caption_02 {
    margin-top: 0.8rem;
  }
  .box-list__wrap.col-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .box-list__wrap.col-4 > .box {
    width: calc(50% - 1.8rem);
  }
}
@media (max-width: 798px) {
  .box-list__wrap.col-2, .box-list__wrap.col-3, .box-list__wrap.col-4 {
    gap: 1.2rem;
  }
  .box-list__wrap > .box {
    gap: 1.2rem;
    padding: 1.8rem 1.2rem;
    border-radius: 1.6rem;
  }
  .box-list__wrap > .box .subtit_01 {
    padding: 0 0.4rem;
  }
  .box-list__wrap > .box .subtit_01 span {
    margin-bottom: 0.2rem;
  }
  .box-list__wrap > .box .box {
    min-height: 7.6rem;
    padding: 1.2rem;
    border-radius: 0.8rem;
  }
  .box-list__wrap > .box .box.h-fix-line3 {
    min-height: 11.7rem;
  }
  .box-list__wrap > .box .box.h-fix-line4 {
    min-height: 14.8rem;
  }
  .box-list__wrap > .box .box .caption_02 {
    margin-top: 0.4rem;
  }
  .box-list__wrap.col-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box-list__wrap.col-3 > .box {
    width: 100%;
  }
  .box-list__wrap.col-3 > .box .box {
    min-height: unset;
  }
  .box-list__wrap.col-3 > .box .box.h-fix-line3 {
    min-height: unset;
  }
  .box-list__wrap.col-3 > .box .box.h-fix-line4 {
    min-height: unset;
  }
  .box-list__wrap.col-4 > .box {
    width: calc(50% - 0.6rem);
  }
}
@media (max-width: 540px) {
  .box-list__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box-list__wrap > .box {
    width: 100%;
  }
  .box-list__wrap > .box .box {
    min-height: unset;
  }
  .box-list__wrap > .box .box.h-fix-line3 {
    min-height: unset;
  }
  .box-list__wrap > .box .box.h-fix-line4 {
    min-height: unset;
  }
  .box-list__wrap.col-4 > .box {
    width: 100%;
  }
}

.full-box-list {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  gap: 2.4rem;
}
.full-box-list__wrap {
  margin-top: 2.4rem;
  padding: 2.4rem 1.6rem;
  border-radius: 1.6rem;
  text-align: left;
}
.full-box-list__wrap .subtit_01 {
  margin-bottom: 2.4rem;
  padding: 0 0.8rem;
}
.full-box-list .box {
  width: 100%;
  min-height: 8.6rem;
  padding: 1.6rem;
  border-radius: 0.8rem;
  color: #545456;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  word-break: keep-all;
  text-wrap-style: pretty;
}
@media (max-width: 1024px) {
  .full-box-list .box {
    font-size: 1.6rem;
  }
}
@media (max-width: 798px) {
  .full-box-list .box {
    font-size: 1.4rem;
  }
}
@media (max-width: 798px) {
  .full-box-list {
    gap: 1.2rem;
  }
  .full-box-list__wrap {
    padding: 1.8rem 1.2rem;
  }
}
@media (max-width: 540px) {
  .full-box-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .full-box-list__wrap {
    margin-top: 1.2rem;
  }
  .full-box-list__wrap .subtit_01 {
    margin-bottom: 1.2rem;
    padding: 0 0.4rem;
  }
  .full-box-list .box {
    min-height: unset;
  }
}

.blue-box-list__wrap {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  margin: 0 auto;
}
.blue-box-list__wrap .blue-box {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  max-width: 37rem;
  padding: 2.4rem 2rem;
  border-radius: 1.6rem;
  background-color: #E0EAF8;
}
.blue-box-list__wrap .blue-box .icon-tit-box {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.6rem;
  width: 100%;
  padding: 2.4rem 3.2rem;
  border-radius: 0.8rem;
  background-color: rgba(255, 255, 255, 0.6);
}
.blue-box-list__wrap .blue-box .icon-tit-box .icon {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  width: 10rem;
  height: 10rem;
}
.blue-box-list__wrap .blue-box .icon-tit-box .icon img {
  display: block;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.blue-box-list__wrap .blue-box .icon-tit-box .subtit_01 {
  text-align: left;
}
.blue-box-list__wrap .blue-box .lists {
  padding: 0 1.2rem;
  text-align: left;
  word-break: keep-all;
  text-wrap-style: pretty;
}
.blue-box-list__wrap .blue-box .lists li + li {
  margin-top: 1.2rem;
}
.blue-box-list__wrap .blue-box .lists .caption_02 {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .blue-box-list__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
  .blue-box-list__wrap .blue-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
  }
  .blue-box-list__wrap .blue-box .icon-tit-box {
    width: 26rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blue-box-list__wrap .blue-box .icon-tit-box .icon {
    margin-left: unset;
  }
  .blue-box-list__wrap .blue-box .icon-tit-box .subtit_01 {
    text-align: center;
    word-break: keep-all;
  }
  .blue-box-list__wrap .blue-box .lists {
    width: calc(100% - 28.4rem);
  }
}
@media (max-width: 798px) {
  .blue-box-list__wrap {
    gap: 1.2rem;
  }
  .blue-box-list__wrap .blue-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
    padding: 1.6rem;
  }
  .blue-box-list__wrap .blue-box .icon-tit-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding: 1.6rem;
  }
  .blue-box-list__wrap .blue-box .icon-tit-box .icon {
    width: 6.4rem;
    height: 6.4rem;
    margin-left: auto;
  }
  .blue-box-list__wrap .blue-box .lists {
    width: 100%;
    padding: 0 0.6rem;
  }
  .blue-box-list__wrap .blue-box .lists li + li {
    margin-top: 0.8rem;
  }
  .blue-box-list__wrap .blue-box .lists .caption_02 {
    margin-top: 0.6rem;
  }
}

.cyan-box-list__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 0 auto;
  text-align: left;
}
.cyan-box-list__wrap .cyan-box {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  padding: 2.4rem 2rem;
  border-radius: 1.6rem;
  background-color: #E7F4FB;
}
.cyan-box-list__wrap .cyan-box .icon-tit-box {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  padding: 2.4rem;
  border-radius: 0.8rem;
  background-color: #fff;
}
.cyan-box-list__wrap .cyan-box .icon-tit-box .icon {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  width: 8rem;
  height: 8rem;
}
.cyan-box-list__wrap .cyan-box .icon-tit-box .icon img {
  display: block;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.cyan-box-list__wrap .cyan-box .icon-tit-box .subtit_01 {
  text-align: left;
}
.cyan-box-list__wrap .cyan-box .lists {
  padding: 0 0.8rem;
  text-align: left;
  word-break: keep-all;
  text-wrap-style: pretty;
}
.cyan-box-list__wrap .cyan-box .lists li + li {
  margin-top: 0.8rem;
}
.cyan-box-list__wrap .cyan-box .lists .caption_02 {
  margin-top: 0.6rem;
}
@media (max-width: 1024px) {
  .cyan-box-list__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}
@media (max-width: 798px) {
  .cyan-box-list__wrap {
    gap: 1.2rem;
  }
  .cyan-box-list__wrap .cyan-box {
    gap: 1.2rem;
    padding: 1.6rem;
  }
  .cyan-box-list__wrap .cyan-box .icon-tit-box {
    gap: 0.3rem;
    padding: 1.6rem;
  }
  .cyan-box-list__wrap .cyan-box .icon-tit-box .icon {
    width: 6.4rem;
    height: 6.4rem;
  }
  .cyan-box-list__wrap .cyan-box .lists {
    padding: 0 0.4rem;
  }
  .cyan-box-list__wrap .cyan-box .lists li + li {
    margin-top: 0.4rem;
  }
  .cyan-box-list__wrap .cyan-box .lists .caption_02 {
    margin-top: 0.3rem;
  }
}
@media (max-width: 540px) {
  .cyan-box-list__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.process-line-box {
  position: relative;
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.3rem;
  margin: 0 auto;
}
.process-line-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 14rem);
  border-top: 1px dashed #DDDDDD;
}
.process-line-box .line-box {
  position: relative;
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 2.4rem;
  border-radius: 1.6rem;
  border: 1px solid #DDDDDD;
  background-color: #fff;
  text-align: left;
}
.process-line-box .line-box .tit {
  margin-top: 0.4rem;
}
.process-line-box .line-box .lists {
  margin-top: 2rem;
  margin-bottom: 1.7rem;
  word-break: keep-all;
  text-wrap-style: pretty;
}
.process-line-box .line-box .lists li + li {
  margin-top: 0.8rem;
}
.process-line-box .line-box .icon {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-top: auto;
  margin-left: auto;
}
.process-line-box .line-box .icon img {
  display: block;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 1024px) {
  .process-line-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .process-line-box::before {
    display: none;
  }
  .process-line-box .line-box {
    width: calc(50% - 1.8rem);
  }
}
@media (max-width: 798px) {
  .process-line-box {
    gap: 1.2rem;
  }
  .process-line-box .line-box {
    width: calc(50% - 0.6rem);
  }
}
@media (max-width: 540px) {
  .process-line-box .line-box {
    width: 100%;
    padding: 1.6rem;
  }
  .process-line-box .line-box .tit {
    margin-top: 0.4rem;
  }
  .process-line-box .line-box .lists {
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .process-line-box .line-box .lists li + li {
    margin-top: 0.4rem;
  }
  .process-line-box .line-box .icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.box-grid-line-list__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.box-grid-line-list__wrap .line-box {
  padding: 4rem;
  border-radius: 1.6rem;
  border: 1px solid #DDDDDD;
  background-color: #fff;
}
.box-grid-line-list__wrap .line-box .icon {
  -ms-display: flexbox; /* IE10 */
  display: -webkit-box; /* OLD iOS, Safari */ /* OLD Firefox */
  display: -ms-flexbox; /* IE10 Tweener */ /* NEW Chrome */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 8rem;
  height: 8rem;
  border-radius: 8rem;
}
.box-grid-line-list__wrap .line-box .icon img {
  display: block;
  width: 5rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.box-grid-line-list__wrap .line-box .subtit_01 {
  margin-top: 2.4rem;
}
.box-grid-line-list__wrap .line-box .txt_02 {
  margin-top: 0.6rem;
}
@media (max-width: 1024px) {
  .box-grid-line-list__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}
@media (max-width: 798px) {
  .box-grid-line-list__wrap {
    gap: 1.2rem;
  }
  .box-grid-line-list__wrap .line-box {
    padding: 2.4rem;
  }
  .box-grid-line-list__wrap .line-box .icon {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 6.4rem;
  }
  .box-grid-line-list__wrap .line-box .icon img {
    width: 3.6rem;
  }
  .box-grid-line-list__wrap .line-box .subtit_01 {
    margin-top: 1.2rem;
  }
  .box-grid-line-list__wrap .line-box .txt_02 {
    margin-top: 0.4rem;
  }
}
@media (max-width: 540px) {
  .box-grid-line-list__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bg-box-grid {
  display: grid;
  gap: 2.4rem;
  padding: 2.4rem;
  border-radius: 1.6rem;
  text-align: left;
}
.bg-box-grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.bg-box-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.bg-box-grid .box {
  padding: 2.4rem;
  border-radius: 0.8rem;
  background-color: #fff;
}
.bg-box-grid .box .txt_02 {
  margin-top: 1.6rem;
}
@media (max-width: 1024px) {
  .bg-box-grid.col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bg-box-grid.col-3 .box:last-of-type {
    grid-column: 1/-1;
  }
}
@media (max-width: 798px) {
  .bg-box-grid {
    gap: 1.2rem;
    padding: 1.2rem;
  }
  .bg-box-grid .box {
    padding: 1.6rem;
  }
  .bg-box-grid .box .txt_02 {
    margin-top: 0.8rem;
  }
}
@media (max-width: 540px) {
  .bg-box-grid.col-2, .bg-box-grid.col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.terms-wrap {
  width: 100%;
  padding: 8rem;
  padding-left: 7rem;
  padding-right: 0;
  border-top: 1px solid #A2A2A2;
  background-color: #fff;
  color: #333333;
}
.terms-wrap .terms-scroll {
  overflow-y: auto;
  height: 65rem;
  padding-right: 7rem;
}
.terms-wrap .terms-scroll::-webkit-scrollbar {
  width: 8px; /* 스크롤바의 너비 */
  border-radius: 10px;
}
.terms-wrap .terms-scroll::-webkit-scrollbar-thumb {
  background: #A2A2A2; /* 스크롤바의 색상 */
  border-radius: 10px;
}
.terms-wrap .terms-scroll::-webkit-scrollbar-track {
  background: #EEEEEE; /*스크롤바 뒷 배경 색상*/
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .terms-wrap {
    padding: 4rem;
    padding-left: 3.6rem;
  }
  .terms-wrap .terms-scroll {
    height: 52rem;
    padding-right: 4rem;
  }
}
@media (max-width: 798px) {
  .terms-wrap {
    padding: 2.4rem;
    padding-left: 3rem;
  }
  .terms-wrap .terms-scroll {
    height: 48rem;
    padding-right: 2.4rem;
  }
}
@media (max-width: 540px) {
  .terms-wrap {
    padding: 2rem 1.6rem;
    padding-left: 1.8rem;
  }
  .terms-wrap .terms-scroll {
    height: 36rem;
    padding-right: 1.6rem;
  }
}

/* element */