.wrap {
  max-width: 1400px;
  margin: 28px auto;
}

.title {
  font-size: 20px;
  font-weight: 800;
  margin:20px 0;
}

.product-item-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px 0;
  overflow: hidden;
}

.product-card-item {
  position: relative;
  text-align: center;
  /* padding: 5px; */
  width: 320px;
  overflow: clip;
}



.product-card-item .product-image {
  border: solid 1px var(--colorD);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: auto;
}

.product-image {
  width: 100%;
  height: calc(20vh + 30px);
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  z-index: 1;
}

.product-details {
  padding: 12px;
  padding-top: 25vh;
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: solid 1px var(--colorD);
  width: 100%;
  height: auto;
  overflow: hidden;
}

.product-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-title-main {
  color: var(--color0);
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description {
  opacity: 0.9;
  color: var(--color5);
  font-size: 14px;
  line-height: 1.25;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-location,
.product-date {
  display: flex;
  align-items: center;
}

.location-icon,
.date-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.location-text,
.date-text {
  opacity: 0.9;
  color: #767676;
  font-size: 14px;
}


.product-price {
  position: relative;
  text-align: right;
}

.product-price .price-value {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #d60000;
  letter-spacing: -0.02em;
}

.product-price .price-currency {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #d60000;
  font-weight: 700;
}

.shipping-info {
  text-align: right;
}

.shipping-info .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
  border-radius: 999px;
  font-size: 12px;
  color: #666;
}




@media (max-width: 1024px) {
  .product-item-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-item-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-price .price-value {
    font-size: 20px;
  }

}

@media (max-width: 520px) {

  .product-item-container {
    gap: 10px;
  }

  .product-item-container .product-card-item {
    width: auto;
  }

  .product-image {
    height: 150px;
  }

  .product-details {
    padding: 10px 5px;
    padding-top: calc(150px + 10px);
    gap: 10px;
    min-height: 280px;
    max-height: 280px;
  }

  .product-title-main {
    text-align: left;
  }

  .product-description {
    font-size: 10px;
    text-align: left;
  }

  .location-text,
  .date-text {
    font-size: 9px;
    word-break: keep-all;
    line-height: 1.2;
  }

  .location-icon,
  .date-icon {
    width: 10px;
    height: 10px;
    margin-right: 3px;
  }
}


.program-card-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
  max-height: 500px;
  overflow-y: scroll;
}

.program-card-item {
  flex: 1 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.program-card-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .program-card-item {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

@media (max-width: 520px) {
  .program-card-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



.card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.card-wrap .card {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  background: #F5F5F5;
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  height: 160px;
}

.card-wrap .card .card-inner {
  position: relative;
  display: flex;
  gap: 20px;
}

.card-wrap .card .card-inner ul {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 16px;
}

.card-wrap .card .card-inner ul li {
  margin-top: 5px;
}

.card-wrap .card .card-inner ul li a {
  font-weight: bold;
}





@media screen and (max-width: 1024px) {
  .card-wrap .card .card-inner ul li {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .card-wrap {
    flex-direction: column;
  }

  .txt-box {
    font-size: 14px;
  }
}


.online-btn {
  margin-top: 10px;
  width: 100%;
  height: 32px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  padding: 5px;
  background: var(--theme);
  color: var(--colorF);
}


.accordion-wrap {
  position: relative;
}

.accordion-wrap ul.lists {
  border-top: 1px solid #333;
}

.accordion-wrap ul.lists>li {
  border-bottom: 1px solid #ddd;
}

.accordion-wrap ul.lists>li:last-child {
  border-bottom: 1px solid #333;
}

*/ .accordion-wrap ul.lists>li .accord-title {
  display: block;
  position: relative;
}

.accordion-wrap ul.lists>li .accord-title .btn-toggle {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 50px 20px 46px;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .accordion-wrap ul.lists>li .accord-title .btn-toggle {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul.lists>li .accord-title .btn-toggle {
    padding: 15px 50px 15px 38px;
  }
}

.accordion-wrap ul.lists>li .accord-title .btn-toggle::before {
  content: 'Q';
  position: absolute;
  top: 20px;
  left: 20px;
  color: #1e3971;
  font-size: 24px;
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul.lists>li .accord-title .btn-toggle::before {
    top: 15px;
    left: 12px;
    font-size: 20px;
  }
}

.accordion-wrap ul.lists>li .accord-title .btn-toggle::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border: 2px solid #333;
  border-top: none;
  border-left: none;
  margin-top: -8px;
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul.lists>li .accord-title .btn-toggle::after {
    right: 17px;
  }
}

.accordion-wrap ul.lists>li.open .accord-title .btn-toggle::after {
  margin-top: -3px;
  transform: rotate(225deg);
}

.accordion-wrap ul.lists>li .accord-cont {
  display: none;
  position: relative;
  padding: 20px;
  padding-left: 66px;
  background: #f6f6f6;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .accordion-wrap ul.lists>li .accord-cont {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul.lists>li .accord-cont {
    padding: 15px 20px 15px 58px;
  }
}

.accordion-wrap ul.lists>li .accord-cont::before {
  content: 'A';
  position: absolute;
  top: 20px;
  left: 40px;
  color: #22140c;
  font-size: 24px;
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul.lists>li .accord-cont::before {
    top: 15px;
    left: 12px;
    font-size: 20px;
  }
}

/* board */
.boardview-wrap {
  border-top: 1px solid #333;
}

.boardview-wrap .board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
  background: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head {
    padding: 12px 20px;
    display: block;
  }
}

.boardview-wrap .board-head .tit {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .tit {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .tit {
    padding-right: 0;
  }
}

.boardview-wrap .board-head .info {
  font-size: 0;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .info {
    margin-top: 5px;
  }
}

.boardview-wrap .board-head .info li {
  display: inline-block;
  vertical-align: top;
  color: #666;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .info li {
    font-size: 12px;
    line-height: 20px;
  }
}

.boardview-wrap .board-head .info li::before {
  content: ' ';
  display: inline-block;
  vertical-align: top;
  width: 1px;
  height: 12px;
  margin: 5px 15px;
  background: #ddd;
}

.boardview-wrap .board-head .info li:first-child::before {
  display: none;
}

.boardview-wrap .board-content {
  padding-top: 30px;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content {
    padding-top: 20px;
  }
}

.boardview-wrap .board-content .img {
  margin: 60px 0;
}

@media screen and (max-width: 1024px) {
  .boardview-wrap .board-content .img {
    margin: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .img {
    margin: 30px 0;
  }
}

.boardview-wrap .board-content .img:first-child {
  margin-top: 0;
}

.boardview-wrap .board-content .cont {
  padding: 0 40px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .cont {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .cont {
    padding: 0 20px;
  }
}

.boardview-wrap .board-content .cont:last-child {
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .boardview-wrap .board-content .cont:last-child {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .cont:last-child {
    padding-bottom: 30px;
  }
}

.boardview-wrap .board-content .files {
  margin-top: 60px;
  padding: 15px 40px;
  border-top: 1px solid #ddd;
}

.boardview-wrap .board-content .files::after {
  content: " ";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files {
    margin-top: 40px;
    padding: 10px 20px;
  }
}

.boardview-wrap .board-content .files .tit {
  float: left;
  font-size: 16px;
  line-height: 24px;
  color: #111;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .tit {
    font-size: 14px;
    line-height: 22px;
  }
}

.boardview-wrap .board-content .files .file-lists {
  margin-left: 100px;
  padding: 1px 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .file-lists {
    margin-left: 80px;
    padding: 0;
  }
}

.boardview-wrap .board-content .files .file-lists li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .file-lists li {
    display: block;
    margin-top: 5px;
  }

  .boardview-wrap .board-content .files .file-lists li:first-child {
    margin-top: 0;
  }
}

.boardview-wrap .board-content .files .file-lists li a {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #888;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .file-lists li a {
    font-size: 12px;
    line-height: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .boardview-wrap .board-content .files .file-lists li a:hover {
    text-decoration: underline;
  }
}

.boardview-wrap .board-foot .more-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-foot .more-view {
    padding: 10px 0;
  }
}

.boardview-wrap .board-foot .more-view li {
  position: relative;
  flex: 1;
  width: 50%;
}

.boardview-wrap .board-foot .more-view li.prev {
  padding-left: 40px;
}

.boardview-wrap .board-foot .more-view li.next {
  padding-right: 40px;
}

.boardview-wrap .board-foot .more-view li::before {
  content: ' ';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border: 1px solid #666;
  border-right: none;
  border-bottom: none;
}

.boardview-wrap .board-foot .more-view li.prev::before {
  transform: rotate(-45deg);
  left: 20px;
}

.boardview-wrap .board-foot .more-view li.next::before {
  transform: rotate(-225deg);
  right: 20px;
}

.boardview-wrap .board-foot .more-view li dl {
  display: flex;
  align-items: center;
}

.boardview-wrap .board-foot .more-view li dl dt {
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-foot .more-view li dl dt {
    font-size: 14px;
    line-height: 22px;
  }
}

.boardview-wrap .board-foot .more-view li dl dd {
  white-space: nowrap;
  padding: 0 10px;
  overflow: hidden;
}

.boardview-wrap .board-foot .more-view li dl dd a {
  display: inline-block;
  max-width: 100%;
  color: #888;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-foot .more-view li dl dd a {
    font-size: 12px;
    line-height: 20px;
  }
}

@media screen and (min-width: 1025px) {

  .boardview-wrap .board-foot .more-view li dl dd a:hover,
  .boardview-wrap .board-foot .more-view li dl dd a:active {
    text-decoration: underline;
  }
}

.boardview-wrap .board-foot .more-view li.next dl {
  flex-direction: row-reverse;
}

.boardview-wrap.qna-type .tit {
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap.qna-type .tit {
    padding-left: 20px;
  }
}

.boardview-wrap.qna-type .tit::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
}

.boardview-wrap.qna-type .q-box .tit::before {
  content: 'Q.';
}

.boardview-wrap.qna-type .a-box .board-head {
  background: transparent;
}

.boardview-wrap.qna-type .a-box .board-head .tit::before {
  content: 'A.';
}

.boardview-wrap.qna-type .board-content .cont {
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap.qna-type .board-content .cont {
    padding-left: 40px;
  }
}

.board-btn {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .board-btn {
    margin-top: 30px;
  }
}

.board-btn .btn {
  position: absolute;
  right: 0;
  top: -114px;
}

@media screen and (max-width: 767px) {
  .board-btn .btn {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
}

/* button */
.btn {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  font-size: 16px;
  vertical-align: top;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
  text-decoration: none !important;
}


.btn.btn-cancel {
  background-color: #888;
  border-color: #888;
  color: #fff;
}

.btn.btn-cancel:hover,
.btn.btn-cancel:active {
  background-color: #fe0001;
  border-color: #fe0001;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}




.btn span {
  display: inline-block;
  vertical-align: top;
}

.btn.rounded {
  border-radius: 20px;
}

.btn.radius {
  border-radius: 8px;
}

.btn.icon-go span {
  position: relative;
  padding-right: 34px;
}

.btn.icon-go span::before {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.btn.icon-go span::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 1px;
  margin-top: -4px;
  background: currentColor;
  transform: rotate(40deg);
}

.btn.btn-black {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

.btn.btn-black:hover,
.btn.btn-black:active {
  background-color: #353535;
  border-color: #353535;
}

.btn.btn-border-black {
  border-color: #111;
  color: #111;
}

.btn-wrap {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  gap: 10px;
}

.btn-wrap.left{
  justify-content: flex-start;
}

.btn-wrap.right{
  justify-content: flex-end;
}

.btn.btn-lg {
  padding: 0px 20px;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
}

.btn.btn-xlg {
  padding: 0px 40px;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
}

.btn.btn-ylg {
  padding: 0px 20px;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .btn.btn-ylg {
    margin: 0;
    font-size: 14px;
  }
}


.btn-wrap>a,
.btn-wrap>button {
  min-width: 150px;
  margin-left: 10px;
  padding: 10px;
}

.btn-wrap>* {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-default-inver-gray {
  background-color: var(--bgF);
  color: var(--colorB);
  border: 1px solid var(--colorD) !important;
}


.btn-dark {
  color: #fff;
  background-color: #222;
  border-color: #222;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-black:hover,
  .btn.btn-border-black:active {
    background-color: rgba(17, 17, 17, 0.1);
  }
}

.btn.btn-basic {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.btn.btn-basic:hover,
.btn.btn-basic:active {
  background-color: #525252;
  border-color: #525252;
}

.btn.btn-border-basic {
  border-color: #333;
  color: #333;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-basic:hover,
  .btn.btn-border-basic:active {
    background-color: rgba(51, 51, 51, 0.1);
  }
}

.btn.btn-shadow {
  color: #000;
  background: none;
  border: none;
  box-shadow: 1px 1px 10px 3px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  background: #fff;
}

.btn.btn-shadow:hover,
.btn.btn-shadow:active {
  background-color: rgba(30, 57, 113, 1);
  color: #fff;
}

.btn.btn-shadow.white {
  background: #fff;
}

.btn.btn-shadow.white:hover {
  color: #fe0001;
}

.btn.btn-shadow.youtube:hover,
.btn.youtube:active {
  background: #fe0001 url(/images/icon/icon-play.png) 52.5% center /contain no-repeat;
  color: transparent;
  background-size: 26px;
}

.btn.btn-cont {
  background-color: #666;
  border-color: #666;
  color: #fff;
}

.btn.btn-cont:hover,
.btn.btn-cont:active {
  background-color: #7d7d7d;
  border-color: #7d7d7d;
}

.btn.btn-border-cont {
  border-color: #666;
  color: #666;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-cont:hover,
  .btn.btn-border-cont:active {
    background-color: rgba(102, 102, 102, 0.1);
  }
}

.btn.btn-gray {
  background-color: #888;
  border-color: #888;
  color: #fff;
}

.btn.btn-gray:hover,
.btn.btn-gray:active {
  background-color: #9a9a9a;
  border-color: #9a9a9a;
}

.btn.btn-border-gray {
  border-color: #888;
  color: #888;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-gray:hover,
  .btn.btn-border-gray:active {
    background-color: rgba(136, 136, 136, 0.1);
  }
}

.btn.btn-border {
  background-color: #ddd;
  border-color: #ddd;
  color: #666;
}

.btn.btn-border:hover,
.btn.btn-border:active {
  background-color: #c7c7c7;
  border-color: #c7c7c7;
}

.btn.btn-border-border {
  border-color: #ddd;
  color: #ddd;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-border:hover,
  .btn.btn-border-border:active {
    background-color: rgba(221, 221, 221, 0.1);
  }
}

.btn.btn-point {
  background-color: var(--theme);
  border-color: var(--theme);
  color: #fff;
}

.btn.btn-point:hover,
.btn.btn-point:active {
  background-color: #1e3971;
  border-color: #1e3971;
}

.btn.btn-border-point {
  border-color: var(--theme);
  color: var(--theme);
}

.btn.btn-point4 {
  background-color: var(--theme5);
  border-color: var(--theme5);
  color: var(--theme);
}


@media screen and (min-width: 1025px) {

  .btn.btn-border-point:hover,
  .btn.btn-border-point:active {
    background-color: rgba(22, 79, 160, 0.1);
  }
}

.btn.btn-point2 {
  background-color: #22140c;
  border-color: #22140c;
  color: #fff;
}

.btn.btn-point2:hover,
.btn.btn-point2:active {
  background-color: #433730;
  border-color: #433730;
}

.btn.btn-border-point2 {
  border-color: #22140c;
  color: #22140c;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-point2:hover,
  .btn.btn-border-point2:active {
    background-color: rgba(34, 20, 12, 0.1);
  }
}

.btn.btn-blur {
  background-color: #e1b016;
  border-color: #e1b016;
  color: #fff;
}

.btn.btn-blur:hover,
.btn.btn-blur:active {
  background-color: #bbb5b2;
  border-color: #bbb5b2;
}

.btn.btn-border-blur {
  border-color: #fff;
  color: #fff;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-blur:hover,
  .btn.btn-border-blur:active {
    background-color: rgba(175, 168, 164, 0.1);
  }
}

.btn.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #666;
}

.btn.btn-white:hover,
.btn.btn-white:active {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}

.btn.btn-border-white {
  border-color: #fff;
  color: #fff;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-white:hover,
  .btn.btn-border-white:active {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.btn.btn-red {
  background-color: #ff2d04;
  border-color: #ff2d04;
  color: #fff;
}

.btn.btn-red:hover,
.btn.btn-red:active {
  background-color: #ff4d2a;
  border-color: #ff4d2a;
}

.btn.btn-border-red {
  border-color: #ff2d04;
  color: #ff2d04;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-red:hover,
  .btn.btn-border-red:active {
    background-color: rgba(255, 45, 4, 0.1);
  }
}

.btn.btn-yellow {
  background-color: #e1b016;
  border-color: #e1b016;
  color: #fff;
}

.btn.btn-yellow:hover,
.btn.btn-yellow:active {
  background-color: #e6bc39;
  border-color: #e6bc39;
}

.btn.btn-border-yellow {
  border-color: #e1b016;
  color: #e1b016;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-yellow:hover,
  .btn.btn-border-yellow:active {
    background-color: rgba(225, 176, 22, 0.1);
  }
}

.btn.btn-green {
  background-color: #6c893e;
  border-color: #6c893e;
  color: #fff;
}

.btn.btn-green:hover,
.btn.btn-green:active {
  background-color: #829b5b;
  border-color: #829b5b;
}

.btn.btn-border-green {
  border-color: #6c893e;
  color: #6c893e;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-green:hover,
  .btn.btn-border-green:active {
    background-color: rgba(108, 137, 62, 0.1);
  }
}

.btn-default-inver {
    border: 1px solid #e5e5e5;
    background-color: var(--colorF);
    color: var(--colorB);
}


.btn-npay {
  background-color: #00c73c;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


.btn-npay:hover {
  background-color: #03b53c;
}

.npay-logo {
  width: 22px;
  height: auto;
  vertical-align: middle;
}

.btn.btn-sm {
  padding: 15px 60px;
  font-size: 14px;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  .btn.btn-sm {
    font-size: 13px;
    line-height: 24px;
  }
}



.btn.btn-md {
  padding: 0 10px;
  font-size: 16px;
  line-height: 48px;
}

@media screen and (max-width: 767px) {
  .btn.btn-md {
    font-size: 14px;
    line-height: 44px;
  }
}

.btn.btn-md.rounded {
  border-radius: 25px;
}



@media screen and (max-width: 767px) {
  .btn.btn-lg {
    font-size: 16px;
    line-height: 48px;
  }
}

.btn.btn-lg.rounded {
  border-radius: 30px;
}

.btn.full {
  display: block;
  width: 100%;
}

.btn:disabled {
  border-color: #bbb;
  background: #bbb;
  color: #fff;
}

.btn:disabled:hover,
.btn:disabled:active {
  border-color: #bbb;
  background: #bbb;
  color: #fff;
}

.btn-area {
  display: flex;
  margin-top: 80px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .btn-area {
    margin-top: 40px;
  }
}

.btn-area>* {
  min-width: 230px;
  margin-left: 10px;
}

.btn-area>*:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .btn-area>* {
    min-width: auto;
    flex: 1;
  }
}

.content_header.center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.content_header {
  position: relative;
  margin-bottom: 25px;
  max-width: 1320px;
  margin: 0 auto;
  text-align: left;
  letter-spacing: -1px;
  color: var(--colorB);
  line-height: 1.2;
  word-break: keep-all;
  margin-bottom: 20px;
  width: 100%;
  font-weight: 500;
}

.sub_tit {
  color: var(--color0);
  font-weight: 600;
  padding: 0;
  margin: 0;
}

.estimate-list {
  position: relative;
}

.estimate-item {
  background: var(--colorFa);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: solid 2px #ddd;
}


.estimate-item.active {
  border: solid 2px var(--theme);
}

.estimate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.estimate-price {
  font-size: 22px;
  font-weight: bold;
}

.estimate-details {
  background: var(--colorF);
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px;
}

.estimate-details ul {
  list-style: none;
}

.estimate-details li {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.estimate-actions {
  display: flex;
  gap: 10px;
}

.estimate-actions .btn {
  font-size: 14px;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: var(--colorF);
  flex: 1;
  text-align: center;
}

.estimate-actions .btn.view-request {
  background-color: var(--color0);
}

.estimate-actions .btn.view-estimate {
  background-color: var(--theme);
}

.estimate-actions .btn.reserve {
  background-color: #0866FF;
}

.estimate-actions .btn.payment-progress {
  background-color: var(--theme3);
}

.estimate-actions .btn:hover {
  opacity: 0.9;
}



.estimate-group {
  display: flex;
  background: #f9f9f9;
  gap: 10px;
}

.estimate-group a {
  display: block;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  border: solid 1px var(--colorD);
  border-radius: 5px;
}

.estimate-group a:first-of-type {
  color: var(--theme);
}

.estimate-group a.on:first-of-type {
  color: var(--colorF);
}

.estimate-group a.on {
  display: block;
  text-align: center;
}



.estimate_form {
  background: var(--colorF);
  margin: 75px auto;
  padding: 15px 40px 40px 40px;
  max-width: 1024px;
  border-radius: 5px;
}

.estimate_form .step-list {
  display: flex;
}

.estimate_form .step {
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin: 0 2px;
  color: var(--color9);
  background: var(--theme5);
  display: inline-block;
  opacity: 1;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
}

.estimate_form .step.active {
  color: var(--theme);
}

.estimate_form .expense {
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  font-size: 18px;
  gap: 5px;
}

.estimate_form .expense p {
  color: var(--color9);
  margin-right: 5px;
}

.estimate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.estimate-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.estimate-info h3 {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-wrap: auto;
  overflow: hidden;
}


.details-wrap {
  display: none;
  background: #f9f9f9;
}

.details-wrap h3 {
  font-weight: bold;
  color: #000;
  word-break: keep-all;
  line-height: 1.25;
  padding: 20px 0;
}

.details-wrap .package-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details-wrap tbody tr {
  background: var(--colorF);
}





.item-details.on {
  background: var(--theme);
  color: var(--colorF);
}

.item-details .details-wrap h3 {
  font-weight: bold;
}



.status-tag {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--colorF);
  margin-bottom: 5px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.status-tag.pending {
  background-color: #ece3e6;
  color: #6A1431;
}

.status-tag.in-progress {
  background-color: #e3eceb;
  color: #146A67;
}

.status-tag.payment-pending {
  background-color: #f7ece2;
  color: #DD6D0A;
}

.status-tag.complete {
  background-color: var(--theme5);
  color: var(--theme);
}

.status-tag.cancel {
  background-color: var(--theme5);
  color: #8237DB;
}


@media (max-width: 1024px) {
  .estimate_form {
    margin: 0 auto;
    max-width: 100%;
    padding: 15px;
  }
}

@media (max-width: 768px) {

  .header-info {
    flex-direction: column;
    gap: 5px;
  }

  .estimate-item {
    padding: 15px;
    flex: 1;
  }

  .estimate-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-tag {
    margin-bottom: 10px;
  }

  .date-range {
    text-align: left;
    margin-top: 5px;
  }
}



@media screen and (max-width: 520px) {
  .estimate-group a {
    font-size: 14px;
  }
}


.btn-group {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  gap: 10px;
}

.btn-group>* {
  min-width: 130px;
}

.btn-group.right {
  justify-content: flex-end;
}

/* text link */
.link-black {
  display: inline-block;
  vertical-align: middle;
  color: #111;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-black:hover,
  .link-black:active {
    text-decoration: underline;
    color: #353535;
  }
}

.link-basic {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-basic:hover,
  .link-basic:active {
    text-decoration: underline;
    color: #525252;
  }
}

.link-cont {
  display: inline-block;
  vertical-align: middle;
  color: #666;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-cont:hover,
  .link-cont:active {
    text-decoration: underline;
    color: #7d7d7d;
  }
}

.link-gray {
  display: inline-block;
  vertical-align: middle;
  color: #888;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-gray:hover,
  .link-gray:active {
    text-decoration: underline;
    color: #9a9a9a;
  }
}

.link-border {
  display: inline-block;
  vertical-align: middle;
  color: #ddd;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-border:hover,
  .link-border:active {
    text-decoration: underline;
    color: #c7c7c7;
  }
}

.link-point {
  display: inline-block;
  vertical-align: middle;
  color: #1e3971;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-point:hover,
  .link-point:active {
    text-decoration: underline;
    color: #1e3971;
  }
}

.link-point2 {
  display: inline-block;
  vertical-align: middle;
  color: #22140c;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-point2:hover,
  .link-point2:active {
    text-decoration: underline;
    color: #433730;
  }
}

.link-blur {
  display: inline-block;
  vertical-align: middle;
  color: #e1b016;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-blur:hover,
  .link-blur:active {
    text-decoration: underline;
    color: #bbb5b2;
  }
}

.link-white {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-white:hover,
  .link-white:active {
    text-decoration: underline;
    color: #e6e6e6;
  }
}

.link-red {
  display: inline-block;
  vertical-align: middle;
  color: #ff2d04;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-red:hover,
  .link-red:active {
    text-decoration: underline;
    color: #ff4d2a;
  }
}

.link-yellow {
  display: inline-block;
  vertical-align: middle;
  color: #e1b016;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-yellow:hover,
  .link-yellow:active {
    text-decoration: underline;
    color: #e6bc39;
  }
}

.link-green {
  display: inline-block;
  vertical-align: middle;
  color: #6c893e;
  font-size: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {

  .link-green:hover,
  .link-green:active {
    text-decoration: underline;
    color: #829b5b;
  }
}

.btn-talk {
  position: relative;
  display: block;
  width: 64px;
  height: 58px;
  padding-top: 14px;
  padding-right: 14px;
  background: url("/images/icon/icon-talk.png") 0 bottom no-repeat;
}

.btn-talk .count {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  min-width: 25px;
  padding: 0 5px;
  border-radius: 13px;
  background: #1e3971;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

.btn-talk.sm {
  width: 48px;
  height: 44px;
  margin: 0 auto;
  background-size: auto 30px;
}

.btn-talk.sm .count {
  min-width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 21px;
}

.btn-view {
  position: relative;
  display: block;
  width: 210px;
  height: 50px;
  padding-left: 35px;
  border: 1px solid #1e3971;
  background: #fff;
  font-size: 18px;
  line-height: 48px;
  color: #1e3971;
}

.btn-view::before,
.btn-view::after {
  content: ' ';
  position: absolute;
  top: 28px;
  right: 30px;
  height: 1px;
  background: #1e3971;
}

.btn-view::before {
  width: 26px;
}

.btn-view::after {
  width: 10px;
  transform: rotate(45deg);
  margin-top: -4px;
}

.ui-datepicker {
  display: none;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px 4px;
  background: #fff;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  margin-bottom: 10px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  padding: 0 40px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon {
  position: absolute;
  display: block;
  font-size: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before {
  transform: rotate(45deg);
  margin-left: -3px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  transform: rotate(-135deg);
  margin-left: -6px;
}

.ui-datepicker .ui-datepicker-calendar {
  table-layout: fixed;
  width: 100%;
}

.ui-datepicker .ui-datepicker-calendar thead th {
  height: 30px;
  font-size: 15px;
  font-weight: 500;
}

.ui-datepicker .ui-datepicker-calendar tbody td {
  height: 40px;
  color: #666;
  font-size: 15px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-unselectable * {
  opacity: 0.4;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-week-end:first-child {
  color: #ff2d04;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-week-end:last-child {
  color: #1e3971;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-today a {
  background: #ddd;
  color: #333;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-current-day a.ui-state-active {
  background: #1e3971;
  color: #fff;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-days-cell-over a {
  background: #ddd;
  color: #333;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-days-cell-over a.ui-state-active {
  background: #1e3971;
  color: #fff;
}

.ui-datepicker .ui-datepicker-calendar tbody td a {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  line-height: 40px;
}

/* flag */
.flag {
  display: inline-block;
  vertical-align: top;
  height: 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  /* min-width: 40px;
    padding: 0 6px; */
}

@media screen and (max-width: 767px) {
  .flag {
    font-size: 14px;
  }
}

.flag.flag-black {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

.flag.flag-border-black {
  border-color: #111;
  color: #111;
}

.flag.flag-basic {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.flag.flag-border-basic {
  border-color: #333;
  color: #333;
}

.flag.flag-cont {
  background-color: #666;
  border-color: #666;
  color: #fff;
}

.flag.flag-border-cont {
  border-color: #666;
  color: #666;
}

.flag.flag-gray {
  background-color: #888;
  border-color: #888;
  color: #fff;
}

.flag.flag-border-gray {
  border-color: #888;
  color: #888;
}

.flag.flag-border {
  background-color: #ddd;
  border-color: #ddd;
  color: #333;
}

.flag.flag-border-border {
  border-color: #ddd;
  color: #ddd;
}

.flag.flag-point {
  /* background-color: #1e3971;
    border-color: #1e3971; */
  color: #4893c5;
}

.flag.flag-border-point {
  border-color: #1e3971;
  color: #1e3971;
}

.flag.flag-point2 {
  background-color: #22140c;
  border-color: #22140c;
  color: #fff;
}

.flag.flag-border-point2 {
  border-color: #22140c;
  color: #22140c;
}

.flag.flag-blur {
  background-color: #e1b016;
  border-color: #e1b016;
  color: #fff;
}

.flag.flag-border-blur {
  border-color: #e1b016;
  color: #e1b016;
}

.flag.flag-white {
  background-color: #fff;
  border-color: #fff;
  color: #333;
}

.flag.flag-border-white {
  border-color: #fff;
  color: #fff;
}

.flag.flag-red {
  background-color: #ff2d04;
  border-color: #ff2d04;
  color: #fff;
}

.flag.flag-border-red {
  border-color: #ff2d04;
  color: #ff2d04;
}

.flag.flag-yellow {
  background-color: #e1b016;
  border-color: #e1b016;
  color: #fff;
}

.flag.flag-border-yellow {
  border-color: #e1b016;
  color: #e1b016;
}

.flag.flag-green {
  background-color: #6c893e;
  border-color: #6c893e;
  color: #fff;
}

.flag.flag-border-green {
  border-color: #6c893e;
  color: #6c893e;
}

.flag.flag-sm {
  min-width: 43px;
  height: 22px;
  line-height: 20px;
  border-radius: 4px;
}

.flag.rounded {
  border-radius: 11px;
}

.text-flag {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .text-flag {
    font-size: 14px;
    line-height: 22px;
  }
}

.text-flag.text-flag-black {
  color: #111;
}

.text-flag.text-flag-basic {
  color: #333;
}

.text-flag.text-flag-cont {
  color: #666;
}

.text-flag.text-flag-gray {
  color: #888;
}

.text-flag.text-flag-border {
  color: #ddd;
}

.text-flag.text-flag-point {
  color: #1e3971;
}

.text-flag.text-flag-point2 {
  color: #22140c;
}

.text-flag.text-flag-blur {
  color: #e1b016;
}

.text-flag.text-flag-white {
  color: #fff;
}

.text-flag.text-flag-red {
  color: #ff2d04;
}

.text-flag.text-flag-yellow {
  color: #e1b016;
}

.text-flag.text-flag-green {
  color: #6c893e;
}

.text-flag.text-flag-lg {
  font-size: 20px;
  line-height: 30px;
}

@media screen and (max-width: 767px) {
  .text-flag.text-flag-lg {
    font-size: 18px;
    line-height: 26px;
  }
}

/* form */
.form-wrap .row {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.form-wrap .row:first-child {
  margin-top: 0;
}

.form-wrap .row>* {
  margin-left: 5px;
}

.form-wrap .row>*:first-child {
  margin-left: 0;
}

.form-wrap .row .form-control.auto {
  width: 50%;
  max-width: 200px;
}

@media screen and (max-width: 767px) {
  .form-wrap .row .form-control.auto {
    width: 100%;
  }
}

.form-wrap .row .form-control.half {
  flex: 1;
  max-width: 360px;
}

.form-wrap .row .btn {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .form-wrap .row .btn {
    font-size: 13px;
  }
}

.form-wrap .row>label {
  padding-right: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .form-wrap .row>label {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .form-wrap .row.m-col {
    flex-direction: column;
  }

  .form-wrap .row.m-col>* {
    width: 100%;
    margin: 0;
    margin-top: 5px;
  }

  .form-wrap .row.m-col>*:first-child {
    margin-top: 0;
  }
}

.form-wrap .col .forms {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.form-select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 45px;
  min-height: 45px;
  padding: 10px 15px;
  padding-right: 30px;
  border: 1px solid var(--colorE5);
  border-radius: 5px;
  font-size: 15px;
  color: var(--color0);
  cursor: pointer;
  background: var(--colorF) url(/icon/down-arrow.png) right 0.25rem center / 20px no-repeat;
  min-width: 80px;
}

.form-select:disabled {
  background: var(--colorF5);
  color: #555;
}

/* search */
.list-filter {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  gap: 20px;
  margin-bottom: 20px;
}

.list-filter .search-wrap {
  display: flex;
  width: 60%;
  max-width: 300px;
  margin-left: auto;
  /* border:solid 1px red; */
  box-shadow: 1px 1px 10px 3px rgb(0 0 0 / 10%);
  border-radius: 30px;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap {
    width: 100%;
    max-width: 100%;
  }
}

.list-filter .search-wrap .selectbox-wrap .nice-select {
  min-width: 140px;
  height: 50px;
  color: #1e3971;
  font-size: 16px;
  line-height: 48px;
  border-radius: 0;
}

.list-filter .search-wrap .selectbox-wrap .nice-select::after {
  border-color: #1e3971;
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap .selectbox-wrap .nice-select {
    min-width: 110px;
    font-size: 14px;
    height: 40px;
    line-height: 38px;
  }
}

.list-filter .search-wrap .selectbox-wrap .nice-select.open .list {
  border-radius: 0;
}

.list-filter .search-wrap .selectbox-wrap .nice-select .option {
  min-height: 50px;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap .selectbox-wrap .nice-select .option {
    min-height: 40px;
    line-height: 40px;
  }
}

.list-filter .search-wrap .selectbox-wrap .nice-select .option:hover,
.list-filter .search-wrap .selectbox-wrap .nice-select .option.focus,
.list-filter .search-wrap .selectbox-wrap .nice-select .option.selected,
.list-filter .search-wrap .selectbox-wrap .nice-select .option.selected.focus {
  background-color: #1e3971;
  color: #fff;
}

.list-filter .search-wrap .selectbox-wrap .nice-select .list:hover .option:not(:hover) {
  color: #1e3971;
  background-color: transparent;
}

.list-filter .search-wrap .input-wrap {
  flex: 1;
}

.list-filter .search-wrap .input-wrap input {
  height: 50px;
  padding: 12px 14px;
  border-radius: 30px;
  border-left: none;
  border: none;
}

.list-filter .search-wrap .input-wrap input::placeholder,
.list-filter .search-wrap .input-wrap input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {

  .list-filter .search-wrap .input-wrap input::placeholder,
  .list-filter .search-wrap .input-wrap input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap .input-wrap input {
    height: 40px;
    padding: 10px 14px;
  }
}

.list-filter .search-wrap .btn-search {
  display: block;
  width: 50px;
  height: 50px;
  background: url("/images/icon/icon-search.png") center no-repeat;
  filter: invert(1);
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap .btn-search {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
}


.list-filter .total {
  position: relative;
  line-height: 1.5;
  color: #000;
  display: flex;
  gap: 10px;
}


.list-filter .total em {
  font-weight: 700;
  color: var(--theme);
}

/* board */
.board-list-wrap {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .board-list-wrap {
    padding-top: 20px;
  }
}

.board-list-wrap ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -40px;
  margin-left: -50px;
}

@media screen and (max-width: 1024px) {
  .board-list-wrap ul.lists {
    margin-top: -30px;
    margin-left: -20px;
  }
}

@media screen and (max-width: 520px) {
  .board-list-wrap ul.lists {
    display: block;
    margin: 0;
  }
}



.board-list-wrap ul.lists>li {
  width: calc(100% / 4);
  padding-left: 50px;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .board-list-wrap ul.lists>li {
    width: calc(100% / 3);
    padding-left: 20px;
    margin-top: 30px;
  }
}



@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li {
    width: calc(100% / 2);
    padding-left: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 520px) {
  .board-list-wrap ul.lists>li {
    width: 100%;
    padding: 0;
  }

  .board-list-wrap ul.lists>li:first-child {
    margin-top: 0;
  }
}

.board-list-wrap ul.lists>li a.inner {
  display: block;
  max-width: 280px;
  border: solid 5px transparent;
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner {
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

  }
}



.board-list-wrap ul.lists>li a.inner:hover {
  border: solid 5px #2856bd;
  box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.5);
}

.board-list-wrap ul.lists>li a.inner .text-box {
  padding: 15px 5px;
}

.board-list-wrap ul.lists>li a.inner .text-box.border {
  border: solid 1px #ccc;
  border-top: none;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner .text-box {}

  .board-list-wrap ul.lists>li a.inner .text-box.border {
    border: solid 1px #ccc;
    border-top: none;
    padding: 12px;
  }
}

.board-list-wrap ul.lists>li a.inner .photo-wrap {
  position: relative;
  width: 100%;
  background: #f6f6f6;
  text-align: center;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1366px) {
  .board-list-wrap ul.lists>li a.inner .photo-wrap {
    min-height: 150px;
  }
}



.board-list-wrap ul.lists>li a.inner .photo-wrap.min-h {
  min-height: 600px;
  overflow: hidden;
}

.board-list-wrap ul.lists>li a.inner .photo-wrap.min-h img {
  height: 100%;
}

.board-list-wrap ul.lists>li a.inner .top {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner .top {
    font-size: 13px;
    line-height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner .photo-wrap {
    min-height: 200px;
    max-height: 200px;
  }

  .board-list-wrap ul.lists>li a.inner .photo-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


.board-list-wrap ul.lists>li a.inner .tit {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
}

.board-list-wrap ul.lists>li a.inner .tit.black {
  color: #000;
}

@media screen and (max-width: 1024px) {
  .board-list-wrap ul.lists>li a.inner .tit {
    font-size: 17px;
  }
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner .tit {
    font-size: 15px;
    line-height: 22px;
  }
}

.board-list-wrap ul.lists>li a.inner .tit.new {
  padding-right: 20px;
}

.board-list-wrap ul.lists>li a.inner .tit.new::after {
  content: 'N';
  position: absolute;
  top: 50%;
  right: 0;
  width: 17px;
  height: 17px;
  margin-top: -8px;
  border: 1px solid #4893c5;
  border-radius: 50%;
  color: #4893c5;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  text-align: center;
}

.board-list-wrap ul.lists>li a.inner .cont {
  height: auto;
  margin-top: 10px;
  color: #666;
  font-size: 15px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner .cont {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner .cont {
    height: auto;
    margin-top: 0;
    -webkit-line-clamp: 2;
  }
}

.board-list-wrap ul.lists>li a.inner .date {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #777;
}

@media screen and (max-width: 767px) {
  .board-list-wrap ul.lists>li a.inner .date {
    margin-top: 15px;
    font-size: 12px;
  }
}

.board-view-wrap .board-head {
  padding: 20px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-head {
    padding: 15px;
  }
}

.board-view-wrap .board-head .date {
  margin-bottom: 5px;
  font-size: 16px;
  color: #888;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-head .date {
    font-size: 14px;
  }
}

.board-view-wrap .board-head .title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-head .title {
    font-size: 20px;
    line-height: 28px;
  }
}

.board-view-wrap .board-head ul.info {
  margin-top: 20px;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-head ul.info {
    margin-top: 15px;
  }
}

.board-view-wrap .board-head ul.info li {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  color: #888;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-head ul.info li {
    font-size: 14px;
  }
}

.board-view-wrap .board-body {
  padding: 20px 0 60px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body {
    padding: 15px 0 40px;
  }
}

.board-view-wrap .board-body .file-info {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .file-info {
    padding: 12px;
  }
}

.board-view-wrap .board-body .file-info dl {
  display: flex;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .file-info dl {
    font-size: 13px;
    line-height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .file-info dl {
    display: block;
  }
}

.board-view-wrap .board-body .file-info dl dt {
  margin-right: 10px;
  font-weight: 500;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .file-info dl dt {
    margin-bottom: 5px;
    margin-right: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
  }
}

.board-view-wrap .board-body .file-info dl dd::after {
  content: '/';
  margin: 0 6px;
  color: #ddd;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .file-info dl dd::after {
    display: none;
  }
}

.board-view-wrap .board-body .file-info dl dd:last-child::after {
  display: none;
}

.board-view-wrap .board-body .file-info dl dd a {
  display: inline-block;
  vertical-align: top;
}

.board-view-wrap .board-body .cont {
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .cont {
    font-size: 14px;
    line-height: 22px;
  }
}

.board-view-wrap .board-body .answer-cont {
  margin-top: 50px;
  background: #f5f5f5;
  padding: 20px;
}

.board-view-wrap .board-body .answer-cont .date {
  color: #888;
  font-size: 16px;
}

.board-view-wrap .board-body .answer-cont .tit {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .answer-cont .tit {
    font-size: 18px;
    line-height: 26px;
  }
}

.board-view-wrap .board-body .answer-cont .a-cont {
  color: #666;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-body .answer-cont .a-cont {
    font-size: 14px;
    line-height: 22px;
  }
}

.board-view-wrap .board-foot {
  position: relative;
}

.board-view-wrap .board-foot .others {
  margin-top: 60px;
  margin-bottom: 60px;
  border-top: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-foot .others {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

.board-view-wrap .board-foot .others li {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  color: #000;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-foot .others li {
    padding: 15px 10px;
  }
}

.board-view-wrap .board-foot .others li dl {
  display: flex;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-foot .others li dl {
    font-size: 14px;
    line-height: 22px;
    gap: 20px;
  }
}

.board-view-wrap .board-foot .others li dl dt {
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-foot .others li dl dt {
    gap: 10px;
  }
}

.board-view-wrap .board-foot .others li dl dt a {
  display: flex;
  width: 20px;
  height: 24px;
  align-items: center;
  cursor: pointer;
}

.board-view-wrap .board-foot .others li dl dd {
  width: 100%;
  overflow: hidden;
}

.board-view-wrap .board-foot .others li dl dd a {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
}

.board-view-wrap .board-foot .btn.btn-md {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 30px;
  color: #005cae;
  border: solid 1px #005cae;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .board-view-wrap .board-foot .btn.btn-md {
    max-width: none;
  }
}

/* input */
.form-control {
  display: block;
  width: 100%;
  min-height: 50px;
  height: 50px;
  padding: 13px 15px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  line-height: normal;
  transition: border-color 0.15s ease-in-out;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .form-control {
    padding: 8px 10px;
    font-size: 14px;
  }
}

.form-control:focus {
  outline: none;
  border-color: #1e3971;
}

.form-control::placeholder,
.form-control::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form-control:disabled {
  opacity: 0.5;
}

.form-control.datepicker {
  padding-right: 60px;
  background-image: url("/images/icon/icon-cal.png");
  background-repeat: no-repeat;
  background-position: right 19px center;
}

input[type=password].form-control {
  font-family: sans-serif;
}

input[type=password].form-control::placeholder,
input[type=password].form-control::-webkit-input-placeholder {
  font-family: "NanumSquare", "noto sans KR", sans-serif;
  transform: translateY(-2px);
}

textarea.form-control {
  resize: none;
  height: 180px;
}

/* checkbox, radio */
/* ================================
   checkbox / radio 기본 스타일
================================ */
.chk-wrap {
  display: inline-block;
  position: relative;
  min-height: 24px;
  vertical-align: top;
}

.chk-wrap.icon-only input+label {
  padding-left: 22px;
}

.chk-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.chk-wrap input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  user-select: none;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .chk-wrap input+label {
    font-size: 14px;
  }
}

.chk-wrap input+label::before {
  content: ' ';
  position: absolute;
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  background: #fff;
}

.chk-wrap input:disabled+label {
  color: #888;
}

.chk-wrap input:disabled+label::before {
  background: #f5f5f5;
}

.chk-wrap input:checked+label {
  color: #333;
}

.chk-wrap input:checked+label::before {
  border-color: #1e3971;
  background: #1e3971;
}

.chk-wrap input:checked+label::after {
  content: ' ';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 8px;
  height: 12px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ================================
   👁‍🗨 Eye (비밀번호 보기)
================================ */
.field-has-eye {
  position: relative;
}

.chk-wrap.eye {
  position: absolute;
  top: 25%;
  right: 5px;
}

.chk-wrap.eye input+label {
  padding-left: 22px;
}

.chk-wrap.eye input+label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -3px;
  width: 22px;
  height: 22px;
  background: url(/images/icon/close-eye.png) center/contain no-repeat;
  border: 0;
  border-radius: 0;
}

.chk-wrap.eye input:checked+label::before {
  background: url(/images/icon/eye.png) center/contain no-repeat;
}

.chk-wrap.eye input:checked+label::after {
  display: none;
}

@media (max-width: 1024px) {
  .chk-wrap.eye {
    right: 8px;
  }
}

@media (max-width: 767px) {
  .chk-wrap.eye {
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
  }

  .chk-wrap.eye input+label {
    padding-left: 20px;
  }

  .chk-wrap.eye input+label::before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
}

.rdo-wrap {
  display: inline-block;
  position: relative;
  min-height: 24px;
  vertical-align: top;
}

.rdo-wrap.icon-only input+label {
  padding-left: 22px;
}

.rdo-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.rdo-wrap input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  user-select: none;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .rdo-wrap input+label {
    font-size: 14px;
  }
}

.rdo-wrap input+label::before {
  content: ' ';
  position: absolute;
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 11px;
}

.rdo-wrap input:disabled+label {
  color: #888;
}

.rdo-wrap input:disabled+label::before {
  background: #f5f5f5;
}

.rdo-wrap input:checked+label {
  color: #333;
}

.rdo-wrap input:checked+label::before {
  border-color: #1e3971;
}

.rdo-wrap input:checked+label::after {
  content: ' ';
  position: absolute;
  top: 7px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #1e3971;
}

.rdo-btn-wrap {
  display: inline-block;
  position: relative;
  min-height: 24px;
  vertical-align: top;
}

.rdo-btn-wrap.icon-only input+label {
  padding-left: 22px;
}

.rdo-btn-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.rdo-btn-wrap input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  user-select: none;
  vertical-align: top;
  height: 44px;
  padding: 0 18px;
  border: 1px solid #ddd;
  border-radius: 22px;
  color: #999;
  font-size: 18px;
  line-height: 42px;
}

@media screen and (max-width: 767px) {
  .rdo-btn-wrap input+label {
    font-size: 14px;
  }
}

.rdo-btn-wrap input:disabled+label {
  color: #888;
}

.rdo-btn-wrap input:disabled+label::before {
  background: #f5f5f5;
}

.rdo-btn-wrap input:checked+label {
  border-color: #1e3971;
  background: #1e3971;
  color: #fff;
}

.like-chk-wrap {
  display: inline-block;
  position: relative;
  min-height: 24px;
  vertical-align: top;
}

.like-chk-wrap.icon-only input+label {
  padding-left: 22px;
}

.like-chk-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.like-chk-wrap input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  user-select: none;
  vertical-align: top;
  padding-left: 0;
  width: 24px;
  height: 24px;
  background: url("/images/bg/bg-star.gif") 0 0 no-repeat;
}

@media screen and (max-width: 767px) {
  .like-chk-wrap input+label {
    font-size: 14px;
  }
}

.like-chk-wrap input:disabled+label {
  color: #888;
}

.like-chk-wrap input:disabled+label::before {
  background: #f5f5f5;
}

.like-chk-wrap input:checked+label {
  background-position-y: bottom;
}

/* switch */
.chk-switch {
  display: inline-block;
  position: relative;
  min-height: 38px;
  vertical-align: top;
}

.chk-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.chk-switch input+label {
  display: block;
  position: relative;
  width: 68px;
  height: 38px;
  border-radius: 19px;
  background: #ddd;
  cursor: pointer;
  user-select: none;
  transition: background 0.1s ease-in-out;
}

.chk-switch input+label::before {
  content: ' ';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s ease-in-out;
}

.chk-switch input:checked+label {
  background: #1e3971;
}

.chk-switch input:checked+label::before {
  left: 34px;
}

/* list */
.thumb-list-wrap {
  overflow: hidden;
}

.thumb-list-wrap .lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -3.90625%;
  margin-left: -3.125%;
}

.thumb-list-wrap .lists>li {
  width: 50%;
  margin-top: 3.787879%;
  padding-left: 3.030303%;
}

.thumb-list-wrap .lists>li.full {
  width: 100%;
}

.thumb-list-wrap .lists>li a {
  display: block;
  width: 100%;
  height: 100%;
}

.thumb-list-wrap .lists>li a img {
  width: 100%;
  height: calc(100%);
  object-fit: cover;
  min-height: 150px;
  max-height: 450px;
}

.thumb-list-wrap .lists>li.full a img {
  max-height: unset;
}

@media screen and (max-width: 767px) {
  .thumb-list-wrap .lists>li a img {
    width: 100%;
    height: calc(100%);
    object-fit: cover;
    min-height: 150px;
    max-height: 250px;
  }

  .thumb-list-wrap .lists>li.full a img {
    max-height: unset;
  }
}




.img-list-wrap {
  overflow: hidden;
}

.img-list-wrap ul {
  font-size: 0;
  margin-top: -20px;
  margin-left: -10px;
}

.img-list-wrap ul li {
  display: inline-block;
  width: 50%;
  margin-top: 20px;
  padding-left: 10px;
  text-align: center;
  vertical-align: top;
}

.img-list-wrap ul li .caption {
  margin-top: 5px;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .img-list-wrap ul li .caption {
    font-size: 12px;
    line-height: 20px;
  }
}

.img-list-wrap.block ul {
  margin: 0;
}

.img-list-wrap.block ul li {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding-left: 0;
}

.img-list-wrap.block ul li:first-child {
  margin-top: 0;
}

.slt-lists {
  font-size: 0;
}

.slt-lists li {
  display: inline-block;
  vertical-align: top;
}

.slt-lists.auto li {
  margin-right: 40px;
}

.slt-lists.auto li:last-child {
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .slt-lists.auto li {
    margin-right: 0;
    margin-top: 5px;
  }
}


@media screen and (max-width: 767px) {
  .slt-lists.auto li {
    display: block;
    margin-right: 0;
    margin-top: 5px;
  }

  .slt-lists.auto li:first-child {
    margin-top: 0;
  }
}


.sns-login-list {
  font-size: 0;
}

.sns-login-list li {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

.sns-login-list li:first-child {
  margin-left: 0;
}

.sns-login-list li a {
  display: block;
  width: 46px;
  height: 46px;
  background-image: url("/images/icon/icon-snslogin.png");
  background-repeat: no-repeat;
}

.sns-login-list li a.sns01 {
  background-position: 0 0;
}

.sns-login-list li a.sns02 {
  background-position: right 0;
}

.sns-login-list li a.off {
  background-position-y: bottom;
}

.bullet-list {
  color: #333;
}

.bullet-list>li {
  margin-top: 5px;
  padding-left: 14px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .bullet-list>li {
    font-size: 14px;
    line-height: 22px;
  }
}

.bullet-list>li:first-child {
  margin-top: 0;
}

.bullet-list>li::before {
  content: '-';
  display: inline-block;
  vertical-align: top;
  width: 14px;
  margin-left: -14px;
}

.bullet-list>li sup {
  display: inline-block;
  vertical-align: top;
  font-size: 0.8em;
  line-height: 1;
}

.bullet-list.dot>li {
  padding-left: 10px;
}

.bullet-list.dot>li::before {
  content: '·';
  width: 10px;
  margin-left: -10px;
  color: inherit;
}

.bullet-list.num>li {
  padding-left: 20px;
}

.bullet-list.num>li::before {
  content: ' ';
  width: 14px;
  height: 14px;
  margin-top: 5px;
  margin-left: -20px;
  margin-right: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  line-height: 12px;
  text-align: center;
}

.bullet-list.num>li:nth-child(1)::before {
  content: "1";
}

.bullet-list.num>li:nth-child(2)::before {
  content: "2";
}

.bullet-list.num>li:nth-child(3)::before {
  content: "3";
}

.bullet-list.num>li:nth-child(4)::before {
  content: "4";
}

.bullet-list.num>li:nth-child(5)::before {
  content: "5";
}

.bullet-list.num>li:nth-child(6)::before {
  content: "6";
}

.bullet-list.num>li:nth-child(7)::before {
  content: "7";
}

.bullet-list.num>li:nth-child(8)::before {
  content: "8";
}

.bullet-list.num>li:nth-child(9)::before {
  content: "9";
}

.bullet-list.num>li ul.bullet-list {
  margin-top: 5px;
}

.bullet-list.num>li ul.bullet-list li {
  margin-top: 2px;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .bullet-list.num>li ul.bullet-list li {
    font-size: 12px;
    line-height: 20px;
  }
}

.bullet-list.num2>li {
  padding-left: 18px;
}

.bullet-list.num2>li::before {
  width: 18px;
  margin-left: -18px;
}

.bullet-list.num2>li:nth-child(1)::before {
  content: "1.";
}

.bullet-list.num2>li:nth-child(2)::before {
  content: "2.";
}

.bullet-list.num2>li:nth-child(3)::before {
  content: "3.";
}

.bullet-list.num2>li:nth-child(4)::before {
  content: "4.";
}

.bullet-list.num2>li:nth-child(5)::before {
  content: "5.";
}

.bullet-list.num2>li:nth-child(6)::before {
  content: "6.";
}

.bullet-list.num2>li:nth-child(7)::before {
  content: "7.";
}

.bullet-list.num2>li:nth-child(8)::before {
  content: "8.";
}

.bullet-list.num2>li:nth-child(9)::before {
  content: "9.";
}

.bullet-list.num2>li ul.bullet-list {
  margin-top: 5px;
}

.bullet-list.num2>li ul.bullet-list li {
  margin-top: 2px;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .bullet-list.num2>li ul.bullet-list li {
    font-size: 12px;
    line-height: 20px;
  }
}


/* 목록 기본 */
.member-lists {
  position: relative;
}

.member-lists>li {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 36px;
  border: 1px solid #1e3971;
  border-radius: 2px;
  background: #fff;
  margin: 36px 0;
}

/* 썸네일(좌측 이미지) */
.member-lists .thumb {
  display: block;
  flex: 0 0 320px;
  /* 이미지 폭 고정 */
  max-width: 100%;
}

.member-lists .thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* 우측 정보 영역 */
.member-lists .member-info {
  flex: 1 1 auto;
  min-width: 0;
}

/* 큰 제목 */
.member-lists .member-info .title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #333;
}

/* 내용 리스트 (숫자 + 두 단 구성) */
.member-lists .member-info .cont-lists {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: edu;
}

.member-lists .member-info .cont-lists>li {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 6px 0 6px 28px;
  /* 숫자 자리 여백 */
  align-items: baseline;
  border: 0;
}

.member-lists .member-info .cont-lists>li::before {
  counter-increment: edu;
  content: counter(edu) ".";
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 700;
  color: #333;
}

.member-lists .member-info .cont-lists .tit {
  margin: 0;
  flex: 0 0 140px;
  color: #333;
  font-weight: 600;
}

.member-lists .member-info .cont-lists .desc {
  margin: 0;
  flex: 1 1 auto;
  color: #333;
}

.member-lists .member-info .cont-lists .desc em,
.member-lists .member-info .cont-lists .desc strong {
  color: #e25a2c;
  font-style: normal;
  font-weight: 700;
}

/* 반응형 */
@media (max-width: 1024px) {
  .member-lists>li {
    gap: 24px;
    padding: 28px;
  }

  .member-lists .thumb {
    flex-basis: 280px;
  }

  .member-lists .member-info .title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .member-lists>li {
    flex-direction: column;
    gap: 16px;
    padding: 22px;
  }

  .member-lists .thumb {
    flex-basis: auto;
  }

  .member-lists .member-info .title {
    font-size: 22px;
  }

  .member-lists .member-info .cont-lists .tit {
    flex: 0 0 120px;
  }
}

@media (max-width: 520px) {
  .member-lists .member-info .cont-lists>li {
    flex-direction: column;
    gap: 2px;
    padding-left: 24px;
  }

  .member-lists .member-info .cont-lists .tit {
    flex: none;
    font-weight: 700;
  }
}

.d-table-wrap {
  position: relative;
  word-break: keep-all;
}

.d-table-wrap::-webkit-scrollbar {
  display: none;
}

.d-table {
  border-collapse: collapse;
  border-spacing: 0;
}

.d-table td {
  border-color: #f5f5f5;
  border-style: solid;
  border-width: 0.5px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-width: thin;
  overflow: hidden;
  padding: 10px 5px;
  word-break: keep-all;
}

.d-table th {
  border-color: #f5f5f5;
  border-style: solid;
  border-width: 0.5px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-width: thin;
  font-weight: normal;
  overflow: hidden;
  padding: 10px 5px;
  word-break: keep-all;
}

.d-table .d-table-baqh {
  text-align: center;
  vertical-align: middle
}

.d-table .d-table-c3ow {
  border-color: #f5f5f5;
  text-align: center;
  vertical-align: middle;
  border-width: thin;
}

.d-table .d-table-tit {
  border-color: inherit;
  font-weight: bold;
  text-align: center;
  vertical-align: middle
}

.d-table .d-table-tit {
  font-weight: bold;
  text-align: center;
  vertical-align: middle
}

.d-table .d-table-uzvj {
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
  word-break: keep-all;
  border-width: thin;
}

.d-table .d-table-0pky {
  border-color: inherit;
  text-align: left;
  vertical-align: middle;
  border-width: thin;
}


@media screen and (max-width: 767px) {
  .member-lists .inner .cont-lists {
    margin-left: 0;
  }

  .member-lists .inner .d-table .d-table-tit {
    padding: 10px 5px;
    font-size: 10px;
  }

  .d-table {
    overflow-x: auto;
  }

  .d-table .d-table-uzvj,
  .d-table td {
    font-size: 10px;
    padding: 5px;
  }
}

.guide-table-wrap {
  margin-top: 40px;
}

.guide-table tr {
  text-align: center;
}

.guide-table {
  border-collapse: collapse;
  border-spacing: 0;
}

.guide-table td {
  border-color: #f5f5f5;
  border-style: solid;
  border-width: 0.5px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-width: thin;
  padding: 10px 5px;
  word-break: keep-all;
  line-height: 1.5;
}

.guide-table th {
  border-color: #f5f5f5;
  border-style: solid;
  border-width: 1px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  overflow: hidden;
  padding: 10px 5px;
  word-break: keep-all;
}

.guide-table .guide-table-th {
  background-color: #00897b;
  border-color: inherit;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle
}

.guide-table .guide-table-td {
  text-align: center;
  vertical-align: middle
}

.guide-table .guide-table-img {
  color: #fd6864;
  text-align: center;
  vertical-align: middle
}

.guide-table-td span {
  font-weight: bold;
}


@media screen and (max-width: 767px) {

  .guide-table .guide-table-th {
    padding: 10px 0;
    font-size: 7pt;
    min-width: 70px;
  }

  .guide-table .guide-table-td {
    font-size: 6pt;
    padding: 5px;
  }
}

.member-lists .inner .cont-lists>li {
  overflow: hidden;
  margin-top: 5px;
  border: solid 1px #0e428e;
}

.member-lists .inner .cont-lists>li:first-child {
  margin-top: 0;
}

.member-lists .inner .cont-lists>li .tit {
  float: left;
  width: 140px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .member-lists .inner .cont-lists>li .tit {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .member-lists .inner .cont-lists>li .tit {
    width: 90px;
  }
}

.member-lists .inner .cont-lists>li .desc {
  margin-left: 120px;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .member-lists .inner .cont-lists>li .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .member-lists .inner .cont-lists>li .desc {
    margin-left: 90px;
  }
}

.member-lists .inner .cont-lists>li .desc em {
  color: #1e3971;
}

.educard-lists-wrap {
  overflow: hidden;
}

.educard-lists-wrap ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin: -30px 0 0 -30px;
}

@media screen and (max-width: 1024px) {
  .educard-lists-wrap ul.lists {
    display: block;
    margin: 0;
  }
}

.educard-lists-wrap ul.lists>li {
  width: 50%;
  padding-left: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .educard-lists-wrap ul.lists>li {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }

  .educard-lists-wrap ul.lists>li:first-child {
    margin-top: 0;
  }
}

.educard-lists-wrap ul.lists .inner {
  display: flex;
  padding: 25px;
  border: 1px solid #1e3971;
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner {
    padding: 15px 12px;
  }
}

.educard-lists-wrap ul.lists .inner .thumb {
  width: 36.649215%;
  min-width: 36.649215%;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner .thumb {
    width: 105px;
    min-width: 105px;
    margin-right: 10px;
  }
}

.educard-lists-wrap ul.lists .inner .thumb img {
  width: 100%;
  max-width: none;
}

.educard-lists-wrap ul.lists .inner .conts {
  display: flex;
  flex-direction: column;
}

.educard-lists-wrap ul.lists .inner .conts .flags {
  margin-bottom: 5px;
  font-size: 0;
}

.educard-lists-wrap ul.lists .inner .conts .flags .flag {
  margin-right: 3px;
}

.educard-lists-wrap ul.lists .inner .conts .title {
  height: 72px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner .conts .title {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner .conts .title {
    height: 60px;
  }
}

.educard-lists-wrap ul.lists .inner .conts .desc {
  margin: 10px 0;
  color: #1e3971;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner .conts .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.educard-lists-wrap ul.lists .inner .conts .price {
  display: flex;
  align-items: center;
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner .conts .price {
    flex-wrap: wrap;
  }
}

.educard-lists-wrap ul.lists .inner .conts .price>p {
  white-space: nowrap;
}

.educard-lists-wrap ul.lists .inner .conts .price>p.ori {
  position: relative;
  margin-right: 4px;
  padding-right: 20px;
  color: #888;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner .conts .price>p.ori {
    font-size: 14px;
    line-height: 22px;
  }
}

.educard-lists-wrap ul.lists .inner .conts .price>p.ori::before,
.educard-lists-wrap ul.lists .inner .conts .price>p.ori::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 0;
}

.educard-lists-wrap ul.lists .inner .conts .price>p.ori::before {
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background: #999;
}

.educard-lists-wrap ul.lists .inner .conts .price>p.ori::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border: 2px solid #999;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
}

.educard-lists-wrap ul.lists .inner .conts .price>p.ori span {
  text-decoration: line-through;
}

.educard-lists-wrap ul.lists .inner .conts .price>p.sale {
  color: #ff2d04;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.educard-lists-wrap ul.lists .inner .conts .price>p.sale span {
  display: inline-block;
  vertical-align: top;
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .educard-lists-wrap ul.lists .inner .conts .price>p.sale {
    font-size: 16px;
    line-height: 24px;
  }

  .educard-lists-wrap ul.lists .inner .conts .price>p.sale span {
    font-size: 24px;
  }
}

.educard-lists-wrap ul.lists .inner .conts .btns {
  display: flex;
  margin-top: 20px;
}

.educard-lists-wrap ul.lists .inner .conts .btns .btn {
  flex: 1;
  margin-left: 4px;
}

.educard-lists-wrap ul.lists .inner .conts .btns .btn:first-child {
  margin-left: 0;
}

.agree-wraps-join .chk-wrap.box {
  padding: 15px;
  font-size: 16px;
  background: #fff;
  word-break: keep-all;
  overflow-y: scroll;
  max-height: 250px;
}



.agree-wraps-join .chk-wrap.box li {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 15px;
}

.agree-wraps-join .chk-wrap.box li p {
  display: inline-block;
  min-width: 70px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .agree-wraps-join .chk-wrap {}

  .agree-wraps-join .chk-wrap.box {
    padding: 15px 10px;
    font-size: 14px;
  }
}

.agree-wraps-join {
  position: relative;
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 20px;
  background: #f4f4f4;
  border-radius: 5px;
  padding: 20px;
  margin-top: 20px;
}

.agree-wraps-join h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #222;
}


.agree-wraps-join .chk-wrap.all {
  display: block;
  padding: 20px 0;
}

.agree-wraps-join .chk-wrap.all input[type=checkbox] {
  display: none;
}

.agree-wraps-join .chk-wrap.all input[type=checkbox]+label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding-left: 30px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}



.agree-wraps-join .chk-wrap {
  position: relative;
  display: block;
  padding: 15px 0px;
}

.agree-wraps-join .chk-wrap input+label {
  /* width: 100%; */
  /* padding-left: 0; */
  font-weight: bold;
  width: fit-content;
  margin-left: auto;
  display: flex;
}

.agree-wraps-join .chk-wrap input+label .red {
  padding: 0;
  display: inline-block;
  color: #f25656;
  margin-left: 5px;
  margin-bottom: 0;
  border-left: 0;
}


/* .agree-wraps-join .chk-wrap input[type=checkbox]+label:before {
  left: unset;
  right: 0;
}

.agree-wraps-join .chk-wrap input:checked+label::after {
  left: unset;
  right: 8px;
}  */

@media screen and (max-width: 767px) {
  .agree-wraps-join .chk-wrap {
    padding: 10px 0;
    padding-left: 5px;
  }

  .agree-wraps-join .chk-wrap.all input[type=checkbox]+label {
    font-size: 18px;
  }
}


.step-lists-wrap {
  overflow: hidden;
}

/* video_box_wrap */
.step-lists-wrap.type2 .video_box_wrap {
  position: relative;
  width: 90%;
  height: 648px;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px auto;
  margin-right: 30px;
}

.step-lists-wrap.type2 .video_box_wrap::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: calc(100%);
  height: calc(100%);
  border: solid 1px #e3ddd9;
  z-index: -1;
}

.step-lists-wrap.type2 #video_player_box {
  width: 100%;
  height: 100%;
}

/* video_box_wrap */
.step-lists-wrap.type2 .lists {
  margin: -10px 0 0 -10px;
}

.step-lists-wrap.type2 .lists>li a.inner .photo-wrap {
  position: relative;
  height: 215px;
  overflow: hidden;
}

.step-lists-wrap.type2 .lists>li a.inner .photo-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.step-lists-wrap.type2 .lists>li:first-of-type {
  margin-top: 40px;
}

.step-lists-wrap.type2 .lists>li a.inner {
  max-width: none;
  padding: 0;
  text-align: left;
}

.step-lists-wrap.type2 .lists>li a.inner .photo-wrap {
  position: relative;
  height: 215px;
  overflow: hidden;
}

.step-lists-wrap.type2 .lists>li a.inner .photo-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.step-lists-wrap.type2 .lists>li a.inner .cont {
  -webkit-line-clamp: 1;
}

.step-lists-wrap.type2 .lists>li a.inner .date {
  margin-top: 10px;
}

.step-lists-wrap.type2 .lists>li {
  width: calc(100% / 3);
}

@media screen and (max-width: 1024px) {
  .step-lists-wrap.type2 .video_box_wrap {
    height: 595px;
  }

  .step-lists-wrap.type2 .lists {
    margin: 0;
  }

  .step-lists-wrap.type2 .lists>li:first-child {
    margin-top: 20px;
  }

  .step-lists-wrap.type2 .lists>li {
    width: calc(100% / 2);
    margin-top: 20px;
  }

  .step-lists-wrap.type2 .lists.type2 {
    display: flex;
    gap: 5px;
  }

  .step-lists-wrap.type2 .lists.type2 li {
    width: 49%;
    margin: 0;
  }
}



@media screen and (max-width: 520px) {
  .step-lists-wrap.type2 .video_box_wrap {
    height: 210px;
    margin: 0;
    width: 100%;
  }

  .step-lists-wrap.type2 .lists {
    margin: 0;
  }

  .step-lists-wrap.type2 .lists>li {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }

  .step-lists-wrap.type2 .lists.type2 {
    display: flex;
    gap: 5px;
  }

  .step-lists-wrap.type2 .lists.type2 li {
    width: 49%;
    margin: 0;
  }

  .step-lists-wrap.type2 .lists>li:first-child {
    margin-top: 0;
  }
}





.step-lists-wrap.type3 .lists>li:first-of-type {
  margin-top: 40px;
}

.step-lists-wrap.type3 .lists>li a.inner {
  padding: 0;
  text-align: left;
}

.step-lists-wrap.type3 .lists>li a.inner .photo-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.step-lists-wrap.type3 .lists>li a.inner .photo-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.step-lists-wrap.type3 .lists>li a.inner:hover .photo-wrap img {
  transform: scale(1.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-lists-wrap.type3 .lists>li a.inner .photo-wrap.show {
  position: relative;
  padding: 10px;
  flex-direction: column;
}

.step-lists-wrap.type3 .lists>li a.inner .hover-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
  display: none;
}

.step-lists-wrap.type3 .lists>li a.inner:hover .hover-box {
  display: flex;
}

.step-lists-wrap.type3 .lists>li a.inner .hover-box .tit {
  color: #222;
}

.step-lists-wrap.type3 .lists>li a.inner .hover-box .date {
  font-weight: bold;
  color: #2856bd;
}

.step-lists-wrap.type3 .lists>li a.inner .cont {
  -webkit-line-clamp: 1;
}

.step-lists-wrap.type3 .lists>li a.inner .date {
  margin-top: 10px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .step-lists-wrap.type3 .lists {
    margin: 0;
  }

  .step-lists-wrap.type3 .lists>li:first-child {
    margin-top: 20px;
  }

  .step-lists-wrap.type3 .lists>li {
    width: calc(100% / 3);
    margin-top: 20px;
  }

  .step-lists-wrap.type3 .lists.type2 {
    display: flex;
    gap: 5px;
  }

  .step-lists-wrap.type3 .lists.type2 li {
    width: 49%;
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .step-lists-wrap.type3 .lists>li {
    width: calc(100% / 2);
  }

}

@media screen and (max-width: 520px) {
  .step-lists-wrap.type3 .lists {
    margin: 0;
  }

  .step-lists-wrap.type3 .lists>li {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }

  .step-lists-wrap.type3 .lists.type2 {
    display: flex;
    gap: 5px;
  }

  .step-lists-wrap.type3 .lists.type2 li {
    width: 49%;
    margin: 0;
  }

  .step-lists-wrap.type3 .lists>li:first-child {
    margin-top: 0;
  }
}



/* 
.step-lists-wrap.type3 .lists > li{
    width: calc(100% / 2);
    padding:0;
}
.step-lists-wrap.type3 .lists.gap{
    gap:20px;
}

.step-lists-wrap.type3 .lists.gap > li{
    width:calc(50% - 20px / 2);
    margin:0;
}

.step-lists-wrap.type3 .lists.gap > li img{
    height: 100%;
}

.step-lists-wrap.type3 .lists > li .photo-wrap{
    display: flex;
    gap:20px;
    flex-wrap: wrap;
    margin:0;
    justify-content: space-between;
}
.step-lists-wrap.type3 .lists > li .photo-wrap li{
    width:calc(50% - 20px / 2);
    padding:0;
    border:none;
    margin:0;
}
.step-lists-wrap.type3 .lists > li .photo-wrap li.video_box_wrap{
    position: relative;
    width:100%;
    height: 360px;
}
.step-lists-wrap.type3 .lists > li .photo-wrap li.video_box_wrap::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: calc(100%);
    height: calc(100%);
    border: solid 1px #e3ddd9;
    z-index: -1;
}
.step-lists-wrap.type3 .lists > li .photo-wrap li #video_player_box{
    width:100%;
    height: 100%;
}
.step-lists-wrap.type3 .lists > li .photo-wrap li img{
    padding:0;
}
.step-lists-wrap.type3 .lists > li.right{
    padding-left:20px;
    margin:0;
}
.step-lists-wrap.type3 .lists > li.right > img{
    width: calc(100%);
}
.step-lists-wrap.type3 .lists > li img{
    width: 100%;
    object-fit: cover;
}
.step-lists-wrap.type3 .lists > li .min-h{
    min-height: 600px;
    overflow: hidden;
}
.step-lists-wrap.type3 .lists > li .min-h img{
    height: 100%;
}



@media screen and (max-width: 767px) {
    .step-lists-wrap.type3 .lists.gap > li{
        width:calc(100%);
        margin-top:10px;
    }

    .step-lists-wrap.type3 .lists > li .photo-wrap{
        gap:10px;
    }
    .step-lists-wrap.type3 .lists > li .photo-wrap li{
        width:calc(50% - 10px / 2);
    }
    .step-lists-wrap.type3 .lists > li{
        width:100%;
    }
    .step-lists-wrap.type3 .lists > li img{
        padding:0;
    }
    .step-lists-wrap.type3 .lists > li.right{
        padding:0;
    }
    .step-lists-wrap.type3 .lists > li.right img{
        width:100%;
        padding:0;
    }

}

@media screen and (max-width: 520px) {
    .step-lists-wrap.type3 .lists > li .photo-wrap li.video_box_wrap{
        height: calc(26.5vh);
        min-height: 180px;
    }
}  


.step-lists-wrap .lists {
    display: flex;
    flex-wrap: wrap;

}

@media screen and (max-width: 1024px) {
    .step-lists-wrap .lists {

    }
}

@media screen and (max-width: 767px) {
    .step-lists-wrap .lists {
        display: block;
        margin: 0;
    }
}

.step-lists-wrap .lists > li {
    width: 100%;

    margin-top: 30px;
}
.step-lists-wrap .lists > li:first-of-type{
    margin:0;
}

@media screen and (max-width: 1024px) {
    .step-lists-wrap .lists > li {
        margin-top: 20px;

    }
}

@media screen and (max-width: 767px) {
    .step-lists-wrap .lists > li {
        width: 100%;

    }
    .step-lists-wrap .lists > li:first-child {
        margin-top: 0;
    }
}

.step-lists-wrap .lists .inner {
    height: 100%;
    padding: 40px 45px;
    border: 1px solid #e3ddd9;
    text-align: center;
}
.step-lists-wrap .lists ol li{
    padding: 5px 15px;
    border: 1px solid #e3ddd9;
    margin-bottom: 10px;
}
.step-lists-wrap .lists ol li:last-child{
    margin-bottom: 0;
}
.step-lists-wrap .lists ol li p.tit{
    font-size:20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.step-lists-wrap .lists ol li p.desc{
    margin-top: 10px;
    color: #797979;
    word-break: keep-all;
    text-align: left;
    font-weight: 500;
}
@media screen and (max-width: 1024px) {1
    .step-lists-wrap .lists .inner {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .step-lists-wrap .lists .inner {
        padding: 15px 12px;
    }
}

.step-lists-wrap .lists .inner .num {
    position: relative;
    display: block;
    margin-bottom: 10px;
    color: #1e3971;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
}
.step-lists-wrap .lists .inner .num.point{
    padding-left: 15px;
}
.step-lists-wrap .lists .inner .num.point::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #1e3971;
    top: 50%;
    transform: translate(0,-50%);
}
.step-lists-wrap .lists .inner p{
    font-weight: bold;
    font-size:18px;
}
/*
.step-lists-wrap .lists .inner .num::before{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 5px;
    transform: translate(-50%, -50%);
    background: #1e3971;
}
*/

@media screen and (max-width: 767px) {
  .step-lists-wrap .lists .inner .num {
    font-size: 17px;
  }
}

.step-lists-wrap .lists .inner .tit {
  font-size: 24px;
  line-height: 36px;
  word-break: keep-all;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .step-lists-wrap .lists .inner .tit {
    font-size: 20px;
    line-height: 30px;
  }
}

.step-lists-wrap .lists .inner .desc {
  margin-top: 10px;
  color: #797979;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
  text-align: left;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .step-lists-wrap .lists .inner .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

/* modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1000;
  outline: 0;
}

.modal.large .modal-wrap {
  max-width: 1239px;
}

.modal .modal-wrap {
  display: flex;
  align-items: center;
  width: auto;
  max-width: 750px;
  height: calc(100% - 140px);
  margin: 70px auto;
}

.modal .modal-wrap .modal-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  background: #fff;
  border: 1px solid #999;
  border-radius: 6px;
  z-index: 1010;
}

.modal .modal-wrap .modal-container .modal-header {
  position: relative;
  padding: 55px 50px 40px;
}

.modal .modal-wrap .modal-container .modal-header .modal-title {
  font-size: 22px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
}

.modal .modal-wrap .modal-container .modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}

.modal .modal-wrap .modal-container .modal-header .btn-close::before,
.modal .modal-wrap .modal-container .modal-header .btn-close::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 28px;
  margin-top: -8px;
  margin-left: -6px;
  background: #666;
}

.modal .modal-wrap .modal-container .modal-header .btn-close::before {
  transform: rotate(45deg);
}

.modal .modal-wrap .modal-container .modal-header .btn-close::after {
  transform: rotate(-45deg);
}

.modal .modal-wrap .modal-container .modal-body {
  max-height: 100%;
  padding: 0 50px 60px;
  overflow-y: auto;
}

.modal .modal-wrap .modal-container .modal-body .button-tabs {
  margin-bottom: 40px;
}

.modal .modal-wrap .modal-container .modal-body .form-wrap .row .forms.flex.size2 .col {
  margin-left: 60px;
}

.modal .modal-wrap .modal-container .modal-body .form-wrap .row .forms.flex.size2 .col:first-child {
  margin-left: 0;
}



.modal-content.point-guide {
  position: relative;
  line-height: 1.5;
}

.modal-content.point-guide .section {
  margin-top: 18px
}

.modal-content.point-guide .icon-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px
}

.modal-content.point-guide .icon-title i {
  font-style: normal;
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px
}

.modal-content.point-guide .detail-list {
  list-style: none;
  margin: 0;
  padding-left: 24px
}

.modal-content.point-guide .detail-list li {
  position: relative;
  font-size: 15px;
  color: #333;
  margin-bottom: 6px
}

.modal-content.point-guide .detail-list li::before {
  content: "•";
  position: absolute;
  left: -14px;
  top: 0;
  color: #555
}

.modal-content.point-guide hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 22px 0
}

.modal-content.point-guide strong {
  font-weight: 600;
  color: #222
}

.icon-green i {
  background: #00b050;
  color: #fff
}

.icon-purple i {
  background: #7d4fff;
  color: #fff
}


.video-modal-area {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 710px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 60px 20px 50px;
  box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  z-index: 1010;
}

@media screen and (max-width: 767px) {
  .modal .modal-wrap .modal-container .modal-header {
    padding: 20px 16px;
  }

  .modal .modal-wrap .modal-container .modal-body {
    padding: 16px;
  }

  .video-modal-area {
    width: 90%;
    padding: 50px 12px 40px;
  }
}

.video-modal-area .video-area {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-modal-area .video-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal-area .video-info {
  margin-top: 26px;
}

.video-modal-area .video-info .tit {
  position: relative;
  padding-top: 16px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .video-modal-area .video-info .tit {
    font-size: 20px;
    line-height: 30px;
  }
}

.video-modal-area .video-info .tit::before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 4px;
  background: #1e3971;
}

.video-modal-area .video-info .desc {
  margin-top: 15px;
  color: #888;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .video-modal-area .video-info .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.video-modal-area .video-info .date {
  margin-top: 6px;
  color: #888;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .video-modal-area .video-info .date {
    font-size: 12px;
    line-height: 20px;
  }
}

.video-modal-area .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}

.video-modal-area .btn-close::before,
.video-modal-area .btn-close::after {
  content: ' ';
  position: absolute;
  width: 2px;
  height: 24px;
  bottom: 10px;
  right: 29px;
  background: #111;
}

@media screen and (max-width: 767px) {

  .video-modal-area .btn-close::before,
  .video-modal-area .btn-close::after {
    right: 21px;
  }
}

.video-modal-area .btn-close::before {
  transform: rotate(45deg);
}

.video-modal-area .btn-close::after {
  transform: rotate(-45deg);
}

/* pagination */
.pagination {
  margin-top: 50px;
  font-size: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }
}

.pagination .view_more {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 30px;
  color: #005cae;
  border: solid 1px #005cae;
  text-transform: uppercase;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .pagination .view_more {
    max-width: none;
  }
}

.pagination .control-btn,
.pagination .page-btn-wrap,
.pagination .page-btn-wrap .now,
.pagination .page-btn-wrap a {
  display: inline-block;
  vertical-align: top;
}

.pagination .control-btn,
.pagination .page-btn-wrap .now,
.pagination .page-btn-wrap a {
  width: 34px;
  height: 34px;
  font-size: 16px;
  color: #666;
  line-height: 34px;
  border-radius: 50%;
  background: #fff;
}

@media screen and (max-width: 767px) {

  .pagination .control-btn,
  .pagination .page-btn-wrap .now,
  .pagination .page-btn-wrap a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}

.pagination .control-btn {
  position: relative;
  margin: 0 3px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn {
    margin: 0 2px;
  }
}

.pagination .control-btn::before,
.pagination .control-btn::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: 1px solid #666;
  border-bottom: none;
  border-right: none;
}

@media screen and (max-width: 767px) {

  .pagination .control-btn::before,
  .pagination .control-btn::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }
}

.pagination .control-btn.prev::before,
.pagination .control-btn.prev::after,
.pagination .control-btn.pprev::before,
.pagination .control-btn.pprev::after {
  transform: rotate(-45deg);
}

.pagination .control-btn.prev::before {
  margin-left: -3px;
}

.pagination .control-btn.pprev::before {
  margin-left: -5px;
}

.pagination .control-btn.next::before,
.pagination .control-btn.next::after,
.pagination .control-btn.nnext::before,
.pagination .control-btn.nnext::after {
  transform: rotate(135deg);
}

.pagination .control-btn.next::before {
  margin-left: -9px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn.next::before {
    margin-left: -6px;
  }
}

.pagination .control-btn.nnext::before {
  margin-left: -11px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn.nnext::before {
    margin-left: -8px;
  }
}

.pagination .control-btn.nnext::after {
  margin-left: -6px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn.nnext::after {
    margin-left: -3px;
  }
}

.pagination .control-btn.prev::after,
.pagination .control-btn.next::after {
  display: none;
}

.pagination .page-btn-wrap {
  margin: 0;
}

.pagination .page-btn-wrap>* {
  margin: 0 3px;
}

@media screen and (max-width: 767px) {
  .pagination .page-btn-wrap>* {
    margin: 0 2px;
  }
}

.pagination .page-btn-wrap .page {
  color: #333;
  font-weight: 700;
}

.pagination .page-btn-wrap .now {
  border-color: #1e3971;
  background: #1e3971;
  color: #fff;
  font-weight: 700;
}


.selectbox-wrap .nice-select {
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  padding-left: 14px;
  padding-right: 24px;
  position: relative;
  text-align: left !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  color: #333;
  z-index: 50;
}

.selectbox-wrap .nice-select>span {
  display: block;
  transform: skew(-0.05deg);
}

.selectbox-wrap .nice-select.open {
  border-color: #1e3971;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media screen and (max-width: 1024px) {
  .selectbox-wrap .nice-select {
    padding-left: 10px;
    font-size: 13px;
  }
}

.selectbox-wrap .nice-select:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #888;
  border-top: none;
  border-left: none;
  display: block;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.selectbox-wrap .nice-select.open:after {
  transform: rotate(225deg);
  margin-top: -2px;
}

.selectbox-wrap .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  border-color: #1e3971;
  border-radius: 0 0 8px 8px;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.selectbox-wrap .nice-select.disabled {
  background: #f5f5f5;
  color: #888;
  pointer-events: none;
}

.selectbox-wrap .nice-select.disabled:after {
  border-color: #cccccc;
}

.selectbox-wrap .nice-select .list {
  background-color: #fff;
  border: 1px solid transparent;
  border-top: none;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  z-index: 9;
}

.selectbox-wrap .nice-select .list:hover .option:not(:hover) {
  background-color: transparent;
}

.selectbox-wrap .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 14px;
  padding-right: 14px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transform: skew(-0.05deg);
}

.selectbox-wrap .nice-select .option:hover,
.selectbox-wrap .nice-select .option.focus,
.selectbox-wrap .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.selectbox-wrap .nice-select .option.selected {
  font-weight: bold;
}

.selectbox-wrap .nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.selectbox-wrap .no-csspointerevents .nice-select .list {
  display: none;
}

.selectbox-wrap .no-csspointerevents .nice-select.open .list {
  display: block;
}


/* tab */
.bar-tab-wraps {
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .bar-tab-wraps {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .bar-tab-wraps {
    margin: 0 -12px 15px;
    padding: 0 12px;
  }
}




.bar-tab-wraps .tabs {
  min-width: 100%;
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  white-space: nowrap;
}

.bar-tab-wraps .tabs li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .bar-tab-wraps .tabs li {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .bar-tab-wraps .tabs li {
    padding: 0 12px;
  }
}

.bar-tab-wraps .tabs li:first-child {
  padding-left: 0;
}

.bar-tab-wraps .tabs li:last-child {
  padding-right: 0;
}

.bar-tab-wraps .tabs li::before {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #cdcdcd;
}

.bar-tab-wraps .tabs li:first-child::before {
  display: none;
}

.bar-tab-wraps .tabs li a {
  display: block;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .bar-tab-wraps .tabs li a {
    font-size: 14px;
    line-height: 22px;
  }
}

.bar-tab-wraps .tabs li.active a {
  font-weight: 900;
  color: #1e3971;
}

.point-tab-wraps {
  overflow: hidden;
}

.point-tab-wraps .tabs {
  display: flex;
  border: 1px solid #1e3971;
  border-left: none;
}

.point-tab-wraps .tabs>li {
  flex: 1;
}

.point-tab-wraps .tabs>li a,
.point-tab-wraps .tabs>li button {
  display: block;
  width: 100%;
  height: 58px;
  border-left: 1px solid #1e3971;
  background: #fff;
  font-size: 16px;
  line-height: 58px;
  text-align: center;
  color: #000;
}

.point-tab-wraps .tabs>li a,
.point-tab-wraps .tabs>li button:hover {
  color: #1e3971;
  background: #eee;
}

@media screen and (max-width: 767px) {

  .point-tab-wraps .tabs>li a,
  .point-tab-wraps .tabs>li button {
    height: 48px;
    font-size: 13px;
    line-height: 48px;
    padding: 0 5%;
  }
}

.point-tab-wraps .tabs>li.active a,
.point-tab-wraps .tabs>li.active button {
  background: #1e3971;
  color: #fff;
  font-weight: 600;
}

.solid-tab-wraps {
  overflow: hidden;
}

.solid-tab-wraps ul.tabs {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 0 -6px;
}

@media screen and (max-width: 767px) {
  .solid-tab-wraps ul.tabs {
    margin-top: -6px;
  }
}

.solid-tab-wraps ul.tabs li {
  width: 20%;
  margin-top: 10px;
  padding-left: 6px;
}

@media screen and (max-width: 767px) {
  .solid-tab-wraps ul.tabs li {
    width: 25%;
    margin-top: 6px;
  }
}

.solid-tab-wraps ul.tabs li a,
.solid-tab-wraps ul.tabs li button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0 6px;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  background: #ebe6e3;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {

  .solid-tab-wraps ul.tabs li a,
  .solid-tab-wraps ul.tabs li button {
    height: 44px;
    font-size: 14px;
    line-height: 18px;
  }
}

.solid-tab-wraps ul.tabs li.active a,
.solid-tab-wraps ul.tabs li.active button {
  background: #1e3971;
  color: #fff;
}



.tab-title {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 50px;
}

.tab-title:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 767px) {

  .tab-title {
    font-size: 22px;
    line-height: 28px;
  }

}

.tab-desc {
  color: #666;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .tab-desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.tit-wrap {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .tit-wrap {
    margin-bottom: 15px;
  }
}

.tit-wrap .tab-title {
  margin-bottom: 0;
}

.tit-wrap .sub-title {
  margin: 10px 0;
  font-weight: 500;
  text-align: center;
  font-weight: bold;
  color: #1e3971;
  font-size: 24px;
}

.tit-wrap .tab-desc {
  margin-top: 15px;
}

.tit-wrap.type2 {
  text-align: center;
}

.tit-wrap.type2 .tab-desc {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}


section:first-child {
  margin-top: 0;
}

section .border-box {
  margin-top: 30px;
}

section .border-box .sub0401 {
  line-height: 1.5;
}

section .flex-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

section .flex-box>div {
  margin: 0;
}

section .flex-box>div i img {
  filter: brightness(0.5);
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 767px) {
  section .flex-box {
    gap: 10px;
  }

  section .flex-box .border-box {
    margin-top: 10px;
  }
}

/* table */
section .border-box .sub0401 .d-flex {
  align-items: flex-start;
  gap: 20px;
}

section .border-box .sub0401 .d-flex .tit {
  font-weight: 600;
  color: #1e3971;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tbl-wrap .tbl-count {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 24px;
  transform: skew(-0.05deg);
  line-height: 1 !important;
  text-transform: uppercase;
  color: #969696;
}

.tbl-wrap .tbl-count em {
  color: #3287b1;
}


@media screen and (max-width: 767px) {
  .tbl-wrap .tbl-count {
    font-size: 14px;
    line-height: 22px;
  }

  section .border-box .sub0401 .d-flex {
    gap: 10px;
  }

  section .border-box .sub0401 .d-flex i {
    width: 50px;
    height: 50px;
  }

  section .border-box .sub0401 .d-flex .tit {
    font-size: 24px;
  }
}

.tbl-wrap .table {
  table-layout: fixed;
  width: 100%;
}

.tbl-wrap .table.col-tbl {
  vertical-align: middle;
  border-top: 1px solid #a4a4a4;
  text-align: center;
}


.tbl-wrap .table.col-tbl .col1 {
  width: 10%;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl .col1 {
    width: 80px;
  }
}

.tbl-wrap .table.col-tbl .col2 {
  width: 15%;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl .col2 {
    width: 100px;
  }
}

.tbl-wrap .table.col-tbl .col3 {
  width: 20%;
}

.tbl-wrap .table.col-tbl thead {
  background: #1e3971;
  color: #fff;
}

.tbl-wrap .table.col-tbl thead th {
  padding: 12px;
  border-bottom: 1px solid #afafaf;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl thead th {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl thead th {
    height: 50px;
    padding: 10px;
  }
}

.tbl-wrap .table.col-tbl tbody th,
.tbl-wrap .table.col-tbl tbody td {
  height: 60px;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.col-tbl tbody th,
  .tbl-wrap .table.col-tbl tbody td {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.col-tbl tbody th,
  .tbl-wrap .table.col-tbl tbody td {
    height: 50px;
    padding: 10px;
  }
}

.tbl-wrap .table.col-tbl tbody th .flag-title,
.tbl-wrap .table.col-tbl tbody td .flag-title {
  display: flex;
  align-items: center;
}

.tbl-wrap .table.col-tbl tbody th .flag-title .flag,
.tbl-wrap .table.col-tbl tbody td .flag-title .flag {
  margin-right: 40px;
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.col-tbl tbody th .flag-title .flag,
  .tbl-wrap .table.col-tbl tbody td .flag-title .flag {
    margin-right: 15px;
  }
}

.tbl-wrap .table.col-tbl.type2 {
  border-top-color: #1e3971;
}

.tbl-wrap .table.col-tbl.type2 thead th {
  height: 55px;
  border-left: 1px solid #fff;
  border-bottom-color: #1e3971;
  background: #1e3971;
  color: #fff;
  font-weight: 700;
  word-break: keep-all;
}

.tbl-wrap .table.col-tbl.type2 thead th:first-child {
  border-left: none;
}

.tbl-wrap .table.col-tbl.type2 tbody th,
.tbl-wrap .table.col-tbl.type2 tbody td {
  border-left: 1px solid #ddd;
  word-break: keep-all;
}

.tbl-wrap .table.col-tbl.type2 tbody th:first-child,
.tbl-wrap .table.col-tbl.type2 tbody td:first-child {
  border-left: none;
}

.tbl-wrap .table.col-tbl.type2 tbody th.bg,
.tbl-wrap .table.col-tbl.type2 tbody td.bg {
  background-color: #e1b016;
}

.tbl-wrap .table.row-tbl .col1 {
  width: 15%;
}

.tbl-wrap .table.row-tbl .col2 {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.row-tbl .col2 {
    width: 40%;
  }
}

.tbl-wrap .table.row-tbl tbody tr:first-child th,
.tbl-wrap .table.row-tbl tbody tr:first-child td {
  border-top: 1px solid #333;
}

.tbl-wrap .table.row-tbl tbody th,
.tbl-wrap .table.row-tbl tbody td {
  height: 60px;
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.row-tbl tbody th,
  .tbl-wrap .table.row-tbl tbody td {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.row-tbl tbody th,
  .tbl-wrap .table.row-tbl tbody td {
    padding: 10px;
  }
}

.tbl-wrap .table.row-tbl tbody th {
  background: #f5f5f5;
  text-align: center;
}

.tbl-wrap .table.row-tbl tbody td {
  color: #333;
}

.tbl-wrap .table.row-tbl tbody td .inputfile-wrap {
  position: relative;
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
}

.tbl-wrap .table.row-tbl tbody td .inputfile-wrap input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.inputfile-wrap label.btn {
  order: 2;
  min-width: 160px;
}

.tbl-wrap .table.row-tbl.type2 tbody th {
  background: transparent;
  border-right: 1px solid #ddd;
  text-align: left;
}

.tbl-wrap .table.row-tbl.type2 tbody th,
.tbl-wrap .table.row-tbl.type2 tbody td {
  padding: 25px 60px;
}

@media screen and (max-width: 1024px) {

  .tbl-wrap .table.row-tbl.type2 tbody th,
  .tbl-wrap .table.row-tbl.type2 tbody td {
    padding: 25px 30px;
  }
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.row-tbl.type2 tbody th,
  .tbl-wrap .table.row-tbl.type2 tbody td {
    padding: 20px;
  }
}

.tbl-wrap .table.point-tbl {
  table-layout: auto;
}

.tbl-wrap .table.point-tbl thead tr:first-child th {
  border-top: 1px solid #b5a89e;
}

.tbl-wrap .table.point-tbl thead tr th {
  height: 55px;
  border-left: 1px solid #b5a89e;
  border-bottom: 1px solid #b5a89e;
  background: #dcd5d0;
  padding: 15px 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.point-tbl thead tr th {
    font-size: 14px;
    line-height: 22px;
  }
}

.tbl-wrap .table.point-tbl thead tr th:last-child {
  border-right: 1px solid #b5a89e;
}

.tbl-wrap .table.point-tbl tbody tr th,
.tbl-wrap .table.point-tbl tbody tr td {
  height: 55px;
  padding: 15px 10px;
  border-left: 1px solid #dcd5d0;
  border-bottom: 1px solid #dcd5d0;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.point-tbl tbody tr th,
  .tbl-wrap .table.point-tbl tbody tr td {
    font-size: 14px;
    line-height: 22px;
  }
}

.tbl-wrap .table.point-tbl tbody tr th:last-child,
.tbl-wrap .table.point-tbl tbody tr td:last-child {
  border-right: 1px solid #dcd5d0;
}

.tbl-wrap .table.point-tbl tbody tr th .bullet-list li,
.tbl-wrap .table.point-tbl tbody tr td .bullet-list li {
  color: #333;
  text-align: left;
}

.tbl-wrap .table a[class^="link-"] {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
}

.tbl-wrap .table a[class^="link-"].new {
  position: relative;
  padding-right: 20px;
}

.tbl-wrap .table a[class^="link-"].new::after {
  content: 'N';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #ff2d04;
  color: #fff;
  border-radius: 4px;
  margin-top: -8px;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
}

.tbl-wrap .table a[class^="link-"].file {
  position: relative;
  padding-right: 20px;
}

.tbl-wrap .table a[class^="link-"].file::before {
  content: ' ';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("/images/icon/icon-clip.png") center no-repeat;
}

.tbl-wrap .table a[class^="link-"].new.file {
  padding-right: 40px;
}

.tbl-wrap .table a[class^="link-"].new.file::before {
  right: 20px;
}

.tbl-wrap .table .alert {
  margin-top: 5px;
  font-size: 14px;
  line-height: 22px;
  color: #666;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table .alert {
    font-size: 12px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .tbl-wrap .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tbl-wrap .table-responsive .table {
    table-layout: auto;
  }

  .tbl-wrap .table-responsive .table th,
  .tbl-wrap .table-responsive .table td {
    white-space: nowrap;
  }

  .tbl-wrap .table-responsive .table a[class^="link-"] {
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
  }
}

.tit-wrap {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .tit-wrap {
    margin-bottom: 30px;
  }
}

.tit-wrap .tit {
  font-size: 24px;
  line-height: 36px;
  color: #1e3971;
  font-weight: 700;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .tit-wrap .tit {
    font-size: 20px;
    line-height: 30px;
  }
}

.tit-wrap .desc {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .tit-wrap .desc {
    font-size: 14px;
    line-height: 24px;
  }
}

.txt {
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .txt {
    font-size: 14px;
    line-height: 22px;
  }
}

.txt.txt-black {
  color: #111;
}

.txt.txt-basic {
  color: #333;
}

.txt.txt-cont {
  color: #666;
}

.txt.txt-gray {
  color: #888;
}

.txt.txt-border {
  color: #ddd;
}

.txt.txt-point {
  color: #1e3971;
}

.txt.txt-point2 {
  color: #22140c;
}

.txt.txt-blur {
  color: #e1b016;
}

.txt.txt-white {
  color: #fff;
}

.txt.txt-red {
  color: #ff2d04;
}

.txt.txt-yellow {
  color: #e1b016;
}

.txt.txt-green {
  color: #6c893e;
}

.txt.medium {
  font-weight: 500;
}

.txt.bold {
  font-weight: 700;
}

.txt.ex-bold {
  font-weight: 900;
}

.bold {
  font-weight: bold;
}

.box-text {
  border: 1px solid #ddd;
  padding: 12px;
  background: #f5f5f5;
  font-size: 14px;
  line-height: 22px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .box-text {
    font-size: 12px;
    line-height: 20px;
  }
}

.err-msg {
  position: relative;
  margin-top: 5px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 22px;
  color: #ff2d04;
}

@media screen and (max-width: 767px) {
  .err-msg {
    font-size: 12px;
    line-height: 20px;
  }
}

.err-msg::before {
  content: '!';
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff2d04;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .err-msg::before {
    top: 4px;
  }
}

.err-msg:empty {
  margin-top: 0;
}

.err-msg:empty::before {
  display: none;
}

/* tooltip */
.tooltip-wrap {
  position: relative;
  z-index: 10;
}

.tooltip-wrap .tooltip-button {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #1e3971;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}

.tooltip-wrap .tooltip-button::before {
  content: '?';
}

.tooltip-wrap .tooltip-button:hover+.tooltip-box {
  display: block;
}

.tooltip-wrap .tooltip-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 420px;
  margin-top: 20px;
  padding: 30px 25px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.tooltip-wrap .tooltip-box .tit {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .tooltip-wrap .tooltip-box .tit {
    font-size: 14px;
    line-height: 22px;
  }
}

.tooltip-wrap .tooltip-box .desc {
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .tooltip-wrap .tooltip-box .desc {
    font-size: 12px;
    line-height: 20px;
  }
}

/* === COMMON LAYOUT === */
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  transition: background 0.1s ease-in-out;
  display: flex;
  padding: 0 16%;
}

@media screen and (max-width: 1919px) {
  header {
    padding: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
}

header::before {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: #fff;
  transition: height 0.1s ease-in-out;
}

header .head-top h1 {
  position: relative;
  font-size: 0;
  z-index: 510;
}

header .head-top h1 a {
  display: block;
  width: 250px;
  height: 70px;
  background: url("/images/logo.png") center no-repeat;
  background-size: 100%;
  transition: background 0.2s ease-in-out;
}

@media screen and (max-width: 1024px) {
  header .head-top h1 a {
    width: 208px;
    height: 33px;
  }
}

@media screen and (min-width: 1025px) {

  header.scroll {
    background: #fff;
    border-bottom: solid 1px #ccc;
  }

  /* header.scroll .head-cont{
        background: #1e3971;
    } */
  header.scroll .head-cont #gnb ul.depth1>li a.dep1 {
    color: #000;
    font-weight: 500;
  }

  header.scroll .head-top h1 a {
    background-image: url("/images/logo-on.png");
  }

  header.scroll .head-cont #gnb .member-btn .btn {
    border-color: #333;
    color: #333;
  }

  header.scroll .head-cont #gnb .member-btn .btn:hover,
  header.scroll .head-cont #gnb .member-btn .btn:active {
    background-color: rgba(51, 51, 51, 0.1);
  }

  header .head-top {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
    /* height: 100px;
        width: 100%; 
        padding-left: 20px;
        padding-right: 20px; */
  }
}

@media screen and (min-width: 1025px) and (max-width: 767px) {
  header .head-top {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (min-width: 1025px) {

  header .head-top .btn-menu-all {
    /* display: none !important; */
  }

  header .head-cont {
    position: relative;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.5); */
    flex: 1;
  }

  header .head-cont .gnb-dim {
    display: none !important;
  }

  header .head-cont #gnb {
    display: block !important;
    position: relative;
    width: 100%;
  }

  header .head-cont #gnb .member-btn {
    position: absolute;
    left: 50%;
    top: -65px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0;
    transform: translateX(-50%);
    text-align: right;
  }
}

@media screen and (min-width: 1025px) and (max-width: 767px) {
  header .head-cont #gnb .member-btn {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (min-width: 1025px) {
  header .head-cont #gnb .member-btn li {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
  }

  header .head-cont #gnb .member-btn li.sitemap::before {
    content: ' ';
    display: inline-block;
    vertical-align: top;
    width: 1px;
    height: 26px;
    margin: 2px 16px 0 6px;
    background: #fff;
  }

  header .head-cont #gnb ul.depth1 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 767px) {
  header .head-cont #gnb ul.depth1 {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (min-width: 1025px) {
  header .head-cont #gnb ul.depth1>li {
    position: relative;
  }

  header .head-cont #gnb ul.depth1>li:hover a.dep1 {
    /* color: #1e3971; */
  }

  header .head-cont #gnb ul.depth1>li:hover ul.depth2 {
    display: block !important;
  }

  header .head-cont #gnb ul.depth1>li a.dep1 {
    display: block;
    height: 60px;
    color: #fff;
    font-size: 17px;
    line-height: 60px;
    text-align: center;
  }

  header .head-cont #gnb ul.depth1>li .btn-depth-more {
    display: none !important;
  }

  header .head-cont #gnb ul.depth1>li ul.depth2 {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 220px;
    padding: 30px;
    border-top: 2px solid #1e3971;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 5px 9px 20px 0px rgba(0, 0, 0, 0.2);
  }

  header .head-cont #gnb ul.depth1>li ul.depth2 li {
    margin-top: 20px;
    text-align: center;
  }

  header .head-cont #gnb ul.depth1>li ul.depth2 li:first-child {
    margin-top: 0;
  }

  header .head-cont #gnb ul.depth1>li ul.depth2 li a {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    color: #333;
    font-size: 16px;
  }

  header .head-cont #gnb ul.depth1>li ul.depth2 li a:hover {
    color: #1e3971;
    text-decoration: underline;
  }
}

@media screen and (max-width: 1024px) {
  header.scroll {
    background: #fff;
  }

  header.scroll .head-top h1 a {
    background-image: url(/images/logo-on.png);
  }

  header.scroll .btn-menu-all .bar,
  header.scroll .btn-menu-all::before,
  header.scroll .btn-menu-all::after {
    background: #000;
  }

  header .gnb-dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 510;
    background: rgba(0, 0, 0, 0.3);
  }

  header {
    display: block;
  }

  header .head-top {
    display: flex;
  }

  header .head-top h1 {
    margin: 0;
    margin-right: auto;
    line-height: 0;
  }

  header .head-top h1 a {
    display: flex;
    align-items: center;
    height: 50px;
  }

  header #gnb {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease-in-out;
    z-index: 550;
  }

  header #gnb.m-open {
    right: 0;
  }

  header #gnb ul.member-btn {
    display: flex;
    align-items: center;
    height: 49px;
    padding: 0 20px;
  }

  header #gnb ul.member-btn li {
    margin-right: 10px;
  }

  header #gnb ul.member-btn li.sitemap {
    display: none;
  }

  header #gnb ul.member-btn .btn.btn-border-white {
    height: 33px;
    border-color: #111;
    color: #111;
    line-height: 31px;
    border-radius: 17px;
  }

  header #gnb ul.depth1 {
    height: calc(100% - 50px);
    border-top: 1px solid #ddd;
    overflow-y: auto;
  }

  header #gnb ul.depth1>li {
    position: relative;
    border-bottom: 1px solid #eee;
  }

  header #gnb ul.depth1>li a.dep1 {
    display: block;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 500;
    line-height: 50px;
  }

  header #gnb ul.depth1>li .btn-depth-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
  }

  header #gnb ul.depth1>li .btn-depth-more::after {
    content: ' ';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    margin-top: -9px;
    border: 2px solid #999;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    transition: all 0.2s ease-in-out;
  }

  header #gnb ul.depth1>li .btn-depth-more.open::after {
    transform: rotate(135deg);
    margin-top: -3px;
  }

  header #gnb ul.depth1>li ul.depth2 {
    display: none;
    padding: 30px 30px 40px;
    background: #f5f5f5;
  }

  header #gnb ul.depth1>li ul.depth2>li {
    margin-top: 20px;
  }

  header #gnb ul.depth1>li ul.depth2>li:first-child {
    margin-top: 0;
  }

  header #gnb ul.depth1>li ul.depth2>li a {
    display: inline-block;
    vertical-align: top;
    color: #666;
    font-size: 16px;
    line-height: 20px;
  }

  header .btn-sitemap {
    display: none !important;
  }

  header .btn-menu-all {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    z-index: 600;
  }

  header .btn-menu-all .bar,
  header .btn-menu-all::before,
  header .btn-menu-all::after {
    content: ' ';
    position: absolute;
    top: 50%;
    right: 12px;
    width: 26px;
    height: 2px;
    margin-top: -1px;
    border-radius: 2px;
    background: #fff;
    opacity: 1;
    transition: all 0.2s ease-in-out;
  }

  header .btn-menu-all::before {
    margin-top: -9px;
  }

  header .btn-menu-all::after {
    margin-top: 7px;
  }

  header .btn-menu-all.open .bar {
    opacity: 0;
  }

  header .btn-menu-all.open::before {
    transform: rotate(-45deg);
    margin-top: -1px;
    background: #333;
  }

  header .btn-menu-all.open::after {
    transform: rotate(45deg);
    margin-top: -1px;
    background: #333;
  }
}

/* common layout */
.skip-navigation {
  position: absolute;
  z-index: 9999;
}

.skip-navigation a {
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

html {
  overflow-x: hidden;
}

.quick-menu {
  position: absolute;
  top: 460px;
  left: 50%;
  margin-left: 670px;
  padding-top: 22px;
  z-index: 400;
}

.quick-menu.main {
  top: 997px;
}

@media screen and (max-width: 1024px) {
  .quick-menu {
    display: none !important;
  }
}

.quick-menu::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-left: -22px;
  border-radius: 50%;
  background: #333 url("/images/icon/icon-quick.png") center no-repeat;
  z-index: 410;
}

.quick-menu .body {
  position: relative;
  width: 150px;
  padding: 35px 10px 45px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f5f5f5;
}

.quick-menu .body .tit {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.quick-menu .body ul.links li {
  margin-top: 4px;
}

.quick-menu .body ul.links li a {
  display: block;
  padding: 7px;
  border-radius: 4px;
  background: #ededed;
  text-align: center;
  color: #1e3971;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  word-break: keep-all;
  transition: all .1s;
}

.quick-menu .body ul.links li a:hover {
  background: #1e3971;
  color: #ededed;
}

.quick-menu .body .totop {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  transition: all .2s;
}

.quick-menu .body .totop:hover {
  background: #333;
}

.quick-menu .body .totop:hover::after {
  filter: invert(1);
}

.quick-menu .body .totop::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -1px;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  transform: rotate(135deg);
}

.quick-menu .foot {
  margin-top: 28px;
  border-radius: 10px;
  background: #f5f5f5;
  overflow: hidden;
}

.quick-menu .foot .tit {
  background: #333;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 45px;
}

.quick-menu .foot .call {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 45px;
}

.quick-menu .foot .call a {
  display: block;
  width: 100%;
  height: 100%;
}

.quick-menu .foot .call a:hover {
  color: #1e3971;
}

/* 
.quick-menu .foot .call.rep a{
    animation: emergency 2s ease-in-out infinite;
}

@keyframes emergency {
	0%,
	100% {
	  opacity: 1;
      color:#1e3971;
	}
	50% {
	  opacity: 0.5;
      color:#333;
	}
} */

.contents .page-title {
  background-image: url("/images/bg/bg-subvisual01.png");
}


.contents.cate01 .page-title {
  background-image: url("/images/bg/bg-subvisual01.png");
}

.contents.cate02 .page-title {
  background-image: url("/images/bg/bg-subvisual02.png");
}

.contents.cate03 .page-title {
  background-image: url("/images/bg/bg-subvisual03.png");
}

.contents.cate04 .page-title {
  background-image: url("/images/bg/bg-subvisual04.png");
}

.contents.cate05 .page-title {
  background-image: url("/images/bg/bg-subvisual05.png");
}

.contents.cate06 .page-title {
  background-image: url("/images/bg/bg-subvisual06.png");
}

.contents.cate07 .page-title {
  background-image: url("/images/bg/bg-subvisual07.png");
}

.contents.cate08 .page-title {
  background-image: url("/images/bg/bg-subvisual08.png");
}

.contents.cate09 .page-title {
  background-image: url("/images/bg/bg-subvisual09.png");
}




.contents .page-title {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .contents .page-title {
    height: 260px;
  }
}

@media screen and (max-width: 767px) {
  .contents .page-title {
    height: 200px;
  }
}

.contents .page-title h2.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex: 1;
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
}

/* .contents .page-title h2.title::before{
    position: absolute;
    content: '';
    width:1px;
    height: 10px;
    background: #fff;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
} */

@media screen and (max-width: 1024px) {
  .contents .page-title h2.title {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .contents .page-title h2.title {
    font-size: 28px;
  }
}

.contents .sub-depth-wrap {
  position: relative;
  height: 60px;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .contents .sub-depth-wrap {
    height: 45px;
  }
}

.contents .sub-depth-wrap::before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ddd;
  z-index: -1;
}

.contents .sub-depth-wrap .area {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.contents .sub-depth-wrap .area .home {
  display: block;
  width: 60px;
  height: 60px;
  background: #1e3971 url("/images/icon/icon-w_home.png") center no-repeat;
  /* border: 1px solid #ddd; */
  /* border-width: 0 1px; */
}


@media screen and (max-width: 1024px) {
  .contents .sub-depth-wrap .area .home {
    width: 45px;
    min-width: 45px;
    height: 45px;
    background-size: 20px;
  }
}

.contents .sub-depth-wrap .area .dropdown-menu {
  position: relative;
  width: 260px;
  border: none;
  border-right: 1px solid #ddd;
  display: block;
  box-shadow: none;
  min-width: auto;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-transform: capitalize;
  background: none;
}

@media screen and (max-width: 767px) {
  .contents .sub-depth-wrap .area .dropdown-menu {
    flex: 1;
  }

  .contents .sub-depth-wrap .area .dropdown-menu:last-child {
    border-right: none;
  }
}

.contents .sub-depth-wrap .area .dropdown-menu.open .btn-toggle::after {
  transform: rotate(135deg);
  margin-top: -3px;
}

.contents .sub-depth-wrap .area .dropdown-menu.open ul.lists {
  display: block;
}

.contents .sub-depth-wrap .area .dropdown-menu .btn-toggle {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 40px 0 20px;
  color: #333;
  font-size: 16px;
  line-height: 60px;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .contents .sub-depth-wrap .area .dropdown-menu .btn-toggle {
    height: 45px;
    font-size: 14px;
    line-height: 45px;
  }
}

@media screen and (max-width: 767px) {
  .contents .sub-depth-wrap .area .dropdown-menu .btn-toggle {
    padding: 0 30px 0 10px;
    font-size: 13px;
  }
}

.contents .sub-depth-wrap .area .dropdown-menu .btn-toggle::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border: 1px solid #888;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  transition: all 0.1s ease-in-out;
}

@media screen and (max-width: 767px) {
  .contents .sub-depth-wrap .area .dropdown-menu .btn-toggle::after {
    right: 13px;
  }
}

.contents .sub-depth-wrap .area .dropdown-menu ul.lists {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.contents .sub-depth-wrap .area .dropdown-menu ul.lists li {
  background: #eee;
}

.contents .sub-depth-wrap .area .dropdown-menu ul.lists li a {
  display: block;
  height: 45px;
  padding: 0 20px;
  color: #666;
  font-size: 16px;
  line-height: 45px;
}

@media screen and (max-width: 1024px) {
  .contents .sub-depth-wrap .area .dropdown-menu ul.lists li a {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .contents .sub-depth-wrap .area .dropdown-menu ul.lists li a {
    height: 35px;
    padding: 0 10px;
    line-height: 35px;
  }
}

.contents .sub-depth-wrap .area .dropdown-menu ul.lists li a:hover {
  color: #1e3971;
  background: rgb(223 225 227 / 90%);
}

.contents .sub-depth-wrap .area .dropdown-menu ul.lists li a.active {
  background: rgba(15, 66, 142, 0.9);
  color: #fff;
}

.contents h3.sub-page-title {
  position: relative;
  margin-top: 70px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

.contents h3.sub-page-title::after {
  content: ' ';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 2px;
  margin-left: -40px;
  background: #1e3971;
}

@media screen and (max-width: 1024px) {
  .contents h3.sub-page-title {
    margin-bottom: 40px;
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .contents h3.sub-page-title {
    margin-top: 50px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 24px;
  }

  .contents h3.sub-page-title::after {
    width: 60px;
    margin-left: -30px;
  }
}

.club-join {
  background: #0EA5E9;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  width: fit-content;
  display: block;
  margin-left: auto;
}

.club-join:hover {
  background: #0284c7;
}



.club-subtitle-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-radius: 4px;
  margin-bottom: 25px;
}

.club-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.club-desc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
  font-weight: 500;
}

.club-desc strong {
  font-weight: 600;
}

.club-desc .divider {
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .club-subtitle-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .club-info {
    font-size: 14px;
  }

  .club-info .divider {
    display: none;
  }
}



.club-section {
  margin-top: 30px;
}

.club-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.club-item {
  position: relative;
  background: #fff;
  transition: all .2s;
  cursor: pointer;
}

.club-item img {
  transition: all .2s;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.club-item:hover img {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.club-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.club-title {
  font-weight: 600;
  font-size: 16px;
  margin: 16px 0 8px;
}

.club-info {
  font-size: 14px;
  color: #555;
  margin: 0 12px 12px;
}

.club-info span {
  color: #c00;
  font-weight: 500;
}




.searchBox {
  position: relative;
  text-align: center;
  margin: 0 auto;
  background: #F7F8FA;
  padding: 15px 60px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.searchBox .inner {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
}

.searchBox .searchWidget {
  margin: 0;
}

@media screen and (max-width: 1366px) {
  .searchBox {
    padding: 10px 20px;
  }
}


@media screen and (max-width: 1024px) {
  .searchBox {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 520px) {
  .searchBox {
    padding: 10px;
    margin-bottom: 10px;
  }

  .searchBox .inner {
    flex-direction: column;
    gap: 10px
  }

  .searchBox .datepicker input.form-control {
    min-width: 145px;
    max-width: 145px;
    width: auto;
    padding: 5px 10px;
    padding-left: 35px;
    padding-right: 5px !important;
  }
}

/* FLEX 레이아웃 */
.board-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.board-box {
  flex: 1 1 calc(50% - 10px);
  background: #fff;
  border-radius: 10px;
  min-height: 300px;
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.board-box h2 {
  font-weight: bold;

  font-size: 18px;

}

.btn-more {
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
}

.btn-more:hover {
  text-decoration: underline;
}

/* 모바일 - 1열 */
@media (max-width:768px) {
  .board-box {
    flex: 1 1 100%;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
  aspect-ratio: 1 / 1;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 520px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* dim */
.common-dim {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nodata {
  display: block;
  padding: 100px 0;
  text-align: center;
  color: #888;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .nodata {
    padding: 60px 0;
    font-size: 14px;
  }
}

/* footer */
footer {
  position: relative;
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

footer::before {
  position: absolute;
  content: '';
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: url(../images/icon/icon-quick2.png) no-repeat 100% 100%;
  filter: contrast(0.8);
}

@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}

footer .foot-cont {
  display: flex;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  gap: 5%;
}

@media screen and (max-width: 767px) {
  footer .foot-cont {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  footer .foot-cont {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (max-width: 767px) {
  footer .foot-cont {
    flex-direction: column;
  }
}

footer .foot-cont .left {
  position: relative;
  padding: 20px 0;
  font-weight: 500;
  width: 100%;
}

footer .foot-cont .left select {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  background: url(../images/icon/icon-down_arrow.png) no-repeat 80% 50% !important;
  outline: none;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left select {
    top: 15%;
    padding: 10px 40px;
    font-size: 12px;
  }
}

footer .foot-cont .left select:hover {
  color: #000 !important;
}

footer .foot-cont .left select option {
  color: #000;
  font-weight: bold;
  margin: 20px 0;
  color: #fe0001;
  padding: 3px 0;
  font-size: 16px;
  border: solid 1px blue;
}

select option:hover {
  box-shadow: 0 0 10px 100px #fe0001 inset;
  color: #fff;
}


footer .foot-cont .left select::-ms-expand {
  display: none;
}

@media screen and (max-width: 1366px) {}


@media screen and (max-width: 1024px) {
  footer .foot-cont .left {
    padding: 0;
  }
}

footer .foot-cont .left .link-lists {
  margin-bottom: 30px;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left .link-lists {
    margin-bottom: 20px;
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    gap: 10px;
  }
}

footer .foot-cont .left .link-lists li {
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left .link-lists li {
    width: 50%;
    display: block;
    width: fit-content;
  }
}



footer .foot-cont .left .link-lists li::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 10px;
  margin: 0 10px;
  background: #999;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left .link-lists li::before {
    display: none;
  }
}


footer .foot-cont .left .link-lists li:first-child::before {
  display: none;
}

footer .foot-cont .left .link-lists li a {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left .link-lists li a {
    font-size: 14px;
  }
}

footer .foot-cont .left .comp-infos li {
  display: inline-block;
  color: #797979;
  font-size: 15px;
  word-break: keep-all;
  margin-left: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left .comp-infos li {
    margin-top: 6px;
    font-size: 13px;
    width: fit-content;
    margin-left: 0;
  }
}

footer .foot-cont .left .comp-infos li:first-child {
  margin: 0;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left .comp-infos li:first-child {
    width: 100%;
  }
}


footer .foot-cont .left .comp-infos li .tit {
  margin-right: 3px;
  white-space: nowrap;
}



footer .foot-cont .left .copyright {
  margin-top: 30px;
  color: #797979;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  footer .foot-cont .left .copyright {
    margin-top: 20px;
    font-size: 12px;
  }
}

footer .foot-cont .right {
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  width: auto;
}

footer .foot-cont .right .logo {
  margin: 10px 0;
}

@media screen and (max-width: 1024px) {
  footer .foot-cont .right {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  footer .foot-cont .right {
    order: -1;
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 15px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  footer .foot-cont .right .dk-logo img {
    height: 28px;
  }
}

/* member, 마이페이지 */
.contents.cate09 .withdrawal-wrap .top {
  padding: 40px 40px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
  .contents.cate09 .withdrawal-wrap .top {
    padding: 40px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate09 .withdrawal-wrap .top {
    padding: 30px 0 0;
  }
}

.contents.cate09 .withdrawal-wrap .top p {
  margin-top: 10px;
  padding: 0 60px;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents.cate09 .withdrawal-wrap .top p {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents.cate09 .withdrawal-wrap .top p:first-child {
  margin-top: 0;
}

.contents.cate09 .withdrawal-wrap .top p.bold {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contents.cate09 .withdrawal-wrap .top p {
    padding: 0 20px;
  }
}

.contents.cate09 .withdrawal-wrap .top .form-wrap {
  margin-top: 40px;
  padding: 25px 60px;
  border-top: 1px solid #ddd;
}

.contents.cate09 .withdrawal-wrap .top .form-wrap label {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .contents.cate09 .withdrawal-wrap .top .form-wrap {
    margin-top: 20px;
    padding: 10px 20px;
  }
}

.contents.cate09 .withdrawal-wrap .bottom {
  margin-top: 60px;
  padding: 30px 100px;
  border: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
  .contents.cate09 .withdrawal-wrap .bottom {
    padding: 30px 60px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate09 .withdrawal-wrap .bottom {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

.contents.cate09 .withdrawal-wrap .bottom .sect {
  margin-top: 30px;
}

.contents.cate09 .withdrawal-wrap .bottom .sect:first-child {
  margin-top: 0;
}

.contents.cate09 .withdrawal-wrap .bottom .sect p {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contents.cate09 .withdrawal-wrap .bottom .sect p {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents.cate09 .withdrawal-wrap .bottom .sect.type2 p {
  float: left;
}

@media screen and (max-width: 1024px) {
  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 p {
    float: none;
  }
}

.contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists {
  margin-left: 200px;
}

@media screen and (max-width: 1024px) {
  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists li {
    width: 25%;
  }

  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists li:nth-child(1),
  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists li:nth-child(4) {
    width: 50%;
  }

  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists li:nth-child(3)~li {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists li {
    width: 100%;
    margin-top: 5px;
  }

  .contents.cate09 .withdrawal-wrap .bottom .sect.type2 .slt-lists li:first-child {
    margin-top: 0;
  }
}

.contents .login-wrap {
  max-width: 570px;
  margin: 0 auto;
}

.contents .login-wrap .tit-wrap {
  text-align: center;
}

.contents .login-wrap .login-input {
  margin-top: 20px;
  position: relative;
  padding-right: 140px;
}

@media screen and (max-width: 767px) {
  .contents .login-wrap .login-input {
    padding-right: 110px;
  }
}

.contents .login-wrap .login-input .input-wrap {
  display: block;
  margin-top: 10px;
}

.contents .login-wrap .login-input .input-wrap:first-child {
  margin-top: 0;
}

.contents .login-wrap .login-input .input-wrap .form-control {
  padding: 10px;
  height: 46px;
}

.contents .login-wrap .login-input .chk-wrap {
  display: block;
  margin-top: 10px;
}

.contents .login-wrap .login-input .btn-login {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 110px;
}

@media screen and (max-width: 767px) {
  .contents .login-wrap .login-input .btn-login {
    width: 100px;
    height: 102px;
  }
}

.contents .login-wrap .sns-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.contents .login-wrap .sns-login p {
  color: #666;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .contents .login-wrap .sns-login p {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents .login-wrap .sns-login .btns {
  text-align: right;
}

.contents .login-wrap .sns-login .btns a {
  display: inline-block;
  vertical-align: top;
  width: 46px;
  height: 46px;
  margin-left: 10px;
}

.contents .login-wrap .sns-login .btns a:first-child {
  margin-left: 0;
}

.contents .login-wrap .sns-login .btns a.btn-sns1 {
  background: url("/images/bg/bg-sns.png") 0 0 no-repeat;
}

.contents .login-wrap .sns-login .btns a.btn-sns2 {
  background: url("/images/bg/bg-sns.png") right 0 no-repeat;
}

.contents .login-wrap .find-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dotted #ddd;
}

.contents .login-wrap .find-info p {
  color: #666;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .contents .login-wrap .find-info p {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents .login-wrap .find-info .btn-find {
  display: block;
  text-align: center;
  line-height: 48px;
}

@media screen and (max-width: 767px) {
  .contents .login-wrap .find-info .btn-find {
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 38px;
  }
}

.contents .login-wrap .btn-join {
  display: block;
  margin-top: 25px;
  border-width: 2px;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .contents .login-wrap .btn-join {
    font-size: 16px;
    line-height: 44px;
  }
}

.contents .join-select-list {
  max-width: 500px;
  margin: 0 auto;
}

.contents .join-select-list li {
  margin-top: 10px;
}

.contents .join-select-list li:first-child {
  margin-top: 0;
}

.contents .join-select-list li a {
  display: block;
  width: 100%;
  font-weight: 700;
  line-height: 52px;
}

.contents .join-select-list li a.btn01 {
  background: #21c502;
  color: #fff;
}

.contents .join-select-list li a.btn01 span::before {
  content: ' ';
  display: inline-block;
  vertical-align: top;
  width: 46px;
  height: 46px;
  margin-top: 3px;
  margin-right: 10px;
  background: url("/images/icon/icon-snslogin.png") 0 0 no-repeat;
}

.contents .join-select-list li a.btn02 {
  background: #fff100;
  color: #3b201e;
}

.contents .join-select-list li a.btn02 span::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 46px;
  height: 46px;
  margin-right: 10px;
  background: url("/images/icon/icon-snslogin.png") right 0 no-repeat;
}

.contents .form-wrap.join-type {
  max-width: 600px;
  margin: 0 auto;
}

.contents .form-wrap.join-type .form-control {
  max-width: 100%;
  height: 50px;
}

.contents .form-wrap.join-type .form-control#userID:read-only,
.contents .form-wrap.join-type .form-control#email:read-only {
  background-color: #eee;
}

.contents .form-wrap.join-type .form-control#userID:read-only:focus,
.contents .form-wrap.join-type .form-control#email:read-only:focus {
  border: 1px solid #ddd;
}

.contents .form-wrap.join-type .row {
  margin-top: 10px;
}

.contents .form-wrap.join-type .row:first-child {
  margin-top: 0;
}

.contents .form-wrap.join-type .row .btn {
  height: 50px;
}

.contents .join-agree-cont {
  max-width: 600px;
  margin: 60px auto 0;
  border-top: 1px solid #333;
}

@media screen and (max-width: 767px) {
  .contents .join-agree-cont {
    margin-top: 40px;
  }
}

.contents .join-agree-cont .tit {
  padding: 15px 12px;
  border-bottom: 1px solid #ddd;
  background: var(--theme);
  color:#fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contents .join-agree-cont .tit {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents .join-agree-cont .all {
  border-bottom: 1px solid #ddd;
  padding: 15px 12px;
  background: var(--bgFL);
}

.contents .join-agree-cont .all p {
  margin-top: 5px;
  padding-left: 30px;
  color: #888;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .contents .join-agree-cont .all p {
    font-size: 12px;
    line-height: 20px;
  }
}

.contents .join-agree-cont .agrees {
  border-bottom: 1px solid #ddd;
  padding: 15px 12px;
  background: var(--bgFL);
}

.contents .join-agree-cont .agrees li {
  position: relative;
  margin-top: 5px;
}

.contents .join-agree-cont .agrees li:first-child {
  margin-top: 0;
}

.contents .join-agree-cont .agrees li .link-cont {
  position: absolute;
  top: 3px;
  right: 0;
}

.contents .join-agree-cont .agrees li .link-cont::after {
  content: ' ';
  display: inline-block;
  vertical-align: top;
  width: 7px;
  height: 7px;
  margin: 2px 0 0 5px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(135deg);
  transition: all 0.2s ease-in-out;
}

.contents .join-agree-cont .agrees li .link-cont.open::after {
  transform: rotate(315deg);
  margin-top: 6px;
}

.contents .join-agree-cont .agrees li .terms-box {
  display: none;
  height: 100px;
  border: 1px solid #ddd;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: 30px;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .contents .join-agree-cont .agrees li .terms-box {
    font-size: 12px;
    line-height: 20px;
  }
}

.contents.cate09 .join-complete {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contents.cate09 .join-complete .welcome {
  position: relative;
  padding-top: 70px;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -3px;
}

@media screen and (max-width: 767px) {
  .contents.cate09 .join-complete .welcome {
    font-size: 35px;
  }
}

.contents.cate09 .join-complete .welcome::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 50%;
  width: 55px;
  height: 32px;
  margin-left: -30px;
  border: 7px solid #1e3971;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.contents.cate09 .join-complete .welcome small {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .contents.cate09 .join-complete .welcome small {
    font-size: 20px;
    line-height: 30px;
  }
}

.contents.cate09 .join-complete .welcome small em {
  font-weight: 700;
}

.contents.cate09 .join-complete .desc {
  margin-top: 30px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .contents.cate09 .join-complete .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate09 .join-complete .desc {
    margin-top: 20px;
  }
}

.contents.cate09 .join-complete .desc em {
  color: #1e3971;
  font-weight: 700;
}

.contents .find-wrap {
  max-width: 450px;
  margin: 0 auto;
}

.contents .find-wrap .tit-wrap {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .contents .find-wrap .tit-wrap {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .contents .find-wrap .tit-wrap {
    margin-bottom: 30px;
  }
}

.contents .find-wrap .button-tab-wrap .tabs {
  font-size: 0;
}

.contents .find-wrap .button-tab-wrap .tabs li {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.contents .find-wrap .button-tab-wrap .tabs li a {
  display: block;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  line-height: 54px;
  text-align: center;
  transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
  .contents .find-wrap .button-tab-wrap .tabs li a {
    line-height: 46px;
    font-size: 14px;
  }
}

.contents .find-wrap .button-tab-wrap .tabs li.active a {
  border-color: #22140c;
  background: #22140c;
  color: #fff;
}

.contents .find-wrap .button-tab-contents .slt-lists {
  padding: 20px 0;
  text-align: center;
}

.contents .find-wrap .button-tab-contents .slt-lists li {
  margin-left: 50px;
}

.contents .find-wrap .button-tab-contents .slt-lists li:first-child {
  margin-left: 0;
}

.contents .find-wrap .button-tab-contents .find-input .input-wrap {
  display: block;
  margin-top: 10px;
}

.contents .find-wrap .button-tab-contents .find-input .input-wrap:first-child {
  margin-top: 0;
}

.contents .find-wrap .button-tab-contents .find-input .input-wrap input {
  height: 46px;
  padding: 10px;
}

.contents .find-wrap .button-tab-contents .btn-area {
  margin-top: 10px;
}

.contents .find-wrap .button-tab-contents .btn-area .btn {
  line-height: 52px;
}

/* === PAGES(CATEGORY) === */
/* page common */
.ex-box {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .ex-box {
    margin-bottom: 20px;
  }
}

.ex-box:last-child {
  margin-bottom: 0;
}

.ex-box>* {
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .ex-box>* {
    padding-left: 18px;
  }
}

.ex-box .tit {
  position: relative;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  word-break: keep-all;
}

.ex-box .tit:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .ex-box .tit {
    font-size: 18px;
    line-height: 22px;
  }
}

.ex-box .tit::before {
  content: ' ';
  position: absolute;
  top: 13px;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

@media screen and (max-width: 767px) {
  .ex-box .tit::before {
    top: 10px;
    width: 12px;
  }
}

.ex-box .desc {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .ex-box .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.ex-box .desc span {
  display: block;
}

@media screen and (max-width: 767px) {
  .ex-box .desc {
    margin-bottom: 15px;
  }
}

.ex-box .alert-txt {
  font-size: 16px;
  line-height: 24px;
  color: #1e3971;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .ex-box .alert-txt {
    font-size: 14px;
    line-height: 22px;
  }
}

.ex-box .dl-wrap {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .ex-box .dl-wrap {
    margin-top: 10px;
  }
}

.ex-box .dl-wrap dl {
  margin-top: 25px;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .ex-box .dl-wrap dl {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .ex-box .dl-wrap dl {
    margin-top: 15px;
  }
}

.ex-box .dl-wrap dl:first-child {
  margin-top: 0;
}

.ex-box .dl-wrap dl dt {
  margin-bottom: 5px;
  color: #1e3971;
  font-weight: 700;
}

.ex-box .dl-wrap dl dd {
  color: #666;
}

.ex-box .ci-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-left: 25px;
  padding-left: 0;
  height: 270px;
  border: 1px solid #e3ddd9;
  background: #f4f2f0;
}

@media screen and (max-width: 767px) {
  .ex-box .ci-box {
    height: 130px;
    margin-top: 20px;
  }

  .ex-box .ci-box img {
    height: 64px;
  }
}

.ex-box .tbl-wrap {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .ex-box .tbl-wrap {
    margin-top: 10px;
  }
}

.border-box {
  padding: 40px 45px;
  border: 1px solid #e3ddd9;
}

@media screen and (max-width: 1024px) {
  .border-box {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .border-box {
    padding: 15px 12px;
  }
}

.service-info {
  position: relative;
}

.service-info .thumb {
  display: block;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .service-info .thumb {
    margin-bottom: 30px;
  }
}

.service-info>h4.tit {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  word-break: keep-all;
  text-align: center;
  margin-bottom: 50px
}

.service-info.sub_05>h4.tit::before {
  content: '인재양성전략';
  display: block;
  font-size: 20px;
  color: #006bff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .service-info>h4.tit {
    font-size: 16px;
    line-height: 24px;
  }
}

.service-info .desc {
  margin-top: 20px;
  color: #666;
  font-size: 18px;
  line-height: 26px;
  width: 90%;
}

@media screen and (max-width: 767px) {
  .service-info .desc {
    font-size: 15px;
    line-height: 24px;
  }
}



.service-info .text-box {
  margin-bottom: 30px;
  word-break: keep-all;
}

.service-info .text-box .tit {
  position: relative;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  word-break: keep-all;
  color: #000;
  text-transform: uppercase;
}

.service-info .services .tit em {
  display: block;
  font-weight: 500;
  font-size: 20px;
}

.service-info .services .flex {
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 50px;
}

.service-info .services .flex-left.flex-bg::after {
  content: "";
  position: absolute;
  top: 100px;
  bottom: -25px;
  left: -9999px;
  right: -25px;
  background-color: #e9e9e9;
  z-index: -1;
}

.service-info .services .flex-right.flex-bg::after {
  content: "";
  position: absolute;
  top: 100px;
  bottom: -25px;
  right: -9999px;
  left: -25px;
  background-color: #e9e9e9;
  z-index: -1;
}

.service-info .services .success {
  margin-top: 100px;
  text-align: center;
}

.service-info .services h3.tit {
  font-size: 30px;
  word-break: keep-all;
  margin-top: 120px;
}

.service-info .services .sub_tit {
  font-size: 32px;
  margin: 20px 0;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
}

.service-info .services .sub_tit_m {
  font-size: 24px;
  margin: 20px 0;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
}

.service-info .services .sub_tit_s {
  font-size: 18px;
  margin: 20px 0;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
}

.service-info .services .success .txt {
  font-size: 18px;
  margin: 20px 0 30px 0;
}

.color {
  color: #2856bd;
}

.contents.cate01 .sub0107>.tit {
  position: relative;
  display: inline-block;
  padding: 0 60px;
  color: #000;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
  margin-top: 30px;
}

.contents.cate01 .sub0107>.desc {
  color: #666;
  font-size: 18px;
  line-height: 26px;
  word-break: keep-all;
  margin: 30px 0;
}

@media screen and (max-width: 1024px) {

  .service-info .text-box .tit {
    font-size: 24px;
  }

  .service-info .services h3.tit {
    margin-top: 60px;
  }

  .service-info .services .flex {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {

  .service-info .text-box .tit {
    font-size: 22px;
  }

  .service-info .services .success .txt {
    font-size: 15px;
  }

  .service-info .services h3.tit {
    margin: 0;
    font-size: 22px;
  }

  .service-info .services .sub_tit {
    font-size: 18px;
  }

  .service-info .services .sub_tit_m {
    font-size: 16px;
  }

  .service-info .services .sub_tit_s {
    font-size: 14px;
  }

}

@media screen and (max-width: 520px) {
  .service-info .services .flex-left.flex-bg::after {
    bottom: -30%;
    right: 50%;
  }

  .service-info .services .flex-right.flex-bg::after {
    bottom: -30%;
    left: 50%;
  }

  .service-info .services .flex {
    gap: 10px;
    margin-bottom: 30px;
  }

  .service-info .text-box {
    margin: 0;
  }
}




/* ABOUT GROUP */
.contents .aboutGroup {
  position: relative;
  overflow: hidden;
}

.contents .aboutGroup ul li {
  margin-bottom: 80px;
}

.contents .aboutGroup .text-box {
  padding-left: 30px;
  padding-right: 30px;
}

.contents .aboutGroup .text-box.right {
  text-align: right;
}

.contents .aboutGroup .tit {
  font-weight: 800;
  font-size: 72px;
  color: #000;
  font-family: "NanumSquare";
  letter-spacing: 1px;
  margin-top: -40px;
}

.contents .aboutGroup .txt {
  color: #666;
  font-size: 18px;
}


@media screen and (max-width: 1024px) {

  .contents .aboutGroup ul li {
    margin-bottom: 40px;
  }

  .contents .aboutGroup .text-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contents .aboutGroup .tit {
    font-size: 60px;
  }

  .contents .aboutGroup .txt {
    font-size: 16px;
  }

}

@media screen and (max-width: 767px) {

  .contents .aboutGroup ul li {
    margin-bottom: 30px;
  }

  .contents .aboutGroup .text-box {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contents .aboutGroup .tit {
    font-size: 43px;
    margin-top: -20px;
    margin-bottom: 10px;
  }

  .contents .aboutGroup .txt {
    font-size: 14px;
  }

}


.contents .greetings {
  position: relative;
}

.contents .greetingsCeo {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .contents .greetingsCeo {
    flex-direction: column;
  }
}

.contents .greetings .text-box {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .contents .greetings .text-box {
    width: 100%;
  }
}

/*
.contents.cate01 .greetings::after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    width: 45.3125%;
    padding-top: 50%;
    background: url("/images/bg/bg-ceo.png") center no-repeat;
    background-size: 100%;
}
*/

.contents.cate01 .greetings .tit {
  color: #1e3971;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.8px;
  word-break: keep-all;
}

@media screen and (max-width: 1024px) {
  .contents.cate01 .greetings .tit {
    font-size: 17px;
    line-height: 24px;
  }
}

@media screen and (max-width: 768px) {
  .contents.cate01 .greetings .tit {
    font-size: 16px;
    margin: 20px 0;
  }
}




.contents.cate01 .greetings .txt {
  font-size: 18px;
  line-height: 28px;
  word-break: keep-all;
}

@media screen and (max-width: 1366px) {
  .contents.cate01 .greetings .txt {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 1024px) {
  .contents.cate01 .greetings .txt {
    font-size: 14px;
  }
}

.contents.cate01 .greetings .img-box {
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .greetings .img-box img {
    object-fit: contain;
  }
}

.contents.cate01 .greetings .txt.txt-point {
  font-size: 22px;
  font-weight: bold;
  text-align: right;
  line-height: 1.5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .greetings {
    padding-right: 0;
    flex-direction: column-reverse;
  }

  .contents.cate01 .greetings::after {
    display: none;
  }

  .contents.cate01 .greetings .txt.txt-point {
    font-size: 16px;
  }

  .contents.cate01 .greetings .txt.txt-point img {
    width: 100px;
  }
}

.contents .together {
  text-align: center;
}

.contents .together>.tit {
  position: relative;
  display: inline-block;
  padding: 0 60px;
  color: #000;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .contents .together>.tit {
    font-size: 22px;
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .contents .together>.tit {
    padding: 0 40px;
    margin-bottom: 30px;
  }
}

.contents .together>.tit::before {
  content: '비전';
  display: block;
  font-size: 20px;
  color: #006bff;
  text-transform: uppercase;
}

/* 
.contents .together > .tit::before, .contents .together > .tit::after {
    content: ' ';
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("/images/icon/icon-quote.png") center no-repeat;
    background-size: 100%;
} 

@media screen and (max-width: 767px) {
    .contents .together > .tit::before, .contents .together > .tit::after {
        width: 20px;
        height: 20px;
    }
}

.contents .together > .tit::before {
    top: -23px;
    left: 0;
}

@media screen and (max-width: 767px) {
    .contents .together > .tit::before {
        top: -10px;
    }
}

.contents .together > .tit::after {
    right: 0;
    bottom: -26px;
    transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
    .contents .together > .tit::after {
        bottom: -10px;
    }
}
*/
.contents .together>.desc {
  color: #666;
  font-size: 18px;
  line-height: 26px;
  word-break: keep-all;
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .contents .together>.desc {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .contents .together>.desc {
    margin: 20px 0;
  }

  .contents .together>.desc br {
    display: none;
  }
}

.contents .together .corevalue {
  margin: 150px 0;
}

@media screen and (max-width: 1366px) {
  .contents .together .corevalue {
    margin: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .contents .together .corevalue {
    margin: 50px 0;
  }
}

.contents .together .ci-box {
  margin: 60px 0 0;
  border: 1px solid #000;
}

.contents .together .ci-brand {
  margin: 20px 0 80px;
  border: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .contents .together .ci-box {
    margin: 20px 0;
  }

  .contents .together .ci-brand {
    margin: 20px 0 40px;
  }
}



.contents .together .colorsystem .tit {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contents .together .colorsystem .tit {
    font-size: 20px;
    line-height: 30px;
  }
}

.contents .together .colorsystem .desc {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents .together .colorsystem .desc {
    font-size: 16px;
    line-height: 22px;
  }
}

.contents .together .color-lists {
  display: flex;
  width: 100%;
  max-width: 1130px;
  margin: 45px auto 0;
}

@media screen and (max-width: 767px) {
  .contents .together .color-lists {
    display: block;
    margin-top: 50px;
  }
}

.contents .together .color-lists>li {
  flex: 1;
  margin-left: 30px;
}

@media screen and (max-width: 1024px) {
  .contents .together .color-lists>li {
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .contents .together .color-lists>li {
    margin-left: 0;
    margin-top: 10px;
  }
}

.contents .together .color-lists>li:first-child {
  margin-left: 0;
  margin-top: 0;
}

.contents .together .color-lists>li .inner {
  height: 100%;
  padding: 25px 30px;
  text-align: left;
  border: solid 1px #ddd;
}

@media screen and (max-width: 1024px) {
  .contents .together .color-lists>li .inner {
    padding: 20px 15px;
  }
}

.contents .together .color-lists>li .inner.color1 {
  background: #1e3971;
}

.contents .together .color-lists>li .inner.color2 {
  background: #FFF;
}

.contents .together .color-lists>li .inner.color3 {
  background: #241b14;
}

.contents .together .color-lists>li .inner .color-name {
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.contents .together .color-lists>li .inner .color-name2 {
  margin-bottom: 20px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {

  .contents .together .color-lists>li .inner .color-name,
  .contents .together .color-lists>li .inner .color-name2 {
    font-size: 18px;
  }

}

.contents .together .color-lists>li .inner dl {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.contents .together .color-lists>li .inner.white dl {
  color: #000;
}

@media screen and (max-width: 767px) {
  .contents .together .color-lists>li .inner dl {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents .together .color-lists>li .inner dl dt {
  float: left;
  width: 65px;
}

.contents .together .color-lists>li .inner dl dd {
  margin-left: 65px;
  opacity: 0.5;
}

.contents .together .down-btns {
  margin-top: 60px;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .contents .together .down-btns {
    margin-top: 40px;
  }
}

.contents .together .down-btns li {
  display: inline-block;
  vertical-align: top;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .contents .together .down-btns li {
    width: calc((100% - 10px) / 2);
    margin-left: 10px;
  }
}

.contents .together .down-btns li:first-child {
  margin-left: 0;
}

.contents .together .down-btns li a {
  display: block;
  width: 180px;
  padding: 0 15px;
  text-align: left;
  background: url("/images/icon/icon-down.png") right 15px center no-repeat;
}

@media screen and (max-width: 767px) {
  .contents .together .down-btns li a {
    width: 100%;
  }
}

.contents.cate01 .sub0103 {
  max-width: 882px;
  margin: 0 auto;
}

.contents.cate01 .sub0103 ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0103 ul {
    flex-direction: column;
    justify-content: center;
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.contents.cate01 .sub0103 ul li {
  width: 28.798186%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0103 ul li {
    width: 100%;
    margin-top: 40px;
  }

  .contents.cate01 .sub0103 ul li:first-child {
    margin-top: 0;
  }
}

.contents.cate01 .sub0103 ul li .tit {
  position: relative;
  display: inline-block;
  padding: 0 8px 2px;
}

.contents.cate01 .sub0103 ul li .tit::before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  /* background: #e1b016; */
}

.contents.cate01 .sub0103 ul li .tit span {
  position: relative;
  color: #1e3971;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.contents.cate01 .sub0103 ul li .desc {
  position: relative;
  margin-top: 24px;
  width: 100%;
  height: auto;
  padding-top: 100%;
  border: 1px solid #1e3971;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0103 ul li .desc {
    margin-top: 12px;
  }
}

.contents.cate01 .sub0103 ul li .desc span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  transform: translate(-50%, -50%) skew(-0.05deg);
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0103 ul li .desc span {
    font-size: 18px;
    line-height: 26px;
  }
}

.contents.cate01 .sub0103 ul li .desc span::before {
  content: ' ';
  display: block;
  margin: 0 auto 30px;
  width: 64px;
  height: 64px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.contents.cate01 .sub0103 ul li .desc span.icon01::before {
  background-image: url("/images/icon/icon-sub0103-1.png");
}

.contents.cate01 .sub0103 ul li .desc span.icon02::before {
  background-image: url("/images/icon/icon-sub0103-2.png");
}

.contents.cate01 .sub0103 ul li .desc span.icon03::before {
  background-image: url("/images/icon/icon-sub0103-3.png");
}

.contents.cate01 .sub0103 .text {
  margin-top: 60px;
  color: #666;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0103 .text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0103 .text {
    margin-top: 40px;
  }

  .contents.cate01 .sub0103 .text br {
    display: none;
  }
}

.philosophy-container .philosophy-wrap {
  position: relative;
  text-align: center;
}

.philosophy-container {
  position: relative;
}

.philosophy-container .philosophy-wrap .text-box {
  margin-top: 70px;
  display: flex;
  gap: 50px;
  text-align: left;
  margin-bottom: 120px;
}

.philosophy-container .philosophy-wrap .text-box .tit {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.8px;
  word-break: keep-all;
  width: 50%;
}

.philosophy-container .philosophy-wrap .text-box .tit em {
  font-weight: bold;
}

.philosophy-container .philosophy-wrap .text-box .txt {
  width: 50%;
  color: #282828;
  font-size: 18px;
  line-height: 1.5;
}

.philosophy-container .philosophy-wrap>.tit {
  position: relative;
  display: inline-block;
  padding: 0 60px;
  color: #000;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
  margin: 30px 0;
}

.philosophy-container .philosophy-wrap>.tit::before {
  content: '경영철학';
  display: block;
  font-size: 20px;
  color: #006bff;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  .philosophy-container .philosophy-wrap .text-box {
    margin-top: 50px;
    display: flex;
    gap: 50px;
    text-align: left;
    margin-bottom: 70px;
  }

  .philosophy-container .philosophy-wrap .text-box .tit {
    font-size: 28px
  }

  .philosophy-container .philosophy-wrap .text-box .txt {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .philosophy-container .philosophy-wrap .text-box {
    flex-direction: column;
    gap: 0;
    margin: 20px 10px 0 10px;
  }

  .philosophy-container .philosophy-wrap .text-box .tit {
    width: 100%;
    font-size: 22px;
  }

  .philosophy-container .philosophy-wrap .text-box .txt {
    width: 100%;
  }
}

/*history*/

.groupidentity-container {
  position: relative;
}

.groupidentity-container .groupidentity-wrap {
  position: relative;
  text-align: center;
}

.groupidentity-container .groupidentity-wrap .text-box {
  margin-top: 70px;
  display: flex;
  gap: 50px;
  text-align: left;
  margin-bottom: 120px;
}

.groupidentity-container .groupidentity-wrap .text-box .tit {
  color: #000;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.8px;
  word-break: keep-all;
  font-weight: 300;
  flex: 1;
}

.groupidentity-container .groupidentity-wrap .text-box .tit em {
  font-weight: bold;
}

.groupidentity-container .groupidentity-wrap .text-box .txt {
  width: 50%;
  color: #666;
  font-size: 18px;
  line-height: 1.5;
}

.groupidentity-container .groupidentity-wrap .text-box .txt .bold {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.groupidentity-container .groupidentity-wrap>.tit {
  position: relative;
  display: inline-block;
  padding: 0 60px;
  color: #000;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
  margin: 30px 0;
}

.ci-box {
  position: relative;
  border: solid 1px #ddd;
  padding: 5%;
  border-radius: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.ci-box ul {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5%;
  flex: 1;
}

.ci-box ul li {
  border-radius: 20px;
  display: flex;
  min-height: 300px;
  width: 200px;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  box-shadow: 0px 5px 15px 2px rgb(0 0 0 / 10%);
  font-size: 20px;
}

.ci-tit {
  background: #00508f;
  padding: 15px 30px;
  color: #fff;
  word-break: keep-all;
  text-align: left;
  font-weight: 500;
  line-height: 1.5;

}

.ci-box ul li p {
  background: #fff;
  color: #666;
}

.ci-box ul li p em {
  font-weight: bold;
  display: block;
  color: #000;
  margin-bottom: 10px;
}

.ci-box ul li:nth-child(2) .ci-tit {
  background: #01b4ee;
}

.ci-box ul li:nth-child(3) .ci-tit {
  background: linear-gradient(to right, #01a6dc, #0f3460);
}

.ci-desc {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 40px 30px;
  flex-direction: column;
  gap: 20px;
  min-height: 180px;
  text-transform: uppercase;
}

.ci-box ul li p em .ci-point {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: #02a7dd;
}

.ci-box ul li p em .ci-point.point2 {
  background: #0f3460;
}

.down-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
}

.down-btns li {
  box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%);
  font-weight: bold;
  border-radius: 20px;
  padding: 0 20px;
}

.down-btns li a {
  display: inline-block;
  display: flex;
  gap: 10px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .down-btns {
    flex-direction: column;
  }

  .down-btns li {
    min-width: 220px;
  }
}

@media screen and (max-width: 1024px) {
  .ci-box {
    margin: 30px 0;
    flex-direction: column;
    padding: 30px 50px;
  }

  .ci-box ul {
    width: 100%;
    align-items: unset;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .ci-box ul li {
    width: clac(33% - 20px);
  }
}

@media screen and (max-width: 767px) {

  .ci-box img {
    width: 75%;
  }

  .ci-box ul {
    width: 100%;
    align-items: unset;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .ci-box ul li {
    width: 90%;
  }
}


@media screen and (max-width: 1024px) {
  .groupidentity-container .groupidentity-wrap .text-box {
    margin-top: 50px;
    display: flex;
    gap: 50px;
    text-align: left;
    margin-bottom: 70px;
  }

  .groupidentity-container .groupidentity-wrap .text-box .tit {
    font-size: 28px
  }

  .groupidentity-container .groupidentity-wrap .text-box .txt {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .groupidentity-container .groupidentity-wrap .text-box {
    flex-direction: column;
    gap: 0;
    margin: 20px 10px 0 10px;
  }

  .groupidentity-container .groupidentity-wrap .text-box .tit {
    width: 100%;
    font-size: 22px;
  }

  .groupidentity-container .groupidentity-wrap .text-box .txt {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .contents.cate01 .history-container .history-wrap section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .contents.cate01 .history-container .history-wrap section.hide {
    display: none;
  }

  .contents.cate01 .history-container .history-wrap section:first-child {
    padding-top: 0;
  }

  .contents.cate01 .history-container .history-wrap section:last-child {
    padding-bottom: 0;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(even) h5 span {
    background: #22140c;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(even) .month-lists {
    margin-right: auto;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(even) .month-lists li {
    padding-right: 15%;
    text-align: right;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(even) .month-lists li span.month {
    right: 15.625%;
    color: #22140c;
    border-bottom: 2px solid #22140c;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(even) .month-lists li:first-child::before {
    right: -8px;
    background: #22140c;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(even) .month-lists li:first-child::after {
    right: 4px;
    background: #22140c;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(odd) h5 span {
    background: #1e3971;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(odd) .month-lists {
    margin-left: auto;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(odd) .month-lists li {
    padding-left: 15%;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(odd) .month-lists li span.month {
    left: 15.625%;
    color: #1e3971;
    border-bottom: 2px solid #1e3971;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(odd) .month-lists li:first-child::before {
    left: -7px;
    background: #1e3971;
  }

  .contents.cate01 .history-container .history-wrap section:nth-child(odd) .month-lists li:first-child::after {
    left: 5px;
    background: #1e3971;
  }

  .contents.cate01 .history-container .history-wrap section::before {
    content: ' ';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ddd;
  }

  .contents.cate01 .history-container .history-wrap section h5 {
    position: relative;
    text-align: center;
  }

  .contents.cate01 .history-container .history-wrap section h5 span {
    display: inline-block;
    vertical-align: top;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 106px;
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  .contents.cate01 .history-container .history-wrap section h5 span {
    width: 80px;
    height: 80px;
    font-size: 20px;
    line-height: 80px;
  }
}

@media screen and (min-width: 768px) {
  .contents.cate01 .history-container .history-wrap section .month-lists {
    width: 50%;
    margin-top: 85px;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li {
    position: relative;
    margin-top: 15px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li.bold {
    font-weight: bold;
    font-size: 20px;
    color: #0e428e;
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  .contents.cate01 .history-container .history-wrap section .month-lists li {
    font-size: 14px;
    line-height: 22px;
    word-break: keep-all;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li.bold {
    font-weight: bold;
    font-size: 20px;
    color: #0e428e;
  }
}

@media screen and (min-width: 768px) {
  .contents.cate01 .history-container .history-wrap section .month-lists li:first-child {
    margin-top: 0;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li span.month {
    position: absolute;
    top: 0;
    height: 24px;
    font-weight: 900;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li p {
    margin-top: 15px;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li:first-child::before {
    content: ' ';
    position: absolute;
    top: 4px;
    width: 15px;
    height: 15px;
    border: 2px solid #ddd;
    border-radius: 50%;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li:first-child::after {
    content: ' ';
    position: absolute;
    top: 11px;
    height: 1px;
    width: 12.5%;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate01 .history-container .history-wrap section {
    position: relative;
    margin-top: 30px;
    padding-left: 90px;
  }

  .contents.cate01 .history-container .history-wrap section:first-child {
    margin-top: 0;
  }

  .contents.cate01 .history-container .history-wrap section.hide {
    display: none;
  }

  .contents.cate01 .history-container .history-wrap section h5 {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    color: #1e3971;
    letter-spacing: -1px;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li {
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    word-break: keep-all;
    line-height: 1.5;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li.bold {
    font-weight: bold;
    font-size: 20px;
    color: #0e428e;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li::after {
    content: " ";
    display: block;
    clear: both;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li .month {
    position: relative;
    float: left;
    padding-right: 10px;
    font-weight: 900;
    color: #888;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li .month::after {
    content: ' ';
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: 14px;
    background: #ddd;
  }

  .contents.cate01 .history-container .history-wrap section .month-lists li p {
    margin-top: 6px;
    margin-left: 37px;
    color: #666;
  }
}

.contents.cate01 .history-container .btn-moreview {
  position: relative;
  display: block;
  width: 101px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  padding-bottom: 30px;
  transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
  .contents.cate01 .history-container .btn-moreview {
    width: 100%;
    margin-top: 30px;
  }
}

.contents.cate01 .history-container .btn-moreview::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 20px;
  background: #333;
}

.contents.cate01 .history-container .btn-moreview::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 13px;
  height: 13px;
  margin-bottom: 3px;
  margin-left: -6px;
  border: 1px solid #333;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* // history*/
.contents .sub0105 ul.org-lists {
  text-align: center;
}

.contents .sub0105 ul.org-lists>li {
  position: relative;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 ul.org-lists>li {
    padding-bottom: 20px;
  }
}

.contents .sub0105 ul.org-lists>li::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #ddd;
  z-index: -1;
}

.contents .sub0105 ul.org-lists>li:last-child {
  padding-bottom: 0;
}

.contents .sub0105 ul.org-lists>li:last-child::after {
  display: none;
}

.contents .sub0105 ul.org-lists>li span {
  display: block;
  width: 186px;
  height: 55px;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  line-height: 55px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 ul.org-lists>li span {
    width: 100px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
}

.contents .sub0105 ul.org-lists>li span.c1 {
  background: #1e3971;
}

.contents .sub0105 ul.org-lists>li span.c2 {
  background: #6b564b;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 ul.org-lists>li.type2 {
    padding-bottom: 50px;
  }
}

.contents .sub0105 ul.org-lists>li.type2::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 50%;
  width: 220px;
  height: 1px;
  margin-top: 27px;
  background: #ddd;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .contents .sub0105 ul.org-lists>li.type2::before {
    width: auto;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .contents .sub0105 ul.org-lists>li.type2::before {
    margin-top: 20px;
  }
}

.contents .sub0105 ul.org-lists>li.type2 span.absolute {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 220px;
}

@media screen and (max-width: 1024px) {
  .contents .sub0105 ul.org-lists>li.type2 span.absolute {
    left: auto;
    right: 0;
    margin-left: 0;
  }
}

.contents .sub0105 .team-lists {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 36px;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists {
    flex-wrap: wrap;
    padding-top: 20px;
  }
}

.contents .sub0105 .team-lists::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}

.contents .sub0105 .team-lists>li {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 236px;
}

@media screen and (max-width: 1024px) {
  .contents .sub0105 .team-lists>li {
    width: calc((100% - 30px) / 4);
  }
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists>li {
    width: calc((100% - 30px) / 3);
  }
}

.contents .sub0105 .team-lists>li::before {
  content: ' ';
  position: absolute;
  top: -36px;
  left: 50%;
  bottom: 0;
  width: 1px;
  background: #ddd;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists>li::before {
    top: -20px;
  }
}

.contents .sub0105 .team-lists>li:first-child::after {
  content: ' ';
  position: absolute;
  top: -36px;
  left: 0;
  width: 50%;
  height: 3px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists>li:first-child::after {
    top: -20px;
  }
}

.contents .sub0105 .team-lists>li:last-child::after {
  content: ' ';
  position: absolute;
  top: -36px;
  right: -1px;
  width: 50%;
  height: 3px;
  background: #fff;
}


@media screen and (max-width: 767px) {


  .contents .sub0105 .team-lists>li:nth-child(3)::after {
    content: ' ';
    position: absolute;
    top: -20px;
    right: -1px;
    width: 50%;
    height: 3px;
    background: #fff;
  }
}

.contents .sub0105 .team-lists>li .tit {
  padding: 19px 5px;
  background: #c6a840;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists>li .tit {
    padding: 0 5px;
    font-size: 14px;
    line-height: 40px;
  }
}

.contents .sub0105 .team-lists>li ul.lists {
  height: 100%;
  margin-top: 10px;
  padding: 20px 10px 30px;
  background: #fff;
  border: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists>li ul.lists {
    margin-top: 5px;
    padding: 15px 10px 20px;
  }
}

.contents .sub0105 .team-lists>li ul.lists li {
  margin-top: 15px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists>li ul.lists li {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .contents .sub0105 .team-lists>li ul.lists li {
    margin-top: 5px;
    font-size: 12px;
  }
}

.contents .sub0105 .team-lists>li ul.lists li:first-child {
  margin-top: 0;
}

.contents.cate01 .sub0105 .coop-box {
  margin-top: 60px;
  padding: 40px 50px;
  background: #f5f5f5;
}

@media screen and (max-width: 1024px) {
  .contents.cate01 .sub0105 .coop-box {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

.contents.cate01 .sub0105 .coop-box .tit {
  margin-bottom: 20px;
  color: #1e3971;
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0105 .coop-box .tit {
    font-size: 18px;
  }
}

.contents.cate01 .sub0105 .coop-box .coop-lists {
  display: flex;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0105 .coop-box .coop-lists {
    display: block;
  }
}

.contents.cate01 .sub0105 .coop-box .coop-lists>li {
  flex: 1;
  margin-left: 15px;
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0105 .coop-box .coop-lists>li {
    margin-left: 0;
    margin-top: 10px;
  }
}

.contents.cate01 .sub0105 .coop-box .coop-lists>li:first-child {
  margin-left: 0;
  margin-top: 0;
}

.contents.cate01 .sub0105 .coop-box .coop-lists>li p.cate {
  margin: -1px -1px 0;
  background: #7e7e7e;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0105 .coop-box .coop-lists>li p.cate {
    font-size: 16px;
    line-height: 40px;
  }
}

.contents.cate01 .sub0105 .coop-box .coop-lists>li ul {
  padding: 25px 0;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0105 .coop-box .coop-lists>li ul {
    padding: 15px 0;
  }
}

.contents.cate01 .sub0105 .coop-box .coop-lists>li ul li {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0105 .coop-box .coop-lists>li ul li {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents.cate01 .sub0105 .coop-box .coop-lists>li ul li:first-child {
  margin-top: 0;
}

.contents.cate01 .sub0106>.tit {
  margin-bottom: 50px;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0106>.tit {
    font-size: 24px;
    line-height: 30px;
  }
}

.contents.cate01 .sub0106>.tit em {
  display: block;
  font-weight: 700;
}

.contents.cate01 .sub0106 .partners-wrap {
  overflow: hidden;
}

.contents.cate01 .sub0106 .partners-wrap ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -100px;
}

@media screen and (max-width: 1024px) {
  .contents.cate01 .sub0106 .partners-wrap ul.lists {
    margin-top: -60px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0106 .partners-wrap ul.lists {
    margin-top: 0;
  }
}

.contents.cate01 .sub0106 .partners-wrap ul.lists>li {
  width: 350px;
  margin-top: 100px;
  margin-left: calc((100% - 1050px) / 2);
}

@media screen and (max-width: 1024px) {
  .contents.cate01 .sub0106 .partners-wrap ul.lists>li {
    width: calc((100% - 30px) / 3);
    margin-top: 60px;
    margin-left: 15px;
  }
}

.contents.cate01 .sub0106 .partners-wrap ul.lists>li:nth-child(3n+1) {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0106 .partners-wrap ul.lists>li {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }

  .contents.cate01 .sub0106 .partners-wrap ul.lists>li:first-child {
    margin-top: 0;
  }
}

.contents.cate01 .sub0106 .partners-wrap ul.lists .inner .thumb {
  display: block;
  margin-bottom: 20px;
  max-height: 340px;
  overflow: hidden;
  border: solid 1px #ccc;
}

.contents.cate01 .sub0106 .partners-wrap ul.lists .inner .name {
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0106 .partners-wrap ul.lists .inner .name {
    font-size: 20px;
  }
}

.contents.cate01 .sub0106 .partners-wrap ul.lists .inner .tit {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .contents.cate01 .sub0106 .partners-wrap ul.lists .inner .tit {
    margin-top: 15px;
    font-size: 16px;
  }
}

.contents.cate01 .sub0106 .partners-wrap ul.lists .inner .bullet-list {
  margin-top: 10px;
}

.contents.cate01 .sub0106 .partners-wrap ul.lists .inner .bullet-list li {
  color: #888;
}

.contents .way-to-come .root_daum_roughmap {
  position: relative;
  width: 100%;
}

.section_address {
  display: none !important;
}

.contents .way-to-come .comp-info {
  margin-top: 5%;
}

.contents .way-to-come .comp-info .tit {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
}

.contents .way-to-come .comp-location {
  display: flex;
  gap: 2.5%;
}

.contents .way-to-come .comp-location .infos li {
  margin-bottom: 10px;
}

.contents .way-to-come .comp-location .infos .tit {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  min-width: 80px;
}

@media screen and (max-width: 767px) {
  .contents .way-to-come .comp-info .tit {
    font-size: 20px;
  }
}

.contents .way-to-come .comp-info .addr {
  margin-top: 5px;
  font-size: 18px;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  .contents .way-to-come .comp-info .addr {
    font-size: 16px;
    line-height: 24px;
  }
}

.contents .way-to-come .comp-info ul.contact {
  margin-bottom: 35px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .contents .way-to-come .comp-info ul.contact {
    margin-bottom: 20px;
    margin-top: 10px;
    padding-top: 20px;
  }
}

.contents .way-to-come .comp-info ul.contact li {
  display: inline-block;
  vertical-align: top;
  margin-right: 80px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .contents .way-to-come .comp-info ul.contact li {
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 20px;

  }
}

.contents .way-to-come .comp-info ul.contact li:last-child {
  margin-left: 0;
}

.contents .way-to-come .comp-info ul.contact li span {
  display: inline-block;
  vertical-align: top;
  width: 36px;
  height: 36px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
}

.contents .way-to-come .comp-info ul.contact li:first-child span {
  background: #1e3971;
}

.contents .way-to-come .comp-info ul.contact li:nth-child(2) span {
  background: #f3f3f3;
  color: #000;
  border: solid 1px #ddd;
}

.contents .way-to-come .comp-info ul.contact li:nth-child(3) span {
  background: #22140c;

}

.contents .way-to-come .comp-public {}

/* 교육/바우처 */
.contents.cate02 .bg-lists {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contents.cate02 .bg-lists {
    display: block;
    margin-top: 30px;
  }
}

.contents.cate02 .bg-lists>li {
  flex: 1;
  margin: 70px 0 0 30px;
  text-align: left;
}

.contents.cate02 .bg-lists>li img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .contents.cate02 .bg-lists>li {
    margin-top: 0;
    margin-left: 30px;
  }

}

@media screen and (max-width: 767px) {
  .contents.cate02 .bg-lists>li {
    margin-top: 20px;
    margin-left: 0;
  }

  .contents.cate02 .bg-lists>li .tit span {
    font-size: 24px
  }
}

.contents.cate02 .bg-lists>li:first-child {
  margin-top: 0;
  margin-left: 0;
}

.contents.cate02 .bg-lists>li .tel_box {
  margin: 5% 0;
}

.contents.cate02 .bg-lists>li .tel_box span {
  font-size: 20px;
  color: #222;
  letter-spacing: -0.045em;
  font-weight: 500;
  display: inline-block;
}

.contents.cate02 .bg-lists>li .tel_box .box {
  background: #eef2f8;
  padding: 20px 25px;
  box-sizing: border-box;
  line-height: 1.2;
  font-size: 18px;
  margin-top: 10px;
}

.contents.cate02 .bg-lists>li a {
  text-align: center;
  width: 30%;
  font-weight: bold;
  color: #fff;
  background: #0a4595;
  border-radius: 20px;
  padding: 15px 10px;
  display: block;
  margin: 0 auto;
  font-size: 20px;
}


@media screen and (max-width: 767px) {
  .contents.cate02 .bg-lists>li a {
    max-width: 50%;
    font-size: 16px;
  }
}


/* 
.contents.cate02 .bg-lists > li:nth-child(1) .tit {
    background-image: url("/images/bg/bg-sub0201-1.jpg");
}

.contents.cate02 .bg-lists > li:nth-child(2) .tit {
    background-image: url("/images/bg/bg-sub0201-2.jpg");
}

.contents.cate02 .bg-lists > li:nth-child(3) .tit {
    background-image: url("/images/bg/bg-sub0201-3.jpg");
} */

.contents.cate02 .bg-lists>li .tit {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.contents.cate02 .bg-lists>li .tit em {
  display: block;
  font-size: 22px;
  color: #222;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contents.cate02 .bg-lists>li .tit {
    width: 100%;
    height: auto;
    padding-top: 0;
  }

  .contents.cate02 .bg-lists>li .tit em {
    display: block;
    font-size: 16px;
  }
}

.contents.cate02 .bg-lists>li .tit span {
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  transform: translate(-45%, -55%);
}

@media screen and (max-width: 1024px) {
  .contents.cate02 .bg-lists>li .tit span {
    font-size: 28px;
  }
}


@media screen and (max-width: 767px) {
  .contents.cate02 .bg-lists>li .tit span {
    width: 100%;
    font-size: 20px;
    line-height: 24px;
  }
}

.contents.cate02 .bg-lists>li .desc {
  margin-top: 15px;
  font-size: 18px;
  line-height: 26px;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .contents.cate02 .bg-lists>li .desc {
    font-size: 14px;
    line-height: 24px;
    word-break: keep-all;
  }
}

.contents.cate02 .bg-lists>li .desc em {
  font-weight: 700;
}

.contents.cate02 .border-guide {
  display: flex;
  padding: 60px 40px;
  border: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
  .contents.cate02 .border-guide {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate02 .border-guide {
    display: block;
    padding: 20px 12px;
  }
}

.contents.cate02 .border-guide .thumb {
  display: block;
  width: 60.100167%;
  min-width: 60.100167%;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .contents.cate02 .border-guide .thumb {
    width: 100%;
    min-width: none;
  }
}

.contents.cate02 .border-guide .cont .title {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contents.cate02 .border-guide .cont .title {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate02 .border-guide .cont .title {
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

.contents.cate02 .border-guide .cont ol li {
  position: relative;
  padding-left: 15px;
  color: #888;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents.cate02 .border-guide .cont ol li {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents.cate02 .border-guide .cont ol li::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
}

.contents.cate02 .border-guide .cont ol li:nth-child(1)::before {
  content: "1.";
}

.contents.cate02 .border-guide .cont ol li:nth-child(2)::before {
  content: "2.";
}

.contents.cate02 .border-guide .cont ol li:nth-child(3)::before {
  content: "3.";
}

/* 기업인증지원 */

.contents.cate03 .sub0302 {
  text-align: center;
}

.contents.cate03 .sub0302 .tit {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

.contents.cate03 .sub0302>.desc {
  color: #666;
  font-size: 18px;
  line-height: 26px;
  word-break: keep-all;
  margin: 30px 0;
}

.contents.cate03 .sub0302 .logolists {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  max-width: 1000px;
  margin: 0 auto;
}

.contents.cate03 .sub0302 .logolists li {
  margin-bottom: 25px;
}

.contents.cate03 .sub0302 .logolists li p {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 10px;
}


@media screen and (max-width: 767px) {
  .contents.cate03 .sub0302 .tit {
    font-size: 22px;
    line-height: 30px;
  }

  .contents.cate03 .sub0302>.desc {
    font-size: 14px;
    line-height: 24px;
  }

  .contents.cate03 .sub0302 .logolists li p {
    font-size: 16px;
  }
}

.contents.cate03 .sub0305 {
  display: flex;
  align-items: center;
  padding: 50px 40px;
  border: 1px solid #e3ddd9;
  background: #f4f2f0;
}

@media screen and (max-width: 767px) {
  .contents.cate03 .sub0305 {
    display: block;
    padding: 20px 12px;
  }
}

.contents.cate03 .sub0305 .thumb {
  display: block;
  width: 26.961603%;
  min-width: 26.961603%;
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .contents.cate03 .sub0305 .thumb {
    width: 80%;
    margin: 0 auto 20px;
  }
}

.contents.cate03 .sub0305 .cont .tit {
  margin-bottom: 10px;
  color: #1e3971;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents.cate03 .sub0305 .cont .tit {
    font-size: 24px;
    line-height: 30px;
  }
}

.contents.cate03 .sub0305 .cont .desc {
  color: #888;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .contents.cate03 .sub0305 .cont .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents.cate03 .sub0305 .cont .desc.big {
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  .contents.cate03 .sub0305 .cont .desc.big {
    font-size: 16px;
    line-height: 24px;
  }
}

/* 정부지원사업 */
.contents.cate04 .sub0401 {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .contents.cate04 .sub0401 {
    flex-wrap: wrap;
  }
}

.contents.cate04 .sub0401 .tit {
  margin-right: 100px;
  color: #1e3971;
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .contents.cate04 .sub0401 .tit {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate04 .sub0401 .tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

.contents.cate04 .sub0401 ul {
  width: auto;
  margin-right: 50px;
}

@media screen and (max-width: 1024px) {
  .contents.cate04 .sub0401 ul {
    width: 100%;
    margin-right: 0;
  }
}

.contents.cate04 .sub0401 ul li {
  color: #666;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .contents.cate04 .sub0401 ul li {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .contents.cate04 .sub0401 ul li {
    white-space: normal;
  }
}

/* 조세지원 */
.contents.cate06 .process-lists {
  display: flex;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .contents.cate06 .process-lists {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.contents.cate06 .process-lists li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(116% / 5);
  height: auto;
  min-height: 166px;
  margin-left: -4%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

@media screen and (max-width: 1024px) {
  .contents.cate06 .process-lists li {
    width: 34%;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate06 .process-lists li {
    width: 100%;
    min-height: auto;
    height: 131px;
    margin-top: -20px;
    margin-left: 0;
  }
}

.contents.cate06 .process-lists li:first-child {
  margin-top: 0;
  margin-left: 0;
}

.contents.cate06 .process-lists li span.text {
  display: block;
  width: 90%;
  max-width: 60%;
  word-break: keep-all;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contents.cate06 .process-lists li span.text {
    font-size: 14px;
    line-height: 22px;
  }
}

.contents.cate06 .process-lists li:nth-child(odd) {
  background-image: url("/images/bg/bg-color1.png");
}

.contents.cate06 .process-lists li:nth-child(odd) span.text {
  color: #fff;
}

.contents.cate06 .process-lists li:nth-child(even) {
  background-image: url("/images/bg/bg-color2.png");
}

.contents.cate06 .step-list {
  display: flex;
  width: 100%;
  max-width: 1050px;
  margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .contents.cate06 .step-list {
    margin-top: 40px;
    display: block;
  }
}

.contents.cate06 .step-list>li {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 50px;
}

@media screen and (max-width: 1024px) {
  .contents.cate06 .step-list>li {
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate06 .step-list>li {
    margin-top: 10px;
    margin-left: 0;
  }
}

.contents.cate06 .step-list>li:first-child {
  margin-top: 0;
  margin-left: 0;
}

.contents.cate06 .step-list>li .tit {
  height: 68px;
  background: #959595;
  color: #fff;
  font-size: 18px;
  line-height: 68px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contents.cate06 .step-list>li .tit {
    height: 44px;
    font-size: 16px;
    line-height: 44px;
  }
}

.contents.cate06 .step-list>li>.bullet-list {
  height: 100%;
  padding: 20px 30px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-top: none;
}

@media screen and (max-width: 1024px) {
  .contents.cate06 .step-list>li>.bullet-list {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate06 .step-list>li>.bullet-list {
    padding: 15px 12px;
  }
}

/* 세무조사대응 */
.contents.cate07 .taxaudit-list {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .contents.cate07 .taxaudit-list {
    flex-wrap: wrap;
  }
}

.contents.cate07 .taxaudit-list>li {
  flex: 1;
  margin-left: 15px;
  padding-bottom: 50px;
  border: 1px solid #ddd;
  background: #f8f8f8;
}

@media screen and (max-width: 1024px) {
  .contents.cate07 .taxaudit-list>li {
    flex: unset;
    width: calc((100% - 15px) / 2);
    margin-bottom: 15px;
  }

  .contents.cate07 .taxaudit-list>li:nth-child(odd) {
    margin-left: 0;
  }

  .contents.cate07 .taxaudit-list>li:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .contents.cate07 .taxaudit-list>li {
    width: calc((100% - 10px) / 2);
    margin-left: 10px;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
}

.contents.cate07 .taxaudit-list>li:first-child {
  margin-left: 0;
}

.contents.cate07 .taxaudit-list>li:nth-child(odd) .tit {
  background: #b2876e;
}

.contents.cate07 .taxaudit-list>li:nth-child(even) .tit {
  background: #6f6f6f;
}

.contents.cate07 .taxaudit-list>li .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contents.cate07 .taxaudit-list>li .inner .bullet-list {
  max-width: 80%;
}

.contents.cate07 .taxaudit-list>li .tit {
  width: calc(100% + 2px);
  height: 68px;
  margin: -1px -1px 25px;
  text-align: center;
  font-size: 18px;
  line-height: 68px;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .contents.cate07 .taxaudit-list>li .tit {
    height: 44px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 44px;
  }
}


.inputfile-wrap .file-btn {
  display: flex;
  align-items: center;
}

.inputfile-wrap label {
  margin-left: 10px;
  gap: 5px;
  border: solid 1px var(--color1);
  color: var(--colorB);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sample {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  width: fit-content;
}


.form-wrap {
  background: var(--bgFL);
  margin: 0 auto;
  padding: 40px 20px;
}

.form-wrap fieldset {
  max-width: 800px;
  margin: 0 auto;
}



@media screen and (max-width: 767px) {
  .form-wrap {
    padding: 20px;
  }
}


.form-eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  color: #686868;
  font-size: 14px;
}

.form-wrap .essen-txt {
  font-size: 14px;
  text-align: right;
}

.partnerInfoWrap {
  border-radius: 10px;
  margin: 20px auto;
}


.form-wrap .essen-txt::before {
  content: '*';
  color: #ec1b1b;
  margin-right: 2px;
}


.partner .form-wrap {
  background: var(--bgFL);
  margin: 0 auto;
  padding: 40px 20px;
}

.form-wrap {
  position: relative;
}

.partner .form-wrap fieldset {
  max-width: 800px;
  margin: 0 auto;
}

.form-title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: solid 1px var(--colorD);
  padding-bottom: 20px;
  line-height: 1.2;
}

.form-wrap .col {
  position: relative;
  margin-top: 20px;
}

.form-wrap .col>label,
.form-wrap .col>p.label {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}

.form-wrap .col>label.essen::after {
  content: '*';
  display: inline-block;
  color: #ef3745;
  margin-left: 4px;
}

.form-control:read-only {
  background: var(--colorF5);
  color: #555;
}

.form-control {
  position: relative;
  display: block;
  width: 100%;
  min-height: 45px;
  height: 45px;
  padding: 7px 21px;
  border-radius: 5px;
  background: transparent;
  font-size: 16px;
  line-height: normal;
  transition: border-color 0.15s ease-in-out;
  background: var(--colorF);
  border: solid 1px var(--color1);
}

.form-wrap .error-txt {
  width: 100%;
  margin-top: 10px;
  text-align: left !important;
  color: var(--red);
  font-size: 14px;
  line-height: 1;
  display: none;
}


/*# sourceMappingURL=maps/common.css.map */