@charset "utf-8"; /* CSS Document */

@import url("/css/2025/default.css");
@import url("/css/2025/layout.css");

/*****************************************************
keyframes
*****************************************************/
@keyframes rollingAni {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
@keyframes move01 {
  0% {
    top: -10px;
  }
  50% {
    top: 0px;
    left: 165px;
  }
  100% {
    top: -10px;
  }
}
@keyframes move02 {
  0% {
    top: 120px;
  }
  50% {
    top: 100px;
    left: 335px;
  }
  100% {
    top: 120px;
  }
}

/*****************************************************
	Sub
*****************************************************/
/* 체크박스 */
.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before,
.custom-control-input[disabled] ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-control {
  padding-left: 1.75rem;
}
.custom-control-input {
  width: 1.25rem;
  height: 1.25rem;
  z-index: 1;
}
.custom-control-label::before {
  width: 1.25rem;
  height: 1.25rem;
  left: -1.75rem;
  top: 2px;
}
.custom-control-label::after {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  left: -1.75rem;
  top: 0.2rem;
}
.custom-control-input:checked ~ .custom-control-label::after {
  background-color: var(--main-color01);
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  border-radius: 50%;
}

#contents {
}
.cont {
  min-height: 600px;
}
.cont_top {
  margin-top: 76px;
  margin-bottom: 30px;
}
.cont_top .navi {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 5px;
  width: 100%;
}
.cont_top .navi > a,
.cont_top .navi > span {
  position: relative;
  display: flex;
  gap: 5px;
  color: #1d1d1d;
  font-size: 17px;
}
.cont_top .navi > a:first-child {
  padding-left: 20px;
}
.cont_top .navi > a:last-child {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 7px;
}
.cont_top .navi > a:not(:last-child)::after,
.cont_top .navi > span:not(:last-child)::after {
  content: "";
  display: block;
  width: 12px;
  font-family: var(--font-icon);
  background: url(/image/2025/select-arr03.svg) no-repeat center;
}

.cont_top .navi > a:first-child::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  font-family: var(--font-icon);
  font-size: 16px;
  background: url(/image/2025/icon-home.svg) no-repeat center;
}
.cont_top .navi > a:hover,
.cont_top .navi > a:focus {
  color: var(--main-color01);
}
.cont_top .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cont_top .tit h2 {
  width: auto;
  height: auto;
  overflow: auto;
  text-indent: inherit;
  font-size: 40px;
  font-weight: 700;
}
.cont_top .btn-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cont_top .btn-wrap > a,
.cont_top .btn-wrap .sns-share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #f6f7f8;
  border: none;
  border-radius: 10px;
  text-align: center;
}
.cont_top .btn-wrap > a:hover,
.cont_top .btn-wrap > a:focus {
  background-color: var(--main-color01-hover);
}
.cont_top .btn-wrap > a:hover .bi,
.cont_top .btn-wrap > a:focus .bi {
  color: #fff;
}

.cont_top .btn-wrap .sns-share {
  background: #f6f7f8 url(/image/2025/icon-share.png) no-repeat center;
}
.cont_top .btn-wrap .sns-share:hover,
.cont_top .btn-wrap .sns-share:focus {
  background: var(--main-color01-hover) url(/image/2025/icon-share-w.png) no-repeat center;
}
.cont_top .btn-wrap .sns-list {
  margin-top: 0;
}
.cont_top .btn-wrap .sns-list > li {
  font-size: 16px;
}
.cont_top .btn-wrap .sns-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
}
.cont_top .btn-wrap .sns-list > li > a:hover,
.cont_top .btn-wrap .sns-list > li > a:focus {
  font-weight: 600;
}
.cont_top .btn-wrap .sns-list > li > a::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: var(--gray-color05);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 50px;
}
.cont_top .btn-wrap .sns-list > li.sns-01 > a::before {
  background-image: url(/image/2025/sns-facebook.svg);
}
.cont_top .btn-wrap .sns-list > li.sns-02 > a::before {
  background-image: url(/image/2025/sns-youtube.svg);
}
.cont_top .btn-wrap .sns-list > li.sns-03 > a::before {
  background-image: url(/image/2025/sns-instagram.svg);
}
.cont_top .btn-wrap .sns-list > li.sns-04 > a::before {
  background-image: url(/image/2025/sns-blog.svg);
}
.cont_top .btn-wrap .sns-list > li > a:hover::before,
.cont_top .btn-wrap .sns-list > li > a:focus::before {
  background-color: var(--main-color02);
}

/* 만족도 조사 */
.cfoot_wrap {
  background-color: var(--gray-color01);
  padding: 30px;
  border-radius: 20px;
  margin-top: 100px;
  font-size: 18px;
  font-family: var(--font-type01), "Nanum Gothic", "Helvetica", sans-serif;
}
.cfoot_wrap .data_wrap {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 17px;
}
.cfoot_wrap .data_wrap ul > li {
  display: inline-block;
  margin-left: 20px;
  color: #666;
}
.cfoot_wrap .data_wrap ul > li:first-child {
  margin-left: 0;
}
.cfoot_wrap .data_wrap ul > li .ptit {
  color: #1d1d1d;
  font-weight: 700;
  margin-right: 10px;
}
.cfoot_wrap .change_wrap {
}
.cfoot_wrap .change_wrap .contents {
}
.cfoot_wrap .change_wrap .contents > dt {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: -9999px;
  font-size: 1px;
  line-height: 1%;
}
.cfoot_wrap .change_wrap .contents > dd > p {
  position: absolute;
  top: 0;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
}

.cfoot_wrap .change_wrap .contents > dd .star_wrap .star {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  gap: 20px;
  margin: 10px 0;
}
.cfoot_wrap .change_wrap .contents > dd .star_wrap .star > li {
  display: flex;
  gap: 8px;
  color: #666;
  font-size: 17px;
}
.cfoot_wrap .change_wrap .contents > dd .star_wrap .star > li input {
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
}
.cfoot_wrap .change_wrap .contents > dd .star_wrap .star > li label {
  /* display: none; */
}
.cfoot_wrap .change_wrap .contents > dd .star_wrap .star > li label > strong {
  display: none;
}
.cfoot_wrap .change_wrap .contents > dd {
  position: relative;
  float: none;
}

.cfoot_wrap .change_wrap .contents > dd .box {
  position: relative;
}
.cfoot_wrap .change_wrap .contents > dd .box input {
  width: calc(100% - 70px);
  border: 1px solid #666;
  color: #666;
  font-size: 17px;
  padding: 15px 15px;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-type01), "Nanum Gothic", "Helvetica", sans-serif;
}
.cfoot_wrap .change_wrap .contents > dd .box .btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.cfoot_wrap .change_wrap .contents > dd .box .btn input {
  width: 60px;
}
.cfoot_wrap .change_wrap .contents > dd .box .btn input:hover,
.cfoot_wrap .change_wrap .contents > dd .box .btn input:focus {
  color: #fff;
  background: var(--main-color01-hover);
}

/*****************************************************
Common
*****************************************************/

/* tit */
[class*="tit-h"] {
  font-family: var(--font-type02);
  margin-bottom: 5px;
}
[class*="tit-h"] + [class*="tit-h"] {
  margin-top: 0;
}
.tit-h3 {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 24px;
  margin-top: 40px;
  font-size: 23px;
  font-weight: 700;
}
.tit-h3:first-child {
  margin-top: 0;
}
.tit-h3:after,
.tit-h3:before {
  content: "";
  position: absolute;
  top: 10px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 12px;
}
.tit-h3:after {
  left: 0;
  background-color: var(--main-color01);
}
.tit-h3:before {
  left: 6px;
  background-color: var(--main-color02);
}
.tit-h3 > small {
  font-weight: 500;
  font-size: 16px;
  color: #707070;
  margin-left: 10px;
}
.tit-h4 {
  font-size: 20px;
  color: var(--main-color01);
  margin-top: 20px;
}
.tit-h5 {
  font-size: 18px;
  margin-top: 20px;
}

/* radio */
.chk-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.radio-style01 {
  width: fit-content;
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #666;
  font-size: 17px;
}
.radio-style01 input {
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
}
.radio-style01 label > strong {
  display: none;
}

/* list-style */
[class*="list-style0"] {
  margin: 5px 0;
}
[class*="list-style0"] li {
  margin: 7px 0;
}
ul[class*="list-style0"] {
  list-style: none;
}

ul.list-style01 {
  margin-bottom: 30px;
}
ul.list-style01 > li {
  position: relative;
  padding-left: 16px;
  color: #666;
}
ul.list-style01 > li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background-color: var(--main-color01);
}
ul.list-style02 {
  margin-bottom: 20px;
}
ul.list-style02 > li {
  position: relative;
  padding-left: 14px;
  color: #555;
}
ul.list-style02 > li::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  display: block;
  width: 6px;
  height: 3px;
  border-radius: 2px;
  background: #b0b2b7;
}
ul.list-style03 {
  margin-bottom: 20px;
}
ul.list-style03 > li {
  position: relative;
  color: #555;
}
ul.list-style03 > li .num {
  position: absolute;
  top: 2px;
  left: 0;
  font-family: var(--font-type02);
  font-size: 15px;
  font-weight: 600;
  color: var(--main-color01);
}
ul.list-style03 > li .num::after {
  content: ".";
  display: inline-block;
}
ul.list-style03 > li .txt {
  padding-left: 38px;
}
ul.list-style03 > li > ul,
ul.list-style03 > li > ol {
  margin-left: 38px;
}
ol.list-style01 {
  list-style: decimal-leading-zero;
  padding-left: 28px;
}
ol.list-style01 > li {
  list-style: inherit;
}
ol.list-style02 {
  list-style: hangul;
  padding-left: 25px;
}
ol.list-style02 > li {
  list-style: inherit;
}
ol.list-style01 > li,
ol.list-style02 > li {
  padding-left: 8px;
  color: #555;
}
ol.list-style01 li::marker,
ol.list-style02 li::marker {
  font-family: var(--font-type02);
  font-size: 15px;
  font-weight: 600;
  color: var(--main-color01);
}

/* info-text */
.info-text {
  position: relative;
  padding-left: 25px;
  color: var(--main-color01-hover);
}
.info-text::after,
.info-text::before {
  position: absolute;
  display: block;
}
.info-text::after {
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 14px;
  background: url(/image/2025/info-text-i.svg) no-repeat center;
}
.info-text::before {
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  font-family: var(--font-icon);
  border-radius: 7px;
  background-color: var(--main-color01);
  box-shadow: 0 3px 3px rgb(38 53 165 / 56%);
}
.info-text.white::before {
  background-color: #fff;
  border: 1px solid var(--main-color01);
  box-shadow: 0px 1px 4px rgb(185 185 185 / 56%);
}
.info-text.white::after {
  background: url(/image/2025/info-text-i-b.svg) no-repeat center;
}
.info-text.cred::before {
  background-color: var(--danger);
  box-shadow: 0 3px 3px rgb(236 108 97 / 56%);
}
.info-text.width-fit {
  width: fit-content;
}

/* info-box */
.info-box {
  position: relative;
  border: 1px solid var(--main-color01);
  border-radius: 25px;
  min-height: 205px;
  padding: 45px 40px 45px 240px;
  margin-bottom: 60px;
}
.info-box::after,
.info-box::before {
  content: "";
  position: absolute;
  display: block;
}
.info-box::after {
  width: 160px;
  height: 4px;
  left: 40px;
  bottom: -1px;
  background: url("/image/2025/info-box-deco.png") repeat 0 0;
}
.info-box::before {
  left: 0;
  bottom: -1px;
  width: 220px;
  height: 35px;
  background-color: #fff;
}
.info-box .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 40px;
  left: 60px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: #f1f7ff;
}
.info-box .icon > img {
}
.info-box > h4 {
  display: inline-block;
  margin-top: 0;
  font-family: var(--font-type02);
  font-size: 20px;
  font-weight: 600;
  color: #37428f;
  margin-bottom: 8px;
}
.info-box > strong.tit {
  display: inline-block;
  margin-top: 0;
  font-family: var(--font-type02);
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}
.info-box > p:not(:last-child) {
  line-height: 1.3;
  margin-bottom: 10px;
}
.info-box > p:last-child {
  margin-bottom: 0;
}
.info-box .tel {
  display: inline-block;
  height: 34px;
  margin: 0;
  padding: 7px 20px;
  border-radius: 20px;
  background: var(--main-color01-hover);
  box-shadow: 0 3px 3px #5f67742e;
  color: #fff;
  font-size: 16px;
}
.info-box > ul {
  margin-bottom: 10px;
}
.info-box > ul > li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.5;
  color: #666;
}
.info-box > ul > li:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: url(/image/2025/icon-check-on.svg) no-repeat center;
  background-size: contain;
}
.info-box .btn {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 5px 20px 3px;
  border: 1px solid var(--main-color01-hover);
  border-radius: 45px;
  background-color: #fff;
  color: var(--main-color01-hover);
  text-align: center;
  font-size: 16px;
  box-shadow: 0 3px 3px #dae6f3;
}
.info-box .btn:hover,
.info-box .btn:focus {
  background: var(--main-color01-hover);
  color: #fff;
}
.info-box p.btn:hover,
.info-box p.btn:focus {
  background-color: #fff;
  color: var(--main-color01-hover);
}
.info-box .btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  font-size: 11px;
  opacity: 0.8;
  margin-left: 5px;
  transition: 0.3s;
  background: url(/image/2025/select-arr03.svg) no-repeat center;
}
.info-box .btn:hover::after,
.info-box .btn:focus::after {
  opacity: 1;
  background: url(/image/2025/select-arr03-w.svg) no-repeat center;
}
.info-box p.btn::after {
   display:none;
}

.info-box02 {
  position: relative;
  border-radius: 20px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 360px;
  padding: 100px 40px;
  padding-left: 760px;
  margin-bottom: 100px;
  background: #313da9 url("/image/2025/info-box02-bg.jpg") no-repeat center top;
}
.info-box02 .img {
  position: absolute;
  top: 80px;
  left: 70px;
  width: 610px;
  height: 320px;
  box-shadow: 0 3px 20px rgb(0 0 0 / 16%);
  border-radius: 10px;
  overflow: hidden;
}
.info-box02 .img > img {
  width: 100%;
}
.info-box02 .inner {
  color: #fff;
}
.info-box02 .inner > .stit {
  font-family: var(--font-type02);
  font-size: 20px;
}
.info-box02 .inner > .tit {
  margin-top: 0;
  font-family: var(--font-type02);
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.info-box02 .inner > p {
  line-height: 1.3;
  margin-bottom: 5px;
  font-size: 20px;
}

/* box-style */
.box-style01 {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.box-style01 .inner {
  width: 100%;
  padding: 25px 40px;
  background: var(--main-color01-light) url(/image/2025/about02_3-logo.png) no-repeat bottom right;
  border: 1px solid #e1ebf7;
  border-radius: 10px;
}
.box-style02 {
  position: relative;
  margin-bottom: 20px;
  padding: 2px 2px 6px 2px;
  border-radius: 10px;
  background: #fff url(/image/2025/box-style01-pt.png) no-repeat right top;
  border: 1px solid #ddd;
}
.box-style02 .inner {
  position: relative;
  width: 100%;
  padding: 25px 40px;
  border-radius: 5px;
  z-index: 2;
}
.box-style01 .inner > p,
.box-style02 .inner > p,
.box-style02 .inner .list-style01 {
  margin-bottom: 0;
}
.box-style03 {
  padding: 40px;
  border: 1px solid var(--gray-color03);
  border-radius: 10px;
  background: var(--gray-color01);
  overflow: auto;
}
.box-style03 > .tit-h4:first-child {
  margin-top: 0;
}

/* cont-list */
.cont-list01 {
  margin-left: -6px;
  margin-right: -6px;
}
.cont-list01 > [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}
.cont-list01 > li {
  margin-bottom: 12px;
}

.cont-list01 .inner {
  position: relative;
  border-radius: 10px;
  border: 2px solid var(--gray-color03);
  padding: 26px 25px 26px 80px;
  height: 100%;
  min-height: 74px;
  color: #555;
}
.cont-list01 .inner > .num {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  font-family: var(--font-type02);
  font-weight: 700;
  color: var(--main-color02);
  background-color: var(--main-color01-light);
  border-radius: 50px;
}
.cont-list01 > li a:hover .inner,
.cont-list01 > li a:focus .inner {
  border: 2px solid var(--main-color01);
}
.cont-list02 {
  position: relative;
  border: 2px solid var(--gray-color03);
  border-radius: 15px;
  border-top-right-radius: 50px;
  padding: 40px;
  color: #555;
}
.cont-list02 .card-header {
  position: relative;
  border-bottom: 1px dotted #999;
  margin: 0 0 20px;
}
.cont-list02 .card-header:after {
  content: "";
  display: block;
  width: 5px;
  height: 50px;
  background: var(--main-color02);
  position: absolute;
  right: 0;
  top: -70px;
  border-radius: 10px;
}
.cont-list02 .card-header p {
  margin-bottom: 10px;
}
.cont-list02 .card-header .tit {
  font-size: 23px;
  color: #1d1d1d;
}
.cont-list02 .card-header .txt {
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.cont-list02 .card-body .tit {
  margin: 15px 0;
}
.cont-list02 .card-body .num-list {
  overflow: hidden;
}
.cont-list02 .card-body .num-list > li {
  position: relative;
  display: block;
  padding: 7px 0 7px 75px;
  margin: 0 0 10px 0;
  font-size: 1em;
}
.cont-list02 .card-body .num-list li .bl {
  position: absolute;
  left: 0;
  top: 0;
  color: #285fba;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-type02);
  font-weight: 700;
  color: var(--main-color02);
  background: var(--main-color01-light);
  display: inline-block;
  text-align: center;
  line-height: 40px;
}
.cont-list02 .card-body .num-list li .txt {
  display: inline-block;
  position: relative;
}
.cont-list02 .card-body .num-list li .txt:after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #222;
  position: absolute;
  left: -25px;
  top: 12px;
}

.cont-list03 {
  gap: 10px 0;
  margin-left: -5px;
  margin-right: -5px;
}
.cont-list03 > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.cont-list03 .card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  border: 2px solid var(--gray-color03);
  border-radius: 10px;
  padding: 20px 25px;
  height: 100%;
}
.cont-list03 .card .card-header {
  flex: 1;
  white-space: nowrap;
  padding: 5px 0 0 0;
}
.cont-list03 .card .card-header .tit {
  position: relative;
  width: fit-content;
  margin-bottom: 0;
  font-family: var(--font-type02);
  font-weight: 700;
  color: #1d1d1d;
}
.cont-list03 .card .card-header .tit::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1d1d1d;
}
.cont-list03 .card .card-title + .card-body {
  margin-top: 10px;
}
.cont-list03 .card .card-body {
  width: calc(100% - 60px);
  padding: 5px 0 0 0;
}
.cont-list03 .card .card-body p {
  margin-bottom: 0;
  color: #555;
}
.cont-list03 .card .card-body > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
}
.cont-list03 .card .card-body > ul > li {
  position: relative;
  padding-left: 11px;
  line-height: 1.5;
  color: #555;
}
.cont-list03 .card .card-body > ul > li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--main-color02);
}
.cont-list03 .card ul > li > strong {
  margin-right: 10px;
}
.cont-list03 .card .card-footer {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
.cont-list03 .card .card-deco {
  position: relative;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  max-width: 40px;
  width: 40px;
  height: 40px;
  padding: 12px 0;
  border-radius: 20px;
  background: var(--main-color01-light);
  color: var(--main-color01);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  overflow: hidden;
}
.cont-list03 .card .card-deco img {
  position: absolute;
  top: 0;
  left: 0;
}

.cont-list04 {
}
.cont-list04 > [class*="col-"] {
  margin-bottom: 30px;
}
.cont-list04 .card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
  padding: 0;
  border-top: 3px solid var(--main-color01);
  border-bottom: 1px dashed var(--gray-color05);
  background: var(--main-color01-light);
  overflow: hidden;
  height: 100%;
}
.cont-list04 .card .card-header .tit {
  position: relative;
  margin: 0;
  font-family: var(--font-type02);
  font-weight: 700;
  font-size: 20px;
  color: var(--main-color01);
}
.cont-list04 .card [class*="card-"] {
  padding: 10px 15px;
}
.cont-list04 .card .card-body {
  height: 100%;
  color: #555;
}
.cont-list04 .card .card-body > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cont-list04 .card .card-body > ul > li {
  position: relative;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 9px;
  line-height: 1.5;
}
.cont-list04 .card .card-body > ul > li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #111;
}
.cont-list04 .card ul > li > strong {
  margin-right: 10px;
}
.cont-list04 .in .card-deco.reverse {
  color: var(--main-color01-light);
  background: var(--main-color01);
  font-size: 16px;
}
.cont-list04 .in .card-deco.img {
  background-image: url(/image/2025/site-ci.png);
  background-repeat: no-repeat;
}
.cont-list04 .in .card-deco.img img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  height: 100%;
}
.cont-list04 .in .card-deco.img.img01 {
  background-position: 40px 65px;
}

/* list-step */
.list-step01 {
  margin-bottom: 8px;
}
.list-step01 > li {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  padding: 0 5px;
}
.list-step01 > li:not(:first-child) {
  padding-left: 25px;
}
.list-step01 > li:last-child {
  margin-right: 0;
}
.list-step01 > li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: -6px;
  color: var(--gray-color05);
  background: url(/image/2025/list-step-icon01.svg) no-repeat center;
}
.list-step01 > li:first-child::before {
  display: none;
}
.list-step-tit {
  width: fit-content;
  min-width: 600px;
  margin: 0 auto 30px;
  padding: 15px;
  font-family: var(--font-type02);
  font-weight: 700;
  color: var(--main-color01-hover);
  font-size: 21px;
  text-align: center;
  background: linear-gradient(146deg, rgb(230 237 251) 0%, rgb(255 246 251) 100%);
  border-radius: 20px;
}

.list-step02 {
  gap: 20px 0;
  margin-bottom: 30px;
  margin-right: -20px;
  margin-left: -20px;
}
.list-step02 li[class*="col"] {
  padding-right: 20px;
  padding-left: 20px;
}
.list-step02 .item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgb(197 197 197 / 26%);
  border: 2px solid var(--main-color01);
  background: #fff;
}
.list-step02 .item > p {
  margin-bottom: 5px;
  color: #555;
}
.list-step02 .item:after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -35px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 45px;
  color: var(--gray-color06);
  font-family: bootstrap-icons;
  font-size: 17px;
  background: url(/image/2025/list-step-icon01.svg) no-repeat center;
}
.list-step02 [class^="col"]:first-child .item:after,
.list-step02 .col-3:nth-child(5n) .item:after {
  display: none;
}
.list-step02 .item > .step {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 34px;
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 15px;
  color: #fff;
  font-family: var(--font-type02);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  background-color: var(--main-color01);
}
.list-step02 .item > .step::before,
.list-step02 .item > .step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 0;
  width: 30px;
  height: 30px;
}
.list-step02 .item > .step::before {
  border-top-right-radius: 15px;
  background: #fff;
  z-index: 1;
}
.list-step02 .item > .step::after {
  background: var(--main-color01);
}
.list-step02 .item > .tit {
  padding-right: 30px;
  font-family: var(--font-type02);
  font-weight: 700;
  color: #1d1d1d;
}
.list-step02 .item > .tit > small {
  color: var(--point-color01);
}
.list-step02 .item > ul > li {
  position: relative;
  padding-left: 10px;
  word-break: break-word;
}
.list-step02 .item > ul > li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--main-color02);
}
.list-step02 .item.off {
  border: 2px solid var(--main-color01-light);
}
.list-step02 .item.off > .step {
  background-color: var(--main-color01-light);
  color: var(--main-color01);
}
.list-step02 .item.off > .step::after {
  background: var(--main-color01-light);
}

/*****************************************************
고객센터
*****************************************************/
.que_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}
.que_list::after {
  content: "";
  display: block;
  clear: both;
}
.que_list li {
  position: relative;
  flex: 0 0 auto;
  width: calc((100% - 150px) / 4);
  box-sizing: border-box;
  margin-bottom: 25px;
  /*border-bottom:1px solid #ddd;*/
}
.que_list li:nth-child(3n) {
  margin-right: 0;
}
.que_list li .state {
  position: relative;
  display: inline-block;
  min-width: 70px;
  padding: 6px 10px;
  color: #fff;
  background: #7d7d7d;
  text-align: center;
  border-radius: 20px;
  border-bottom-left-radius: 0;
}
.que_list li .state::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 20px;
  height: 40px;
  background-color: var(--main-color01);
  z-index: -1;
}
.que_list li .state.st_btn01 {
  background: var(--main-color01);
}
.que_list li .state.st_btn02::after {
  background: #7d7d7d;
}

.qu_img {
  position: relative;
  height: 0;
  margin-bottom: 20px;
  padding-bottom: 60%;
  border-radius: 15px;
  overflow: hidden;
}
.qu_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.que_list li .ptit {
  position: relative;
  width: 100%;
  height: 36px;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
  color: #333;
  font-size: 21px;
  font-weight: 600;
}
.qu_date {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  padding: 10px 0;
  font-family: var(--font-type02);
  font-size: 17px;
}
.qu_date::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--main-color01-light);
  z-index: -1;
}
.qu_date > strong {
  display: block;
  margin-right: 10px;
  color: var(--main-color01);
}
.qubtn_box {
  display: flex;
  gap: 6px;
}
.qubtn_box > a {
  flex: 1;
}

/*****************************************************
알림마당
*****************************************************/
/* news02_2 */
.hongbo_gate .sns-box {
  position: relative;
  margin-bottom: 10px;
}
.hongbo_gate .sns-box > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.hongbo_gate .sns-box > ul li {
  position: relative;
}
.hongbo_gate .sns-box > ul > li:not(:first-child)::before {
  display: none;
}
.hongbo_gate .sns-box > ul > li > a {
  position: relative;
  display: inline-block;
  padding: 0;
  width: 50px;
  height: 50px;
  background: #727272;
  border-radius: 50px;
  transition: all 0.3s ease-out;
}
.hongbo_gate .sns-box > ul > li > a:not(.more)::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
}
.hongbo_gate .sns-box > ul > li.sns-01 > a,
.hongbo_gate .sns-box > ul > li.sns-01 > a {
  background-color: #2a569c;
}
.hongbo_gate .sns-box > ul > li.sns-02 > a,
.hongbo_gate .sns-box > ul > li.sns-02 > a {
  background-color: #e6002e;
}
.hongbo_gate .sns-box > ul > li.sns-03 > a,
.hongbo_gate .sns-box > ul > li.sns-03 > a {
  background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0%, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
}
.hongbo_gate .sns-box > ul > li.sns-04 > a,
.hongbo_gate .sns-box > ul > li.sns-04 > a {
  background-color: #027c38;
}
.hongbo_gate .sns-box > ul > li > a:hover,
.hongbo_gate .sns-box > ul > li > a:focus-visible {
  transition: all 0.3s ease-out;
}
.hongbo_gate .sns-box > ul > li.sns-01 > a::before {
  background-image: url(/image/2025//sns-facebook.svg);
}
.hongbo_gate .sns-box > ul > li.sns-02 > a::before {
  background-image: url(/image/2025/sns-youtube.svg);
}
.hongbo_gate .sns-box > ul > li.sns-03 > a::before {
  background-image: url(/image/2025/sns-instagram.svg);
}
.hongbo_gate .sns-box > ul > li.sns-04 > a::before {
  background-image: url(/image/2025/sns-blog.svg);
}
.hongbo_gate .sns-box > ul > li > a:hover::before,
.hongbo_gate .sns-box > ul > li > a:focus-visible::before {
  transform: rotateY(360deg);
  transition-duration: 0.4s;
}
.hongbo_gate .sns-box > ul > li > a.link::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  position: absolute;
  top: -12px;
  right: -6px;
  z-index: 10;
  background-color: #949494;
  background-image: url(/image/2025/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  transform: rotate(-45deg);
  font-size: 23px;
  line-height: 1.1;
}
.hongbo_gate .sns-box > ul > li > a.link:hover::after,
.hongbo_gate .sns-box > ul > li > a.link:focus-visible::after {
  background-color: #333;
}

.hongbo_topbox {
  position: relative;
  height: 435px;
  margin-bottom: 60px;
  padding: 60px;
  background: url(/image/2025/news02_2-bg.jpg) no-repeat center;
}
.hongbo_topbox .copy {
  position: absolute;
  top: 60px;
  left: 60px;
}
.hongbo_topbox .copy > img {
  max-width: 200px;
}
.hongbo_topbox .copy h3 {
  margin-top: 10px;
  color: var(--main-color02);
  font-family: var(--font-type03);
  font-size: 46px;
}
.hongbo_topbox .inner {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
.hongbo_topbox .inner .item {
  width: 260px;
}
.hongbo_topbox .inner .item .tit {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--main-color01);
  color: #fff;
}
.hongbo_topbox .inner .item:last-child .tit,
.hongbo_topbox .inner .item:last-child .tit::after {
  background: var(--main-color02);
}
.hongbo_topbox .inner .item .tit::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 20px;
  height: 40px;
  background-color: var(--main-color01);
}
.hongbo_topbox .inner .item > a {
  position: relative;
  display: inline-block;
  padding: 20px;
  width: 260px;
  background: #fff;
  border-radius: 20px;
}
.hongbo_topbox .inner .item > a .thumb {
  aspect-ratio: 1 / 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 260px;
  position: relative;
}
.hongbo_topbox .inner .item > a .thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  clip-path: circle(75%);
  transition: clip-path 1s;
}
.hongbo_topbox .inner .item > a:hover .thumb::after,
.hongbo_topbox .inner .item > a:focus .thumb::after {
  opacity: 1;
}
.hongbo_topbox .inner .item > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(75%);
  transition: clip-path 1s;
  position: relative;
  z-index: 5;
}
.hongbo_topbox .inner .item > a:hover .thumb img,
.hongbo_topbox .inner .item > a:focus .thumb img {
  clip-path: circle(45%);
}
.hongbo_gate_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}
.hongbo_gate_bottom .item {
  flex: 0 0 50%;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.hongbo_gate_bottom .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
}
.hongbo_gate_bottom .title_wrap .tit-h3 {
  margin-bottom: 0;
}
.hongbo_gate_bottom .title_wrap .page_nu {
  margin-bottom: 0;
}
.hongbo_gate_bottom .title_wrap span {
  color: #1d1d1d;
}
.hongbo_gate_bottom .more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 102px;
  height: 50px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 5px solid #ececec;
  background: #fff;
  color: #767676;
  font-size: 16px;
  transition: all 0.3s ease-out;
}
.hongbo_gate_bottom .more::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: url(/image/2025/icon-more.svg) no-repeat center;
  transition: 0.3s all ease-in-out;
}
.hongbo_gate_bottom .more:hover,
.hongbo_gate_bottom .more:focus-visible {
  border: 5px solid var(--main-color02);
  color: #222;
  font-weight: 600;
}
.hongbo_gate_bottomp .more:hover::after,
.hongbo_gate_bottom .more:focus-visible::after {
  transform: rotate(90deg);
}
.hongbo_gate_bottom .utube_list {
  width: 100%;
  margin-bottom: 50px;
}
.hongbo_gate_bottom ul {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(4, minmax(20%, 327px));
}
.hongbo_gate_bottom .photo_gallery ul li {
  flex: 1;
}
.hongbo_gate_bottom ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
}
.hongbo_gate_bottom ul li a .thum {
  position: relative;
  width: 327px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}
.hongbo_gate_bottom ul li a .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hongbo_gate_bottom ul li a .thum::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hongbo_gate_bottom ul li a .thum::after {
  content: "View More";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  width: 130px;
  height: 28px;
  background: url(/image/2025/main/icon-link02-w.png) no-repeat right center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
}
.hongbo_gate_bottom ul li a:hover .thum,
.hongbo_gate_bottom ul li a:focus .thum,
.hongbo_gate_bottom ul li a:hover .thum::before,
.hongbo_gate_bottom ul li a:focus .thum::before,
.hongbo_gate_bottom ul li a:hover .thum::after,
.hongbo_gate_bottom ul li a:focus .thum::after {
  transition: 0.3s all ease-in-out;
}
.hongbo_gate_bottom ul li a:hover .thum::before,
.hongbo_gate_bottom ul li a:focus .thum::before {
  height: 100%;
}
.hongbo_gate_bottom ul li a:hover .thum::after,
.hongbo_gate_bottom ul li a:focus .thum::after {
  opacity: 1;
}
.hongbo_gate_bottom ul li a .tit {
  display: block;
  width: 100%;
  height: 58px;
  margin: 20px 0 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
  font-size: 19px;
}
.hongbo_gate_bottom ul li a:hover .tit,
.hongbo_gate_bottom ul li a:focus .tit {
  color: var(--main-color01);
}
.hongbo_gate_bottom ul li .date {
  font-size: 16px;
  color: #666;
}
.hongbo_gate_bottom .photo_gallery {
  position: relative;
}
.hongbo_gate_bottom .photo_gallery ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hongbo_gate_bottom .bodo ul {
  display: flex;
  flex-direction: column;
  gap: inherit;
  margin-top: 15px;
  border-top: 2px solid #444;
}
.hongbo_gate_bottom .bodo ul li {
  width: 100%;
  border-bottom: 1px solid #dedede;
  padding: 8px 0;
}
.hongbo_gate_bottom .bodo ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hongbo_gate_bottom .bodo ul li a .tit {
  flex: 0 0 70%;
  width: 70%;
  display: inline-block;
  height: 30px;
  margin: 5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 18px;
}
.hongbo_gate_bottom .bodo ul li a .date {
  flex: 0 0 20%;
  text-align: right;
}

/*news08_1*/
.bid-box {
  position: relative;
  width: 100%;
  padding: 60px 40px;
  border-radius: 30px;
  background: #ecf4ff url(/image/2025/news08_1-bg.png) no-repeat center;
  display: flex;
  margin: 80px auto;
  justify-content: center;
}
.bid-box.box01 .link-wrap {
  padding: 0 0 0 325px;
}
.bid-box.box02 .link-wrap {
  padding: 0 0 0 306px;
}
.bid-box .link-wrap .item {
  position: relative;
  display: block;
  width: 432px;
  background: var(--main-color01-light);
  border-radius: 20px;
  border: 3px solid #fff;
  padding: 24px 36px;
  transition: all 0.3s ease-in-out;
}
.bid-box .link-wrap .item::after {
  content: "";
  position: absolute;
}
.bid-box .link-wrap .item01::after {
  background: url(/image/2025/news08_1-img01.png) no-repeat;
  top: -73px;
  left: -328px;
  width: 310px;
  height: 265px;
}
.bid-box .link-wrap .item02::after {
  background: url(/image/2025/news08_1-img02.png) no-repeat;
  top: -70px;
  left: -306px;
  width: 287px;
  height: 260px;
}
.bid-box .link-wrap .item:hover,
.bid-box .link-wrap .item:focus {
  background: #f6faff;
  border: 3px solid var(--main-color01);
}
.bid-box .link-wrap .item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px 0 10px;
  background: #fff url(/image/2025/news08_1-arrow01.png) no-repeat center;
  transition: 0.3s all ease-in-out;
}
.bid-box .link-wrap .item:hover::before,
.bid-box .link-wrap .item:focus::before {
  background: var(--main-color01) url(/image/2025/news08_1-arrow02.png) no-repeat center center;
}
.bid-box .link-wrap .item .tit {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-type02);
  margin-bottom: 20px;
  color: #1d1d1d;
}
.bid-box .link-wrap .item .tit span {
  color: #1d1d1d;
  transition: 0.3s all ease-in-out;
}
.bid-box .link-wrap .item:hover .tit span,
.bid-box .link-wrap .item:focus .tit span {
  color: var(--main-color01);
}
.bid-box .link-wrap .item .txt {
  font-size: 20px;
  color: #1d1d1d;
}
/*****************************************************
열린경영
*****************************************************/
/* document-wrap */
.document-wrap {
  position: relative;
  padding: 15px;
  border: 5px solid var(--gray-color03);
}
.document-wrap::before,
.document-wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: -5px;
  width: 1400px;
  height: 70px;
}
.document-wrap::before {
  top: -5px;
  background: url(/image/2025/document-img03.jpg) no-repeat center top;
}
.document-wrap::after {
  bottom: -5px;
  background: url(/image/2025/document-img03.jpg) no-repeat center bottom;
  transform: rotateY(-90deg);
  transform: rotate(180deg);
}
.document-wrap .inner {
  padding: 80px;
  border: 2px solid var(--gray-color03);
}
.document-header {
  text-align: center;
  margin-bottom: 30px;
}
.document-header .tit-h3 {
  display: inline-block;
  font-size: 40px;
  padding-top: 50px;
  margin-bottom: 28px;
}
.document-header .tit-h3::before {
  left: 50%;
  width: 100%;
  height: 24px;
  transform: translateX(-50%);
  background: url(/image/2025/document-img01.png) no-repeat center;
}
.document-header .tit-h3::after {
  display: none;
}
.document-header .tit-h3 span {
  display: block;
  font-weight: 400;
  font-size: 28px;
}
.document-header .txt {
  margin: 0 0 50px 0;
  font-size: 22px;
}
.document-box01 {
  padding: 35px 15px;
  border-top: 1px solid #0742a1;
  border-bottom: 1px solid #0742a1;
  text-align: center;
}
.document-box01 .tit {
  font-family: var(--font-type02);
  font-size: 17px;
  font-weight: 400;
  color: #0742a1;
  margin-bottom: 16px;
}
.document-box01 .txt {
  line-height: 25px;
  margin-bottom: 0;
}
.document-body {
  position: relative;
  margin-bottom: 70px;
  padding: 60px;
  background-color: var(--gray-color01);
  border-radius: 15px;
}
.document-footer {
  text-align: center;
}
.document-footer .txt {
  margin: 0 0 30px 0;
  font-size: 22px;
}
.document-footer .sign {
  margin: 0 0 60px 0;
  color: #666;
  font-size: 21px;
}

ol.doc-list01 {
  margin-bottom: 0;
}
ol.doc-list01 > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
ol.doc-list01 > li:last-child {
  margin: 0;
}
ol.doc-list01 > li .num {
  position: relative;
  display: flex; /* position: absolute; */ /* top: 5px; */ /* left: 0; */
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 41px;
  height: 45px;
  padding: 5px;
  font-family: var(--font-type02);
  font-weight: 700;
  color: #fff;
  line-height: 2;
  font-size: 17px;
  background: url(/image/2025/document-img02.png) no-repeat center;
}
ol.doc-list01 > li .txt {
  display: inline-block;
  margin-bottom: 0;
}

/* pub15-cont */
.document-wrap.pub15-cont .document-body-top {
  position: relative;
  margin-bottom: 40px;
  padding: 60px;
  border: 3px solid var(--main-color01);
  border-radius: 15px;
}
.document-wrap.pub15-cont .dc-tit {
  position: absolute;
  top: 0;
  left: 10px;
  width: 150px;
  margin: 0;
  padding: 10px 20px;
  background: var(--main-color01);
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  color: #fff;
  text-align: center;
}
.document-wrap.pub15-cont .document-body-top .copy {
  margin: 0;
  text-align: center;
  font-family: var(--font-type03);
  font-size: 26px;
  font-weight: 600;
}
.document-wrap.pub15-cont .point01 {
  color: #08740f;
}
.document-wrap.pub15-cont .point02 {
  color: var(--main-color02);
}
.document-wrap.pub15-cont .point03 {
  position: relative;
  display: inline-block;
  color: var(--point-color01);
  text-underline-offset: 0.8rem;
  text-decoration: underline 0.2rem dotted #e4007f;
}
.document-wrap.pub15-cont .document-body > .txt {
  margin: 10px 0 30px;
}
.document-wrap.pub15-cont .document-body::after {
  content: "";
  display: inline-block;
  width: 175px;
  height: 84px;
  position: absolute;
  right: 30px;
  bottom: 0;
  background: url(/image/2025/pub15-img02.png) no-repeat center;
}
.document-wrap.pub15-cont .document-footer .sign-wrap {
  margin-bottom: 50px;
  font-size: 20px;
}
.document-wrap.pub15-cont .document-footer .sign-wrap .sign {
  margin-left: 20px;
}

/* 청렴도 자가진단 */
/* pub05_80 */
.result {
  margin-top: 60px;
}
.result .item-header {
  width: 100%;
  height: 82px;
  background: var(--main-color02) url(/image/2025/pub05_80-img01.png) no-repeat 820px bottom;
  border-radius: 20px;
  align-content: center;
  margin-bottom: 18px;
}
.result .item-header .tit {
  color: #fff;
  font-family: var(--font-type02);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
.result .item-body {
  width: 100%;
  padding: 60px;
  border: 1px dashed #a4b1cb;
  border-radius: 20px;
  text-align: center;
  background: url(/image/2025/pub05_80-img02.png) no-repeat center 25px;
}
.result .item-body .txt {
  font-size: 22px;
  letter-spacing: -1px;
}
.result .item-body .txt strong {
  font-size: 26px;
  color: var(--main-color02);
}
.result .item-body .stxt {
  font-size: 18px;
}

/*****************************************************
공단소개
*****************************************************/
/* about01_1 */
.greet {
  background: url(/image/2025/about01_1-bg.png) no-repeat left top;
  display: flex;
  justify-content: space-between;
  color: #1d1d1d;
  padding: 124px 0 0 57px;
  column-gap: 80px;
}
.greet .greet-left .greet-txt {
  color: #005eff;
  font-size: 20px;
  font-weight: 600;
}
.greet .greet-left .greet-tit {
  font-weight: 700;
  font-size: 48px;
  margin: 22px 0 40px;
  line-height: 1.3;
}
.greet .greet-left .greet-stit {
  letter-spacing: -1.5px;
  font-size: 30px;
  font-weight: 600;
}
.greet .greet-left .greet-txtbox {
  margin-top: 63px;
}
.greet .greet-left .greet-txtbox p {
  margin-bottom: 30px;
}
.greet .greet-right .sign {
  display: flex;
  column-gap: 30px;
  margin-top: 60px;
  align-items: center;
  justify-content: flex-end;
}
.greet .greet-right .sign .txt {
  font-weight: 500;
  font-size: 17px;
}
.greet .greet-right .sign img {
  width: 150px;
}

/* about02_2 */
.history-wrap {
}
.tab-content .history-wrap {
  margin-top: 80px;
}
.history-wrap .box-info {
  background: #f1f7ff url(/image/2025/about02_1-pt03.png) no-repeat right bottom;
  border-radius: 12px;
  text-align: center;
  padding: 34px 50px;
  margin-bottom: 140px;
}
.history-wrap .box-info p {
  margin: 0;
  color: #4d4d4d;
  font-family: var(--font-type01);
  font-size: 21px;
}
.history-wrap .box-info strong {
  display: block;
  margin-bottom: 10px;
  color: var(--main-color02);
  font-family: var(--font-type02);
  font-weight: 800 !important;
  font-size: 29px;
}
.history-tit {
}
.history-tit > .tit {
  position: relative;
  padding-top: 90px;
  padding-left: 86px;
  color: var(--main-color02);
  font-family: var(--font-type02);
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.history-tit > .tit::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 30px;
  width: 80px;
  height: 80px;
  background: url(/image/2025/about02_1-pt02.svg) no-repeat left center/cover;
}
.history-tit > .tit::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50px;
  left: 0;
  width: 50px;
  height: 50px;
  background: url(/image/2025/about02_1-pt01.svg) no-repeat left center/cover;
  animation: rollingAni 10s linear infinite;
}
.history-tit .tit > .txt {
  display: block;
  padding: 0 0 30px 0;
  color: #707070;
  font-size: 20px;
}
.history-tit .w-bg {
  position: relative;
  width: 485px;
}
.history-tit .img {
  width: 485px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgb(182, 195, 213, 0.8);
}
.history-tit .w-bg .img::after {
  content: "";
  display: inline-block;
  width: 290px;
  height: 72px;
  position: absolute;
  right: -80px;
  bottom: -80px;
  background: url(/image/2025/about02_2-logo.png) no-repeat right bottom;
}
.history-tit .list-style01 {
  width: 550px;
  margin-top: -100px;
  margin-left: 40px;
  padding: 140px 40px 40px;
  background: var(--gray-color01) url(/image/2025/about02_3-logo.png) no-repeat right bottom;
  border-radius: 10px;
}
.history-tit .list-style01 li {
  position: relative;
  display: flex;
}
.history-tit .list-style01 li::before {
}
.history-tit .list-style01 li .tit {
  flex: 0 0 80px;
  font-weight: 700;
  color: #1d1d1d;
}
.history-tit .list-style01 li .txt {
  color: #707070;
}
.progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}
.history-box {
  position: relative;
  display: flex;
  padding-left: 20px;
}
.history-box .progress {
  flex: 0 0 1px;
  position: relative;
  height: auto;
  background-color: #ccc;
  margin-top: 8px;
  overflow: visible;
}
.history-box .progress .bar {
  position: absolute;
  left: -1px;
  width: 2px;
  background-color: var(--main-color01);
  border-radius: 50px;
}
.history-box .progress .bar::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 5px solid var(--main-color02);
  border-radius: 50px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}
.history-box .history {
  flex: 1;
  padding-left: 40px;
}
.history-box .history .item:not(:last-child) {
  margin-bottom: 40px;
}
.history-box .history .year {
  margin-bottom: 20px;
  font-family: var(--font-type02);
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color01-hover);
}
.history-box .history .item .list {
  position: relative;
  margin-left: 6px;
}
.history-box .history .item:last-of-type .list {
  margin-bottom: 0;
  padding-bottom: 0;
}
.history-box .history .item:last-of-type .list::after {
  display: none;
}
.history-box .history .item .list > li {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.history-box .history .item .list > li .date {
  flex: 0 0 120px;
  color: var(--main-color01);
}
.history-box .history .item .list > li .txt {
  margin: 0;
  color: #707070;
  font-family: var(--font-type01);
}
.history-box .history .item .list > li .txt + .txt {
  margin-top: 8px;
}

/* about02_3 */
.business .item-list {
  display: flex;
  column-gap: 56px;
  flex-wrap: wrap;
}
.business .item-list .item {
  flex: 0 0 46%;
  margin-bottom: 100px;
}
.business .item-list .item-header {
  position: relative;
  margin-bottom: 40px;
}
.business .item-list .item-header .img-wrap {
  border-radius: 26px 60px 26px 26px;
  overflow: hidden;
  z-index: -1;
}
.business .item-list .cpl .item-header .img-wrap {
  border-radius: 60px 26px 26px 26px;
}
.business .item-list .item-header::before {
  content: "";
  background: #fff;
  width: 172px;
  height: 62px;
  border-radius: 35px 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.business .item-list .cpl .item-header::before {
  border-radius: 0 35px 0;
  left: 0;
}
.business .item-list .item-header .tit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 162px;
  height: 52px;
  background: var(--main-color02);
  font-size: 24px;
  font-family: var(--font-type02);
  font-weight: 600;
  color: #fff;
  line-height: 52px;
  text-align: center;
  border-radius: 26px;
  box-shadow: 0 3px 8px rgb(182, 195, 213, 0.8);
  z-index: 2;
}
.business .item-list .item-header .tit::before {
  content: "";
  background: url(/image/2025/btn-before.png);
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  bottom: -1px;
  left: -38px;
}
.business .item-list .item-header .tit::after {
  content: "";
  background: url(/image/2025/btn-after.png);
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: -38px;
  right: -1px;
}
.business .item-list .cpl .item-header .tit {
  background: var(--main-color01);
  left: 0;
  box-shadow: 0 3px 8px rgb(184, 182, 213, 0.8);
}
.business .item-list .cpl .item-header .tit::before {
  left: 170px;
  transform: rotateY(180deg);
}
.business .item-list .cpl .item-header .tit::after {
  left: -1px;
  transform: rotateY(180deg);
}
.business .item-list .item-body {
  width: 100%;
  padding: 32px 28px;
  border-radius: 30px;
  background: var(--main-color01-light) url(/image/2025/about02_3-logo.png) no-repeat bottom right;
}
.business .item-list .cpl .item-body {
  background: #f6f7ff url(/image/2025/about02_3-logo.png) no-repeat bottom right;
}
.business .item-list .item-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.business .item-list .item-body ul li {
  width: 196px;
  min-height: 54px;
}
.business .item-list .item-body ul li a {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 13px 10px;
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-type02);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  word-break: break-all;
}
.business .item-list .item-body ul li a:hover,
.business .item-list .item-body ul li a:focus {
  background: var(--main-color02);
  color: #fff;
}
.business .item-list .cpl .item-body ul li a:hover,
.business .item-list .cpl .item-body ul li a:focus {
  background: var(--main-color01);
}
.business .item-list .item-body ul li a:hover::before,
.business .item-list .item-body ul li a:focus::before {
  content: "";
  background: url(/image/2025/about02_3-arrow01.png) no-repeat;
  width: 26px;
  height: 26px;
  position: absolute;
  right: -9px;
  top: -8px;
  transition: all 0.2s;
}

/* about03 */
.about03_1 .inner {
  margin-bottom: 30px;
  padding: 60px;
  border: 1px solid var(--gray-color04);
  background: url(/image/2025/pt-grid.png) repeat center;
  text-align: center;
}

.about03_2 .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 104px;
  margin-bottom: 20px;
  padding: 24px 0;
  border: 1px solid var(--gray-color04);
  border-radius: 6px;
  text-align: center;
}
.about03_2 .character {
  padding: 30px;
}
.about03_2 .box {
  margin-bottom: 20px;
  padding: 30px;
  background: var(--main-color01-light);
  border-radius: 10px;
}
/* banner-zone */
.banner-zone .inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    height:96px;
    margin-bottom: 20px;
    padding: 27px 0;
    border: 1px solid var(--gray-color04);
    border-radius: 6px;
    text-align: center;
}
.banner-zone .inner a:hover, .banner-zone .inner a:focus {
  border: 2px solid var(--main-color01);
  transition: all 0.3s ease-out;
  cursor:pointer
}


/* about05_3 */
.welfare .box-info {
  background: #f1f7ff url(/image/2025/about05_3-deco01.png) no-repeat;
  border-radius: 12px;
  text-align: center;
  padding: 46px 50px;
  margin-bottom: 40px;
}
.welfare .box-info .tit {
  position: relative;
  font-size: 29px;
  font-family: var(--font-type02);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 4px;
}
.welfare .box-info .tit strong {
  color: var(--main-color02);
  font-weight: 800 !important;
  font-size: 32px;
}
.welfare .box-info .tit::after {
  content: "";
  background: url(/image/2025/about05_3-deco02.png);
  position: absolute;
  right: -48px;
  top: -10px;
  width: 43px;
  height: 36px;
}
.welfare .box-info .txt {
  margin-bottom: 0;
  font-size: 23px;
  color: #4d4d4d;
  letter-spacing: -0.5px;
}
.welfare .item-list {
  display: flex;
  border-bottom: 1px dashed #dcdcdc;
  padding: 30px 0;
}
.welfare .item-list .item-inner {
  flex: 1;
  display: flex;
  column-gap: 50px;
  padding: 10px 0;
}
.welfare .item-list .item-inner {
  border-right: 1px dashed #dcdcdc;
  margin-left: 40px;
}
.welfare .item-list .item-inner:nth-child(2n) {
  border-right: none;
}
.welfare .item-list:last-child .item-inner {
  border-right: none;
}
.welfare .item-list .ico {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.welfare .item-list .ico::after {
  content: "";
  background: url(/image/2025/about05_3-deco03.png) no-repeat center;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 6px;
}
.welfare .item-list .ico01 {
  background: #f1f7ff url(/image/2025/about05_3-icon01.png) no-repeat center;
}
.welfare .item-list .ico02 {
  background: #f1f7ff url(/image/2025/about05_3-icon02.png) no-repeat center;
}
.welfare .item-list .ico03 {
  background: #f1f7ff url(/image/2025/about05_3-icon03.png) no-repeat center;
}
.welfare .item-list .ico04 {
  background: #f1f7ff url(/image/2025/about05_3-icon04.png) no-repeat center;
}
.welfare .item-list .ico05 {
  background: #f1f7ff url(/image/2025/about05_3-icon05.png) no-repeat center;
}
.welfare .item-list .ico06 {
  background: #f1f7ff url(/image/2025/about05_3-icon06.png) no-repeat center;
}
.welfare .item-list .ico07 {
  background: #f1f7ff url(/image/2025/about05_3-icon07.png) no-repeat center;
}
.welfare .item-list .item-inner .txt-wrap .tit {
  font-family: var(--font-type02);
  font-size: 22px;
  font-weight: 700;
}
.welfare .item-list .item-inner .txt-wrap .txt {
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

/* about07 */
.sub-map .map-box {
  height: 540px;
  word-break: keep-all;
}
.sub-map .map-box iframe {
  width: 100%;
  height: 100%;
}
.sub-map .map-addr {
  background: #2459c5;
  color: #fff;
  padding: 28px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  margin: 18px 0 72px;
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.16);
}
.sub-map .map-addr p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.sub-map .map-addr p strong {
  font-weight: 700 !important;
  font-size: 22px;
  margin-right: 15px;
  color: #fff;
}
.sub-map .map-btn {
  position: relative;
  display: block;
  width: 140px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  text-align: center;
  color: #2459c5;
  border-radius: 25px;
  font-family: var(--font-type02);
  font-weight: 600;
  transition: all 0.2s;
}
.sub-map .map-btn:hover,
.sub-map .map-btn:focus {
  background: #0e3481;
  color: #fff;
}
.sub-map .map-btn .ico {
  position: absolute;
  content: "";
  background: #005eff;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
}
.sub-map .map-btn .ico::before {
  position: absolute;
  content: "";
  background: url(/image/2025/map-link.png) no-repeat;
  width: 14px;
  height: 16px;
  top: 8px;
  left: 10px;
  transition: all 0.3s;
}
.sub-map .map-btn .ico::after {
  position: absolute;
  content: "";
  background: url(/image/2025/map-link.png) no-repeat;
  width: 14px;
  height: 16px;
  top: 42px;
  left: 10px;
  transition: all 0.3s;
}
.sub-map .map-btn:hover .ico::before,
.sub-map .map-btn:focus .ico::before {
  top: -16px;
}
.sub-map .map-btn:hover .ico::after,
.sub-map .map-btn:focus .ico::after {
  top: 8px;
}
.sub-map .map-list {
  border-top: 1px dashed #e1e1e1;
  display: flex;
  align-items: center;
  gap: 76px;
  padding: 48px 0;
}
.sub-map .map-list02 .txt-wrap {
  display: flex;
  align-items: flex-start;
  gap: 115px;
}
.sub-map .map-list03 {
  border-bottom: 1px dashed #e1e1e1;
}
.sub-map .tit-box {
  min-width: 340px;
  height: 93px;
  padding: 17px 22px;
  border-radius: 20px;
  box-shadow: 0px 3px 12px rgba(220, 228, 239, 0.6);
  display: flex;
  align-items: center;
  gap: 25px;
}
.sub-map .tit-box .tit {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-type02);
}
.sub-map ul.list-style01 {
  margin-bottom: 0;
}
.sub-map .txt-box .txt-tit {
  font-size: 20px;
  font-family: var(--font-type02);
  font-weight: 700;
}

/* 조직도 */
.new_organ p {
  margin: 0;
}
.new_organ .ceo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new_organ .ceo_in {
  position: relative;
}
.new_organ .ceo_in::before {
  content: "";
  display: block;
  width: 1px;
  height: 85px;
  background-color: #c0c0c0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.new_organ .ceo .ceo-tit {
  width: 171px;
  height: 187px;
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  justify-content: center;
  background-image: url(/image/2025/organ-img01.svg);
  background-repeat: no-repeat;
  background-position: center;
  font-family: var(--font-type02);
  font-weight: 800;
  font-size: 24px;
  color: var(--point-color01);
}
.ceoin_t {
  max-width: 400px;
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  border: 2px solid var(--main-color01);
  position: relative;
}
dl.ceoin_t {
  padding-bottom: 10px;
}
.ceoin_t::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main-color01);
  border: 4px solid #fff;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.ceoin_t > dt {
  width: 100%;
  height: 54px;
  margin-bottom: 10px;
  border-radius: 8px 8px 0 0;
  background-color: var(--main-color01);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  position: unset;
  transform: none;
}
.ceoin_t > dd {
  padding: 0 20px;
}
.ceoin_t > dd + dd {
  margin-top: 8px;
}
.ceoin_t > dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background-color: #ebedff;
  color: var(--main-color01);
  font-weight: 600;
}
.ceoin_t > dd a:hover,
.ceoin_t > dd a:focus {
  background-color: var(--main-color01);
  color: #fff;
}
.ceoin_t.ins {
  max-width: 280px;
  margin-left: calc(50% + 250px);
  margin-top: -100px;
  border: 2px solid var(--main-color02);
}
.ceoin_t.ins .inner {
  height: auto;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ceoin_t.ins::before {
  display: none;
}
.ceoin_t.ins > p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 8px 8px 0 0;
  background-color: var(--main-color02);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.ceoin_t.ins .sub_title {
  color: var(--main-color02);
  font-size: 18px;
  font-weight: 600;
}
.ceoin_t.ins .inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-top: 12px;
  border-radius: 6px;
  background-color: #dee9ff;
  font-size: 18px;
  color: #1d1d1d;
  font-weight: 500;
}
.ceoin_t.ins .inner a:hover,
.ceoin_t.ins .inner a:focus {
  background-color: var(--main-color02);
  color: #fff;
}
.sub-team {
  display: flex;
  gap: 20px;
  margin: 60px 0 40px;
  position: relative;
}
.sub-team::before {
  content: "";
  display: block;
  width: calc(100% - 365px);
  height: 1px;
  background-color: #c0c0c0;
  position: absolute;
  left: 108px;
  top: -40px;
}
.sub-team .team {
  width: calc((100% - 100px) / 6);
}
.sub-team .team.team-d {
  width: calc(((100% - 100px) / 6) * 2);
}
.sub-team .team .t-tit,
.sub-team .team .t-box {
  border-radius: 8px;
}
.sub-team .team .t-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-size: 20px;
  font-weight: 600;
  background-color: var(--main-color02);
  color: #fff;
  position: relative;
  margin-bottom: 10px;
}
.sub-team .team .t-tit::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main-color02);
  border: 4px solid #fff;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.sub-team .team .t-tit::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #c0c0c0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.sub-team .team .t-box {
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  background-color: var(--main-color01-light);
}
.sub-team .t-box + .t-box {
  margin-top: 10px;
}
.sub-team .team.team-d .box-wrap {
  display: flex;
  gap: 0 20px;
}
.sub-team .team.team-d .t-flex {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.sub-team .team .t-box .tit {
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--main-color02);
  background-color: #fff;
  color: var(--main-color02);
  font-weight: 600;
}
.sub-team .team .t-box dd {
  margin: 0;
  padding: 0 12px 0 24px;
  position: relative;
}
.sub-team .team .t-box dd::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #555;
  position: absolute;
  top: 11px;
  left: 12px;
}
.sub-team .team .t-box dd + dd {
  margin-top: 6px;
}
.sub-team .team .t-box dd a {
  display: block;
  width: 100%;
  color: #555;
  font-weight: 500;
}
.sub-team .team .t-box dd a:hover,
.sub-team .team .t-box dd a:focus {
  color: var(--main-color02);
  font-weight: 600;
}

.info_list_wrap02 {
  margin-bottom: 60px;
}
.info_list_wrap02 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
.info_list_wrap02 ul li {
  width: 20%;
}
.info_list_wrap02 ul li + li {
  border-left: 1px dashed var(--gray-color04);
}
.info_list_wrap02 ul li:nth-child(5n) + li {
  border-left: none;
}
.info_list_wrap02 ul li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info_list_wrap02 ul li a .tit {
  padding: 0 4px;
  color: #333;
  font-weight: 500;
  margin-top: 16px;
  position: relative;
}
.info_list_wrap02 ul li a .tit::before {
  content: "";
  width: 0;
  height: 14px;
  position: absolute;
  bottom: 2px;
  left: 0;
  transition: 0.3s;
  z-index: -1;
}
.info_list_wrap02 ul li a:hover .tit,
.info_list_wrap02 ul li a:focus .tit,
.info_list_wrap02 ul li a.over .tit {
  font-weight: 600;
  color: var(--main-color01);
}
.info_list_wrap02 ul li a:hover .tit::before,
.info_list_wrap02 ul li a:focus .tit::before,
.info_list_wrap02 ul li a.over .tit::before {
  width: 100%;
  background-color: var(--main-color01);
  opacity: 0.18;
}
.info_list_wrap02 ul li a .img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8fb;
}
.info_list_wrap02 ul li a.over .img {
  background-color: #ffeaf6;
}
.info_list_wrap02 ul li a .img img {
  transform: scale(0.8);
  object-fit: none;
  transition: 0.4s;
}
.info_list_wrap02 ul li a:hover img,
.info_list_wrap02 ul li a:focus img {
  transform: scale(0.8) rotateY(360deg);
}
.board .search_box.cont_search {
  margin-bottom: 60px;
}
.board .search_box.cont_search .search_input {
  width: 50%;
}

/* popup search_box */
.pop-cont .search_box select,
.pop-cont .search_box input,
.pop-cont .search_box_news select,
.pop-cont .search_box_news input {
  width: calc(100% - 10px);
  height: calc(2.5rem + 2px);
  margin: 0;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border: 1px solid #666;
  border-radius: 6px;
  color: #8a949e;
  font-size: 17px;
}
.pop-cont .search_box input::placeholder {
  color: #8a949e;
}
.pop-cont .search_box,
.pop-cont .search_box_news {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 35px;
  padding: 35px 0;
  background: var(--gray-color01);
  border-radius: 10px;
  gap: 6px;
}
.pop-cont .search_box .sc_tit2 {
  padding: 0;
  float: none;
}
.pop-cont .search_box .sc_cont1,
.pop-cont .search_box .sc_cont2,
.pop-cont .search_box_news .sc_cont1,
.pop-cont .search_box_news .sc_cont2 {
  float: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.pop-cont .search_box .btn-search,
.pop-cont .search_box_news .btn-search {
  position: relative;
  width: 47px;
  min-width: 47px;
  height: calc(2.5rem + 2px);
  padding: 6px 20px;
  border: none;
  background: var(--main-color02) url(/image/2025/icon-search-w.svg) no-repeat center;
  text-indent: -9999px;
}
.pop-cont .search_box .btn-search:hover,
.pop-cont .search_box_news .btn-search:hover,
.pop-cont .search_box .btn-search:focus,
.pop-cont .search_box_news .btn-search:focus {
  background: var(--main-color02-hover) url(/image/2025/icon-search-w.svg) no-repeat center;
}

/*****************************************************
기타
*****************************************************/
/* sitemap */
.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.sitemap-list .item {
  width: calc(100% - 30px);
  margin: auto;
  margin-bottom: 48px;
}
.sitemap-list .item + .item {
  padding-top: 40px;
  border-top: 1px dashed var(--gray-color04);
}
.sitemap-list .item h3 {
  margin-bottom: 10px;
  padding-left: 30px;
  background: no-repeat url("/common/images/sitemap-icon.png") left top 3px;
  font-family: var(--font-type02);
  font-weight: 800;
}
.sitemap-list .item .depth1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.sitemap-list .item .depth1 > li {
  height: 100%;
}
.sitemap-list .item .depth1 > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--main-color01);
  border-radius: 8px;
  color: var(--main-color01);
}
.sitemap-list .item .depth1 > li > a:hover,
.sitemap-list .item .depth1 > li > a:focus {
  background-color: var(--main-color01);
  color: #fff;
}
.sitemap-list .item .depth1 > li > .no-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--main-color01);
  border-radius: 8px;
  color: var(--main-color01);
}
.sitemap-list .item .depth1 > li:not(:first-child) > h4 {
  margin-top: 10px;
}
.sitemap-list .item .depth1 > li .depth2 {
  height: calc(100% - 60px);
  background: var(--main-color01-light);
  margin-top: 12px;
  padding: 20px;
  border-radius: 8px;
}
.sitemap-list .item .depth2 li a {
  font-weight: 400;
  padding-left: 12px;
  position: relative;
}
.sitemap-list .item .depth2 li a:hover span,
.sitemap-list .item .depth2 li a:focus span {
  color: var(--main-color01);
  font-weight: 500;
}
.sitemap-list .item .depth2 li a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--main-color01);
}
.sitemap-list .item .depth2 li a.link::after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-top: -2px;
  margin-left: 4px;
  background: url(/image/2025/icon-link.svg) no-repeat center;
}
.sitemap-list .site-map-list > li > ul > li {
  font-size: 15px;
}
.sitemap-list .item .depth2 > li .depth3 {
  border-radius: 8px;
  background-color: #fff;
  padding: 15px 20px;
  margin-top: 6px;
}
.sitemap-list .item .depth2 > li .depth3 > li a {
  padding-left: 16px;
}
.sitemap-list .item .depth2 > li .depth3 > li a::before {
  width: 8px;
  height: 1px;
  top: 10px;
  background-color: #999;
}

/* login */
.login_box_wrap {
  padding: 40px 80px;
  background-color: #f8f8fb;
  display: flex;
  justify-content: center;
}
.login {
  max-width: 500px;
  width: 100%;
  border: none;
  margin: unset;
}
.login_box_wrap .tit-h3 {
  width: fit-content;
  margin-bottom: 20px;
}
.login_box .login_box_input p {
  margin-bottom: 10px;
}
.login_box .login_box_input input {
  padding: 12px 15px;
  font-size: 18px;
}
.login_bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
}
.login_bottom .list-style01 {
  margin: 0;
}
.btn-style01.login-btn {
  width: 100%;
  padding: 10px 15px;
  background-color: var(--main-color01);
  color: #fff;
}
.btn-style01.login-btn:hover,
.btn-style01.login-btn:focus {
  background-color: var(--main-color01-hover);
}

/*****************************************************
개인정보처리방침
*****************************************************/
.news04_5 .cont-list04 .card {
  min-height: 250px;
}
.news04_5 .cont-list04 .card .card-body {
  display: flex;
  align-items: center;
  column-gap: 35px;
  padding: 0 28px 20px 40px;
}
.tit-h3.bullet {
  display: block;
  padding-left: 0;
}
.bullet.tit-h3::before,
.bullet.tit-h3::after {
  display: none;
}
.news04_5 .cont-list01 .inner {
  min-height: auto;
  padding: 16px 25px 16px 80px;
}
.news04_5 .cont-list01 .inner > .num {
  top: 10px;
}
.cont-list01 .bullet-icon {
  margin-left: 5px;
}
.list_icon {
  margin-right: 4px;
}

/*****************************************************
회원가입
*****************************************************/
.slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.slogan::before,
.slogan::after {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transition: 0.5s;
}
.slogan::before {
  width: 137px;
  height: 65px;
  background-image: url(/image/2025/slogan-bg02.png);
  top: -10px;
  left: 170px;
  -webkit-animation: move01 3s ease-in-out infinite;
  animation: move01 3s ease-in-out infinite;
}
.slogan::after {
  width: 111px;
  height: 52px;
  background-image: url(/image/2025/slogan-bg03.png);
  top: 110px;
  left: 330px;
  -webkit-animation: move02 3s ease-in-out infinite;
  animation: move02 3s ease-in-out infinite;
}

.slogan img {
  width: fit-content;
  margin-bottom: 24px;
}
.slogan p {
  margin: 0;
  font-size: 20px;
  text-align: center;
  color: #1d1d1d;
}
.slogan p.greeting {
  font-size: 26px;
  font-weight: 600;
}
.slogan p.greeting .blue-light {
  display: inline-block;
  width: fit-content;
  font-weight: 700;
  color: var(--main-color01);
  position: relative;
}
.slogan p.greeting .blue-light::before {
  content: "";
  display: block;
  width: calc(100% + 6px);
  height: 18px;
  background-color: var(--main-color01);
  opacity: 0.15;
  position: absolute;
  bottom: 6px;
  left: -3px;
}

.join-wrap {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  position: relative;
}
.join-wrap::before {
  content: "";
  display: block;
  width: 548px;
  height: 155px;
  background-image: url(/image/2025/slogan-bg01.png);
  position: absolute;
  top: -108px;
  right: 15px;
  z-index: -1;
}
.join-wrap .info-text {
  margin-left: 20px;
}
.join-box {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.join-box .join {
  border: 2px solid transparent;
  max-width: 600px;
  width: 100%;
  display: flex;
  padding: 40px;
  background-color: #f8f8fb;
  border-radius: 20px;
  transition: 0.3s;
}
.join-box .join .icon {
  width: 90px;
  height: 90px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  background-repeat: no-repeat;
  background-position: center;
}
.join-box .join.nomal .icon {
  background-image: url(/image/2025/login-ico01.svg);
}
.join-box .join.kids .icon {
  background-image: url(/image/2025/login-ico02.svg);
}
.join-box .join .inner {
  width: calc(100% - 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.join-box .join .txt {
  color: #1d1d1d;
  font-size: 20px;
  font-weight: 600;
}
.join-box .join .txt p {
  margin: 0;
}
.join-box .join .txt span {
  display: block;
  font-weight: 400;
  font-size: 16px;
}
.join-box .join .btn {
  width: 180px;
  height: 55px;
  border-radius: 27px;
  padding: 8px 8px 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--main-color01);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.join-box .join .btn::before {
  content: "";
  display: block;
  width: 180px;
  height: 55px;
  border-radius: 27px;
  padding: 8px 8px 8px 24px;
  background: transparent linear-gradient(106deg, #e4007f 0%, #601986 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
.join-box .join .btn p {
  color: var(--main-color01);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.join-box .join .btn .arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-color01);
  position: relative;
  overflow: hidden;
}
.join-box .join .btn .arr::before,
.join-box .join .btn .arr::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transition: 0.5s;
}
.join-box .join .btn .arr::before {
  background-image: url(/image/2025/login-arr.svg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.join-box .join .btn .arr::after {
  background-image: url(/image/2025/login-arr-h.svg);
  top: 150%;
  left: -150%;
  transform: translate(-150%, 150%);
}

/* hover 효과 */
.join-box .join.nomal:hover .icon,
.join-box .join.nomal:focus .icon {
  background-image: url(/image/2025/login-ico03.svg);
}
.join-box .join.kids:hover .icon,
.join-box .join.kids:focus .icon {
  background-image: url(/image/2025/login-ico04.svg);
}
.join-box .join:hover .btn,
.join-box .join:focus .btn {
  border: 1px solid transparent;
}
.join-box .join:hover .btn::before,
.join-box .join:focus .btn::before {
  opacity: 1;
}
.join-box .join:hover .btn p,
.join-box .join:focus .btn p {
  color: #fff;
  z-index: 0;
}
.join-box .join:hover .btn .arr,
.join-box .join:focus .btn .arr {
  background-color: #fff;
}
.join-box .join:hover .btn .arr::before,
.join-box .join:focus .btn .arr::before {
  top: -150%;
  left: 150%;
  transform: translate(150%, -150%);
}
.join-box .join:hover .btn .arr::after,
.join-box .join:focus .btn .arr::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*****************************************************
회원가입 절차
*****************************************************/
.step-st01 {
  display: flex;
  gap: 100px;
  align-items: center;
  margin-bottom: 40px;
}
.step-st01 .step {
  width: 275px;
  height: 100px;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  gap: 24px;
  align-items: center;
  background-color: var(--gray-color02);
  position: relative;
}
.step-st01 .step + .step::before {
  content: "";
  display: block;
  width: 24px;
  height: 16px;
  background-image: url(/image/2025/step-arr01.svg);
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateX(-50%);
}
.step-st01 .step.step-ing + .step::before {
  content: "";
  display: block;
  width: 24px;
  height: 16px;
  background-image: url(/image/2025/step-arr02.svg);
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateX(-50%);
  -webkit-animation: move03 3s ease-in-out infinite;
  animation: move03 3s ease-in-out infinite;
}
@keyframes move03 {
  0% {
    transform: translateX(-60%);
    opacity: 0.2;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-60%);
    opacity: 0.2;
  }
}

.step-st01 .step .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
}
.step-st01 .step p {
  margin: 0;
}
.step-st01 .step .txt span {
  font-size: 16px;
  color: var(--main-color01);
  font-weight: 500;
}
.step-st01 .step .txt p {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1d;
}
.step-st01 .step.step-ing {
  background-color: var(--main-color01);
  background-image: url(/image/2025/step-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom -10px right 20px;
}
.step-st01 .step.step-ing .txt span,
.step-st01 .step.step-ing .txt p {
  color: #fff;
}

.info-box .info-text {
  line-height: unset;
}

.sub-search {
  max-width: 840px;
  width: 100%;
  margin: auto;
}
.sub-search .agree-box {
  margin-top: 20px;
}
.agree-box {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}
.agree-box .box {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  padding: 40px 60px;
  background-color: var(--gray-color01);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.agree-box .box .tit-h4 {
  margin: 0;
}
.agree-box .box .ico {
  width: 120px;
  height: 120px;
  margin: 16px 0 28px 0;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(000, 000, 000, 0.05);
}
.agree-box .box .member-btn {
  width: 120px;
  border-radius: 24px;
  padding: 8px 20px;
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid var(--main-color01);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color01);
}
.agree-box .box p {
  margin: 0;
  font-size: 16px;
  word-break: keep-all;
  text-align: center;
}
.agree-box .box p span {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
}

.agree-box .box .member-btn:hover,
.agree-box .box .member-btn:focus {
  background-color: var(--main-color01);
  color: #fff;
}
.pop-cont .agree-box {
  margin-top: 0;
}
.pop-cont .agree-box .box {
  max-width: unset;
  width: 100%;
}

.register_form_wrap {
  background-color: var(--gray-color01);
  border-radius: 10px;
  padding: 40px;
}
.join-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.join-list > li {
  width: calc(100% - 40px);
  padding: 20px 0;
}
.join-list > li + li {
  border-top: 1px dashed var(--gray-color04);
}
.join-list > li .list-style01 {
  margin: 0;
}
.join-list input.text {
  height: calc(2.25rem + 2px);
  padding: 0 10px;
}
.join-list .add-search {
  display: flex;
  gap: 6px;
  align-items: center;
}
.join-list .add-search + .add-search {
  margin-top: 12px;
}
.join-list .add-search .btn-style01 {
  white-space: nowrap;
}
.join-list .tell {
  width: 40%;
  display: flex;
  gap: 6px;
  align-items: center;
}
.join-list select {
  width: calc(100% / 3);
  padding: 0 10px;
  height: calc(2.25rem + 2px);
  border-radius: 5px;
  border: 1px solid #ccc;
}
.join-list .tell input.text {
  width: calc(100% / 3);
}

.join-clear {
  margin-top: 80px;
  border-radius: 20px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
}
.join-clear .join-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(228, 000, 127, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.join-clear > p {
  color: #1d1d1d;
  margin-bottom: 0;
}
.join-clear .clear-tit {
  font-family: var(--font-type02);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.join-clear .clear-tit span {
  color: var(--main-color01);
}
.agree-bt.box-style02 .list-style01 {
  margin: 0;
}
.agree-bt.box-style02 .info-text {
  margin-bottom: 0;
}
.agree-bt.box-style02 .info-text.width-fit.center {
  margin: auto;
}

/* popup */
#popup-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
#popup-wrap.LayerPopup {
  z-index: 9999;
  position: absolute;
  overflow: hidden;
  width: auto;
  height: auto;
  box-shadow: 10px 10px 10px 0px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 10px 10px 10px 0px rgb(0 0 0 / 10%);
}
#popup-wrap .pop-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  background: var(--main-color01);
  z-index: 1000;
}
#popup-wrap .pop-head .ptit {
  font-size: 20px;
  color: #fff;
  padding: 20px 0 20px 20px;
  font-family: var(--font-type02);
  font-weight: 500;
}
#popup-wrap .btn-close {
  border: 0;
  cursor: pointer;
  width: 70px;
  height: 70px;
  text-indent: -9999px;
  display: block;
  background: url("/image/2025/close-white.png") no-repeat center;
  z-index: 1200;
}
#popup-wrap .pop-cont {
  position: relative;
  padding: 20px;
  display: block;
  background: #fff;
}
