/* CSS Document */
.downloadBox .documentList .downloadLink svg, .downloadBox .documentList .downloadLink::before, .downloadBox .documentList .downloadLink, .selectWrap .selectMain::before {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mainArea {
  padding-bottom: 60px;
}
.mainArea .contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 80px 0 0px;
}
.mainArea .leftBox {
  width: 360px;
  padding-right: 60px;
}
.mainArea .rightBox {
  width: calc(100% - 360px);
  position: relative;
}
@media (max-width: 1280px) {
  .mainArea .leftBox {
    width: 320px;
    padding-right: 40px;
  }
  .mainArea .rightBox {
    width: calc(100% - 320px);
  }
}
@media (max-width: 1023px) {
  .mainArea .contentBox {
    padding: 20px 0 0;
  }
  .mainArea .leftBox {
    width: 100%;
    padding-right: 0;
  }
  .mainArea .rightBox {
    width: 100%;
  }
}

.articleTitle,
.sectionTitle {
  border-bottom: none;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.articleTitle {
  font-size: 20px;
  padding: 0 0 20px;
}
.articleTitle.report {
  padding: 10px 210px 20px 0;
}
@media (max-width: 1023px) {
  .articleTitle {
    padding: 20px 0;
  }
  .articleTitle.report {
    padding: 70px 0 20px;
  }
}

.sectionTitle {
  font-size: 18px;
}

.selectWrap {
  width: 200px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}
.selectWrap .selectMain {
  border: 1px solid #5f5f5f;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 1px;
  padding: 5px 20px 5px 10px;
  position: relative;
}
.selectWrap .selectMain::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  border-top: 1px solid #5f5f5f;
  border-right: 1px solid #5f5f5f;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  -webkit-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
}
.selectWrap .selectMain.open::before {
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
}
.selectWrap .selectList {
  border: 1px solid #5f5f5f;
  border-top: none;
  display: none;
  padding: 0px 0px 0;
}
.selectWrap .selectList .selectItem:not(:last-child) {
  border-bottom: 1px solid #5f5f5f;
}
.selectWrap .selectList .title a {
  display: block;
  font-size: 14px;
  color: #4f4f4f;
  line-height: 20px;
  letter-spacing: 0.5px;
  padding: 10px;
}
@media (min-width: 1201px) {
  .selectWrap .selectList .title a:hover {
    color: #008cd6;
  }
}
@media (max-width: 1023px) {
  .selectWrap {
    width: 100%;
    text-align: left;
  }
}

.downloadBox {
  padding: 50px 0;
}
.downloadBox .sectionTitle {
  padding: 0 0 15px;
}
.downloadBox .documentList .documentItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 20px;
}
.downloadBox .documentList .documentItem:nth-child(odd) {
  background-color: rgba(0, 140, 214, 0.1);
}
.downloadBox .documentList .documentItem:first-child {
  padding: 10px 20px;
  background: #008cd6;
}
.downloadBox .documentList .documentItem:first-child .title,
.downloadBox .documentList .documentItem:first-child .downloadLink {
  color: #fff;
  padding: 0;
}
.downloadBox .documentList .documentItem:first-child .downloadLink {
  padding: 0;
  height: 20px;
}
.downloadBox .documentList .documentItem:first-child .downloadLink::before {
  background-color: #fff;
}
.downloadBox .documentList .documentItem:first-child .downloadLink::after {
  display: none;
}
.downloadBox .documentList .title {
  width: calc(100% - 200px);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1px;
  padding: 15px 0;
}
.downloadBox .documentList .downloadLink {
  text-align: center;
  display: inline-block;
  width: 200px;
  position: relative;
  font-size: 15px;
  line-height: 20px;
  padding: 15px 0;
  letter-spacing: 1px;
  overflow: hidden;
}
.downloadBox .documentList .downloadLink::before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #000;
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
}
.downloadBox .documentList .downloadLink svg {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../images/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
@media (min-width: 1081px) and (min-width: 1201px) {
  .downloadBox .documentList .downloadLink:hover {
    color: transparent;
  }
  .downloadBox .documentList .downloadLink:hover svg {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 840px) {
  .downloadBox .documentList .title {
    width: calc(100% - 100px);
  }
  .downloadBox .documentList .downloadLink {
    width: 100px;
  }
}
@media (max-width: 640px) {
  .downloadBox .documentList .documentItem {
    padding-right: 0;
  }
  .downloadBox .documentList .documentItem:first-child {
    padding-right: 0;
  }
  .downloadBox .documentList .documentItem:first-child .title {
    width: calc(100% - 80px);
  }
  .downloadBox .documentList .documentItem:first-child .downloadLink {
    width: 80px;
  }
  .downloadBox .documentList .title {
    width: calc(100% - 40px);
  }
  .downloadBox .documentList .downloadLink {
    width: 40px;
    font-size: 14px;
    letter-spacing: 0;
    color: transparent;
    height: 50px;
  }
  .downloadBox .documentList .downloadLink::before {
    display: none;
  }
  .downloadBox .documentList .downloadLink::after {
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
  }
}

.moreInfoBox {
  padding: 50px 0 20px;
}
.moreInfoBox .sectionTitle {
  margin-bottom: 20px;
}
.moreInfoBox .boxWrap {
  padding-bottom: 25px;
}
.moreInfoBox h4, .moreInfoBox .infotitle {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  position: relative;
}
.moreInfoBox h4::before, .moreInfoBox .infotitle::before {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #008cd6;
  position: absolute;
  top: 2px;
  left: 0;
}
.moreInfoBox p {
  padding-left: 10px;
  color: #636363;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 24px;
}
.moreInfoBox p.subtitle {
  padding-bottom: 5px;
  color: #333;
}
@media (max-width: 1180px) {
  .moreInfoBox {
    width: 100%;
  }
  .moreInfoBox .sectionTitle {
    text-align: center;
  }
}