@charset "utf-8";

*{box-sizing: border-box;}
.mb-0{margin-bottom: 0 !important;}
.pb-0{padding-bottom: 0 !important;}

.page-section{
  width: 100%;
  margin-bottom: 100px;
}

.success-con{
  width: 100%;
  padding-top: 50px;
  margin-top: 60px;
  border-top: 1px solid #3e4c59;
}
.success-con > h3{
  font-size: 30px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
}
.success-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.success-box{
  display: block;
  width: 24%;
  padding: 30px 20px;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  transition: .3s;
}
.success-box > span{
  display: inline-block;
  min-width: 100px;
  padding: 10px;
  border-radius: 30px;
  background-color: #017ad4;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: .3s;
  margin-bottom: 30px;
}
.success-box > h3{
  font-size: 20px;
  color: #121212;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: .3s;
}
.success-box > p{
  font-size: 13px;
  color: #121212;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  margin-bottom: 30px;
  transition: .3s;
}
.success-box > h5{
  font-size: 13px;
  font-weight: 700;
  width: 100%;
  padding: 7px 15px;
  color: #fff;
  transition: .3s;
  margin-top: 5px;
  background-color: #017ad4;
}
.success-box:hover{
  background-color: #017ad4;
}
.success-box:hover > span{
  background-color: #fff;
  color: #000;
}
.success-box:hover > h3, .success-box:hover > p{
  color: #fff;
}
.success-box:hover > h5{
  background-color: #fff;
  color: #000;
}
@media(max-width:1199px){
  .success-con{
    padding-top: 30px;
    margin-top: 40px;
  }
  .success-con > h3{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .success-wrap{
    flex-direction: column;
  }
  .success-box{
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
  }
  .success-box > span{
    margin-bottom: 1rem;
  }
  .success-box > h3{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .success-box > p{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .success-box > h5{
    padding: 7px 10px 5px;
  }

}

.banner{
  width: 100%;
  height: 530px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner::after{
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.40) 50%, rgba(0, 0, 0, 0.00) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-caption{
  width: 100%;
  padding: 0 55px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.banner-caption > h5{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.banner-caption > h3{
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 1rem;
}
.banner-caption > p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.banner-caption > p > span{
  font-weight: 700;
}
@media(max-width:1199px){
  .banner{
    height: 330px;
  }
  .banner::after{
    width: 100%;
    height: 55%;
    background: linear-gradient(1800deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.40) 50%, rgba(0, 0, 0, 0.00) 100%);
    top: auto;
    bottom: 0;
  }
  .banner-caption{
    padding: 15px;
    transform: translateY(0);
    top: auto;
    bottom: 0;
  }
  .banner-caption > h5{
    font-size: 13px;
    margin-bottom: 10px;
  }
  .banner-caption > h3{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .banner-caption > p{
    font-size: 16px;
    line-height: 1.4;
  }
}

.page-tit{
  width: 100%;
  padding: 80px 15px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin-bottom: 1.5rem;
}
.page-tit::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.page-tit > h2{
  font-size: 48px;
  color: #323130;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.page-tit > h3{
  color: #0078D4;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.page-tit > h5{
  color: #323130;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.page-tit > p{
  color: #605e5c;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
span.gt{
  display: inline-block;
  background: linear-gradient(135deg, #0078d4, #40e0d0);
  background-clip: text;
  -webkit-text-fill-color:transparent;
  font-weight: 700;
}

.cont-tit{
  width: 100%;
  margin-bottom: 1.5rem;
}
.cont-tit.flex{
  display: flex;
  align-items: center;
}
.cont-tit > h3{
  font-size: 30px;
  font-weight: 700;
  color: #323130;
}
.cont-tit > p{
  font-size: 16px;
  color: #605e5c;
  font-weight: 400;
  margin-top: 1rem;
}
.cont-tit.flex > p{
  margin-left: 1rem;
  padding-left: 1rem;
  padding-top: 2px;
  position: relative;
  margin-top: 0;
}
.cont-tit.flex > p::before{
  content: "";
  width: 1px;
  height: 14px;
  background-color: #ccc;
  position: absolute;
  top: 4px;
  left: 2px;
}

/* hover */
.line-hover2, .line-hover3, .line-hover4{
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.line-hover2::before, .line-hover3::before, .line-hover4::before{
  content: "";
  width: 0%;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.line-hover2:hover::before, .line-hover3:hover::before, .line-hover4:hover::before{
  width: 100%;
}
.line-hover2::before{
  height: 2px;
}
.line-hover3::before{
  height: 3px;
}
.line-hover4::before{
  height: 4px;
}

.sv-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sv-box{
  width: calc((100% - 80px) / 5);
  background-color: #fff;
  border: 1px solid #e1dfdd;
  padding: 30px 20px;
  border-radius: 8px;
}
.sv-box:hover{
  border-color: #0078D4;
  box-shadow: 0 4px 16px rgba(0, 120, 212, 0.1);
  transform: translateY(-2px);
}
.sv-icon{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #f3f2f1;
  border-radius: 8px;
  transition: .3s;
}
.sv-icon > svg{
  width: 24px;
  height: 24px;
  fill: #0078D4;
  transition: .3s;
}
.sv-box:hover .sv-icon{
  background-color: #0078D4;
  transform: scale(1.05);
}
.sv-box:hover .sv-icon > svg{
  fill: #fff;
}
.sv-box > h5{
  font-size: 18px;
  color: #323130;
  font-weight: 600;
  line-height: 1.4;
}
.sv-box > h5 > span{
  font-weight: 800;
}

.grey-bg{
  width: 100%;
  padding: 60px 40px;
  background-color: #f8f9fa;
  border-radius: 12px;
}
.grey-bg.wt{
  background-color: #fff;
  border: 1px solid #e1dfdd;
}
.grey-tit{
  width: 100%;
  margin-bottom: 24px;
}
.grey-tit > h3{
  font-size: 30px;
  color: #323130;
  font-weight: 700;
}
.grey-cont{
  width: 100%;
  margin-bottom: 20px;
}
.grey-cont > p{
  font-size: 18px;
  color: #323130;
  font-weight: 400;
  line-height: 1.6;
}
.grey-cont > ul > li{
  font-size: 18px;
  color: #323130;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 5px;
}
.grey-cont > ul > li:last-child{
  margin-bottom: 0;
}
.bl-caption{
  width: 100%;
  background-color: #f0f8ff;
  border: 2px solid #0078D4;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.bl-caption > h5{
  font-size: 20px;
  color: #0078D4;
  font-weight: 700;
  margin-bottom: 10px;
}
.bl-caption > p{
  font-size: 16px;
  color: #323130;
  line-height: 1.6;
}

.case-bg{
  width: 100%;
  padding: 50px 40px;
  background-color: #fff;
  border: 1px solid #e1dfdd;
  border-radius: 12px;
}
.case-tit{
  width: 100%;
  margin-bottom: 40px;
}
.case-tit > h3{
  font-size: 30px;
  font-weight: 700;
  color: #323130;
}
.case-cont{
  width: 100%;
  margin-bottom: 40px;
}
.case-cont > p{
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  color: #605e5c;
}
p.etc{
  font-size: 14px;
  text-align: center;
  color: #605e5c;
  font-weight: 400;
}
.case-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.case-wrap.cw4 .case-box{
  width: 24%;
}
.case-box{
  width: 32%;
  padding: 60px 30px 60px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(0, 120, 212, 0.1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.12);
  transition: .3s;
}
.case-box.center{
  text-align: center;
  padding: 60px 30px 30px;
}
.case-box::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.case-box:hover{
  box-shadow: 0 16px 48px rgba(0, 120, 212, 0.2);
  border-color: rgba(0, 120, 212, 0.3);
  transform: translateY(-8px);
}
.case-box > span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
  position: absolute;
  top: -20px;
  left: 30px;
  z-index: 2;
}
.case-box.center > span{
  left: 50%;
  transform: translateX(-50%);
}
.case-box.center > h3{
  font-size: 18px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.case-box.center > h4{
  font-size: 15px;
  color: #605e5c;
  font-weight: 400;
  line-height: 1.6;
}
.case-box > h5{
  font-size: 18px;
  font-weight: 700;
  color: #0078D4;
  margin-bottom: 20px;
}
.case-box > ul > li{
  font-size: 16px;
  color: #323130;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.case-box > ul > li > span{
  font-weight: 700;
}
.case-box > ul > li:last-child{
  margin-bottom: 0;
}
.case-box > ul > li > h5{
  font-weight: 700;
  font-size: 16px;
}
.case-box.center > ul > li{
  font-size: 14px;
  padding-left: 10px;
  position: relative;
  text-align: left;
  margin-bottom: 8px;
  word-break: break-all;
}
.case-box.center > ul > li::before{
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0078D4;
  position: absolute;
  top: 9px;
  left: 0;
}
.case-box > p{
  font-size: 14px;
  color: #605e5c;
  font-weight: 400;
  text-align: right;
  width: 100%;
  padding: 0 30px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.result-caption{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border: 2px solid #0078D4;
  text-align: center;
}
.result-caption::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.result-icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulse 2s infinite;
}
.result-icon > svg{
  width: 30px;
  height: 30px;
  fill: #fff;
}
.result-caption > h3{
  font-size: 22px;
  color: #0078D4;
  font-weight: 700;
  margin-bottom: 1rem;
}
.result-caption > p{
  font-size: 18px;
  color: #323130;
  font-weight: 500;
  line-height: 1.6;
}
.result-caption > p > span{
  font-weight: 700;
}

@keyframes pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(0, 120, 212, 0.4);
  }
  70%{
    box-shadow: 0 0 0 20px rgba(0, 120, 212, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(0, 120, 212, 0);
  }
}

.work-table{
  width: 100%;
  margin-bottom: 1.5rem;
}
.work-table table{
  width: 100%;
  border: none;
  border-collapse:collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 120, 212, 0.1);
}
.work-table table thead th{
  padding: 20px 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
}
.work-table table tbody td{
  font-size: 15px;
  padding: 15px 10px;
  color: #323130;
  border-bottom: 1px solid #e1dfdd;
  text-align: center;
  line-height: 1.6;
}
.work-table table tbody td.rd{
  color: #d13438;
  font-weight: 600;
}
.work-table table tbody td.rd > span{
  font-weight: 800;
}
.work-table table tbody td.lt{
  text-align: left;
}
.work-table table tbody td span{
  font-weight: 600;
}
.work-table table tbody td ul li{
  margin-bottom: 8px;
}
.work-table table tbody td ul li:last-child{
  margin-bottom: 0;
}
.work-table table tbody td h5{
  font-weight: 600;
  font-size: 15px;
}
.work-table table tbody td h3{
  font-weight: 600;
  font-size: 15px;
  color: #0078D4;
}
.work-table table tbody tr:hover{
  background-color: rgba(0, 120, 212, 0.05);
}

.caption-bg{
  width: 100%;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 80px 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 120, 212, 0.1);
}
.caption-bg::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.caption-tit{
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
.caption-tit > h5{
  font-size: 30px;
  font-weight: 700;
  color: #323130;
}
.caption-tit > p{
  color: #605e5c;
  font-size: 16px;
  font-weight: 400;
  margin-top: 1.5rem;
}

.caption-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.caption-wrap.whole .caption-box{
  width: 100%;
}
.caption-wrap.thirds .caption-box{
  width: calc((100% - 60px) / 3);
}
.caption-box{
  width: calc((100% - 30px) / 2);
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0, 120, 212, 0.10);
  position: relative;
  transition: .3s;
}
.caption-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s ease;
}
.caption-box > span{
  display: flex;
  width: 40px;
  height: 40px;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
  box-shadow: 0 4px 12px 0 rgba(0, 120, 212, 0.30);
  position: absolute;
  left: 25px;
  top: -20px;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}
.caption-box > h3{
  font-size: 24px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.caption-box > h5{
  font-size: 20px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 1rem;
}
.caption-box > p{
  color: #323130;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.caption-box > p:last-child{
  margin-bottom: 0;
}
.caption-box > p > span{
  display: inline-block;
  background: linear-gradient(135deg, #0078d4, #40e0d0);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
}
.caption-box > ul > li{
  font-size: 15px;
  color: #323130;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
.caption-box > ul > li:last-child{
  margin-bottom: 0;
}
.caption-box > ul > li::before{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #666;
  position: absolute;
  top: 9px;
  left: 3px;
}
.caption-box > a{
  display: inline-block;
  padding: 12px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
  transition: .3s;
}
.caption-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
  border-color: rgba(0, 120, 212, 0.2);
}
.caption-box:hover::before{
  width: 100%;
}
.caption-box > a:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.3);
}

.alert-caption{
  width: 100%;
  padding: 20px;
  background-color: #fff8e1;
  border: 1px solid #ffa000;
  border-radius: 8px;
}
.alert-caption.rd{
  background-color: #ffebee;
  border: 1px solid #d13438;
}
.alert-caption > ul > li{
  font-size: 14px;
  color: #323130;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 5px;
}
.alert-caption > ul > li:last-child{
  margin-bottom: 0;
}

.wn-sect{
  width: 100%;
  padding: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff4e5 0%, #fff 100%);
  border: 2px solid #ff8c00;
  text-align: center;
}
.wn-sect > h3{
  font-size: 24px;
  color: #ff8c00;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.wn-sect > p{
  font-size: 18px;
  color: #323130;
  font-weight: 400;
  line-height: 1.8;
}
.wn-sect > p > span{
  font-weight: 700;
}

.vl-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.vl-box{
  width: calc((100% - 60px) / 4);
  background-color: #fff;
  padding: 24px;
  border: 1px solid #e1dfdd;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: .3s;
}
.vl-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #d13438 0%, #ff6b6b 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}
.vl-box:hover{
  border-color: #d13438;
  box-shadow: 0 4px 16px rgba(209, 52, 56, 0.1);
  transform: translateY(-2px);
}
.vl-box:hover::before{
  width: 100%;
}
.vl-box > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #d13438 0%, #ff6b6b 100%);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(209, 52, 56, 0.3);
}
.vl-box > h5{
  font-size: 16px;
  color: #323130;
  font-weight: 600;
}

.pm-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pm-box{
  width: 49%;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff4e5 0%, #ffffff 100%);
  border: 2px solid #ff8c00;
}
.pm-box > span{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #ff8c00 0%, #ffab40 100%);
  margin-bottom: 1rem;
}
.pm-box > ul > li{
  font-size: 16px;
  color: #323130;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 5px;
}
.pm-box > ul > li:last-child{
  margin-bottom: 0;
}
.pm-box > ul > li > span{
  color: #d13438;
  font-weight: 700;
}

.dt-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.dt-box{
  width: 24%;
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e1dfdd;
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.dt-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.dt-box:hover{
  border-color: #ff6b35;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}
.dt-box:hover::before{
  width: 100%;
}
.dt-box > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}
.dt-box > h5{
  font-size: 16px;
  color: #323130;
  font-weight: 600;
  margin-bottom: 10px;
}
.dt-box > p{
  font-size: 14px;
  color: #605e5c;
  line-height: 1.6;
}

.notice-caption > h3{
  font-size: 30px;
  font-weight: 700;
  color: #323130;
  text-align: center;
  margin-bottom: 40px;
}

/* media-query */

@media(min-width:1200px){
  .d-lg-block{display: block;}
  .d-lg-none{display: none;}

  .ani.up.delay{
      transition: 1s opacity 0.2s, 1s transform 0.2s;
  }
  .ani.up.delay2{
      transition: 1s opacity 0.5s, 1s transform 0.5s;
  }
  .ani.up.delay3{
      transition: 1s opacity 0.8s, 1s transform 0.8s;
  }
  .success-box > h3{
    min-height: 56px;
  }
}


@media(max-width:1199px){
  .d-block{display: block;}
  .d-none{display: none;}

  .mo-col{
    flex-direction: column;
  }
  .mo-col.afs{
    align-items: flex-start;
  }
  .icon-box.mo-col.afs > h5{
    margin: 10px 0;
  }

  .page-section{
    margin-bottom: 70px;
  }
  .page-tit{
    padding: 50px 15px;
  }
  .page-tit > h2{
    font-size: 24px;
  }
  .page-tit > h3{
    font-size: 18px;
  }
  .page-tit > h5{
    font-size: 18px;
  }
  .page-tit > p{
    font-size: 16px;
  }

  .cont-tit.flex{
    flex-direction: column;
    align-items: flex-start;
  }
  .cont-tit > h3{
    font-size: 24px;
  }
  .cont-tit.flex > p{
    line-height: 1.4;
    padding-left: 0;
    margin-left: 0;
    padding-top: 1rem;
    margin-top: 1rem;
  }
  .cont-tit.flex > p::before{
    display: none;
  }
  .cont-tit.flex > p::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 0;
  }
  .icon-box{
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .icon-box > span{
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    margin-right: 0;
  }
  .icon-box > h5{
    margin-bottom: 0;
    margin-left: 1rem;
    font-size: 16px;
  }
  .grey-box{
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .grey-box > h5{
    font-size: 20px;
    margin-bottom: 1rem;
  }
  .grey-box > p{
    font-size: 13px;
    line-height: 1.6;
  }
  .num-box{
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
  }
  .num-box > span{
    flex: 0 0 auto;
  }
  .num-box > p{
    line-height: 1.4;
  }

  .caption-bg{
    padding: 40px 20px;
  }
  .caption-tit > h5{
    font-size: 24px;
  }
  .caption-tit > p{
    line-height: 1.4;
    margin-top: 1rem;
  }
  .caption-box{
    width: 100%;
    padding: 30px 15px;
  }
  .caption-box > span{
    left: 15px;
  }
  .caption-box > h5{
    font-size: 18px;
  }
  .caption-box > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .caption-box > a{
    font-size: 13px;
    margin-top: 0;
  }
  .icon-wrap.half .icon-box{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .icon-wrap.half .icon-box > span{
    margin-bottom: 1rem;
  }
  .icon-wrap.half .icon-box > h5{
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .icon-box > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .icon-wrap.thirds .icon-box{
    width: 100%;
  }
  .icon-wrap.thirds .icon-box > span{
    margin-right: 1rem;
  }
  .caption-box > h3{
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .caption-txt{
    padding: 15px;
  }
  .caption-txt > p{
    font-size: 11px;
    line-height: 1.4;
  }
  .icon-wrap.line .icon-box{
    width: 100%;
  }
  .icon-wrap.line .icon-box > span{
    margin-bottom: 1rem;
  }
  .icon-txt{
    padding: 15px;
  }
  .icon-txt > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .caption-txt.blue > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .caption-etc{
    padding: 20px;
  }
  .caption-etc > h5{
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .caption-etc > p{
    font-size: 13px;
    line-height: 1.4;
  }

  .grey-box > h4{
    font-size: 18px;
    margin: 2rem 0 1rem;
  }
  .blue-box{
    padding: 20px;
  }
  .blue-box > h5{
    font-size: 16px;
    margin-bottom: 10px;
  }

  .ex-bg{
    padding: 30px 15px;
  }
  .ex-bg > p{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  .ex-wrap{
    flex-direction: column;
    margin-bottom: 0;
  }
  .ex-box{
    width: 100%;
    margin-bottom: 1rem;
  }
  .ex-box > h5{
    font-size: 16px;
  }
  .ex-box > ul > li{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .ex-box > ul > li::before{
    width: 3px;
    height: 3px;
  }
  .ex-txt{
    padding: 20px 10px;
  }
  .ex-txt > p{
    font-size: 13px;
  }

  .qna-caption.about{
    padding: 20px;
  }
  .qna-caption.about > h3{
    font-size: 18px;
  }
  .qna-caption.about > p{
    font-size: 13px;
    line-height: 1.4;
  }

  .ac-wrap{
    gap: 10px;
  }
  .ac-box{
    width: 100%;
    padding: 20px;
  }
  .ac-icon{
    width: 50px;
    height: 50px;
  }
  .ac-box > ul > li{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .ac-wrap.thirds .ac-box{
    width: 100%;
  }
  .ac-icon.circle{
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .ac-icon.circle > span{
    font-size: 20px;
  }

  .about-bg{
    padding: 40px 20px;
  }
  .abb-tit{
    margin-bottom: 30px;
  }
  .abb-tit > h3{
    font-size: 24px;
  }
  .abb-caption > h3{
    font-size: 20px;
    padding-left: 0;
  }
  .abb-caption > h3::before{
    display: none;
  }
  .abb-caption > h3 > span{
    padding-left: 0;
    margin-left: 0;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 18px;
  }
  .abb-caption > h3 > span::before{
    width: 20px;
    height: 1px;
    top: 0;
    left: 0;
    background-color: #0078D4;
  }
  .abb-caption > p{
    line-height: 1.4;
  }
  .abb-caption{
    margin-bottom: 1rem;
  }
  .abb-wrap{
    gap: 10px;
  }
  .abb-box{
    width: 100%;
    padding: 20px;
  }
  .abb-box > span{
    flex: 0 0 auto;
    margin-right: 10px;
  }
  .abb-box > h5{
    line-height: 1.4;
    font-size: 13px;
  }

  .rm-box{
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
  }
  .rm-box > h5{
    font-size: 16px;
    margin: 10px 0;
  }
  .rm-box > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .wn-caption{
    padding: 20px;
  }
  .wn-caption > ul > li{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .ect-bg{
    padding: 30px 20px;
  }
  .ect-bg > h3{
    margin-bottom: 1rem;
  }
  .ect-wrap{
    flex-direction: column;
  }
  .ect-box{
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 10px;
  }
  .ect-box:last-child{
    margin-bottom: 0;
  }
  .ect-icon{
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
  }
  .wn-caption.gr > h5{
    margin-bottom: 10px;
  }
  .wn-caption.gr > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .ar-bg{
    padding: 20px;
  }
  .ar-bg > h3{
    margin-bottom: 1rem;
  }
  .ar-wrap{
    flex-direction: column;
  }
  .ar-box{
    width: 100%;
    margin-bottom: 10px;
    padding: 20px 10px;
  }
  .ar-box:last-child{
    margin-bottom: 0;
  }
  .ar-box > span{
    margin: 0 auto 1rem;
  }

  .qna-tit{
    padding: 20px;
  }
  .qna-cont{
    padding: 20px;
  }
  .qna-cont > h3{
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .qna-cont > p{
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .qna-caption > h5{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .qna-caption > ul > li{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .qna-caption > ul.list > li::before{
    width: 3px;
    height: 3px;
    top: 7px;
  }
  .qna-caption{
    margin-bottom: 1rem;
  }
  .qna-btn-wrap{
    padding: 1rem 0;
    flex-wrap: wrap;
  }
  .qna-btn-wrap > a{
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }
  .qna-btn-wrap > a:last-child{
    margin-bottom: 0;
  }

  .caption-wrap.thirds .caption-box{
    width: 100%;
  }

  .work-caption{
    padding: 20px;
  }
  .work-caption > h3{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .work-caption > h5{
    font-size: 13px;
    line-height: 1.4;
  }
  .wq-bg{
    padding: 30px 15px;
  }
  .wq-cont{
    padding: 30px 20px;
    margin-bottom: 1rem;
  }
  .wqc-icon{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    flex: 0 0 auto;
  }
  .wqc-tit{
    margin-bottom: 1rem;
  }
  .wqc-tit > h3{
    font-size: 18px;
  }
  .wq-cont > p{
    font-size: 13px;
    line-height: 1.4;
  }

  .am-bg{
    padding: 20px;
  }
  .am-wrap{
    gap: 10px;
  }
  .am-box{
    width: 100%;
    padding: 30px 20px;
  }
  .am-box > span{
    margin-bottom: 1rem;
  }
  .am-box > ul > li{
    font-size: 13px;
    line-height: 1.4;
  }
  .qna-caption.am > h4{
    font-size: 13px;
    line-height: 1.4;
  }

  .work-table table thead th{
    font-size: 14px;
    padding: 15px 5px;
  }
  .work-table table tbody td{
    font-size: 13px;
    line-height: 1.4;
    padding: 15px 5px;
  }
  .work-table table tbody td h5{
    font-size: 13px;
    font-weight: 700;
  }
  .work-table table tbody td ul li{
    margin-bottom: 5px;
  }

  .case-bg{
    padding: 20px;
  }
  .case-tit{
    margin-bottom: 30px;
  }
  .case-cont{
    margin-bottom: 20px;
  }
  .case-tit > h3{
    font-size: 20px;
  }
  .case-cont > h5{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .case-cont > p{
    font-size: 13px;
    line-height: 1.6;
  }
  .case-cont > ul > li{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 15px;
  }
  .case-cont > ul > li::before{
    width: 4px;
    height: 4px;
  }
  .wn-caption.bl > p{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .case-cont > span{
    font-size: 13px;
    line-height: 1.4;
  }

  .close-bg{
    padding: 40px 20px;
  }
  .close-bg > h3{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .close-bg > p{
    font-size: 13px;
    line-height: 1.4;
  }

  .grey-bg{
    padding: 40px 20px;
  }
  .grey-tit{
    margin-bottom: 20px;
  }
  .grey-tit > h3{
    font-size: 24px;
  }
  .grey-cont > p{
    font-size: 16px;
  }
  .bl-caption{
    padding: 20px;
  }
  .bl-caption > h5{
    font-size: 16px;
  }
  .bl-caption > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .grey-cont > ul > li{
    font-size: 13px;
    line-height: 1.4;
  }
  .case-wrap{
    flex-direction: column;
  }
  .case-box{
    width: 100%;
    margin-bottom: 2rem;
    padding: 40px 15px 50px;
  }
  .case-box:last-child{
    margin-bottom: 0;
  }
  .case-box > ul > li{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .case-box > h5{
    margin-bottom: 1rem;
  }
  .case-box > span{
    width: 45px;
    height: 45px;
    left: 15px;
    font-size: 15px;
  }
  .case-box > p{
    font-size: 11px;
    padding: 0 15px 15px;
  }
  .case-box > ul > li > h5{
    font-size: 13px;
    margin-bottom: 3px;
  }
  .result-icon{
    width: 50px;
    height: 50px;
  }
  .result-caption > h3{
    font-size: 20px;
  }
  .result-caption > p{
    font-size: 16px;
    line-height: 1.4;
  }

  .sv-wrap{
    flex-direction: column;
    gap: 10px;
  }
  .sv-box{
    width: 100%;
    padding: 20px;
  }
  .sv-icon{
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
  }
  .sv-box > h5{
    font-size: 16px;
  }
  p.etc{
    font-size: 13px;
    line-height: 1.4;
  }

  .alert-caption > ul > li{
    font-size: 13px;
    line-height: 1.4;
  }

  .wn-sect{
    padding: 40px 20px;
  }
  .wn-sect > h3{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .wn-sect > p{
    font-size: 13px;
    line-height: 1.4;
  }

  .vl-wrap{
    gap: 8px;
  }
  .vl-box{
    width: calc((100% - 8px) / 2);
    padding: 20px 5px;
  }
  .vl-box > h5{
    font-size: 13px;
    line-height: 1.4;
  }
  .vl-box > span{
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .pm-wrap{
    flex-direction: column;
  }
  .pm-box{
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
  }
  .pm-box > span{
    font-size: 13px;
  }
  .pm-box > ul > li{
    font-size: 13px;
    line-height: 1.4;
  }
  .dt-wrap{
    flex-direction: column;
  }
  .dt-box{
    width: 100%;
    margin-bottom: 1rem;
    padding: 20px;
  }
  .dt-box:last-child{
    margin-bottom: 0;
  }
  .notice-caption > h3{
    font-size: 24px;
    margin-bottom: 30px;
  }
  .case-box.center{
    padding: 40px 20px 20px;
  }
  .case-box.center > h3{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .case-box.center > h4{
    font-size: 13px;
    line-height: 1.4;
  }

  .work-table table tbody td h3{
    font-size: 13px;
  }
  .case-wrap.cw4 .case-box{
    width: 100%;
  }
  .case-box.center > ul > li{
    font-size: 13px;
    padding-left: 8px;
    margin-bottom: 5px;
  }
  .case-box.center > ul > li::before{
    top: 7px;
  }

}
@media(max-width:600px){
  h2, h3, h5{
    line-height: 1.3;
  }
  p, li{
    line-height: 1.4;
  }
}

/* animation */

.ani.up{
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.ani.up.act{
    transform: translateY(0);
    opacity: 1;
}