@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    word-break: keep-all;
    color: #343434;
}

.old-standard-tt-regular {
    font-family: "Old Standard TT", serif;
    font-weight: 400;
    font-style: normal;
}

.old-standard-tt-bold {
    font-family: "Old Standard TT", serif;
    font-weight: 700;
    font-style: normal;
}

.old-standard-tt-regular-italic {
    font-family: "Old Standard TT", serif;
    font-weight: 400;
    font-style: italic;
}

:root {
    --main: #333333;
    --sub: #292a2e;
    --bt1: #555555;
    --bt2: #888888;
    --h: 90px;
}

h2,
h3 {
    font-family: "Merriweather", sans-serif, "Pretendard Variable", Pretendard,
        -apple-system, BlinkMacSystemFont, system-ui, Roboto;
    /* font-family: "Old Standard TT", "Pretendard Variable", Pretendard,
    -apple-system, BlinkMacSystemFont, system-ui, Roboto; */
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

body,
html {
    scroll-behavior: smooth;
}

p {
    line-height: 1.5;
}

.point {
    display: inline-block;
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    background: linear-gradient(to top, #e85a14 35%, transparent 35%);
}

button {
    appearance: none;
    border: none;
    display: block;
    outline: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

a {
    display: inline-block;
    color: inherit;
}

i {
    font-style: normal;
}

video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main {
    position: relative;
    font-family: "Pretendard Variable", Pretendard, -apple-system,
        BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
        "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    position: relative;
    background: #f3f0ec;
}

.fix-cont {
    background-color: #e85a14;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    position: fixed;
    z-index: 10;
    bottom: 5rem;
    right: 4vw;
    cursor: pointer;
    align-content: center;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
    transition: 0.3s;
}

.fix-cont:hover {
    scale: 1.06;
}

.fix-cont a {
    display: block;
    height: 100%;
    color: white;
    letter-spacing: -0.15px;
    text-align: center;
    align-content: center;
    font-size: 1rem;
    font-weight: 500;
}

.m-header {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.m-header .m-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.m-header .m-logo img {
    max-width: 46px;
    transform: translateX(-0.55rem);
}

nav.pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 3px 16px #0000000c;
    /* background: #faf7f0; */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

header .header-wrap {
    display: flex;
    align-items: center;
    height: var(--h);
    justify-content: space-between;
    margin-inline: 2vw;
}

header .header-wrap .call {
    display: inline-block;
    border-radius: 5rem;
    padding: 0.5rem 0.875rem;
    font-size: 13px;
    background: #e85a14;
    color: white;
    align-items: center;
    gap: 0.225rem;
}

header .header-wrap .call * {
    color: white;
    font-size: 13px;
}

header .header-wrap .logo {
    position: relative;
    z-index: 9999;
}

header .header-wrap .logo a {
    width: clamp(2rem, 3.5vw, 4rem);
    position: relative;
    display: block;
}

header .header-wrap .pc ul {
    display: flex;
    gap: 3.8vw;
    flex: 1;
}

nav.pc>ul:first-of-type {
    justify-content: flex-start;
}

nav.pc>ul:last-of-type {
    justify-content: flex-end;
}

header .header-wrap .pc ul li {
    position: relative;
}

header .header-wrap .pc>ul>li:hover>a {
    color: #e85a14;
}

header .header-wrap .pc ul li a span {
    display: block;
    text-align: center;
    font-weight: inherit;
}

header .header-wrap .pc ul li:hover a span {
    opacity: 0;
}

header .header-wrap .pc ul li a {
    position: relative;
    color: var(--main);
    padding: 1rem;
    width: 100%;
    height: 100%;
    font-size: 1.125rem;
    transition: 0.2s;
    text-align: center;
}

header .header-wrap .pc>ul>li>a::before {
    display: block;
    content: attr(data-title);
    position: absolute;
    inset: 0;
    padding: 1rem;
    font-size: inherit;
    color: inherit;
    text-align: center;
    opacity: 0;
}

header .header-wrap .pc ul li:hover a::before {
    opacity: 1;
}

header .header-wrap .pc ul li a.on {
    font-weight: 700 !important;
}

header .header-wrap .h_toggle {
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    padding: 0.55rem 1rem;
    border-radius: 0.5rem;
    transition: 0.3s;
}

header .header-wrap .h_toggle:hover {
    background: #e85a14;
    color: white;
}

header .header-wrap .h_toggle:hover p {
    color: white;
    transition: 0.3s;
}

header .header-wrap .ham {
    appearance: none;
    padding: 1rem;
    outline: none;
    border: none;
    display: block;
    background: transparent;
    cursor: pointer;
}

header .header-wrap .mob {
    position: fixed;
    transform: translateX(100%);
    display: block;
    overflow: hidden;
    height: 100vh;
    background: #333;
    transition: 0.5s;
    z-index: -1;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

header .header-wrap .mob.on {
    visibility: visible;
    z-index: 999;
    opacity: 1;
    display: block;
    transform: translateX(0%);
}

header .header-wrap .mob .mob-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .header-wrap .mob.on .mob-wrap {
    opacity: 1;
}

header .header-wrap .mob .mob-wrap .m-close {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 1rem;
    /* display: none; */
    appearance: none;
    outline: none;
    border: none;
    display: block;
    background: transparent;
    cursor: pointer;
}

header .header-wrap .mob .mob-wrap ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 2rem;
}

header .header-wrap .mob .mob-wrap ul li {}

header .header-wrap .mob .mob-wrap ul li a {
    display: flex;
    justify-content: space-between;
    padding-block: 1rem;
    font-size: 1rem;
    width: 100%;
    color: white;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid white;
}

header .header-wrap .mob .mob-wrap ul li a span {
    display: inline-block;
    color: inherit;
    font-size: inherit;
    padding-right: 1rem;
}

header .header-wrap .mob .mob-wrap .sns-wrap {
    display: flex;
    gap: 0.25rem 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.1rem;
    padding-inline: 2rem;
}

header .header-wrap .mob .mob-wrap .sns-wrap a {
    padding: 1rem;
    font-size: 15px;
    text-decoration: underline;
    color: white;
}

.main {
    section {
        margin-inline: 2%;
    }

    .m1 {
        margin-inline: 0;
    }

    .m1 .swiper-slide {
        height: 100vh;
        width: 100%;
        position: relative;
    }

    .m1 .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .m1 .swiper-slide .desc {
        position: absolute;
        bottom: 8%;
        left: 0;
        width: 100%;
        margin-inline: 2%;
        color: white;
        overflow: hidden;
        opacity: 0.8;
    }

    .m1 .swiper-slide .desc h3 {
        overflow: hidden;
    }

    .m1 .swiper-slide .desc h3 span {
        font-family: "Merriweather", serif;
        animation: showUp 1.2s 1s forwards;
        overflow: hidden;
        display: inline-block;
        font-size: max(2rem, 4.375vw);
        line-height: 1.25;
        opacity: 0;
        font-weight: 600;
        color: white;
    }

    .m1 .swiper-slide .desc p {
        font-size: max(1rem, 1.146vw);
        padding-right: 10%;
        color: white;
        font-weight: 300;
        display: block;
        margin-top: 1.5rem;
        overflow: hidden;
        animation: showUp 1.2s 1.6s forwards;
        opacity: 0;
    }

    .m1 .swiper-slide .desc .line {
        display: block;
        width: 100%;
        max-width: 94%;
        height: 3px;
        background: white;
        margin-top: 4rem;
        animation: width 2s forwards;
        opacity: 0;
    }

    /* m2 */

    .m2 {
        margin-top: 10rem;
    }

    .m2 .img-container {
        position: relative;
        display: flex;
        text-align: right;
        align-items: flex-end;
        justify-content: flex-end;
        padding: max(2rem, 4%);
        background: url(../img/sec2-img1.jpg) no-repeat center / cover;
        background-attachment: fixed;
        height: 90vh;
        z-index: 1;
    }

    .m2 .img-container p {
        color: white;
        font-weight: 400;
        font-size: max(1.125rem, 1.35vw);
        word-break: keep-all;
    }

    .m2 .img-container::before {
        position: absolute;
        inset: 0;
        display: block;
        content: "";
        z-index: -1;
        background: linear-gradient(-45deg, rgba(0, 0, 0, 0.25), transparent);
    }

    .m2 .grid-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem 1rem;
    }

    .m2 .grid-wrap .title-wrap {
        overflow: hidden;
    }

    .m2 .grid-wrap .title-wrap h2 {
        font-size: max(1.875rem, 5.833vw);
        overflow: hidden;
    }

    .m2 .grid-wrap .desc h3 {
        margin-bottom: 1.25rem;
        font-size: max(1.75rem, 1.667vw);
    }

    .m2 .grid-wrap .desc-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        overflow: hidden;
    }

    .m2 .grid-wrap .desc-wrap>div {
        flex: 1;
        overflow: hidden;
        line-height: 1.4;
    }

    .m2 .grid-wrap .desc-wrap a {
        text-decoration: underline;
        font-weight: 500;
        margin-top: 1rem;
    }

    .m2 .flex-img {
        display: flex;
        gap: 1.25rem;
        overflow: hidden;
    }

    .m2 .flex-img img {
        transition: 0.5s;
    }

    .m2 .flex-img img:hover {
        scale: 1.08;
    }

    .m2 .flex-img>div {
        flex: 1;
        aspect-ratio: 1;
    }

    .m2 .flex-img>div img {
        height: 100%;
        object-fit: cover;
    }

    /* m3 */
    .m3 {
        text-align: center;
        padding-block: 10rem 2rem;
    }

    .m3 .m3-title {
        overflow: hidden;
    }

    .m3 .m3-title>span {
        font-size: 1.25rem;
        display: block;
        margin-bottom: 2rem;
        overflow: hidden;
    }

    .m3 .m3-title h3 {
        font-size: max(1.75rem, 3.333vw);
        margin-bottom: 4rem;
        overflow: hidden;
    }

    .m3 .flex-wrap {
        display: flex;
        padding-block: 5rem 3rem;
        overflow: hidden;
    }

    .m3 .flex-wrap li {
        flex: 1;
        overflow: hidden;
    }

    .m3 .flex-wrap li img {
        margin: 0 auto;
    }

    .m3 .flex-wrap li h4 {
        font-size: 1.375rem;
        margin-block: 3rem 1rem;
        font-weight: 600;
    }

    .m3 .flex-wrap li p {
        font-size: 1rem;
    }

    .m4 {
        background: url("../img/b-fixed.png") no-repeat center/cover;
        background-attachment: fixed;
        height: 90vh;
        margin-block: 2rem;
        margin-inline: 0;
    }

    .m5 {
        padding-block: 2rem 8rem;
    }

    .m5 .m5-title {
        overflow: hidden;
    }

    .m5 .m5-title h3 {
        margin-block: 4rem 2.5rem;
        font-size: max(2rem, 3.3333vw);
    }

    .m5 .m5-cont {
        display: flex;
        border-top: 1px solid #333333;
        padding-top: 1.75rem;
        gap: 1rem;
    }

    .m5 .m5-cont .desc {
        flex-basis: 35%;
    }

    .m5 .m5-cont .desc p {
        font-size: 1.125rem;
    }

    .m5 .m5-cont .m5-swiper .imgbox {
        aspect-ratio: 3 / 4;
        overflow: hidden;
        transition: 0.5s;
    }

    .m5 .m5-cont .m5-swiper .imgbox:hover img {
        scale: 1.1;
    }

    .m5 .m5-cont .m5-swiper .imgbox img {
        height: 100%;
        transition: 0.5s;
        object-fit: cover;
    }

    .m5 .m5-cont .m5-swiper p {
        font-size: 1.25rem;
        margin-top: 1rem;

        small {
            display: inline-block;
            color: #555;
            font-weight: 300;
        }
    }

    /* .m6 */
    .m6 {
        margin-inline: 0;
        background: white;
        padding: 10rem 2% 12rem;
        width: 100%;
    }

    .m6 .m6-title {
        overflow: hidden;
    }

    .m6 .m6-title h3 {
        font-size: max(2rem, 3.333vw);
        padding-top: 1.75rem;
    }

    .m6 .m6-title p {
        font-size: 1.125rem;
        margin-block: 3rem;
    }

    .m6 .m6-title a {
        text-decoration: underline;
    }

    .m6 .flex-wrap {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .m6 .flex-wrap ul {
        min-width: 60%;
    }

    .m6 .flex-wrap ul li {
        transition: 0.5s;
        border-bottom: 1px solid #333;
        margin-top: 2rem;
    }

    .m6 .flex-wrap ul li h4 {
        display: flex;
        justify-content: space-between;
        font-size: 1.5rem;
        cursor: pointer;
        font-weight: 500;
    }

    .m6 .flex-wrap ul li .tab-cont {
        transition: 0.5s;
        height: 0px;
        overflow: hidden;
        padding-top: 1.75rem;
    }

    .m6 .flex-wrap ul li.active .tab-cont {
        height: 110px;
    }

    .m6 .flex-wrap ul li .tab-cont p {
        font-size: 1.125rem;
        margin-top: 0.5rem;
    }

    .m7 {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: url(../img/m7bg.jpg) no-repeat center / auto;
    }

    .m7 .flex-wrap {
        overflow: hidden;
        padding-top: 13vh;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 12vw;
    }

    .m7 .c-left {
        padding-bottom: 27%;
        overflow: hidden;
    }

    .m7 .c-left h3 {
        font-size: max(3rem, 5.333vw);
        display: block;
    }

    .m7 .c-left p {
        margin-top: 0.5rem;
        font-size: 1.125rem;
        padding-left: 0.5rem;
    }

    .m7 .c-right {
        overflow: hidden;
    }

    .m7 .c-right h3 {
        font-size: max(3rem, 5.333vw);
        color: #e66328;
    }

    .m7 .c-right .golink {
        margin-top: 4rem;
    }

    .m7 .c-right .golink a {
        width: 100%;
        height: 100%;
        display: block;
        padding: 2.25rem 5rem;
        text-align: center;
        background: black;
        color: white;
        font-size: 2rem;
        font-weight: 700;
    }

    .m7 .c-right .golink a img {
        display: block;
        padding-top: 1.25rem;
        margin: 0 auto;
    }

    .m8 {
        position: relative;
        padding-block: 10rem 10rem;
        padding-inline: 2%;
        margin-top: 7%;
        /* padding-block: 4rem 10rem; */
        display: flex;
        justify-content: space-between;
        z-index: 1;
    }

    .m8 * {
        color: white;
    }

    .m8::before {
        position: absolute;
        z-index: -1;
        content: "";
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/m8-bg1.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .m8 .m8-title {
        width: 100%;
        overflow: hidden;
    }

    .m8 .m8-title h3 {
        font-size: max(2rem, 3.333vw);
        margin-bottom: 3rem;
    }

    .m8 .map {
        width: 100%;
        flex-basis: 50%;
    }

    .m8 .m8-desc {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        /* margin-bottom: 4rem; */
    }

    .m8 .m8-desc>p {
        font-size: 1.375rem;
        flex: 1;
    }

    .m8 .m8-desc .add {
        flex: 1;
        display: flex;
        overflow: hidden;
        gap: 5rem;
        font-size: 1rem;
        margin-top: 5rem;
    }

    .m8 .m8-desc .add i {
        display: inline-block;
    }

    .m8 .m8-desc .add span {
        font-weight: 600;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        gap: 0.2rem;
    }
}

footer {
    background: #292a2e;
    width: 100%;
}

footer .footer-wrap {
    display: flex;
    width: 100%;
    padding: 5rem 10%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

footer .footer-wrap .f-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: white;
    font-size: 14px;
}

footer .footer-wrap .f-info li {
    font-weight: 300;
    color: white;
    display: flex;
}

footer .footer-wrap .f-info li span {
    display: inline-block;
    color: white;
    margin-right: 1rem;
    min-width: 100px;
    border-right: 1px solid white;
}

/* sub */
.sub-top {
    display: none;
    height: 35vh;
    background: url(../img/sub-top1.jpg) no-repeat center / cover;
}

b {
    color: inherit;
    font-weight: 600;
}

section .sec-title {
    padding: 200px 1rem 100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

section .sec-title p {
    font-weight: 300;
    font-size: 1.25rem;
}

section .sec-title h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    font-size: max(1.75rem, 2.4vw);
    color: var(--sub);
    font-weight: 500;
}

section .sec-title h3::before {
    color: #eee8e2;
    position: absolute;
    top: -100%;
    text-align: center;
    width: 100%;
    content: attr(data-title);
    opacity: 0.9;
    display: block;
    font-size: max(3rem, 5vw);
    font-weight: 900;
    z-index: -1;
}

.s1 .m2 ul {
    display: flex;
    justify-content: center;
    gap: 5%;
    padding-block: 3rem;
}

.s1 .m2 ul li p {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 300;
}

.s1 .m4 {
    position: relative;
    margin-top: 7rem;
}

.s1 .m4 .mission {
    overflow: hidden;
    position: absolute;
    display: flex;
    width: 100%;
    top: 0;
    align-items: center;
    justify-content: center;
}

.s1 .m5 {
    background: url(../img/s1-m5-bg.png) no-repeat center / cover;
    margin-inline: 3rem;
    margin-bottom: 10%;
    border-radius: 3vw;
    overflow: hidden;
}

.s1 .m5 .sec-title * {
    color: white;
}

.s1 .m5 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    padding-bottom: 10rem;
}

.s1 .m5 ul .r-arrow {
    margin-bottom: 10%;
}

.s2 .m2 {
    padding-bottom: 10rem;
}

.s2 .m2 ul {
    padding-top: 2rem;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.s2 .m2 ul li {
    display: flex;
    align-items: center;
    border: 1px solid var(--main);
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
}

.s2 .m2 ul li button {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    cursor: pointer;
}

.s2 .m2 ul li .imgbox {
    min-width: 400px;
}

.s2 .m2 ul li .desc h3 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--main);
    margin-bottom: 2rem;
}

.s2 .m2 ul li .desc {
    padding: 0 2.875rem;
}

.s2 .m2 ul li .desc p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--sub);
}

.popover {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    outline: none;
    padding-block: 5%;
}

.popover .cont {
    max-width: min(800px, 80vw);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 2rem;
    overflow: hidden;
    background: white;
    position: relative;
}

.popover .cont .imgbox {
    width: 100%;
    max-height: 50vh;
}

.popover .cont .imgbox img {
    width: 100%;
}

.popover .cont .desc {
    padding: 2rem;
    background: white;
}

.popover .cont .desc h4 {
    font-size: 2rem;
    color: #444;
    font-weight: 500;
    width: 100%;
    display: block;
    padding-block: 0.75rem 1.5rem;
    border-bottom: 1px solid #888888;
}

.popover .cont .desc p {
    color: #333;
    font-weight: 300;
    font-size: 1rem;
    padding-top: 1.5rem;
    line-height: 1.5;
}

.popover .pop-close {
    position: absolute;
    background: transparent;
    max-width: 64px;
    top: 3%;
    right: 3%;
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.s3 .mag {
    padding-inline: 10%;
    padding-bottom: 10%;
}

.s3 .mag ul {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
}

.s3 .mag li {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px 0 #e4e1dd;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.s3 .mag li img {
    max-height: 280px;
    height: 100%;
}

.m3 .mag li .desc {
    padding: 2rem 1.875rem;
    background: white;
}

.s3 .mag li .desc h5 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 400;
}

.s3 .mag li .desc p {
    font-size: 14px;
    border-top: 1px solid black;
    padding-block: 1.5rem;
    font-weight: 300;
}

/* From Uiverse.io by Yaya12085 */
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: #fff;
    padding-block: 20px 10%;
    border-radius: 20px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.message,
.signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
}

.signin {
    text-align: center;
}

.signin a {
    color: royalblue;
}

.signin a:hover {
    text-decoration: underline royalblue;
}

.flex {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.form label {
    position: relative;
    flex: 1;
}

.form label .input {
    width: 100%;
    border-radius: 1rem;
    padding: 10px 10px 20px 1rem;
    outline: 0;
    border: 1px solid #333;
}

.form label .input+span {
    position: absolute;
    left: 1rem;
    top: 15px;
    color: #333;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

textarea::placeholder {
    color: #333;
    font-size: 0.9rem;
    font-family: "Pretendard Variable", Pretendard, -apple-system,
        BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
        "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    left: 1rem;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 30px;
    left: 1rem;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    color: green;
}

.form textarea {
    color: #333;
    font-size: 0.9em;
    min-height: 300px;
    padding: 1rem;
    border-radius: 1rem;
}

.submit {
    border: none;
    outline: none;
    background-color: #333;
    padding: 10px;
    color: #fff;
    height: 60px;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 1rem;
}

.submit:hover {
    background-color: rgb(82, 82, 82);
}

#bo_list,
#bo_v {
    max-width: 1440px;
    padding-inline: 20px;
    margin: 0 auto;
    padding-bottom: 10rem;
}

@media screen and (max-width: 768px) {
    :root {
        --h: 70px;
    }

    .fix-cont {
        width: 88px;
        height: 88px;
        bottom: 3.5rem;
    }

    .fix-cont a {
        font-size: 14px;
    }

    header .header-wrap .pc {
        display: none;
    }

    .m-header {
        display: flex;
    }

    header .header-wrap .h_toggle {
        display: none;
    }

    .main {
        .m1 .swiper-slide .desc p {
            margin-top: 0.35rem;
        }

        .m2 {
            margin-top: 7rem;
        }

        .m2 .img-container {
            align-items: center;
            justify-content: center;
        }

        .m2 .img-container p {
            text-align: center;
        }

        .m2 .grid-wrap {
            grid-template-columns: 1fr;
            gap: 0.6rem 1rem;
        }

        .m2 .grid-wrap .title-wrap h2 {
            text-align: center;
            margin: 0 auto;
            color: #ab8c71;
            padding-block: 0.5em;
            border-bottom: 1px solid;
            border-top: 1px solid;
        }

        .m2 .grid-wrap .desc {
            margin-block: 3.25rem 3.5rem;
        }

        .m2 .grid-wrap .desc h3 {
            margin-bottom: 1.75rem;
        }

        .m2 .grid-wrap .desc-wrap a {
            margin-top: 3rem;
        }

        .m2 .grid-wrap .desc-wrap>div {
            flex: auto;
        }

        .m3 {
            padding-top: 120px;
        }

        .m3 .flex-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem 0;
            padding-top: 0;
        }

        .m3 .m3-title>span {
            font-size: 1rem;
        }

        .m3 .flex-wrap li h4 {
            font-size: 1.25rem;
            margin-block: 2rem 1rem;
        }

        .m3 .flex-wrap li p {
            font-size: 14px;
        }

        .m5 .m5-cont {
            flex-wrap: wrap;
            gap: 2.5rem;
        }

        .m5 .m5-cont .desc {
            flex-basis: 100%;
        }

        .m5 .m5-cont .desc p {
            font-size: 1rem;
        }

        .m5 .m5-cont .m5-swiper p {
            font-size: 1rem;
        }

        .m6 {
            padding-top: 3.5rem;
        }

        .m6 .flex-wrap ul {
            margin-top: 3rem;
        }

        .m6 .m6-title p {
            font-size: 1rem;
        }

        .m6 .flex-wrap ul li h4 {
            font-size: 1rem;
        }

        .m6 .flex-wrap ul li .tab-cont {
            padding-top: 1.25rem;
        }

        .m6 .flex-wrap ul li .tab-cont p {
            font-size: 14px;
        }

        .m7 .flex-wrap {
            align-items: flex-start;
        }

        .m7 .c-left p {
            font-size: 1rem;
            display: none;
        }

        .m7 .c-right .golink a {
            font-size: 1rem;
            padding: 1.25rem 2rem;
        }

        .m8 {
            padding-top: 5rem;
            /* padding-top: 1rem; */
            flex-direction: column;
        }

        .m8::before {
            height: 70%;
        }

        .m8 .m8-desc {
            flex-direction: column;
            gap: 3.75rem;
        }

        .m8 .map {
            margin-top: 3rem;
        }

        .m8 .m8-title h3 {
            margin-bottom: 2rem;
        }

        .m8 .m8-desc .add {
            flex-direction: column;
            gap: 2rem;
            margin-top: 0;
        }

        .m8 .m8-desc>p {
            font-size: 1rem;
        }
    }

    footer .footer-wrap {
        padding: 4rem 4vw;
        gap: 2rem;
    }

    footer .footer-wrap .f-logo {
        max-width: 3.875rem;
    }

    footer .footer-wrap .f-info {
        gap: 0.875rem;
        font-size: 13px;
    }

    /* sub  */
    .s1 .m2 ul {
        padding-inline: 1rem;
    }

    .s1 .m2 ul li p {
        font-size: 14px;
    }

    section .sec-title h3 {
        padding-inline: 0;
    }

    section .sec-title p {
        font-size: 15px;
    }

    .s1 .m5 ul {
        gap: 3rem;
        padding-bottom: 10rem;
    }

    .s2 .m2 ul {
        padding-inline: 1rem;
    }

    .s2 .m2 ul li {
        flex-direction: column;
    }

    .s2 .m2 ul li .desc {
        padding: 2rem 1rem;
    }

    .s2 .m2 ul li .desc h3 {
        font-size: 1.375rem;
        margin-bottom: 1.375rem;
    }

    .s2 .m2 ul li .desc p {
        font-size: 14px;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
    }

    .s3 .mag {
        padding-inline: 1rem;
    }

    .s3 .mag ul {
        grid-template-columns: 1fr;
    }

    .process {
        flex-direction: column-reverse;
        gap: 3rem;
    }
}

/* 20250620 */
.s1 .m2 .flex-box {
    display: none;
}

.s1 .m5 {
    display: none;
}

.process-wrap {
    position: relative;
    max-width: 1230px;
    padding-inline: 1rem;
    padding-bottom: 10rem;
    margin: 0 auto;
}

.process {
    display: flex;
    justify-content: space-between;
}

.process .info-box {
    position: relative;
}

.process .info-box:after {
    content: "";
    width: 1px;
    height: 93%;
    background-color: #ddd;
    position: absolute;
    left: 65.5px;
    top: 12px;
}

.process .info-box .row {
    display: flex;
    margin-bottom: 40px;
}

.process .info-box .row .num {
    font-family: "Roboto";
    font-size: 22px;
    font-weight: 700;
    color: #242424;
    position: relative;
    margin-right: 65px;
}

.process .info-box .row .num:after {
    content: "";
    width: 20px;
    height: 1px;
    position: absolute;
    right: -30px;
    top: 13px;
    margin-top: -0.5px;
    background-color: #ddd;
}

.process .info-box .row .info .tit {
    font-family: "SUIT-Bold";
    font-size: 20px;
    font-weight: 500;
    color: #242424;
    position: relative;
    margin-bottom: 8px;
}

.process .info-box .row .info .tit:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #c5c5b9;
    position: absolute;
    z-index: 1;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
}

.pj-list .view-more {
    text-align: right;
    margin-top: 30px;
}

.pj-list .view-more a {
    display: inline-block;
    position: relative;
    line-height: 1.563em;
    font-family: "Noto Sans KR";
}

.pj-list .view-more a:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: 0;
    bottom: -3px;
}

.pj-cate {
    margin-bottom: 20px;
}

.pj-cate .contain {
    max-width: 100%;
    padding: 0 100px;
}

.pj-cate ul {
    display: flex;
    margin: 0 -10px;
}

.pj-cate ul li {
    max-width: 150px;
    width: 100%;
    padding: 0 10px;
}

.pj-cate ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    border-radius: 30px;
    border: 1px solid #ddd;
    /* font-size: clamp(0.9375rem, 0.7895rem + 0.5921vw, 1.5rem); */
    font-size: 16px;
    letter-spacing: 0;
}

.pj-cate ul li.active a {
    color: #fff;
    font-weight: 700;
    background-color: #27180f;
    border-color: #27180f;
}

.pj-list ul li {
    margin-bottom: 100px;
}

.pj-list ul li:last-child {
    margin-bottom: 0;
}

.pj-list ul li .img {
    margin-bottom: 15px;
}

.pj-list ul li .img .pic {
    position: relative;
    height: 0;
    padding-bottom: 26.042%;
    /*  padding-bottom: 31.25%; */
    /* padding-bottom:41.667%; */
    overflow: hidden;
}

.pj-list ul li .img .pic img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.pj-list ul li .tt-wrap {
    display: flex;
    align-items: center;
}

.pj-list ul li .tt-wrap .tit {
    position: relative;
    margin-right: 15px;
    padding-right: 15px;
    font-size: clamp(0.9375rem, 0.8553rem + 0.3289vw, 1.25rem);
    color: #242424;
    line-height: 1.4em;
    font-weight: 700;
}

.pj-list ul li .tt-wrap .tit:after {
    content: "";
    width: 1px;
    height: 16px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 6px;
}

.pj-list ul li .tt-wrap .txt {
    min-width: 0;
    width: 1%;
    flex: 1 1 auto;
    font-weight: 500;
    line-height: 1.4em;
    font-size: 14px;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes pulse2 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes width {
    0% {
        width: 0%;
        opacity: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes showUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes showLeft {
    0% {
        transform: translateX(20%);
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}