@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
.downloadBox .documentList .downloadLink svg, .downloadBox .documentList .downloadLink::before, .downloadBox .documentList .downloadLink, .downloadBox .selectWrap .selectMain::before {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mainArea {
  padding: 50px 0;
}
@media (max-width: 640px) {
  .mainArea {
    padding: 25px 0;
  }
}
.mainArea .contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mainArea .contentBox > .moreInfoBox {
  display: none;
}
@media (max-width: 1023px) {
  .mainArea .contentBox > .moreInfoBox {
    display: block;
  }
}
.mainArea .leftBox {
  width: 360px;
  padding-right: 60px;
}
.mainArea .leftBox > .moreInfoBox {
  display: none;
}
@media (min-width: 1024px) {
  .mainArea .leftBox > .moreInfoBox {
    display: block;
  }
}
.mainArea .rightBox {
  width: calc(100% - 360px);
  position: relative;
  padding: 25px 30px;
  background: #ffffff;
}
@media (max-width: 1023px) {
  .mainArea .rightBox .textEditor {
    margin-top: 30px;
  }
}
@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: 0px 210px 20px 0;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .articleTitle {
    padding: 20px 0;
  }
  .articleTitle.report {
    padding: 0 0 20px;
    display: none;
  }
}

.sectionTitle {
  font-size: 18px;
  padding: 0 0 10px;
  color: #7f9dba;
  border-bottom: 1px solid #d1d1d1;
}

.classNote {
  padding-top: 15px;
}

/*類別*/
.classBoxInsColumn {
  position: relative;
  z-index: 4;
}
@media (max-width: 1023px) {
  .classBoxInsColumn .sectionTitle {
    display: none;
  }
}
.classBoxInsColumn .classCurrent {
  background-color: #67accc;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 30px 12px 10px;
  position: relative;
}
.classBoxInsColumn .classCurrent::before {
  content: "\f107";
  color: #fff;
  font-size: 15px;
  font-family: FontAwesome;
  line-height: 1;
  margin-top: -6px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 1;
}
@media (min-width: 1023px) {
  .classBoxInsColumn .classCurrent {
    display: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
.classBoxInsColumn .classLink {
  display: block;
  padding: 20px 0 30px;
}
.classBoxInsColumn .classLink .linkHasItems {
  position: relative;
}
.classBoxInsColumn .classLink .linkHasItems::before, .classBoxInsColumn .classLink .linkHasItems::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #2f2f2f;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.classBoxInsColumn .classLink .linkHasItems::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.classBoxInsColumn .classLink .linkHasItems::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.classBoxInsColumn .classLink .linkHasItems.open {
  background-color: #67accc;
  color: #fff;
}
.classBoxInsColumn .classLink .linkHasItems.open::before, .classBoxInsColumn .classLink .linkHasItems.open::after {
  background-color: #2f2f2f;
}
.classBoxInsColumn .classLink .linkHasItems.open::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.classBoxInsColumn .classLink .linkHasItems.open + ul {
  display: block;
}
.classBoxInsColumn .classLink .linkHasItems.open + ul > li a {
  background-color: #e8e8e8;
  color: #2f2f2f;
}
.classBoxInsColumn .classLink .linkHasItems.open + ul > li a.current, .classBoxInsColumn .classLink .linkHasItems.open + ul > li a:hover {
  background-color: #e8e8e8;
  color: #67accc;
}
.classBoxInsColumn .classLink .linkHasItems.open + ul > li a.current::before, .classBoxInsColumn .classLink .linkHasItems.open + ul > li a.current::after, .classBoxInsColumn .classLink .linkHasItems.open + ul > li a:hover::before, .classBoxInsColumn .classLink .linkHasItems.open + ul > li a:hover::after {
  background-color: #67accc;
}
.classBoxInsColumn .classLink .linkHasItems:hover {
  background-color: #67accc;
}
.classBoxInsColumn .classLink .linkHasItems:hover::before, .classBoxInsColumn .classLink .linkHasItems:hover::after {
  background-color: #2f2f2f;
}
.classBoxInsColumn .classLink > li {
  display: block;
}
.classBoxInsColumn .classLink ul {
  display: none;
}
.classBoxInsColumn .classLink ul li {
  display: block;
}
.classBoxInsColumn .classLink ul li:not(:first-child) {
  border-top: 1px solid #ccc;
}
.classBoxInsColumn .classLink a {
  color: #2f2f2f;
  display: block;
  line-height: 1.2;
  letter-spacing: 0.5px;
  padding: 18px 15px;
  position: relative;
}
.classBoxInsColumn .classLink a::before {
  display: none;
}
.classBoxInsColumn .classLink a.current, .classBoxInsColumn .classLink a:hover {
  background-color: #67accc;
  color: #fff;
}
.classBoxInsColumn .classLink a.current::before, .classBoxInsColumn .classLink a.current::after, .classBoxInsColumn .classLink a:hover::before, .classBoxInsColumn .classLink a:hover::after {
  left: initial;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .classBoxInsColumn .classLink {
    padding: 0;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }
  .classBoxInsColumn .classLink.open {
    display: block;
  }
  .classBoxInsColumn .classLink > li:not(:first-child) {
    border-top: 1px solid #ccc;
  }
  .classBoxInsColumn .classLink > li > a.current {
    color: #fff;
  }
  .classBoxInsColumn .classLink > li ul {
    display: none;
  }
  .classBoxInsColumn .classLink a {
    color: #2f2f2f;
    background-color: #fff;
    display: block;
    font-size: 14px;
    line-height: 2.4;
    padding: 14px 15px;
    position: relative;
  }
}

.m_classLink {
  display: none;
}

.downloadBox {
  position: relative;
}
.downloadBox .topBox {
  position: relative;
  margin: 25px 0 40px;
}
@media (max-width: 1023px) {
  .downloadBox .topBox {
    margin-bottom: 60px;
  }
}
.downloadBox .sectionTitle {
  padding: 15px 0;
}
@media (max-width: 1023px) {
  .downloadBox .sectionTitle {
    text-align: center;
  }
}
.downloadBox .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;
}
.downloadBox .selectWrap .selectMain {
  border: 1px solid #5f5f5f;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 1px;
  padding: 5px 20px 5px 10px;
  position: relative;
}
.downloadBox .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);
}
.downloadBox .selectWrap .selectMain.open::before {
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
}
.downloadBox .selectWrap .selectList {
  border: 1px solid #5f5f5f;
  border-top: none;
  display: none;
  padding: 0px 0px 0;
}
.downloadBox .selectWrap .selectList .selectItem:not(:last-child) {
  border-bottom: 1px solid #5f5f5f;
}
.downloadBox .selectWrap .selectList .title a {
  display: block;
  font-size: 14px;
  color: #4f4f4f;
  line-height: 20px;
  letter-spacing: 0.5px;
  padding: 10px;
}
.downloadBox .selectWrap .selectList .title a:hover {
  color: #67accc;
}
@media (max-width: 1023px) {
  .downloadBox .selectWrap {
    top: 50px;
    width: 100%;
    text-align: left;
  }
}
.downloadBox .documentList .documentItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 20px;
}
.downloadBox .documentList .documentItem:nth-child(odd) {
  background-color: rgba(103, 172, 204, 0.1);
}
.downloadBox .documentList .documentItem:first-child {
  padding: 10px 20px;
  background: #67accc;
}
.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 .documentItem.none {
  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: 15px;
  height: 15px;
  display: block;
  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) {
  .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% - 80px);
  }
  .downloadBox .documentList .downloadLink {
    width: 80px;
    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);
  }
  .downloadBox .documentList .downloadLink svg {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.moreInfoBox {
  background: #f5f8fa;
  max-width: 360px;
  padding: 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: #67accc;
  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: 1023px) {
  .moreInfoBox {
    width: 100%;
    max-width: 100%;
  }
  .moreInfoBox .sectionTitle {
    text-align: center;
  }
}