@charset "utf-8";
/* clear */
.container {
    width: 1200px;
    margin: 0 auto;
}
.column-center {
    padding-bottom: 0;
}

/* common */
#main-index h3 {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    line-height: 135%;
    padding: 0;
}

/* visual */
#main-index .sec-visual {

}
#main-index .sec-visual .group {
    padding: 220px 0 0;
}
#main-index .sec-visual .inner {
    position: relative;
    height: 780px;
    background-repeat: no-repeat;
    background-position: right bottom;
    /*background: url('../imgs/visual.png') no-repeat right 50%;*/
}
#main-index .sec-visual .title {
    font-size: 50px;
    font-weight: bold;
    line-height: 135%;
    letter-spacing: -0.5px;
}
#main-index .sec-visual .summary {
    margin: 30px 0 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--font-color);
}
#main-index .sec-visual .link {
    display: flex;
    flex-wrap: wrap;
    width: 180px;
    gap: 5px;
}
#main-index .sec-visual .link a {
    display: block;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: 600;
    width: 100%;
    padding: 15px 14px 13px;
    border-radius: var(--radius);
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
#main-index .sec-visual .link a:hover {
    opacity: 0.7;
}
#main-index .sec-visual .link a.old {
    background-color: #f7f7f7;
    border-color: var(--line-color);
    color: var(--font-color);
}
#main-index .sec-visual .addr {
    width: 100px;
    background: #fff;
    border-radius: var(--radius);
    position: absolute;
    right: 0;
    bottom: 80px;
}
#main-index .sec-visual .addr ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#main-index .sec-visual .addr li {
    border-radius: var(--radius);
}
#main-index .sec-visual .addr li a {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 1s;
}
#main-index .sec-visual .addr li:first-child a {
    background: #1d1d1d;
    color: #fff;
}
@media screen and (max-width: 1300px) {
    #main-index .sec-visual .addr {
        right: 0;
        bottom: 80px;
    }
}

/* service */
#main-index .sec-service {
    background: url('../imgs/service-bg.png?v=1') no-repeat 50% 50% / cover;
    height: 980px;
    position: relative;
    padding: 140px 0;
    text-align: center;
}
#main-index .sec-service h3 {
    color: #fff;
    margin: 0 0 60px;
}
#main-index .sec-service ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 18px 20px;
}
#main-index .sec-service li {
    height: 250px;
    border-radius: 18px;
    background: #fff;
}
#main-index .sec-service li .icon {
    height: 50px;
    text-align: center;
    margin: 40px 0 20px;
}
#main-index .sec-service li .icon img {
    height: 50px;
}
#main-index .sec-service li .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 20px;
}
#main-index .sec-service li .summary {
    font-size: 16px;
    font-weight: 500;
    color: var(--font-color);
    line-height: 150%;
}

/* cs */
#main-index .sec-cs {
    padding: 140px 0;
    background: #F0F4FF;
}
#main-index .sec-cs h3 {
    margin: 0 0 50px;
}
#main-index .sec-cs .container > .content {
    display: flex;
    gap: 20px;
}
#main-index .sec-cs .review-wrap,
#main-index .sec-cs .inquiry-wrap {
    flex: 0 0 400px;
}
#main-index .sec-cs .call-wrap {
    flex: 1;
    height: 344px;
    border-radius: var(--radius);
    box-shadow: 0px 0px 8px 0px #16335b14;
    background: #fff;
    padding: 50px 30px 0;
    text-align: center;
}
#main-index .sec-cs .call-wrap h4 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
}
#main-index .sec-cs .call-wrap .num  {
    color: var(--main-color);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
#main-index .sec-cs .call-wrap .num  a {
    color: var(--main-color);
    text-decoration: none;
}
#main-index .sec-cs .call-wrap .work {
    font-size: 14px;
    color: var(--font-color);
    line-height: 150%;
    margin-bottom: 20px;
}
#main-index .sec-cs .call-wrap .work .title {
    font-size: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}
#main-index .sec-cs .call-wrap .work .title:before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--line-color);
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
}
#main-index .sec-cs .call-wrap .kakao {
    display: block;
    background: #ffe812;
    border-radius: var(--radius);
    width: 170px;
    height: 44px;
    line-height: 44px;
    color: #000;
    text-decoration: none;
    padding-left: 60px;
    margin: 0 auto;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    text-align: left;
    transition: all 0.3s;
}
#main-index .sec-cs .call-wrap .kakao:hover {
    opacity: 0.7;
}
#main-index .sec-cs .call-wrap .kakao:before {
    content: '';
    display: block;
    width: 27px;
    height: 31px;
    background: url('../imgs/cs-call-kakao@2x.png') no-repeat 0 0 / contain;
    position: absolute;
    left: 20px;
    top: 7px;
}
#main-index .sec-cs .inquiry-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#main-index .sec-cs .inquiry-wrap .tracking {
    height: 162px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    box-shadow: 0px 0px 8px 0px #16335b14;
    background: #fff;
    padding: 27px 20px 0;
}
#main-index .sec-cs .inquiry-wrap .tracking .cj {
    background: #f2f4f6;
    border-radius: var(--radius);
    margin-bottom: 12px;
}
#main-index .sec-cs .inquiry-wrap .tracking .cj img {
    height: 30px;
}
#main-index .sec-cs .inquiry-wrap .tracking .cj .inner {
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: 55px;
    gap: 10px;
}
#main-index .sec-cs .inquiry-wrap .tracking .cj .title {
    flex: 0 0 90px;
}
#main-index .sec-cs .inquiry-wrap .tracking .cj input[type=text] {
    border: none;
    outline: none;
    padding: 10px 10px;
    font-size: 12px;
    background: transparent;
    flex: 1;
}
#main-index .sec-cs .inquiry-wrap .tracking .cj button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    flex: 0 0 22px;
}
#main-index .sec-cs .inquiry-wrap .tracking .cj button img {
    height: 22px;
}
#main-index .sec-cs .inquiry-wrap .tracking .link {
    display: flex;
    height: 42px;
    line-height: 42px;
}
#main-index .sec-cs .inquiry-wrap .tracking .link li {
    flex: 1;
    position: relative;
}
#main-index .sec-cs .inquiry-wrap .tracking .link a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: block;
    transition: color 0.3s;
    text-align: center;
    color: var(--font-color);
}
#main-index .sec-cs .inquiry-wrap .tracking .link a:hover {
    color: #222;
}
#main-index .sec-cs .inquiry-wrap .tracking .link li:first-child:before {
    content: '';
    display: block;
    width: 1px;
    height: 21px;
    background: var(--line-color);
    position: absolute;
    right: 0;
    top: 10px;
}





