@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&amp;family=Poppins:wght@300;400;500;600&amp;family=Roboto:ital,wght@0,400;0,500;1,500&amp;display=swap");
.scholarshipArea .scholarshipList .item a:after, .newsArea .classLink_idx li a:after {
  transition: all 0.5s;
}

.scholarshipArea .scholarshipList .title, .aboutArea .innerBox .Txt .title {
  color: #242424;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}

.aboutArea .innerBox .Txt p {
  color: #4e4e4e;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0.8px;
}

.bannerArea .slick-active .subTitle,
.bannerArea .slick-active .title,
.bannerArea .slick-active .en_title,
.bannerArea .slick-active .txt,
.bannerArea .slick-active .btnBox {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dotMove {
  0% {
    top: 0;
  }
  50% {
    top: calc(100% - 5px);
  }
  100% {
    top: 0;
  }
}
@keyframes wave {
  to {
    stroke-dashoffset: 0;
  }
}
.loadingArea .loadLogo {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto;
  text-align: center;
}

.loadingArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  opacity: 1;
  pointer-events: none;
}
.loadingArea:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #dc0011;
}
.loadingArea .loadLogo {
  overflow: hidden;
  display: flex;
  justify-content: center;
  animation: logoFadeOut 1s 3s forwards;
}
.loadingArea .loadLogo .text,
.loadingArea .loadLogo .gear,
.loadingArea .loadLogo .mechanical,
.loadingArea .loadLogo .year,
.loadingArea .loadLogo .enText {
  opacity: 0;
}
.loadingArea .loadLogo .text {
  animation: textShow 2s 1.2s forwards;
  transform: translate(0, 100%);
}
.loadingArea .loadLogo .gear {
  animation: somethingShow 0.5s forwards;
}
.loadingArea .loadLogo .mechanical {
  animation: mechanicalShow 1.5s 0.5s forwards;
  transform: translate(-10px, -10px);
}
.loadingArea .loadLogo .year {
  animation: somethingShow 1.5s 1s forwards;
}
.loadingArea .loadLogo .enText {
  animation: enTextShow 1.5s 1s forwards;
}
.loadingArea.show {
  opacity: 1;
  pointer-events: auto;
  animation: logoFadeOut 1.5s 3s forwards;
}

@keyframes textShow {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes mechanicalShow {
  from {
    opacity: 0;
    transform: translate(-10px, -10px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes somethingShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes enTextShow {
  from {
    opacity: 0;
    transform: translate(-10px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes logoFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mainArea {
  padding: 0;
}

.wrap {
  max-width: 1400px;
}
@media (max-width: 1420px) {
  .wrap {
    padding: 0 20px;
  }
}

/*pop*/
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
  text-align: left;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}
.popWin .close::before {
  transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask, .popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}
.bannerArea {
  position: relative;
}
.bannerArea .slick-active .subTitle {
  animation-delay: 0.2s;
}
.bannerArea .slick-active .title {
  animation-delay: 0.4s;
}
.bannerArea .slick-active .en_title {
  animation-delay: 0.6s;
}
.bannerArea .slick-active .txt {
  animation-delay: 0.8s;
}
.bannerArea .slick-active .btnBox {
  animation-delay: 1s;
}
.bannerArea .bnrControl {
  padding-bottom: 25px;
}
.bannerArea .bnrControl .pagingInfo {
  color: #ffffff;
  font-size: 14px;
  font-family: "Poppins";
  letter-spacing: 0.7px;
}
.bannerArea .bnrControl .pagingInfo .slash {
  width: 50px;
  height: 1px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  vertical-align: middle;
  margin: 0 7px;
}
.bannerArea .bnrControl .pagingInfo .num {
  color: #ffffff;
}
.bannerArea .innerBox {
  position: absolute;
  left: 13.7%;
  /*260px*/
  top: 44%;
  transform: translate(0, -44%);
  margin-left: 0;
  max-width: 500px;
  width: 100%;
  z-index: 5;
}
.bannerArea .bannerTxt {
  color: #ffffff;
}
.bannerArea .bannerTxt .subTitle {
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1.4px;
}
.bannerArea .bannerTxt .title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 3px;
  padding-top: 10px;
}
.bannerArea .bannerTxt .en_title {
  font-size: 20px;
  font-family: "Poppins";
  letter-spacing: 1px;
  padding-top: 10px;
}
.bannerArea .bannerTxt .txt {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.8px;
  padding-top: 25px;
}
.bannerArea .bannerTxt .btnBox {
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
  margin: 0 -4px;
}
.bannerArea .bannerTxt .btnBox a {
  margin: 4px;
}
.bannerArea .scrollDown {
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 15px;
  color: #ffffff;
  font-size: 13px;
  font-family: "Roboto";
  font-style: italic;
  z-index: 2;
  overflow: hidden;
}
.bannerArea .scrollDown span {
  width: 100%;
  position: relative;
  display: block;
  vertical-align: 5px;
  margin-top: 15px;
}
.bannerArea .scrollDown span:before, .bannerArea .scrollDown span:after {
  content: "";
  background-color: #ffffff;
  margin: auto;
  display: block;
}
.bannerArea .scrollDown span:before {
  width: 1px;
  height: 43px;
}
.bannerArea .scrollDown span:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: dotMove 2s infinite;
}
@media (max-width: 1180px) {
  .bannerArea .bnrControl {
    padding-bottom: 10px;
  }
  .bannerArea .innerBox {
    top: 50%;
    left: 50px;
    transform: translate(0, -50%);
  }
  .bannerArea .bannerTxt {
    color: #ffffff;
  }
  .bannerArea .bannerTxt .subTitle {
    font-size: 23px;
    line-height: 35px;
    letter-spacing: 1.2px;
  }
  .bannerArea .bannerTxt .title {
    font-size: 45px;
    letter-spacing: 2px;
  }
  .bannerArea .bannerTxt .en_title {
    padding-top: 5px;
  }
  .bannerArea .bannerTxt .txt {
    padding-top: 10px;
    font-size: 15px;
  }
  .bannerArea .bannerTxt .btnBox {
    padding-top: 20px;
  }
}
@media (max-width: 992px) {
  .bannerArea .innerBox.mobile .bannerTxt .txt {
    display: block;
  }
  .bannerArea .innerBox.mobile .scrollDown {
    display: block;
  }
  .bannerArea .innerBox.pc .bannerTxt .txt {
    display: none;
  }
  .bannerArea .innerBox.pc .bannerTxt .subTitle {
    font-size: 20px;
    line-height: 33px;
  }
  .bannerArea .innerBox.pc .bannerTxt .title {
    font-size: 40px;
  }
  .bannerArea .innerBox.pc .bannerTxt .en_title {
    font-size: 16px;
  }
  .bannerArea .scrollDown {
    display: none;
  }
}
@media (max-width: 768px) {
  .bannerArea .innerBox.mobile .bannerTxt .btnBox {
    display: block;
  }
  .bannerArea .innerBox.pc .bannerTxt .btnBox {
    display: none;
  }
  .bannerArea .bannerTxt .btnBox .btn_cis {
    width: 180px;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .bannerArea .innerBox {
    left: 20px;
    right: 0;
    width: auto;
  }
  .bannerArea .innerBox.mobile .bannerTxt .subTitle {
    display: block;
  }
  .bannerArea .innerBox.pc .bannerTxt .title {
    padding-top: 0;
    font-size: 25px;
  }
  .bannerArea .innerBox.pc .bannerTxt .en_title {
    font-size: 14px;
  }
  .bannerArea .bannerTxt .subTitle {
    display: none;
  }
  .bannerArea .scrollDown {
    display: none;
  }
}
@media (max-width: 414px) {
  .bannerArea .bannerTxt .btnBox .btn_cis {
    display: block;
  }
}

.newsArea {
  padding-top: 85px;
  padding-bottom: 85px;
  background-image: url(../png/bg_streaklt.png);
  background-repeat: no-repeat;
  background-position: left -30px;
  position: relative;
}
.newsArea .sideBg {
  right: 0;
}
.newsArea .sideBg.bg_pliers {
  top: 80px;
}
.newsArea .sideBg.bg_car {
  bottom: -110px;
}
.newsArea .titleBox:before {
  position: absolute;
  left: -29%;
  top: -110%;
  content: "";
  width: 168px;
  height: 168px;
  display: block;
  background-image: url(../png/bg_streakcircle.png);
  background-repeat: no-repeat;
}
.newsArea .infoBox {
  color: #4e4e4e;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: 0.8px;
}
.newsArea .wrap {
  display: flex;
}
.newsArea .wrap > div {
  position: relative;
  z-index: 2;
}
.newsArea .wrap .left {
  width: calc(100% - 300px);
  padding-right: 65px;
  position: relative;
}
.newsArea .wrap .right {
  width: 300px;
}
.newsArea .classBox {
  padding: 30px 0 0;
  background-image: url(../png/bg_dot-2.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 17px) 55px;
}
.newsArea .classLink_idx {
  max-width: 160px;
}
.newsArea .classLink_idx li {
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #dc0011;
  border-top: 0;
  border-left: 0;
  padding: 0 5px 5px 0;
}
.newsArea .classLink_idx li a {
  position: relative;
  display: block;
  padding: 5px 10px;
  font-size: 15px;
  color: #242424;
  text-align: center;
  border: 1px solid #dc0011;
  cursor: pointer;
  z-index: 1;
}
.newsArea .classLink_idx li a:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  content: "";
  width: 0;
  height: 100%;
  background-color: #dc0011;
  z-index: -1;
}
.newsArea .classLink_idx li a:hover, .newsArea .classLink_idx li a.current {
  color: #ffffff;
}
.newsArea .classLink_idx li a:hover:after, .newsArea .classLink_idx li a.current:after {
  width: 100%;
}
.newsArea .newsList {
  margin: 0 -15px;
}
.newsArea .newsList li {
  padding: 15px;
}
.newsArea .newsList li .date {
  position: absolute;
  right: 14px;
  top: 0;
  color: #ffffff;
  font-family: "Poppins";
  line-height: 1;
  background-color: #dc0011;
  width: 70px;
  padding: 9px 0;
}
.newsArea .newsList li .date:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 70px 0 0;
  border-color: #dc0011 transparent transparent transparent;
  top: 100%;
}
.newsArea .newsList li .date .day,
.newsArea .newsList li .date .monYear {
  text-align: center;
}
.newsArea .newsList li .date .day {
  font-size: 40px;
  font-weight: 500;
}
.newsArea .newsList li .date .monYear {
  font-size: 12px;
  text-transform: uppercase;
}
.newsArea .newsList li .Txt {
  padding-top: 20px;
}
.newsArea .newsList li .Txt .title {
  color: #242424;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}
.newsArea .newsList li .Txt .title a {
  display: block;
  height: 24px;
}
.newsArea .newsList li .Txt p {
  color: #595959;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.75px;
  padding-top: 10px;
  height: 56px;
}
.newsArea .sliderControl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsArea .sliderControl .append_dots .slick-dots {
  line-height: 0;
}
.newsArea .sliderControl .append_dots .slick-dots li {
  padding: 0;
}
.newsArea .sliderControl .btnBox {
  text-align: right;
  padding: 0;
}
.newsArea .sliderControl .btnBox .btn_cis {
  text-align: left;
  min-width: 220px;
}
@media (max-width: 1800px) {
  .newsArea .sideBg.bg_pliers {
    width: 11%;
    top: 30px;
  }
  .newsArea .sideBg.bg_car {
    width: 15%;
    bottom: -10%;
  }
}
@media (max-width: 1500px) {
  .newsArea .sideBg.bg_pliers {
    width: 14%;
  }
  .newsArea .sideBg.bg_car {
    width: 17%;
  }
  .newsArea .wrap .left {
    width: calc(100% - 350px);
    padding-right: 35px;
  }
  .newsArea .wrap .right {
    width: 350px;
  }
}
@media (max-width: 1180px) {
  .newsArea .wrap .left {
    width: 70%;
  }
  .newsArea .wrap .right {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .newsArea {
    background-size: 300%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .newsArea .wrap {
    flex-direction: column;
  }
  .newsArea .wrap .left,
.newsArea .wrap .right {
    width: 100%;
  }
  .newsArea .wrap .left {
    padding-right: 0;
    order: 1;
    padding-top: 15px;
  }
  .newsArea .newsList li .date .day {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .newsArea .sliderControl {
    flex-direction: column;
  }
  .newsArea .sliderControl .btnBox {
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .newsArea {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .newsArea .newsList li .Txt .title {
    font-size: 18px;
  }
  .newsArea .newsList li .Txt .title a {
    height: auto;
  }
  .newsArea .newsList li .Txt p {
    font-size: 14px;
    height: auto;
  }
}

.aboutArea {
  padding-bottom: 70px;
  position: relative;
}
.aboutArea .sideBg {
  right: 0;
}
.aboutArea .sideBg.bg_gearBig {
  bottom: -40%;
}
.aboutArea .titleBox:before {
  position: absolute;
  left: -8%;
  top: -60%;
  content: "";
  width: 168px;
  height: 168px;
  display: block;
  background-image: url(../png/bg_streakcircle.png);
  background-repeat: no-repeat;
}
.aboutArea .innerBox {
  display: flex;
}
.aboutArea .innerBox .left {
  width: 710px;
}
.aboutArea .innerBox .right {
  width: 742px;
  padding: 60px;
  margin-top: 70px;
  margin-left: -52px;
  background-color: #ffffff;
  z-index: 1;
}
.aboutArea .innerBox .Txt p {
  padding-top: 10px;
}
.aboutArea .innerBox .btnBox {
  padding-top: 40px;
}
@media (max-width: 1800px) {
  .aboutArea .sideBg.bg_gearBig {
    width: 28%;
    bottom: -27%;
  }
}
@media (max-width: 1440px) {
  .aboutArea .sideBg.bg_gearBig {
    display: none;
  }
  .aboutArea .innerBox {
    justify-content: center;
  }
  .aboutArea .innerBox .left {
    width: 55%;
  }
  .aboutArea .innerBox .right {
    width: 45%;
    padding: 40px;
    margin-left: -35px;
  }
}
@media (max-width: 768px) {
  .aboutArea {
    padding-bottom: 50px;
  }
  .aboutArea .innerBox {
    flex-direction: column;
  }
  .aboutArea .innerBox .left,
.aboutArea .innerBox .right {
    width: 100%;
  }
  .aboutArea .innerBox .left .Img img {
    width: 100%;
  }
  .aboutArea .innerBox .right {
    order: -1;
    padding: 40px 20px;
    margin-left: 0;
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .aboutArea {
    padding-bottom: 30px;
  }
  .aboutArea .innerBox .right {
    margin-top: 30px;
  }
}

.historyArea {
  padding-bottom: 70px;
  width: 100%;
  position: relative;
}
.historyArea.show .path {
  animation: wave 3s linear forwards;
}
.historyArea .historyTab {
  display: flex;
  justify-content: center;
}
.historyArea .historyTab a {
  display: block;
  padding: 6px 10px;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  min-width: 160px;
  margin: 0 16px;
  position: relative;
}
.historyArea .historyTab a:nth-child(1) {
  background-color: #f26d6e;
}
.historyArea .historyTab a:nth-child(1):before {
  border-color: #f26d6e;
}
.historyArea .historyTab a:nth-child(2) {
  background-color: #42ba96;
}
.historyArea .historyTab a:nth-child(2):before {
  border-color: #42ba96;
}
.historyArea .historyTab a:nth-child(3) {
  background-color: #f7974d;
}
.historyArea .historyTab a:nth-child(3):before {
  border-color: #f7974d;
}
.historyArea .historyTab a:nth-child(4) {
  background-color: #525ba6;
}
.historyArea .historyTab a:nth-child(4):before {
  border-color: #525ba6;
}
.historyArea .historyTab a:nth-child(5) {
  background-color: #914e83;
}
.historyArea .historyTab a:nth-child(5):before {
  border-color: #914e83;
}
.historyArea .historyTab a:before {
  position: absolute;
  right: -5px;
  bottom: -5px;
  content: "";
  display: block;
  border-width: 1px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
}
.historyArea .historyTab a:hover:nth-child(1), .historyArea .historyTab a.current:nth-child(1) {
  background-color: rgba(242, 109, 110, 0.5);
}
.historyArea .historyTab a:hover:nth-child(1):before, .historyArea .historyTab a.current:nth-child(1):before {
  border-color: rgba(242, 109, 110, 0.5);
}
.historyArea .historyTab a:hover:nth-child(2), .historyArea .historyTab a.current:nth-child(2) {
  background-color: rgba(66, 186, 150, 0.5);
}
.historyArea .historyTab a:hover:nth-child(2):before, .historyArea .historyTab a.current:nth-child(2):before {
  border-color: rgba(66, 186, 150, 0.5);
}
.historyArea .historyTab a:hover:nth-child(3), .historyArea .historyTab a.current:nth-child(3) {
  background-color: rgba(247, 151, 77, 0.5);
}
.historyArea .historyTab a:hover:nth-child(3):before, .historyArea .historyTab a.current:nth-child(3):before {
  border-color: rgba(247, 151, 77, 0.5);
}
.historyArea .historyTab a:hover:nth-child(4), .historyArea .historyTab a.current:nth-child(4) {
  background-color: rgba(82, 91, 166, 0.5);
}
.historyArea .historyTab a:hover:nth-child(4):before, .historyArea .historyTab a.current:nth-child(4):before {
  border-color: rgba(82, 91, 166, 0.5);
}
.historyArea .historyTab a:hover:nth-child(5), .historyArea .historyTab a.current:nth-child(5) {
  background-color: rgba(145, 78, 131, 0.5);
}
.historyArea .historyTab a:hover:nth-child(5):before, .historyArea .historyTab a.current:nth-child(5):before {
  border-color: rgba(145, 78, 131, 0.5);
}
.historyArea .historyTabContentOutBox {
  position: relative;
}
.historyArea .m_historyTabContentBox {
  display: none;
}
@media (max-width: 1180px) {
  .historyArea .m_historyTabContentBox {
    display: block;
  }
}
@media (max-width: 1180px) {
  .historyArea .historyTabContentBox {
    display: none;
  }
}
.historyArea .m_historyTabContent,
.historyArea .historyTabContent {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}
.historyArea .m_historyTabContent .append_dots,
.historyArea .historyTabContent .append_dots {
  text-align: center;
  padding-top: 20px;
}
.historyArea .m_historyTabContent > li,
.historyArea .historyTabContent > li {
  display: none;
  position: relative;
}
.historyArea .m_historyTabContent > li#event01 path.color_green, .historyArea .m_historyTabContent > li#event01 path.color_orange, .historyArea .m_historyTabContent > li#event01 path.color_blue, .historyArea .m_historyTabContent > li#event01 path.color_purple,
.historyArea .historyTabContent > li#event01 path.color_green,
.historyArea .historyTabContent > li#event01 path.color_orange,
.historyArea .historyTabContent > li#event01 path.color_blue,
.historyArea .historyTabContent > li#event01 path.color_purple {
  display: none;
}
.historyArea .m_historyTabContent > li#event01 path.color_red,
.historyArea .historyTabContent > li#event01 path.color_red {
  display: block;
}
.historyArea .m_historyTabContent > li#event01 .color_red .year,
.historyArea .historyTabContent > li#event01 .color_red .year {
  color: #f26d6e;
}
.historyArea .m_historyTabContent > li#event01 .color_red .title,
.historyArea .historyTabContent > li#event01 .color_red .title {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event02 path.color_red, .historyArea .m_historyTabContent > li#event02 path.color_orange, .historyArea .m_historyTabContent > li#event02 path.color_blue, .historyArea .m_historyTabContent > li#event02 path.color_purple,
.historyArea .historyTabContent > li#event02 path.color_red,
.historyArea .historyTabContent > li#event02 path.color_orange,
.historyArea .historyTabContent > li#event02 path.color_blue,
.historyArea .historyTabContent > li#event02 path.color_purple {
  display: none;
}
.historyArea .m_historyTabContent > li#event02 path.color_green,
.historyArea .historyTabContent > li#event02 path.color_green {
  display: block;
}
.historyArea .m_historyTabContent > li#event02 .color_green .year,
.historyArea .historyTabContent > li#event02 .color_green .year {
  color: #42ba96;
}
.historyArea .m_historyTabContent > li#event02 .color_green .title,
.historyArea .historyTabContent > li#event02 .color_green .title {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event02 .historyList li:nth-child(4) .title2,
.historyArea .historyTabContent > li#event02 .historyList li:nth-child(4) .title2 {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event03 path.color_red, .historyArea .m_historyTabContent > li#event03 path.color_green, .historyArea .m_historyTabContent > li#event03 path.color_blue, .historyArea .m_historyTabContent > li#event03 path.color_purple,
.historyArea .historyTabContent > li#event03 path.color_red,
.historyArea .historyTabContent > li#event03 path.color_green,
.historyArea .historyTabContent > li#event03 path.color_blue,
.historyArea .historyTabContent > li#event03 path.color_purple {
  display: none;
}
.historyArea .m_historyTabContent > li#event03 path.color_orange,
.historyArea .historyTabContent > li#event03 path.color_orange {
  display: block;
}
.historyArea .m_historyTabContent > li#event03 .color_orange .year,
.historyArea .historyTabContent > li#event03 .color_orange .year {
  color: #f7974d;
}
.historyArea .m_historyTabContent > li#event03 .color_orange .title,
.historyArea .m_historyTabContent > li#event03 .color_orange .title2,
.historyArea .historyTabContent > li#event03 .color_orange .title,
.historyArea .historyTabContent > li#event03 .color_orange .title2 {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event03 .historyList li:nth-child(4) .title,
.historyArea .historyTabContent > li#event03 .historyList li:nth-child(4) .title {
  color: #a6a6a6;
}
.historyArea .m_historyTabContent > li#event03 .historyList li:nth-child(4) .title2,
.historyArea .historyTabContent > li#event03 .historyList li:nth-child(4) .title2 {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event03 .historyList li:nth-child(5) .title,
.historyArea .historyTabContent > li#event03 .historyList li:nth-child(5) .title {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event03 .historyList li:nth-child(5) .title2,
.historyArea .historyTabContent > li#event03 .historyList li:nth-child(5) .title2 {
  color: #a6a6a6;
}
.historyArea .m_historyTabContent > li#event04 path.color_red, .historyArea .m_historyTabContent > li#event04 path.color_green, .historyArea .m_historyTabContent > li#event04 path.color_orange, .historyArea .m_historyTabContent > li#event04 path.color_purple,
.historyArea .historyTabContent > li#event04 path.color_red,
.historyArea .historyTabContent > li#event04 path.color_green,
.historyArea .historyTabContent > li#event04 path.color_orange,
.historyArea .historyTabContent > li#event04 path.color_purple {
  display: none;
}
.historyArea .m_historyTabContent > li#event04 path.color_blue,
.historyArea .historyTabContent > li#event04 path.color_blue {
  display: block;
}
.historyArea .m_historyTabContent > li#event04 .color_blue .year,
.historyArea .historyTabContent > li#event04 .color_blue .year {
  color: #525ba6;
}
.historyArea .m_historyTabContent > li#event04 .color_blue .title,
.historyArea .historyTabContent > li#event04 .color_blue .title {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event04 .historyList li:nth-child(5) .title,
.historyArea .historyTabContent > li#event04 .historyList li:nth-child(5) .title {
  color: #a6a6a6;
}
.historyArea .m_historyTabContent > li#event04 .historyList li:nth-child(5) .title2,
.historyArea .historyTabContent > li#event04 .historyList li:nth-child(5) .title2 {
  color: #333232;
}
.historyArea .m_historyTabContent > li#event05 path.color_red, .historyArea .m_historyTabContent > li#event05 path.color_green, .historyArea .m_historyTabContent > li#event05 path.color_orange, .historyArea .m_historyTabContent > li#event05 path.color_blue,
.historyArea .historyTabContent > li#event05 path.color_red,
.historyArea .historyTabContent > li#event05 path.color_green,
.historyArea .historyTabContent > li#event05 path.color_orange,
.historyArea .historyTabContent > li#event05 path.color_blue {
  display: none;
}
.historyArea .m_historyTabContent > li#event05 path.color_purple,
.historyArea .historyTabContent > li#event05 path.color_purple {
  display: block;
}
.historyArea .m_historyTabContent > li#event05 .color_purple .year,
.historyArea .historyTabContent > li#event05 .color_purple .year {
  color: #914e83;
}
.historyArea .m_historyTabContent > li#event05 .color_purple .title,
.historyArea .historyTabContent > li#event05 .color_purple .title {
  color: #333232;
}
.historyArea .historyLine {
  width: 101%;
  margin-left: -3px;
}
.historyArea .path {
  stroke-dashoffset: 5500;
  stroke-dasharray: 5500;
}
.historyArea .historyList {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  height: 100%;
}
.historyArea .historyList li {
  position: relative;
  flex-grow: 1;
}
.historyArea .historyList li:nth-child(odd) {
  bottom: 0;
}
.historyArea .historyList li:nth-child(even) {
  top: 0;
}
.historyArea .historyList li .group {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 10px;
  position: absolute;
  left: 0;
  width: 140px;
}
.historyArea .historyList li .year {
  color: #7a7a7a;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  font-family: "Poppins";
  padding-bottom: 5px;
}
.historyArea .historyList li .title,
.historyArea .historyList li .title2 {
  color: #a6a6a6;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.9px;
}
.historyArea .historyList li .title2 {
  padding-top: 10px;
}
.historyArea .historyList li:nth-child(odd) {
  align-self: flex-end;
}
.historyArea .historyList li:nth-child(even) {
  align-self: flex-start;
}
.historyArea .historyList li:nth-child(1) .group {
  padding-top: 30px;
}
.historyArea .historyList li:nth-child(2) {
  margin-top: 116px;
  left: -12px;
}
.historyArea .historyList li:nth-child(2) .group {
  padding-bottom: 75px;
}
.historyArea .historyList li:nth-child(3) {
  margin-bottom: 79px;
  left: -3px;
}
.historyArea .historyList li:nth-child(3) .group {
  padding-top: 59px;
}
.historyArea .historyList li:nth-child(4) {
  margin-top: 46px;
  left: -15px;
}
.historyArea .historyList li:nth-child(4) .group {
  padding-bottom: 0;
}
.historyArea .historyList li:nth-child(5) {
  margin-bottom: 60px;
  left: -2px;
}
.historyArea .historyList li:nth-child(5) .group {
  padding-top: 42px;
}
.historyArea .historyList li:nth-child(6) {
  margin-top: 125px;
  left: 18px;
}
.historyArea .historyList li:nth-child(6) .group {
  padding-bottom: 60px;
}
.historyArea .historyList li:nth-child(7) {
  margin-bottom: 64px;
  left: 46px;
}
.historyArea .historyList li:nth-child(7) .group {
  padding-top: 54px;
}
.historyArea .historyList li:nth-child(8) {
  margin-top: -40px;
  left: 15px;
}
.historyArea .historyList li:nth-child(8) .group {
  padding-bottom: 91px;
}
.historyArea .historyList li:nth-child(9) {
  margin-bottom: 276px;
  left: 56px;
}
.historyArea .historyList li:nth-child(9) .group {
  padding-top: 85px;
}
.historyArea .historyList li:nth-child(10) {
  margin-top: -95px;
  left: 37px;
}
.historyArea .historyList li:nth-child(10) .group {
  padding-bottom: 0;
}
.historyArea .historyList li:nth-child(11) {
  margin-bottom: 258px;
  left: 42px;
}
.historyArea .historyList li:nth-child(11) .group {
  padding-top: 131px;
}
.historyArea .historyList li:nth-child(12) {
  margin-top: -56px;
  left: 50px;
}
.historyArea .historyList li:nth-child(12) .group {
  padding-bottom: 45px;
}
.historyArea .historyList li:nth-child(13) {
  margin-bottom: 155px;
  left: 34px;
}
.historyArea .historyList li:nth-child(13) .group {
  padding-top: 70px;
}
.historyArea .historyList li:nth-child(14) {
  margin-top: 21px;
  left: 24px;
}
.historyArea .historyList li:nth-child(14) .group {
  padding-bottom: 25px;
}
.historyArea .historyList li:nth-child(15) {
  margin-bottom: 181px;
  left: 41px;
}
.historyArea .historyList li:nth-child(15) .group {
  padding-top: 66px;
}
.historyArea .historyList li:nth-child(16) {
  margin-top: -40px;
}
.historyArea .historyList li:nth-child(16) .group {
  padding-bottom: 30px;
}
.historyArea .historyTabLink {
  display: none;
  position: relative;
  border: 1px solid #dc0011;
  border-top: 0;
  border-left: 0;
  padding: 0 5px 5px 0;
}
.historyArea .historyTabLink b {
  font-weight: 400;
}
.historyArea .historyTabLink a.main {
  display: block;
  font-size: 15px;
  color: #ffffff;
  font-size: 18px;
  position: relative;
  padding: 10px 30px;
  text-align: center;
  background-color: #dc0011;
  /* IE6-9 */
}
.historyArea .historyTabLink a.main i {
  display: block;
  font-size: 15px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
}
.historyArea .historyTabLink .historyTab {
  padding: 0;
  list-style: none;
  display: none;
  width: calc(100% + 1px);
  background: #ffffff;
  border: 1px solid #dc0011;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 99;
  box-sizing: border-box;
}
.historyArea .historyTabLink .historyTab a {
  display: block;
  padding: 10px 15px;
  margin: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  color: #424141;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.8px;
}
.historyArea .historyTabLink .historyTab a:before {
  display: none;
}
.historyArea .historyTabLink .historyTab a:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.historyArea .historyTabLink .historyTab a.current {
  background-color: #ffffff !important;
}
@media (max-width: 1440px) {
  .historyArea .sideBg.bg_gearSmall {
    display: none;
  }
}
@media (max-width: 1380px) {
  .historyArea .historyList {
    height: calc(100% + 40px);
  }
}
@media (max-width: 1280px) {
  .historyArea .historyList li:nth-child(2) .group {
    padding-bottom: 65px;
  }
  .historyArea .historyList li:nth-child(6) .group {
    padding-bottom: 45px;
  }
  .historyArea .historyList li:nth-child(9) {
    margin-bottom: 250px;
  }
  .historyArea .historyList li:nth-child(11) {
    margin-bottom: 230px;
  }
  .historyArea .historyList li:nth-child(13) {
    margin-bottom: 145px;
  }
}
@media (max-width: 1180px) {
  .historyArea .historyList {
    height: auto;
  }
  .historyArea .historyList li:nth-child(odd) {
    align-self: flex-start;
  }
  .historyArea .historyList li:nth-child(1), .historyArea .historyList li:nth-child(2), .historyArea .historyList li:nth-child(3), .historyArea .historyList li:nth-child(4), .historyArea .historyList li:nth-child(5), .historyArea .historyList li:nth-child(6), .historyArea .historyList li:nth-child(7), .historyArea .historyList li:nth-child(8), .historyArea .historyList li:nth-child(9), .historyArea .historyList li:nth-child(10), .historyArea .historyList li:nth-child(11), .historyArea .historyList li:nth-child(12), .historyArea .historyList li:nth-child(13), .historyArea .historyList li:nth-child(14), .historyArea .historyList li:nth-child(15), .historyArea .historyList li:nth-child(16) {
    margin: 0;
    left: 0;
  }
  .historyArea .historyList li:nth-child(1) .group, .historyArea .historyList li:nth-child(2) .group, .historyArea .historyList li:nth-child(3) .group, .historyArea .historyList li:nth-child(4) .group, .historyArea .historyList li:nth-child(5) .group, .historyArea .historyList li:nth-child(6) .group, .historyArea .historyList li:nth-child(7) .group, .historyArea .historyList li:nth-child(8) .group, .historyArea .historyList li:nth-child(9) .group, .historyArea .historyList li:nth-child(10) .group, .historyArea .historyList li:nth-child(11) .group, .historyArea .historyList li:nth-child(12) .group, .historyArea .historyList li:nth-child(13) .group, .historyArea .historyList li:nth-child(14) .group, .historyArea .historyList li:nth-child(15) .group, .historyArea .historyList li:nth-child(16) .group {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }
  .historyArea .historyList li .group {
    width: auto;
    text-align: center;
    border-left: 0;
    padding-left: 0;
  }
  .historyArea .m_historyTabContent,
.historyArea .historyTabContent {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .historyArea .m_historyTabContent > li .historyList,
.historyArea .historyTabContent > li .historyList {
    display: block;
  }
  .historyArea .m_historyTabContent > li .historyList li,
.historyArea .historyTabContent > li .historyList li {
    display: none;
  }
  .historyArea .m_historyTabContent > li#event01 .color_red,
.historyArea .historyTabContent > li#event01 .color_red {
    display: block;
  }
  .historyArea .m_historyTabContent > li#event02 .color_green,
.historyArea .historyTabContent > li#event02 .color_green {
    display: block;
  }
  .historyArea .m_historyTabContent > li#event03 .color_orange,
.historyArea .historyTabContent > li#event03 .color_orange {
    display: block;
  }
  .historyArea .m_historyTabContent > li#event04 .color_blue,
.historyArea .historyTabContent > li#event04 .color_blue {
    display: block;
  }
  .historyArea .m_historyTabContent > li#event05 .color_purple,
.historyArea .historyTabContent > li#event05 .color_purple {
    display: block;
  }
  .historyArea .path {
    opacity: 0.3;
  }
}
@media (max-width: 992px) {
  .historyArea .historyTab.pc {
    display: none;
  }
  .historyArea .historyTabContent {
    padding-top: 30px;
  }
  .historyArea .historyTabLink {
    display: block;
  }
  .historyArea .historyTabLink .historyTab {
    display: none;
  }
}
@media (max-width: 768px) {
  .historyArea {
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .historyArea {
    padding-bottom: 30px;
  }
  .historyArea .historyList {
    height: 100%;
  }
}

.scholarshipArea {
  padding-top: 123px;
  padding-bottom: 50px;
  background-image: url(../png/bg_streakrt.png);
  background-repeat: no-repeat;
  background-position: calc(100% + 190px) -30px;
}
.scholarshipArea .wrap {
  display: flex;
}
.scholarshipArea .wrap .left {
  width: 352px;
  padding-right: 30px;
  background-image: url(../png/bg_streakcircle_small.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 50px) 62%;
}
.scholarshipArea .wrap .right {
  width: calc(100% - 352px);
}
.scholarshipArea .titleBox:before {
  position: absolute;
  left: -20%;
  top: -45%;
  content: "";
  width: 168px;
  height: 168px;
  display: block;
  background-image: url(../png/bg_streakcircle.png);
  background-repeat: no-repeat;
}
.scholarshipArea .append_dots {
  padding-top: 80px;
  padding-bottom: 80px;
}
.scholarshipArea .append_dots .slick-dots {
  padding-left: 0 !important;
}
.scholarshipArea .scholarshipList {
  margin: 0 -15px;
}
.scholarshipArea .scholarshipList li {
  padding: 0 15px 20px;
}
.scholarshipArea .scholarshipList li:nth-child(odd) .Img {
  order: 1;
}
.scholarshipArea .scholarshipList .item a {
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  position: relative;
}
.scholarshipArea .scholarshipList .item a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #dc0011;
  z-index: -1;
}
.scholarshipArea .scholarshipList .item a:hover {
  border-color: #dc0011;
}
.scholarshipArea .scholarshipList .item a:hover:after {
  right: -10px;
  top: 10px;
}
.scholarshipArea .scholarshipList .Img img {
  width: 100%;
}
.scholarshipArea .scholarshipList .Txt {
  padding: 20px;
  background-color: #ffffff;
}
.scholarshipArea .scholarshipList .date {
  color: #dc0011;
  font-family: "Poppins";
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.75px;
}
.scholarshipArea .scholarshipList .date svg {
  margin-right: 5px;
  vertical-align: -1px;
}
.scholarshipArea .scholarshipList .title {
  padding-top: 5px;
}
@media (max-width: 1180px) {
  .scholarshipArea .wrap .left {
    width: 30%;
  }
  .scholarshipArea .wrap .right {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .scholarshipArea {
    background-position: left center;
    background-size: 200%;
    padding-top: 50px;
  }
  .scholarshipArea .titleBox:after {
    left: -10%;
  }
  .scholarshipArea .wrap {
    flex-direction: column;
  }
  .scholarshipArea .wrap .left,
.scholarshipArea .wrap .right {
    width: 100%;
  }
  .scholarshipArea .wrap .left {
    background-image: none;
  }
  .scholarshipArea .wrap .right {
    padding-top: 30px;
  }
  .scholarshipArea .scholarshipList li:nth-child(odd) .Img {
    order: 0;
  }
  .scholarshipArea .append_dots,
.scholarshipArea .btnBox {
    text-align: center;
  }
  .scholarshipArea .append_dots {
    padding-top: 0;
    padding-bottom: 35px;
  }
  .scholarshipArea .btnBox {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .scholarshipArea {
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: 500%;
  }
}
/*# sourceMappingURL=home.css.map */