@charset "utf-8";

main{width: 100%; overflow: hidden; word-break: keep-all;}
h3{font-size: 48px; font-weight: 700; margin-bottom: 40px; line-height: 120%;}
h5{font-size: 30px; font-weight: 700; color: #1e64dc; margin-bottom: 40px;}
.subtitle{font-size: 24px; font-weight: 400; line-height: 140%; }
.subtitle span{font-weight: 700;}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* *************main-visual **************/
.main-visual{
    width: 100%;
    background: url(../images/main/main-mainvisual-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.main-visual-wrap{
    width: 1320px;
    margin: auto;
}
.main-visual-wrap .text{
    padding-top: 220px;
}
.main-visual-wrap .text .title{
    font-size: 70px;
    font-weight: 700;
    width: 80%;
}
.main-visual-wrap .text .title span{
    display: block;
    margin-top: 24px;
    margin-bottom: 40px;
}
.main-visual-wrap .text .subtitle{
    margin-bottom: 80px;
}
.main-visual-wrap .text .subtitle .blue{
    color: #1e64dc;
}
/* btn */
.main-visual-wrap .buttons{
    display: flex;
    gap: 28px;
    padding-bottom: 120px;
}
.main-visual-wrap .buttons div{
    height: 64px;
    font-size: 24px;
    padding: 0 40px;
    border-radius: 32px;
    line-height: 60px;
}
/* btn-style */
.main-visual-wrap .buttons .register {
  background: #1e64dc;
  color: #fff;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border: 2px solid #1e64dc;
}
.main-visual-wrap .buttons .register::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: rgba(256, 256, 256, 1);
  transition: all 0.5s ease;
}
.main-visual-wrap .buttons .register:hover {
  border: 2px solid #1e64dc;
}
.main-visual-wrap .buttons .register:hover:after {
  left: 0;
  width: 100%;
}
.main-visual-wrap .buttons .register:active {
  top: 2px;
}
.main-visual-wrap .buttons .register a{
    color: #fff;
    display: block;
    height: 100%;
}
.main-visual-wrap .buttons .register:hover a{
    color: #1e64dc;
    font-weight: 700;
}
/*  */
.main-visual-wrap .buttons .googleworkspace{
    background-color: rgba(256, 256, 256, 0.5);
    border: 2px solid #34a853;
    transition: .3s;
}
.main-visual-wrap .buttons .googleworkspace:hover{
    background-color: #34a853;
}
.main-visual-wrap .buttons .googleworkspace a{
    color: #34a853;
    display: block;
    height: 100%;
}
.main-visual-wrap .buttons .googleworkspace:hover a{
    color: #fff;
}
.main-visual-wrap .buttons .gemini{
    background-color: rgba(256, 256, 256, 0.5);
    border: 2px solid #fbbc05;
    transition: .3s;
}
.main-visual-wrap .buttons .gemini:hover{
    background-color: #fbbc05;
}
.main-visual-wrap .buttons .gemini a{
    color: #fbbc05;
    display: block;
    height: 100%;
}
.main-visual-wrap .buttons .gemini:hover a{
    color: #fff;
}
.main-visual-wrap .buttons .ax-diagnosis{
    background-color: #FFFFFF;
    border: 2px solid #E53935;
    transition: .3s;
}
.main-visual-wrap .buttons .ax-diagnosis:hover{
    background-color: #E53935;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
}
.main-visual-wrap .buttons .ax-diagnosis a{
    color: #E53935;
    display: block;
    height: 100%;
}
.main-visual-wrap .buttons .ax-diagnosis:hover a{
    color: #fff;
}
.main-visual-wrap .buttons .ax-diagnosis:active{
    background-color: #D32F2F;
    border-color: #D32F2F;
}
/* main-viusal-img */
.main-visual .mainimg{
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float{
    0%   { transform: translateY(-50%); }
    50%  { transform: translateY(-60%); }
    100% { transform: translateY(-50%); }
}
/* *************cont1 -img cont**************/
.cont1{
    width: 100%;
}
.cont1-img-cont{
    width: 1320px;
    margin: auto;
    padding: 120px 0;
}
.cont1-img-cont ul{
    display: flex;
    gap: 40px;
    justify-content: center;
}
.cont1-img-cont li{
    width: 280px;
    overflow: hidden;
}
.cont1-img-cont li .imgbox{
    width: 98%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    transition: .3s;
    border: 2px solid #fff;
}
.cont1-img-cont li:hover .imgbox{
    border: 2px solid #1e64dc;
}
.cont1-img-cont li .imgbox img{
    transition: .3s;
    object-fit: cover;
}
.cont1-img-cont li:hover .imgbox img{
    transform: scale(130%);
}
.cont1-img-cont li .text{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.cont1-img-cont li:hover .text .title{
    color: #1e64dc;
}
.cont1-img-cont li .text .title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cont1-img-cont li .text p{
    font-size: 18px;
    padding-bottom: 1px;
    line-height: 120%;
}

/* *************cont1 -enterprise**************/
.cont1-enterprise{
    width: 100%;
    background-color: #f8f9fa;
    padding: 120px 0;
}
.enterprise-wrap{
    width: 1320px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.enterprise-wrap img{
    width: 32%;
    object-fit: cover;
}
.enterprise-wrap .text{
    text-align: right;
}
.enterprise-wrap .text h3 span{
    color: #1e64dc;
}

/* *************cont2 -change**************/
.cont2{
    background: #111;
    position: relative;
    overflow: hidden;
}
/* cont2-inner */
.cont2-inner {
    position: absolute;
    width: 100%;
    overflow: hidden;
}
.cont2-inner img{
    mix-blend-mode: lighten;
    z-index: 1;
}
/* cont2-wrap */
.cont2-wrap{
    position: relative;
    z-index: 2;
    width: 1320px;
    margin: auto;
    padding: 120px 0;
}
.cont2-wrap h3{
    color: #fff;
}
.cont2-wrap .subtitle{
    color: #fff;
}
.cont2-wrap .box-wrap{
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
}
.cont2-wrap .box-wrap li{
    width: calc(50% - 20px);
    background-color: rgba(34, 34, 34, 0.9);
    border: 3px solid #fff;
    border-radius: 10px;
    padding: 28px 36px;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s ease;
}
/* 기본 (숨김 상태) */
.cont2-wrap .box-wrap li::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 10px;

    background: linear-gradient(
        120deg,
        #fff,
        #4285f4,
        #4eff80,
        #498fff
    );
    background-size: 300% 100%;

    opacity: 0;
    /* border만 남기기 */
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}
/* hover */
.cont2-wrap .box-wrap li:hover{
    border-color: transparent;
}
.cont2-wrap .box-wrap li:hover::before{
    opacity: 1;
    animation: gradientMove 3s linear infinite;
}
/* 흐르는 애니메이션 */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.cont2-wrap .box-wrap li .imgwrap{
    width: 52px;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
} 
.cont2-wrap .box-wrap li .imgwrap img{
    object-fit: cover;
}
.cont2-wrap .box-wrap li .text{
    color: #fff;
}
.cont2-wrap .box-wrap li .text .title{
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 120%;
}
.cont2-wrap .box-wrap li .text .title span{
    font-weight: 700;
    transition: .3s;
}
.cont2-wrap .box-wrap li:hover .text .title span{
    color: #34a853;
}
.cont2-wrap .box-wrap li .text .sub{
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}

/* *************cont3 -dual engine core**************/
.cont3{
    width: 100%;
}
.cont3-wrap{
    width: 1320px;
    margin: auto;
    padding: 120px 0;
}
.cont3-wrap h5{
    text-align: center;
}
.cont3-wrap h3{
    text-align: center;
}
.cont3-wrap .subtitle{
    text-align: center;
    padding: 0 10%;
}
.cont3-wrap .subtitle .green{
    color: #34a853;
}
.cont3-wrap .subtitle .yellow{
    color: #fbbc05;
}
/* box-wrap */
.cont3-wrap .box-wrap{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.cont3-wrap .box-wrap .cont{
    width: calc(50% - 20px);
    background-color: #eee;
    border: 2px solid #34a853;
    border-radius: 10px;
    padding: 32px;
    transition: .3s;
}
.cont3-wrap .box-wrap .cont:hover{
    box-shadow: 1px 1px  20px #34a853b8;
}
.cont3-wrap .box-wrap .con2{
    border: 2px solid #fbbc05;
}
.cont3-wrap .box-wrap .con2:hover{
    box-shadow: 1px 1px  20px #fbbd05b6;
}
.cont3-wrap .box-wrap .why{
    display: inline-block;
    padding: 0 12px;
    background-color: #fff;
    border-radius: 13px;
    height: 26px;
    line-height: 24px;
    color: #34a853;
    font-weight: 700;
    margin-bottom: 16px;
}
.cont3-wrap .box-wrap .con2 .why{
    color: #fbbc05;
}
.cont3-wrap .box-wrap .title{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 28px;
}
.cont3-wrap .box-wrap .content{
    font-size: 18px;
    line-height: 140%;
}
.cont3-wrap .box-wrap .content span{
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
}
/* three cont */
.cont3-wrap .box-wrap .three-cont{
    margin-top: 32px;
}
.cont3-wrap .box-wrap .three-cont li{
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 20px;
    margin-bottom: 16px;
    transition: .3s;
}
.cont3-wrap .box-wrap .three-cont li:hover{
    box-shadow: 1px 1px 5px #b1b1b1;
}
.cont3-wrap .box-wrap .three-cont li:hover .img-box img{
    transform: scale(120%);
}
.cont3-wrap .box-wrap .three-cont li .img-box{
    width: 40%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont3-wrap .box-wrap .three-cont li .img-box img{
    object-fit: cover;
    height: 100%;
    transition: .3s;
}
.cont3-wrap .box-wrap .con1 .three-cont li.fir .img-box img{
    position: relative;
}
.cont3-wrap .box-wrap .three-cont li .text-box{
    width: 60%;
}
.cont3-wrap .box-wrap .three-cont li .text-box .title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 120%;
}
.cont3-wrap .box-wrap .three-cont li .text-box p{
    font-size: 16px;
    line-height: 140%;
}

/* *************cont4 - service/process**************/
/* cont-service */
.cont4{
    width: 100%;
}
.cont4-service{
    background:linear-gradient(to bottom, #4285f4, #34a853);
}
.cont4-service .inner{
    width: 1320px;
    padding: 120px 0;
    margin: auto;
}
.cont4-service h5{
    text-align: center;
    color: #fff;
}
.cont4-service h3{
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}
/* box-wrap */
.cont4-service .box-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 40px;
}
.cont4-service .box-wrap li{
    width: calc(50% - 20px);
    background-color: rgba(17, 17, 17, .3);
    border-radius: 10px;
    padding: 40px 30px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: .3s;
}
.cont4-service .box-wrap li:hover{
    border: 2px solid #1e67de;
    background-color: #fff;
}
.cont4-service .box-wrap li .icon-wrap{
    width: 54px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #4285f4;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont4-service .box-wrap li .text-wrap{
    color: #fff;
}
.cont4-service .box-wrap li .text-wrap .title{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: .3s;
    line-height: 120%;
}
.cont4-service .box-wrap li:hover .text-wrap .title{
    color: #1e64dc;
}
.cont4-service .box-wrap li .text-wrap p{
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}
.cont4-service .box-wrap li:hover .text-wrap p{
    color: #111;
}
/* cont4-process */
.process{
    width: 100%;
    background-color: #e1f0ff;
}
.process-wrap{
    width: 1320px;
    margin: auto;
    padding: 120px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.process-wrap > div{
    width: calc((100% - 80px) / 3);
}
.process-wrap .con{
    background-color: #fff;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 20px;
}
.process-wrap .con .img{
    width: 100%;
    height: 274px;
    padding: 10px;
    border-bottom: 2px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}
.process-wrap .con .img img{
    object-fit: cover;
    width: 100%;
}
.process-wrap .con .text{
    padding: 20px 30px 30px;
    position: relative;
}
.process-wrap .con .text .num{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: .3s;
}
.process-wrap .con:hover .text .num{
    color: #00cafe;
}
.process-wrap .con .text .name{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
}
.process-wrap .con .text p{
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
}
.process-wrap .con .text .right-arrow{
    position: absolute;
    right: 30px;
    bottom: 30px;
}

/* *************cont5 - tech/ offering**************/
.cont5 {
  background: #051469;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}
.cont5 .inner {
  margin: 0 auto;
  text-align: center;
}
/* 탭 버튼 */
.tab-btn-wrap {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.tab-btn {
  width: 320px;
  height: 60px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #1e64dc;
  cursor: pointer;
  font-weight: 700;
  font-size: 24px;
  color: #111;
}
.tab-btn.active {
  color: #fff;
  background: #1e64dc;
  border: 2px solid #1e64dc;
}
/* 텍스트 */
.ttitle {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}
.desc {
  font-size: 24px;
  line-height: 120%;
}
/* 슬라이드 */
.slide-wrap {
  overflow: hidden;
  margin-top: 80px;
  cursor: grab;
  user-select: none;
}
.slide-list {
  display: flex;
  gap: 40px;
}
.slide-list li {
  flex: 0 0 400px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.slide-list a {
  display: block;
  height: 100%;
}
.slide-list img {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  object-fit: cover;
}
.slide-list .bg{
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, .6);
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
}
.slide-list li:hover .bg{
    opacity: 1;
}
.slide-list .bg span {
  display: block;
  position: absolute;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}
/* 탭 컨텐츠 */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
/* 슬라이드바 */
.control-bar {
  width: 80%;
  height: 6px;
  background: rgba(255,255,255,.2);
  margin-top: 40px;
  position: relative;
  cursor: pointer;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.control-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px; /* 조절 가능 */
  height: 100%;
  background: #fff;
  cursor: grab;
}
/* *************cont6 - support**************/
.cont6{
    width: 100%;
}
.cont6-wrap{
    width: 1320px;
    margin: auto;
    padding: 120px 0;
}
.cont6-wrap h5{
    text-align: center;
}
.cont6-wrap h3{
    text-align: center;
}
.cont6-wrap p{
    text-align: center;
}
/* img-cont */
.cont6-wrap .img-cont {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont6-wrap .img-cont .con {
    width: 220px;
    margin-right: -20px;
    transition: transform .3s ease, opacity .3s ease;
}
.cont6-wrap .img-cont:hover .con {
    opacity: 0.6;
}
.cont6-wrap .img-cont .con:hover {
    transform: translateY(-6px);
    opacity: 1;
}
.cont6-wrap .img-cont .con .img-box {
    width: 100%;
    aspect-ratio: 1;
    border: 2px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.cont6-wrap .img-cont .con:hover .img-box {
    border-color: #2066dd;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.cont6-wrap .img-cont .con .img-box img {
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.cont6-wrap .img-cont .con:hover img {
    transform: scale(1.05);
}
.cont6-wrap .img-cont .con .text {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    transition: color .3s ease;
}
.cont6-wrap .img-cont .con:hover .text {
    color: #2065dd;
}
/* *************cont7 - last-btn-cont**************/
.cont7{
    width: 100%;
    background-color: #222;
}
.cont7-wrap{
    width: 1320px;
    margin: auto;
    padding: 120px 0;
}
.cont7-wrap h3{
    text-align: center;
    color: #fff;
}
.cont7-wrap h3 span{
    display: block;
    margin-top: 5px;
    color: #1e64dc;
}
.cont7-wrap .subtitle{
    text-align: center;
    color: #fff;
}
.cont7-wrap ul{
    margin: 48px 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cont7-wrap ul li img{
    transition: .3s;
    transform: scale(80%);
}
.cont7-wrap ul li:hover img{
    transform: scale(100%);
    filter: drop-shadow(0 0 5px #ffffff52);
}
.cont7-wrap .btn{
    width: 400px;
    height: 80px;
    border-radius: 4px;
    background: linear-gradient(to right, #4285f4, #1e64dc);
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
    z-index: 1;
    overflow: hidden;
}
.cont7-wrap .btn::after{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background: rgba(256, 256, 256, 1) ;
    transition: all .5s ease;
}
.cont7-wrap .btn:hover:after{
    left: 0;
    width: 100%;
}
.cont7-wrap .btn:active{
    top: 2px;
}
.cont7-wrap .btn a{
    display: block;
    height: 100%;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 76px;
}
.cont7-wrap .btn:hover a{
    color: #1e64dc;
}

@media(max-width:1400px){
    h3{font-size: 45px;}
    h5{font-size: 27px;}
    .subtitle{font-size: 21px;}

    /* main-visual **********************/
    .main-visual-wrap{
        width: 100%;
        padding: 0 3%;
    }
    .main-visual-wrap .text{
        padding-top: 160px;
    }
    .main-visual-wrap .text .title{
        font-size: 58px;
    }
    .main-visual-wrap .text .title span{
        margin: 18px 0 32px;
    }
    .main-visual-wrap .text .subtitle{
        margin-bottom: 64px;
    }
    .main-visual-wrap .buttons{
        padding-bottom: 100px               ;
    }
    .main-visual-wrap .buttons div{
        font-size: 21px;
    }
    .main-visual .mainimg{
        right: 2%;
        width: 300px;
    }
 
    /* cont1 */
    .cont1-img-cont{
        width: 100%;
        padding: 100px 3%;
    }
    .cont1-img-cont li .text .title{
        font-size: 21px;
    }
    .cont1-img-cont li .text p{
        font-size: 15px;
    }
    /* cont */
    .cont1-enterprise{
        padding: 100px 0;
    }
    .enterprise-wrap{
        width: 100%;
        padding: 0 3%;
    }
    /* cont2 */
    .cont2-wrap{
        width: 100%;
        padding: 100px 3%;
    }
    .cont2-wrap .box-wrap li{
        padding: 20px 32px;
    }
    .cont2-wrap .box-wrap li .imgwrap{
        margin-bottom: 12px;
    }
    .cont2-wrap .box-wrap li .text .title{
        font-size: 21px;
        margin-bottom: 12px;
    }
    .cont2-wrap .box-wrap li .text .sub{
        font-size: 15px;
    }
    /* cont3 */
    .cont3-wrap{
        width: 100%;
        padding: 100px 3%;
    }
    .cont3-wrap .box-wrap{
        margin-top: 64px;
        gap: 20px;
    }
    .cont3-wrap .box-wrap .cont{
        width: calc(50% - 10px);
        padding: 20px;
    }
    .cont3-wrap .box-wrap .why{
        font-size: 15px;
    }
    .cont3-wrap .box-wrap .title{
        font-size: 27px;
    }
    .cont3-wrap .box-wrap .content{
        font-size: 16px;
        height: 120px;
    }
    .cont3-wrap .box-wrap .content span{
        margin-bottom: 8px;
    }
    .cont3-wrap .box-wrap .three-cont li .text-box .title{
        font-size: 21px;
        margin-bottom: 8px;
    }
    .cont3-wrap .box-wrap .three-cont li .text-box p{
        font-size: 15px;
    }
    /* cont4 */
    .cont4-service .inner{
        width: 100%;
        padding: 100px 3%;
    }
    .cont4-service h3{
        margin-bottom: 40px;
    }
    .cont4-service .box-wrap{
        gap: 20px;
    }
    .cont4-service .box-wrap li .text-wrap .title{
        font-size: 27px;
    }
    .cont4-service .box-wrap li .text-wrap p{
        font-size: 15px;
    }
    /* cont4-process */
    .process-wrap{
        width: 100%;
        padding: 100px 3%;
        gap: 20px
    }
    .process-wrap > div{
        width: calc((100% - 40px) / 3);
    }
    .process-wrap .con .text .num{
        font-size: 15px;
    }
    .process-wrap .con .text .name{
        font-size: 27px;
        max-block-size: 20px;
    }
    .process-wrap .con .text p{
        font-size: 21px;
    }
    /* cont5 */
    .cont5{
        padding: 100px 0;
    }
    .tab-btn-wrap{
        gap: 20px;
        margin-bottom: 40px;
    }
    .tab-btn{
        width: 280px;
        font-size: 21px;
    }
    .title{
        font-size: 45px;
        margin-bottom: 20px;
    }
    .desc{
        font-size: 21px;
    }
    .slide-list li{
        flex: 0 0 360px;
    }
    /* cont6 */
    .cont6-wrap{
        width: 100%;
        padding: 100px 3%;
    }
    .cont6-wrap .img-cont .con .text{
        font-size: 27px;
    }
    /* cont7 */
    .cont7-wrap{
        width: 100%;
        padding: 100px 3%;
    }
    .cont7-wrap ul{
        margin: 32px 40px;
    }
    .cont7-wrap ul li img{
        transform: scale(70%);
    }
    .cont7-wrap ul li:hover img{
        transform: scale(80%);
    }
    .cont7-wrap .btn{
        height: 64px;
        width: auto;
        display: inline-block;
    }
    .cont7-wrap .btn a{
        padding: 0 80px;
        line-height: 62px;
        font-size: 27px;
    }
}
@media(max-width:1000px){
    h3{font-size: 40px; margin-bottom: 32px;}
    h5{font-size: 24px; margin-bottom: 28px;}
    .subtitle{font-size: 18px;}
    /* main */
    .main-visual-wrap .text{
        padding-top: 140px;
    }
    .main-visual-wrap .text .title{
        font-size: 50px;
    }
    .main-visual-wrap .text .subtitle{
        margin-bottom: 48px;
    }
    .main-visual-wrap .buttons{
        padding-bottom: 80px;
        gap: 20px;
    }
    .main-visual-wrap .buttons div{
        font-size: 18px;
        padding: 0 24px;
        height: 52px;
        line-height: 48px;
    }
    .main-visual .mainimg{
        width: 260px;
    }
    /* cont1{ */
    .cont1-img-cont ul{
        gap: 20px;
    }
    /* cont2 */
    .cont2-wrap .box-wrap{
        margin-top: 48px;
        gap: 20px;
    }
    .cont2-wrap .box-wrap li{
        width: calc(50% - 10px);
        padding: 20px;
    }
    .cont2-wrap .box-wrap li .text .title{
        font-size: 18px;
    }
    /* .cont3 */
    .cont3-wrap .subtitle{
        padding: 0;
    }
    .cont3-wrap .box-wrap{
        margin-top: 48px;
    }
    .cont3-wrap .box-wrap .three-cont li{
        display: block;
        min-height: 390px;
    }
    .cont3-wrap .box-wrap .three-cont li .img-box{
        aspect-ratio: 1.5;
        width: 100%;
        margin-bottom: 12px;
    }
    .cont3-wrap .box-wrap .con1 .three-cont li.fir .img-box img{
        left: 0;
    }
    .cont3-wrap .box-wrap .three-cont li .text-box{
        width: 100%;
    }
    /* cont3 */
    .cont4-service .box-wrap li{
        padding: 20px;
        gap: 20px;
    }
    .cont4-service .box-wrap li .text-wrap .title{
        font-size: 24px;
        margin-bottom: 16px;
    }
    /* cont5 */
    .process-wrap .con .img{
        height: 200px;
    }
    .process-wrap .con .text{
        padding: 20px;
    }
    .process-wrap .con .text .name{
        font-size: 24px;
        margin-bottom: 16px;
        max-block-size: none;
    }
    .process-wrap .con .text p{
        font-size: 18px;
        width: 90%;
    }
    .process-wrap .con .text .right-arrow{
        right: 16px;
        bottom: 20px;
        width: 8px;
    }
    /*cont5 */
    .tab-btn{
        font-size: 18px;
        width: 200px;
        height: auto;
        padding: 10px 0;
    }
    .ttitle{
        font-size: 40px;
        margin-bottom: 32px;
    }
    .desc{
        font-size: 18px;
    }
    .slide-wrap{
        margin-top: 64px;
    }
    .slide-list{
        gap: 20px;
    }
    /* .cont6 */
    .cont6-wrap .img-cont .con{
        width: calc(100% / 5 );
    }
    .cont6-wrap .img-cont .con .text{
        font-size: 21px;
        margin-top: 16px;
    }
    /* cont7 */
    .cont7-wrap .btn{
        height: auto;
    }
    .cont7-wrap .btn a{
        height: auto;
        font-size: 24px;
        padding: 10px 80px 12px;
        line-height: normal;
    }
}
@media(max-width:800px){
    h3{font-size: 36px; margin-bottom: 28px; text-align: center;}
    h5{font-size: 21px; margin-bottom: 24px; text-align: center;}
    .subtitle{font-size: 18px; text-align: center;}
    /* mainvisual */
    .main-visual-wrap .text .title{
        width: 100%;
        font-size: 40px;
        position: relative;
        z-index: 1;
        text-align: center;
    }
    .main-visual-wrap .text .subtitle{
        font-size: 16px;
        position: relative;
        z-index: 1;
    }
    .main-visual .mainimg{
        right: 1%;
    }
    .main-visual .mainimg img{
        z-index: 0;
        width: 100%;
    }
    .main-visual .buttons{
        flex-wrap: wrap;
        gap: 12px;
    }
    .main-visual .buttons div{
        width: 100%;
        text-align: center;
    }
    /* cont1 */
    .cont1-img-cont ul{
        gap: 12px;
    }
    /* cont1-enterprise */
    .enterprise-wrap{
        display: block;
    }
    .enterprise-wrap .text{
        text-align: center;
    }
    .enterprise-wrap img{
        width: 70%;
        margin-bottom: 20px;
        left: 15%;
        position: relative;
    }
    /* cont1 */
    .cont1-img-cont ul{
        flex-wrap: wrap;
    }
    .cont1-img-cont ul li{
        width:calc(50% - 10px);
    }
    /* cont2 */
    .cont2-wrap .box-wrap{
        gap: 12px;
    }
    .cont2-wrap .box-wrap li{
        width: calc(50% - 6px);
    }
    /* cont3 */
    .cont3-wrap .box-wrap{
        display: block;
    }
    .cont3-wrap .box-wrap .cont{
        width: 100%;
    }
    .cont3-wrap .box-wrap .con1{
        margin-bottom: 12px;
    }
    .cont3-wrap .box-wrap .content{
        height: auto;
    }
    .cont3-wrap .box-wrap .three-cont li{
        display: flex;
        min-height: auto;
    }
    .cont3-wrap .box-wrap .three-cont li .img-box{
        aspect-ratio: 1;
        margin-bottom: 0;
    }
    /* cont4 */
    .cont4-service .box-wrap{
        gap: 12px;
    }
    .cont4-service .box-wrap li{
        width: calc(50% - 6px);
        padding: 20px 12px;
        gap: 12px;
    }
    .cont4-service .box-wrap li .text-wrap .title{
        font-size: 21px;
        margin-bottom: 12px;
    }
    /* cont5 */
    .process-wrap{
        gap: 12px;
    }
    .process-wrap h5{
        text-align: left;
    }
    .process-wrap h3{
        text-align: left;
    }
    .process-wrap > div{
        width: calc((100% - 12px) / 2);
    }
    .process-wrap .con .text .name{
        font-size: 21px;
        max-block-size: none;
    }
    .process-wrap .con .text p{
        font-size: 15px;
    }
    /* cont5 */
    .ttitle{
        font-size: 36px;
    }
    .desc{
        padding: 0 10px;
    }
    .slide-list li{
        flex: 0 0 280px;
    }
    /* cont6 */
    .cont6-wrap .img-cont{
        margin-top: 64px;
    }
    .cont6-wrap .img-cont .con{
        width: calc(120% / 5);
    }
    /* cont7 */
    .cont7-wrap ul{
        margin: 32px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .cont7-wrap ul li{
        width: calc((100% - 70px) / 8);
    }
    .cont7-wrap ul li img{
        transform: scale(100%);
        width: 100%;
        aspect-ratio: 1
        ;
        
    }
}
@media(max-width:520px){
    .main-visual-wrap .text .title{
        font-size: 36px;
    }
    .main-visual-wrap .text .title span{
        margin: 10px 0;
    }
}
@media(max-width:480px){
    h3{font-size: 30px; margin-bottom: 24px; text-align: left;}
    h5{font-size: 18px; margin-bottom: 20px; text-align: left;}
    /* main */
    .main-visual-wrap .text .title{
        font-size: 32px;
        text-align: left;
        line-height: 120%;
    }
    .main-visual-wrap .text .title span{
        display: inline;
    }
    .main-visual-wrap .text .subtitle{
        text-align: left;
    }
    .main-visual-wrap .buttons div{
        font-size: 16px;
    }
    .main-visual .mainimg{
        width: 50%;
    }
    .enterprise-wrap img{
        width: 100%;
        left: auto;
    }
    .enterprise-wrap .text .subtitle{
        text-align: left;
    }
    .cont2-wrap .subtitle{
        text-align: left;
    }
    .cont2-wrap .box-wrap li{
        width: 100%;
        
    }
    .cont3-wrap .box-wrap .cont{
        padding: 12px;
    }
    .cont3-wrap .box-wrap .three-cont li{
        display: block;
    }
    .cont3-wrap .box-wrap .three-cont li .img-box{
        aspect-ratio: 1.5;
        margin-bottom: 12px;
    }
    .cont4-service .box-wrap li{
        width: 100%;
    }
    .process .con .img{
        height: 180px;
    }
    .tab-btn-wrap{
        gap: 12px;
    }
    .tab-btn{
        font-size: 16px;
        width: 46%;
    }
    .slide-list li{
        flex: 0 0 200px;
    }
    .ttitle{
        font-size: 30px;
        margin-bottom: 24px;
    }
    .cont6-wrap .img-cont{
        flex-wrap: wrap;
        gap: 12px;
    }
    .cont6-wrap .img-cont .con{
        width: 33%;
    }
    .cont6-wrap .img-cont .con .text{
        font-size: 18px;
    }
    .cont7-wrap .btn a{
        font-size: 20px;
    }

}
