/* A            A A                 :                   A                   :                   A                   :                   A                   :                   */
#sub9-1 .tableWrap {
  width: 100%;
  height: auto;
  margin-top: clamp(20px, 9vw, 45px);
  overflow-x: scroll;
}

#sub9-1 .tableWrap::-webkit-scrollbar {
  height: 8px;
}

#sub9-1 .tableWrap::-webkit-scrollbar-thumb {
  background: #d3d3d3;
  border-radius: 5px;
}

#sub9-1 .tableWrap::-webkit-scrollbar-thumb:hover {
  background: #b5b5b5;
}

#sub9-1 .table {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: none;
}

#sub9-1 .tableTitWrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}

#sub9-1 .tableTit {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #bbb;
  padding: 10px 0;
  background: #359993;
}

#sub9-1 .tableTit:last-child {
  margin-right: 0;
  border-right: none;
}

#sub9-1 .tableTit.black {
  background: #323333;
}

#sub9-1 .tableTit p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #fff;
  text-align: center;
}

#sub9-1 .tableTit.tableTit_1 {
  width: 10%;
}

#sub9-1 .tableTit.tableTit_2 {
  width: 30%;
}

#sub9-1 .tableTit.tableTit_3 {
  width: 30%;
}

#sub9-1 .tableTit.tableTit_4 {
  width: 15%;
}

#sub9-1 .tableTit.tableTit_5 {
  width: 15%;
}

#sub9-1 .tableValueWrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}

#sub9-1 .tableValue {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  background: #FFFFFF;
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}

#sub9-1 .tableValue:last-child {
  margin-right: 0;
  border-right: none;
}

#sub9-1 .tableValue p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #666;
  text-align: center;
}

#sub9-1 .tableValue.tableValue_1 {
  width: 10%;
}

#sub9-1 .tableValue.tableValue_2 {
  width: 30%;
}

#sub9-1 .tableValue.tableValue_3 {
  width: 30%;
}

#sub9-1 .tableValue.tableValue_4 {
  width: 15%;
}

#sub9-1 .tableValue.tableValue_5 {
  width: 15%;
}

#sub9-1 .tableB .tableTit.tableTit_1,
#sub9-1 .tableB .tableValue.tableValue_1 {
  width: 50%;
}

#sub9-1 .tableB .tableTit.tableTit_2,
#sub9-1 .tableB .tableValue.tableValue_2 {
  width: 10%;
}

#sub9-1 .tableB .tableTit.tableTit_3,
#sub9-1 .tableB .tableValue.tableValue_3 {
  width: 10%;
}

#sub9-1 .tableB .tableTit.tableTit_4,
#sub9-1 .tableB .tableValue.tableValue_4 {
  width: 30%;
}

#sub9-1 .tableB .tableValue.tableValue_2 p {
  color: #34699a;
}

#sub9-1 .tableB .tableValue.tableValue_3 p {
  color: #d68230;
}

#sub9-1 .tableBot {
  width: 1180px;
  font-size: clamp(14px, 2vw, 16px);
  color: #666666;
  margin: 10px auto 15px;
  text-align: left;
}

#sub9-1 .link {
  font-size: clamp(16px, 2vw, 20px);
  color: #fff;
  line-height: 1em;
  padding: 0.7em 1.8em;
  background: #31A09B;
  display: inline-block;
  transition: .3s;
  margin: clamp(30px, 3vw, 50px) 20px 0;
  border-radius: 10px;
}

#sub9-1 .link:hover {
  color: #fff000;
  box-shadow: 0px 0px 10px 0px #31A09B;
  transition: .3s;
}

#sub9-1 .fadeWrap {
  width: 100%;
  height: auto;
}

.mouse_notice {
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
}

.mouse_notice p {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

.mouse_notice .pointerWrap {
  width: 60%;
  height: 35px;
  display: inline-block;
  transform: scale(1.3);
  position: relative;
  margin-top: 10px;
}

.mouse_notice .pointerWrap img {
  height: 30px;
  position: absolute;
  transition: 0.6s;
  opacity: 0;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}

.mouse_notice .pointerWrap img.pointer_left {
  animation-name: pointer_left;
}

.mouse_notice .pointerWrap img.pointer_right {
  animation-name: pointer_right;
}

.mouse_notice .pointerWrap img.pointer_center {
  animation-name: pointer_center;
}

@keyframes pointer_left {
  0% {
    left: 0;
    opacity: 0;
  }

  45% {
    left: calc(100% - 45px);
    opacity: 0;
  }

  50% {
    left: calc(100% - 45px);
    opacity: 1;
  }

  95% {
    left: 0;
    opacity: 1;
  }

  100% {
    left: 0;
    opacity: 0;
  }
}

@keyframes pointer_right {
  0% {
    left: 45px;
    opacity: 1;
  }

  45% {
    left: 100%;
    opacity: 1;
  }

  50% {
    left: 100%;
    opacity: 0;
  }

  95% {
    left: 45px;
    opacity: 0;
  }

  100% {
    left: 45px;
    opacity: 1;
  }
}

@keyframes pointer_center {
  0% {
    left: 18px;
    opacity: 1;
  }

  45% {
    left: calc(100% - 25px);
    opacity: 1;
  }

  50% {
    left: calc(100% - 25px);
    opacity: 1;
  }

  95% {
    left: 18px;
    opacity: 1;
  }

  100% {
    left: 18px;
    opacity: 1;
  }
}
















@media (min-width:641px) and (max-width:1024px) {

  /* **************************************************************************************************************************************************************************** */
  /*                                                                                                                                                                              */
  /*                                                                                                                                                                              */
  /*                                                                             1단 배경 Fixed                                                                                   */
  /*                                                                                                                                                                              */
  /*                                                                                                                                                                              */
  /* **************************************************************************************************************************************************************************** */
  /* A            A A                 :                   A                   :                   A                   :                   A                   :                   */
  #sub9-1 .sectionMainImgWrap {
    flex-direction: column;
    align-items: center;
  }

  #sub9-1 .sectionMainImgWrap .imgBox {
    width: 80%;
    height: 240px;
    overflow: hidden;
  }

  #sub9-1 .sectionMainImgWrap .imgBox img {
    width: 100%;
    height: 150%;
    object-fit: cover;
  }

  #sub9-1 .sectionMainImgWrap .textBox {
    width: 80%;
  }

  #sub9-1 .contentWrap .tit {
    padding: 0.7em 1em;
  }

  #sub9-1 .thirdWrap .contentWrap .contentBox .listWrap .listMaxWidth {
    width: 90%;
  }

  #sub9-1 .thirdWrap .contentWrap .contentBox .listWrap .listMaxWidth .nameBox {
    width: clamp(215px, 30vw, 290px);
  }
}

@media (max-width:640px) {


  /* **************************************************************************************************************************************************************************** */
  /*                                                                                                                                                                              */
  /*                                                                                                                                                                              */
  /*                                                                             1단 배경 Fixed                                                                                   */
  /*                                                                                                                                                                              */
  /*                                                                                                                                                                              */
  /* **************************************************************************************************************************************************************************** */
  /* A            A A                 :                   A                   :                   A                   :                   A                   :                   */

  #sub9-1 .sectionTit .titB {
    line-height: 1.2em;
  }

  #sub9-1 .sectionMainImgWrap {
    flex-direction: column;
  }

  #sub9-1 .sectionMainImgWrap .imgBox {
    width: 100%;
  }

  #sub9-1 .sectionMainImgWrap .textBox {
    width: 100%;
  }

  #sub9-1 .sectionMainImgWrap .textBox .ps {
    line-height: 1.3em;
  }

  #sub9-1 .contentWrap .tit {
    width: 100%;
    line-height: 1.4em;
  }

  #sub9-1 .contentWrap .listBox {
    width: 100%;
    padding: clamp(15px, 3vw, 25px) clamp(20px, 3vw, 50px);
  }



  #sub9-1 .thirdWrap .contentWrap .contentBox .listWrap {
    padding: clamp(15px, 2vw, 25px) 20px;
  }

  #sub9-1 .thirdWrap .contentWrap .contentBox .listWrap .listMaxWidth {
    flex-direction: column;
  }

  #sub9-1 .thirdWrap .contentWrap .contentBox .listWrap .listMaxWidth .nameBox {
    width: 100%;
    margin-bottom: 8px;
  }

  #sub9-1 .tableWrap {
    margin-top: 10px;
  }

  #sub9-1 .table {
    width: 890px;
  }

  #sub9-1 .tableB {
    width: 550px;
  }

  #sub9-1 .tableBot {
    width: 550px;
  }

  #sub9-1 .tableTit,
  #sub9-1 .tableValue {
    margin-right: 4px;
  }

  #sub9-1 .tableValueWrap {
    margin-top: 7px;
  }
}