@media (min-width: 768px) {
  .link-item:nth-of-type(4) li a {
    border-bottom: 1px solid #fff;
  }
  .link-item:nth-of-type(4) li a:first-of-type::after {
    display: none;
  }
}
.research-category {
  margin: 35px auto 0 auto;
  width: 90%;
  max-width: 500px;
}
.research-category ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #d9e6ee;
  list-style: none;
}
.research-category ul li {
  background: #eff3f6;
  border-top: 1px solid #d9e6ee;
  border-left: 1px solid #d9e6ee;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
}
.research-category ul li a {
  padding: 13px 0;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  text-decoration: none;
  color: #254da7;
  display: block;
}
.research-category ul li .category-active {
  background: #254da7;
  color: #fff;
}
.research-category ul li:first-of-type a {
  padding: 5px 0;
  line-height: 20px;
}
.research-category ul li:nth-of-type(2n) {
  border-right: 1px solid #d9e6ee;
}

@media (min-width: 768px) {
  .research-category {
    width: 60%;
    max-width: 900px;
    margin-top: 110px;
  }
  .research-category ul li {
    width: 50%;
  }
  .research-category ul li a {
    font-size: 20px;
    line-height: 28px;
    padding: 22px 0;
  }
  .research-category ul li a span {
    color: #fff;
    display: inline-block;
  }
  .research-category ul li:first-of-type a {
    line-height: 28px;
    padding: 22px 0;
  }
}
.archive-section {
  padding-top: 62px;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
}
.archive-section .archive-container {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
}
.archive-section .archive-container .archive-content {
  width: calc(50% - 8px);
  margin: 0 15px 40px 0;
  text-decoration: none;
}
.archive-section .archive-container .archive-content .archive-img {
  overflow: hidden;
  overflow: hidden;
  position: relative;
}
.archive-section .archive-container .archive-content .archive-img::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.archive-section .archive-container .archive-content img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.archive-section .archive-container .archive-content .archive-text {
  margin-top: 15px;
}
.archive-section .archive-container .archive-content .archive-text p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  word-wrap: break-word;
  color: #333;
}
.archive-section .archive-container .archive-content:nth-of-type(2n) {
  margin-right: 0;
}
.archive-section .archive-container .archive-content:hover img {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .archive-section {
    max-width: 1200px;
    padding-top: 100px;
  }
  .archive-section .section2-title h2 span {
    color: #254da7;
    display: inline;
  }
  .archive-section .archive-container .archive-content {
    width: calc(25% - 30px);
    margin-right: 40px;
    margin-top: 40px;
  }
  .archive-section .archive-container .archive-content .archive-text p {
    font-size: 18px;
    line-height: 30px;
  }
  .archive-section .archive-container .archive-content .archive-text h3 {
    font-size: 24px;
    line-height: 34px;
    margin-top: 15px;
  }
  .archive-section .archive-container .archive-content .archive-text span {
    font-size: 16px;
    line-height: 26px;
  }
  .archive-section .archive-container .archive-content:nth-of-type(2n) {
    margin-right: 40px;
  }
  .archive-section .archive-container .archive-content:nth-of-type(4n) {
    margin-right: 0;
  }
}
.archive2-section {
  width: 90%;
  margin: 0 auto;
  max-width: 500px;
  padding-top: 90px;
}
.archive2-section .archive2-container h4 {
  font-size: 20px;
  line-height: 28px;
  color: #254da7;
  font-weight: 700;
  padding-left: 10px;
  margin-bottom: 10px;
  position: relative;
}
.archive2-section .archive2-container h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #254da7;
  width: 1px;
  height: 20px;
}
.archive2-section .archive2-container ul {
  margin-top: 45px;
  list-style: none;
}
.archive2-section .archive2-container ul li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  padding-left: 35px;
  position: relative;
}
.archive2-section .archive2-container ul li .link-title {
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
}
.archive2-section .archive2-container ul li .link-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.archive2-section .archive2-container ul li .link-title:hover::after {
  transform: scale(1, 1);
}
.archive2-section .archive2-container ul li::before {
  content: "";
  border: 1px solid #254da7;
  border-radius: 100px;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 4px;
  left: 0;
}

@media (min-width: 768px) {
  .archive2-section {
    max-width: 1200px;
    padding-top: 100px;
  }
  .archive2-section .archive2-container {
    display: flex;
    padding-left: 15px;
  }
  .archive2-section .archive2-container h4 {
    font-size: 25px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .archive2-section .archive2-container h4::before {
    height: 36px;
  }
  .archive2-section .archive2-container ul {
    margin-top: 80px;
  }
  .archive2-section .archive2-container ul:first-of-type {
    margin-right: 160px;
  }
}
.footer-section {
  margin-top: 110px;
}

@media (min-width: 768px) {
  .footer-section {
    margin-top: 170px;
  }
}
.research-detail-section {
  margin: 40px auto 0 auto;
  width: 90%;
  max-width: 500px;
}
.research-detail-section h2 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  color: #254da7;
  margin-bottom: 40px;
}
.research-detail-section .research-detail-content h3 {
  font-size: 20px;
  line-height: 28px;
  color: #254da7;
  font-weight: 700;
  padding-left: 10px;
  position: relative;
  margin-bottom: 20px;
  word-break: normal;
  margin-top: 60px 0 30px;
}
.research-detail-section .research-detail-content h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #254da7;
  width: 1px;
  height: 72%;
}
.research-detail-section .research-detail-content h4 {
  margin: 60px 0 30px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  color: #333;
}
.research-detail-section .research-detail-content p {
  word-break: normal;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 30px;
}
.research-detail-section .research-detail-content ul {
  list-style-position: outside;
  margin-bottom: 30px;
  padding-left: 1.5em;
}
.research-detail-section .research-detail-content ul li {
  margin-top: 10px;
  line-height: 1.4;
}
.research-detail-section .research-detail-content ol {
  list-style-position: outside;
  margin-bottom: 30px;
  padding-left: 1.5em;
}
.research-detail-section .research-detail-content ol li {
  margin-top: 10px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .research-detail-section {
    margin-top: 122px;
    max-width: 1100px;
    width: 80%;
  }
  .research-detail-section h2 {
    font-size: 48px;
    line-height: 69px;
    margin-bottom: 100px;
  }
  .research-detail-section .research-detail-content {
    width: 90%;
    margin: 0 auto;
  }
  .research-detail-section .research-detail-content h3 {
    font-size: 40px;
    line-height: 57px;
    padding-left: 31px;
    margin-top: 80px;
  }
  .research-detail-section .research-detail-content h4 {
    font-size: 24px;
  }
  .research-detail-section .research-detail-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}/*# sourceMappingURL=results.css.map */