@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");

@import url("https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css");

@font-face {
    font-family: "BMEULJIRO";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/BMEULJIRO.woff")
        format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "GapyeongHanseokbong-Bold";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2312-1@1.1/GapyeongHanseokbong-Bold.woff2")
        format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Cafe24Oneprettynight";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Oneprettynight.woff")
        format("woff");
    font-weight: normal;
    font-style: normal;
}

/* header */
header {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border-bottom: 1px solid #ddd;
}
header nav ul {
    display: flex;
    gap: 30px;
}

header nav li a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* 모바일 메뉴 */

.overray.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    top: 0;
    left: 0;
}
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background-color: #f9f8f4;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.mobile-menu li {
    padding-left: 30px;
}
.mobile-menu li a {
    color: #333;
    font-size: 18px;
    font-weight: 800;
}
.mobile-menu.active {
    left: 0;
}

/* main */
/* 공통부 */
.title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 900;
    margin-bottom: 20px;
}
section {
    z-index: 5;
}
/* 고정 이미지 */
.fixedLeftImg {
    position: fixed;
    left: -10%;
    width: 15%;
    z-index: 1;
}
.fixedRightImg {
    position: fixed;
    right: -3%;
    top: 18%;
    width: 5%;
    transform: rotate(30deg);
    z-index: 1;
}
.fixedRightSmallImg {
    position: fixed;
    top: 25%;
    right: -5%;
    width: 10%;
    transform: rotate(50deg);
    z-index: 1;
}

/* 섹션 */
main .banner {
    margin-top: 20px;
}
main .banner figure {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}
main .banner figure img {
    width: 100%;
}
/* 캐치프라이즈*/
main .catch {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 160px;
    padding: 10px 0px;
    background: #222;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
main .catch h2 {
    font-size: 32px;
    color: #3e97fd;
    line-height: 1.5;
    font-family: "GapyeongHanseokbong-Bold";
}
main .catch h1 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}

/* 소개 */
main .intro {
    border: 1px solid #ddd;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: url("/img/intro_bg.jpg");
    background-size: cover;
}
main .intro h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
main .intro .intro_flex_box {
    display: flex;
    gap: 100px;
    align-items: center;
}
main .intro .intro_flex_box p {
    padding-top: 50px;
    padding-bottom: 80px;
    margin-left: 20px;
    line-height: 1.7;
    font-size: 18px;
    flex: 1.2;
    font-weight: 400;
    color: #333;
    word-break: keep-all;
    font-family: "Noto Sans KR", serif;
}
main .intro .intro_flex_box p strong {
    line-height: 1.3;
    font-size: 20px;
    /* color: #044389; */
    font-weight: 800;
    font-size: 24px;
}
main .intro .intro_flex_box figure {
    flex: 1;
}
main .intro .intro_flex_box figure img {
    width: 100%;
}

/* 주요업무 */
main .work {
    margin-top: 180px;
}
main .work ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
main .work ul li {
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}
main .work ul li h4 {
    font-size: 26px;
    font-weight: bold;
    background: #333;
    /* background: #ff8103; */
    /* background: #2e75c7; */
    /* background: #f4a261; */
    padding: 15px;
    flex: 1;
    color: #fff;
}
main .work ul li p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    flex: 4;
}
main .work figure img {
    width: 100%;
    border-radius: 5px;
}

/* 진행방법 */
main .proccess {
    margin-top: 180px;
    /* background: #eae9e9; */
    background: #f7f5f5;
    padding: 40px 0px;
    /* border-top: 1px solid #dfdfdf; */
}
main .proccess article {
}
main .proccess ul {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 10px;
}
main .proccess ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
main .proccess ul li > div {
    background: #fff;
    border-radius: 50%;
    padding: 20px;
}
main .proccess ul li img {
    width: 100px;
    height: 100px;
}
main .proccess ul li h4 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
main .proccess ul li p {
    font-size: 16px;
    text-align: center;
    word-break: keep-all;
    line-height: 1.5;
    font-weight: bold;
}

/* 견적 */
main .estimate {
    background: #333;
    padding: 20px 0px;
    border-bottom: #333;
}
main .estimate h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
main .estimate h3 strong {
    font-size: 24px;
    font-weight: 800;
    color: #d9c6b4;
}
main .estimate p {
    margin-top: 20px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

/* 갤러리 */
main .gallery {
    padding-top: 160px;
    padding-bottom: 140px;
}
.swiper {
    width: 100%;
    height: 100%;
    background: url("/img/gal_bg.png");
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #ccc;
}

main .review {
    margin-top: 120px;
}

/* 블로그 */
main .blog {
    padding: 20px 0px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    background: #f7f5f5;
    background: url("/img/gal_bg.png");
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
main .blog h3 {
    font-size: 28px;
    font-family: "Cafe24Oneprettynight";
    font-weight: 700;
    color: #333;
}
main .blog h3 .br_mo {
    display: none;
}
main .blog a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 15px;
    font-size: 20px;
    font-weight: 800;
    background: #fff;
    color: #333;
    border-radius: 15px;
    border: 2px solid #ddd;
    transition: 0.5s;
}
main .blog a img {
    width: 50px;
    height: 50px;
}
main .blog a:hover {
    background: #02c95a;
    color: #fff;
}

/* 미니 아이콘 */
main .addBox {
    border-radius: 5px;
}
main .addBox .bg {
    background: #f7f5f5;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    padding: 110px 0px;
}
main .addBox ul {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    max-width: 1280px;
}
main .addBox ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
main .addBox ul li i {
    font-size: 38px;
    background: #2e75c7;
    color: #fff;
    padding: 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}
main .addBox ul li p {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
}

main .bottomBanner {
    background: url("/img/bottom_bg.jpg");
    background-size: cover;
    background-position: center;
}
main .bottomBanner article {
    background: rgba(0, 0, 0, 0.6);
    padding-top: 140px;
    padding-bottom: 130px;
    text-align: center;
}
main .bottomBanner h3 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    font-family: "Cafe24Oneprettynight";
    margin-bottom: 60px;
}
main .bottomBanner h4 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
main .bottomBanner p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
main .bottomBanner p a {
    width: 420px;
    display: flex;
    background: #555;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    align-items: center;
}
main .bottomBanner p a i,
main .bottomBanner p a img {
    flex: 1;
}
main .bottomBanner p a span {
    flex: 10;
    font-size: 24px;
    font-weight: 800;
}

main .bottomBanner p a img {
    width: 35px;
    height: 35px;
}

main .bottomBanner p a:hover {
    border: 2px solid #dbcabb;
    color: #dbcabb;
}
main .bottomBanner p .kakao 

/* 푸터 */
footer {
    background: url("/img/gal_bg.png");
    background: #222;
    border-top: 1px solid #8a8a8a;
}
footer .flex {
    padding: 60px 0px;
    max-width: 1280px;
    margin: 0px auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
footer .flex .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .flex .info p {
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
    font-weight: bold;
    font-family: "Noto Sans KR", serif;
}
footer .flex .info p strong {
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
    font-weight: bold;
    vertical-align: middle;
}

@media screen and (max-width: 1400px) {
    main .fixedLeftImg,
    main .fixedRightImg,
    main .fixedRightSmallImg {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    header figure img {
        width: 80%;
    }
    header nav li a {
        font-size: 20px;
    }
    .title {
        font-size: 28px;
    }
    main .intro .intro_flex_box p {
        font-size: 16px;
        flex: 1.5;
    }
    main .work ul li h4 {
        flex: 0.6;
        font-size: 18px;
    }
    main .work ul li p {
        font-size: 15px;
    }
    main .proccess ul li img {
        width: 75px;
        height: 75px;
    }
    main .proccess ul li h4 {
        font-size: 20px;
    }
    main .proccess ul li p {
        font-size: 14px;
    }
    main .estimate p {
        font-size: 18px;
    }
    main .blog h3 {
        font-size: 22px;
    }
    main .blog a {
        font-size: 18px;
    }
    main .addBox ul li p {
        font-size: 16px;
    }
    main .bottomBanner h3 {
        font-size: 32px;
    }
    main .bottomBanner h4 {
        font-size: 28px;
    }
    main .bottomBanner p a span {
        font-size: 22px;
    }
}

@media screen and (max-width: 980px) {
    header figure {
        flex: 0.7;
    }
    header figure img {
        width: 100%;
    }
    .title {
        font-size: 26px;
    }
    header nav li a {
        font-size: 18px;
    }
    main .catch {
        margin-top: 100px;
    }
    main .catch h1 {
        font-size: 20px;
    }
    main .catch h2 {
        font-size: 28px;
    }
    main .intro {
        background-position: center;
    }
    main .intro .intro_flex_box p strong {
        font-size: 20px;
    }
    main .intro .intro_flex_box p {
        font-size: 16px;
        flex: 2.3;
        line-height: 1.5;
    }
    main .work {
        margin-top: 100px;
    }
    /* grid ver */
    /* main .work ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    main .work ul li {
        flex-direction: column;
        gap: 0px;
    }
    main .work ul li h4 {
        padding: 15px;
        width: 100%;
        flex: 1;
        text-align: center;
    }
    main .work ul li p {
        padding: 10px;
        word-break: break-all;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
        font-size: 16px;
    } */

    /* flex ver */
    main .work ul li {
        gap: 0px;
    }
    main .work ul li h4 {
        flex: 0.9;
        padding: 20px;
        font-size: 18px;
    }
    main .work ul li p {
        word-break: keep-all;
        padding: 0px 15px;
        line-height: 1.5;
        font-weight: 500;
    }

    main .proccess {
        margin-top: 100px;
    }
    main .proccess ul {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        place-content: center;
    }

    main .proccess ul li {
        gap: 10px;
    }
    main .proccess ul li > div {
        margin-bottom: 10px;
    }
    main .proccess ul li > div > img {
        width: 65px;
        height: 65px;
    }
    main .proccess ul li h4 {
        font-size: 18px;
    }
    main .estimate h3 strong {
        font-size: 20px;
    }
    main .estimate p {
        word-break: keep-all;
        font-size: 16px;
        line-height: 1.5;
        margin-top: 10px;
    }
    main .gallery {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    main .gallery .title {
        padding-left: 30px;
    }
    main .gallery .wrap {
        padding: 0px 0px;
    }
    main .gallery .wrap .swiper {
        padding: 10px;
    }
    main .blog {
        padding: 15px;
    }
    main .blog h3 {
        font-size: 18px;
    }

    main .blog a {
        gap: 10px;
    }
    main .blog a img {
        width: 30px;
        height: 30px;
    }

    main .addBox .bg {
        padding: 80px 20px;
    }
    main .addBox ul li p {
        font-size: 15px;
        font-weight: 500;
    }
    main .bottomBanner article {
        padding-top: 100px;
        padding-bottom: 90px;
    }
    main .bottomBanner h3 {
        font-size: 28px;
    }
    main .bottomBanner h4 {
        font-size: 24px;
    }
    footer > div > div img {
        width: 80%;
    }
    footer .flex .info p {
        font-size: 16px;
    }
    footer .flex .info p strong {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    header {
        margin: 0 auto;
    }
    header figure {
        flex: 1;
    }
    header figure img {
        width: 50%;
    }
    .menu-btn {
        display: block;
        font-weight: 600;
        color: #333;
        font-size: 34px;
        text-align: end;
        cursor: pointer;
    }
    .pc-menu {
        display: none;
    }
    .title {
        font-size: 24px;
    }
    main .catch {
        margin-top: 80px;
    }
    main .catch h1 {
        font-size: 18px;
    }
    main .catch h2 {
        font-size: 24px;
    }
    main .intro {
        /* background: url("/img/intro_background.jpg"); */
        background: #fff;
    }
    main .intro .intro_flex_box {
        display: block;
    }
    main .intro .intro_flex_box p strong {
        font-size: 18px;
    }
    main .intro .intro_flex_box p {
        margin-left: 0px;
        padding: 40px 30px;
    }
    main .work {
        margin-top: 80px;
    }
    main .work ul li h4 {
        flex: 1;
        padding: 20px 10px;
    }
    main .proccess {
        margin-top: 80px;
    }
    main .proccess ul li p {
        font-weight: 500;
    }
    main .blog {
        flex-direction: column;
        gap: 15px;
    }
    main .gallery {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    main .addBox ul li i {
        font-size: 24px;
    }
    main .addBox ul li p {
        font-size: 12px;
    }
    main .bottomBanner article {
        padding-top: 80px;
        padding-bottom: 70px;
    }
    main .bottomBanner h3 {
        font-size: 24px;
        margin-bottom: 50px;
    }
    main .bottomBanner h4 {
        font-size: 20px;
    }
    main .bottomBanner p a span {
        font-size: 18px;
    }
}
@media screen and (max-width: 600px) {
    .title {
        font-size: 22px;
    }
    header .menu-btn {
        font-size: 28px;
    }
    main .catch {
        margin-top: 60px;
    }
    main .catch h1 {
        font-size: 14px;
    }
    main .catch h2 {
        font-size: 22px;
    }
    main .intro .intro_flex_box p {
        font-size: 14px;
    }
    main .work {
        margin-top: 60px;
    }
    main .work ul li h4 {
        font-size: 16px;
        flex: 1.3;
        padding: 25px 10px;
    }
    main .work ul li p {
        font-size: 14px;
        line-height: 1.3;
        word-break: break-all;
    }
    main .proccess {
        margin-top: 60px;
        padding: 15px;
    }
    main .proccess ul {
        grid-template-columns: repeat(2, 1fr);
    }
    main .proccess ul li > div > img {
        width: 50px;
        height: 50px;
    }
    main .proccess ul li h4 {
        font-size: 16px;
    }
    main .proccess ul li p {
        font-size: 14px;
        line-height: 1.3;
    }
    main .estimate h3 strong {
        font-size: 18px;
    }
    main .estimate p {
        font-size: 14px;
    }
    main .blog h3 {
        font-size: 16px;
        text-align: center;
        line-height: 1.5;
    }
    main .blog h3 .br_mo {
        display: block;
    }
    main .blog a {
        font-size: 16px;
    }
    main .addBox ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    main .addBox .bg {
        padding: 60px 20px;
    }
    main .addBox ul li {
        flex-direction: row;
        width: 80%;
    }
    main .addBox ul li div {
        flex: 1;
    }
    main .addBox ul li p {
        flex: 7;
        font-size: 13px;
    }
    main .addBox ul li i {
        margin-bottom: 0px;
    }
    main .bottomBanner h3 {
        font-size: 20px;
        margin-bottom: 40px;
    }
    main .bottomBanner h4 {
        font-size: 18px;
    }
    main .bottomBanner p a {
        width: 320px;
    }
    footer .flex .logo {
        flex: 0.8;
    }
    footer .flex .info p {
        font-size: 14px;
    }
    footer .flex .info p strong {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .title {
        font-size: 20px;
    }
    main .catch {
        margin-top: 30px;
    }
    header .menu-btn {
        font-size: 22px;
    }
    main .catch h1 {
        font-size: 12px;
        text-align: center;
    }
    main .catch h2 {
        font-size: 15px;
    }
    main .intro .intro_flex_box p strong {
        font-size: 14px;
        text-align: center;
    }
    main .intro .intro_flex_box p {
        padding: 20px 15px;
        font-size: 12px;
        text-align: center;
    }
    main .work ul li {
        flex-direction: column;
    }
    main .work ul li h4 {
        font-size: 12px;
        padding: 10px 5px;
        flex: 1.5;
        width: 100%;
        text-align: center;
    }
    main .work ul li p {
        text-align: center;
        font-size: 12px;
        padding: 10px;
    }
    main .work {
        margin-top: 40px;
    }
    main .proccess {
        padding: 20px 0px;
        margin-top: 40px;
    }
    main .proccess ul {
        grid-template-columns: repeat(1, 1fr);
        padding: 0px;
        gap: 10px;
    }
    main .proccess ul li {
        flex-direction: row;
        padding: 5px 0px;
    }
    main .proccess ul li > div {
        margin-bottom: 0px;
        padding: 5px;
        display: none;
    }
    main .proccess ul li h4 {
        font-size: 12px;
        flex: 1.3;
        text-align: start;
        font-weight: 800;
    }
    main .proccess ul li p {
        font-size: 12px;
        width: 80%;
        /* display: none; */
        flex: 2;
        line-height: 1.5;
        /* word-break: break-all; */
    }
    main .proccess ul li > div > img {
        width: 25px;
        height: 25px;
    }
    main .estimate h3 strong {
        font-size: 14px;
    }
    main .estimate p {
        font-size: 12px;
    }
    main .gallery {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    main .gallery .title {
        padding-left: 15px;
    }
    main .blog h3 {
        font-size: 14px;
    }
    main .blog a {
        font-size: 14px;
    }
    main .addBox ul li {
        width: 90%;
    }
    main .addBox ul li i {
        font-size: 20px;
        padding: 15px;
    }
    main .addBox ul li p {
        font-size: 12px;
    }
    main .addBox .bg {
        padding: 40px 5px;
    }
    main .bottomBanner h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }
    main .bottomBanner h4 {
        font-size: 12px;
    }
    main .bottomBanner p a {
        width: 240px;
    }
    main .bottomBanner p a span {
        font-size: 14px;
    }
    main .bottomBanner p a img {
        width: 25px;
        height: 25px;
    }
    main .addBox ul li i {
        padding: 10px;
    }
    main .bottomBanner p a {
        width: 210px;
    }
    main .bottomBanner p a span {
        font-size: 14px;
    }
    footer .flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    footer > div > div {
        text-align: center;
    }
    footer > div > div img {
        width: 60%;
    }
    footer .flex .info p strong {
        font-size: 12px;
    }
    footer .flex .info p {
        font-size: 12px;
    }
    .mobile-menu {
        width: 200px;
    }
    .mobile-menu li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 320px) {
}
