@charset "utf-8";

body, p {
    font-size: 0.9rem;
    line-height: 0.6rem;
    font-family: "Noto Sans KR", sans-serif;
}

h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 15px;
}


.b {
    font-weight: 500;
}


/******* LAYOUT ******/
.wrap {
    max-width: 90%;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.title_wrap {
    margin-bottom: 25px;
}
.title_wrap .title {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 15px;
    color: #003c7f;
    font-weight: 500;
    line-height: 1.7rem;
}
.title_wrap .sub_title {
    text-align: center;
    color: #000;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3rem;
    margin-bottom: 15px;
}

.sub_title.f_bold {
    font-weight: bold;
}

.sub_title.f_red {
    color: red;
}
.title_wrap ol {
    font-size: 1rem;
    width: fit-content;
    margin: 0 auto;
    line-height: 1.3rem;
}
.m_br {
    display: block;
}
.pc_br {
    display: none;
}

.number {
    font-size: 20px;
    line-height: 1.2rem;
    font-weight: 600;
}

article {
    padding-top: 100px;
    padding-bottom: 100px;
}



/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .wrap {
    height: 60px;
    display: flex;
    justify-content: space-between;
}
header .wrap h1 {
    display: block;
    width: 100px;
    height: 100%;
    background-image: url('../img/logo_w.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -100000000000em;
}
header .wrap h1 a {
    display: block;
    width: 100%;
    height: 100%;
}
/* header .wrap nav {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #252525;
    width: 100%;
    height: 0px;
    opacity: 0;
    transition: all 0.3s;
}
header .wrap nav.active {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #252525;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.3s;
} */
header .wrap nav {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    height: 0px;
    opacity: 0;
    transition: all 0.3s;
}
header .wrap nav.active {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.3s;
}
header .wrap nav ul {
    display: flex;
    width: 100%;
    flex-direction: column;

}
header .wrap nav ul li {
    display: none;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
}
header .wrap nav.active ul li {
    display: flex;
    align-items: center;
    opacity: 1;
    transition: all 0.3s;
}
header .wrap nav ul li a {
    color: #000000;
    width: 100%;
    height: 80px;
    display: block;
    border-bottom: 1px solid #e9e9e9;
    line-height: 80px;
    text-align: center;
}
header .wrap nav ul li a.select {
/* color: #003C7F; */
    color: #4BBEDC;
}
.tel_num {
    line-height: 66px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}







article.main {
    padding-top: 0px;
    padding-bottom: 0px;
}
.main {
    height: 100vh;
    background-image: url(../img/back.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.main .text {
    width: 100%;
    height: 210px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    background-color: rgba(0,0,0,0.1);
    padding: 10px;
}
.main .text p {
    font-size: 1.3em;
    line-height: 1.7rem;
    margin-bottom: 12px;
    color: #fff;
}
.main .img {
    width: auto;
    height: 70vh;
    position: absolute;
    right: 0;
    bottom: 0;
}
.main .img img {
    width: 100%;
    height: 100%;
}
.main button {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 48px;
}
.main button a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    line-height: 50px;
}
.main button a:hover {
    color:#003C7F;
}




/* PRICE */

.price ul li .memo {
    font-size: 10px;
}


h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 55px;
    color: #003C7F;
    font-weight: 500;
    line-height: 1.7rem;
}

.content {
    width: 100%;
}

.price ul {
    width: 100%;
    margin: 0 auto;
}
.price ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(150px, 200px));
    grid-auto-rows: auto;
    justify-content: center;
    gap: 10px;
}
.price ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    text-align: center;
    line-height: 1.2rem;
    font-size: 16px;
    font-weight: 400;
}
.price ul li .memo {
    font-size: 10px;
}



/* SAFETY */
.safety .img ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(50px, 160px));
    grid-auto-rows: auto;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}
.safety .img ul li {
    height: 164px;
    background: #D9D9D9;
}


/* A/S */
.as { 
    background: #f3f3f3;
}
.as .content ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, minmax(130px, 100%));
    grid-auto-rows: auto;
    justify-content: start;
    gap: 10px;
    padding: 15px;
}
.as .content ul li .title {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a23a33;
    height: 60px;
}
.as .content ul li p {
    background: #fff;
    height: fit-content;
    padding: 15px;
    line-height: 1.2rem;
}



/* PRODUCT */

.content_wrap .aircon.active, .content_wrap .system.active {
    overflow: hidden;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(140px, 200px));
    grid-auto-rows: auto;
    justify-content: start;
    gap: 10px;
}
/* .content_wrap .aircon.active img:after, .content_wrap .system.active img:after  {
    content: "";
    display: block;
    padding-bottom: 100%;
} */


.product .item h4 {
    color: #003C7F;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
.product .item h4 span {
    border: 1px solid #003C7F;
    display: inline-block;
    width: 80%;
    height: 0.001px;
    margin-top: 5px;
}
.product .item ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(100px, 140px));
    grid-auto-rows: 140px;
    justify-content: center;
    gap: 10px;
    margin-bottom: 100px;
}
.product .item ul li {
}
.product .item ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product .item ul li p {
    width: 100%;
    height: 42px;
    line-height: 42px;
    background: linear-gradient( to bottom, #006be3, #003c7f,#003c7f);
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
}







/* FLOW */
.flow .content ul li .title {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient( to bottom, #006be3, #003c7f,#003c7f);
    height: 100px;
}
.as .content ul li .title h3, .flow .content ul li .title h3 {
    width: fit-content;
    color: #fff;
    text-align: start;
    font-size: 16px;
    line-height: 1.5rem;
    margin-bottom: 0px;
}
.flow .content ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(135px, 266px));
    grid-auto-rows: 260px;
    justify-content: start;
    gap: 10px;
    padding: 15px;
}
.flow .content ul li p {
    background: #fff;
    height: 160px;
    padding: 15px;
    line-height: 1.2rem;
}






/* REFERENCE */
.reference .content > ul {
    gap: 20px;
    width: 100%;
    grid-template-columns: repeat(2, minmax(130px, 140px));
    grid-auto-rows: 140px;
    justify-content: center;
    gap: 10px;
}





/* FAQ */
.faq .faq_list {
    margin-bottom: 21px;
}
.faq .faq_list p {
    width: 100%;
    height: fit-content;
    margin: 0 auto;
    padding: 0 15px;
}
.faq .faq_list .q {
    background: linear-gradient( to bottom, #006be3, #003c7f,#003c7f);
    color: #fff;
    line-height: 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    min-height: 73px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.faq .faq_list.active .a {
    display: block;
    background-color: rgb(236, 236, 236);
    line-height: 1.4rem;
    font-size: 1rem;
    padding: 20px 15px;
}




/* CONTACT */
.contact .form_wrap {
    width: 100%;
    /* height: 880px; */
    background-color: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 67px 0;
    margin: 0 auto;
}
.contact .title {
    color: #fff;
}
.contact .form_wrap .content_wrap {
    width: 90%;
    margin: 0 auto;
}
.contact .form_wrap .content_wrap .input_feld {
    margin-bottom: 20px;
}
input, select {
    width: 100%;
    height: 60px;
    background-color: #fafafa;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #000;
}
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.checkbox p {
    line-height: 25px;
}


button, .button {
    border: none;
    width: 100%;
    height: 68px;
    background: linear-gradient( to bottom, #006be3, #003c7f,#003c7f);
    font-size: 18px;
    color: #fff;
}







/* FOOTER */
footer {
    background-color: #1a1a1a;
    color: #fff;
    height: 450px;
    padding-top: 36px;
}
footer .sns {
    display: none;
    justify-content: end;
    margin-bottom: 30px;
}
footer .sns ul {
    width: 180px;
    display: flex;
    justify-content: space-between;
}
footer .content .logo {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 270px;
    background-color: #fff;
    position: absolute;
    top: 150px;
}
footer .content .info {
    display: block;
    width: 100%;
    height: 240px;
    position: absolute;
    right: 0;
    top: 70px;
}
footer .content .info .low ul {
    width: 175px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
footer .content .info .address ul li {
    line-height: 1.8rem;
}
footer .content .copylight {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
}








/* FOOTER NAV */
.footer_back {
    display: block;
    width: 100%;
    height: 44px;
}
footer .sns ul li {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: rgb(236, 236, 236);
}
.footer_nav {
    display: block;
    width: 100%;
    height: 60px;
    background-color: #003c7f;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}
.footer_nav .wrap {
    width: auto;
    /* width: 150px; */
}
.footer_nav nav {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.footer_nav nav ul {
    display: flex;
    justify-content: space-between;
    flex-direction: initial;
}
.footer_nav nav ul li:nth-child(1), .footer_nav nav ul li:nth-child(4) {
    display: block;
}
.footer_nav nav ul li {
    display: block;
    width: 38px;
    height: 38px;
}
.footer_nav nav ul li:nth-child(5) {
    display: none;
}
.footer_nav nav ul li a {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.footer_nav nav ul li a img {
    display: block;
    width: 90%;
    height: 90%;
    border-radius: 50%;
}
.footer_nav nav ul li:nth-child(1) a {
    background-color: #fff;
    text-align: center;
    line-height: 36px;
}
.footer_nav nav ul li:nth-child(2) a {
    background-color: #fff;
}
.footer_nav nav ul li:nth-child(3) a {
    background-color: #fff;
    text-align: center;
    line-height: 32px;
}



.footer_nav nav ul li:nth-child(1) a svg {
    fill: #003C7F;
    width: 47%;
    transform: rotate(130deg);
}
.footer_nav nav ul li:nth-child(3) a svg {
    fill: #003C7F;
    width: 60%;
}
.footer_nav nav ul li:nth-child(3) a .icon_bg {
    background-color: #fff;
}
.footer_nav nav ul li:nth-child(4) a .icon_bg {
    background-color: transparent;
}
.footer_nav nav ul li:nth-child(4) a svg {
    fill: #003c7f;
    width: 80%;
}
footer .content .copylight p {
    text-align: center;
    font-weight: 100;
    font-size: 0.8rem;
}

.btn_name {
    display: none;
}


/* POPUP */
.popup_back.active .popup {
    width: 90%;
}
.popup_back .popup .content {
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-bottom: 150px;
    overflow: scroll;
    line-height: 1.2rem;
}