@charset "utf-8";

/*
 * File       : style.css
 * Author     : YONG
 *
 * 최종수정일 : 24/00/00
 *
 * SUMMARY:
 * 통합.CSS
 */

/* 
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■ 공용 ■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
*/

.mw-1200 {
    max-width: 1200px;
}

.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.hide {
    font-size: 0.5rem;
    color: #fff;
}

.color--red {
    color: #ed3722 !important;
}

.pc__br {
    display: block;
}

.m__br {
    display: none;
}

/*  */
body {
    padding-bottom: 80px;
}

/*  */
.header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
}

.header.noti {
    border-bottom: 1px solid #ccc;
}

.header>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo>a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo>a>img {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.logo>a>span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #555;
}

/*  */
.nav > ul {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav > ul > li > a {
    font-size: 1rem;
    font-weight: 500;
}

.call>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.call>a>img {
    width: 35px;
    height: auto;
    object-fit: contain;
}

.call>a>span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00a2e2;
}

.m__menu {
    display: none;
}

.m__call {
    display: none;
}

/*  */
.main {
    width: 100%;
    height: auto;
}

.main.noti {
    display: flex;
    justify-content: center;
}

/*  */
.visual {
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    background-color: #00a2e2;
}

.visual>.inner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.visual__img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.visual__img img {
    width: 550px;
    height: auto;
    object-fit: contain;
}

.visual .title {
    color: #fff;
    line-height: normal;
    margin-bottom: 50px;
}

.visual .title h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.visual .title h1 {
    font-size: 3rem;
    font-weight: 400;
}

/*  */
.cs {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.cs>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 0.5rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 2rem;
}

.cs__inputs {
    width: 75%;
    display: flex;
    gap: 10px;
}

.cs__input {
    display: flex;
    align-items: center;
}

.cs__input span {
    width: 90px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.cs__input input {
    width: calc(100% - 90px);
    height: 50px;
    border-style: none;
    border-radius: 0.2rem;
    border: 1px solid #ccc;
    padding: 1rem;
}

.cs__apply {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cs__info {
    font-size: 0.9rem;
}

.cs__info input {
    width: 17px;
    height: 17px;
    vertical-align: middle;
}

.cs__submit {
    width: 100%;
    height: 45px;
    border-style: none;
    border-radius: 0.2rem;
    background-color: #00a2e2;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.cs__submit>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*  */
.notice__open {
    font-weight: 400;
    color: cornflowerblue;
    text-decoration: underline;
    cursor: pointer;
}

.notice__modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 70%);
    display: none;
}

.notice__modal.active {
    display: block;
}

.notice__modal>.inner {
    width: 40%;
    height: 80%;
    background-color: #fff;
    border-radius: 0.2rem;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 10%);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
}

.notice__close {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    padding: 1.5rem;
}

.notice__close img {
    width: 20px;
    height: 20px;
}

.notice__txt {
    width: 100%;
    height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
    padding: 0 2rem 3rem 2rem;
}

.notice__txt>h4 {
    font-size: 1rem;
}

.notice__txt>p {
    font-size: 0.9rem;
}

.notice__txt>ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notice__txt>ul>li {
    font-size: 0.9rem;
}

.notice__txt>ul>li>h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.notice__txt>ul>li>p {
    font-size: 0.9rem;
}

/*  */
.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: 75px;
    padding: 2rem 0;
}

.content>.inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content .list>h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.content .list>ul {
    display: flex;
}

.content .list>ul>li {
    width: 100%;
    height: auto;
}

.content .list>ul>li>a {
    position: relative;
}

.content .list>ul>li>a>h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
}

.content .list>ul>li>a>img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/*  */
.content .table>h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.content .table table {
    width: 100%;
    border-top: 2px solid #00a2e2;
}

.content .table table th {
    font-size: 1rem;
    padding: 1rem;
    text-align: center;
    background-color: #ecfaff;
    border: 1px solid #ccc;
}

.content .table table td {
    text-align: center;
    border: 1px solid #ccc;
    font-size: 1rem;
    padding: 1rem;
}

/*  */
.type {
    width: 100%;
    height: auto;
}

.type > h2 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.type__nav {
    width: 100%;
    height: auto;
    display: flex;
}

.type__nav li {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    color: #fff;
    line-height: normal;
    background-color: #767676;
    padding: 1.5rem 1rem;
    cursor: pointer;
}

.type__nav li:not(:nth-last-of-type(1)) {
    border-right: 1px solid #fff;
}

.type__nav li > b {
    font-weight: 600;
}

.type__nav li.active {
    background-color: #1c519f;
}

/*  */
.type__table {
    width: 100%;
    height: auto;
    display: none;
    margin: 2rem 0 0;
}

.type__table.active {
    display: block;
}

.type__table table {
    border: 1px solid #ccc;
}

.type__table table th,
.type__table table td {
    font-size: 1rem;
    text-align: center;
    word-break: keep-all;
    border: 1px solid #ccc;
    padding: 1rem;
}

.type__table table th {
    background-color: #ebebeb;
}

.type__table >p {
    font-size: 1rem;
    margin-top: 10px;
}

/*  */
.warning {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    padding: 1rem 0 0;
}

.warning .title {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.warning .title h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.warning .title span {
    font-size: 1rem;
    color: #444;
}

.warning .title span>img {
    width: 20px;
    height: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

.warning__list ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.warning__list ol {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 1rem;
}

.warning__list ol li
.warning__list ul li {
    font-size: 1rem;
    font-weight: 400;
    word-break: keep-all;
    color: #444;
}

.warning__list ol li {
    list-style-type: decimal;
}

.warning__btn {
    text-align: left;
    margin-top: 1rem;
}

.warning__btn>a {
    display: flex;
    border: 1px solid #ccc;
    padding: 10px 1rem;
    cursor: pointer;
}

/*  */
.fixed__stuff {
    width: 100%;
    height: 80px;
    display: none;
    justify-content: center;
    background-color: #444;
    position: fixed;
    left: 0;
    bottom: 0;
}

.fixed__stuff.active {
    display: flex;
}

.fixed__stuff >.inner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fix__call {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #00a2e2;
    border-radius: 0.5rem;
    padding: 10px 1rem;
}

.fix__call > img {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.fix__call > span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: normal;
    display: inline-block;
    margin-top: 3px;
}

.fix__chat {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #4e05c4;
    border-radius: 0.5rem;
    padding: 10px 1rem;
}

.fix__chat > img {
    width: 24px;
    height: auto;
    object-fit: contain;
    filter: invert(1);
}

.fix__chat > span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: normal;
    display: inline-block;
    margin-top: 3px;
}

/*  */
.footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 2rem;
}

.footer >.inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
}

.footer__logo {
    text-align: center;
}

.footer__logo img {
    width: 120px;
}

.footer__logo p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #ccc;
}

.footer ul li {
    font-size: 0.9rem;
    color: #ccc;
}


@media screen and (min-width: 768px) and (max-width: 1200px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 공용 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .header {
        padding: 0 1rem;
    }

    .logo>a>img {
        margin-bottom: 5px;
    }

    .logo>a>span {
        margin-top: 5px;
    }

    .main.noti {
        padding: 0 1rem;
    }

    /*  */
    .nav {
        width: 100%;
        height: auto;
        display: none;
        justify-content: center;
        align-items: center;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        background-color: #fff;
        transition: all 0.3s ease;
        position: absolute;
        top: 70px;
        right: 0;
        padding: 2rem 2rem 0 2rem;
        z-index: 999;
    }

    .nav.active {
        display: flex;
        align-items: flex-start;
    }

    .nav > ul {
        width: 100%;
        flex-direction: column;
    }

    .nav > ul > li {
        width: 100%;
        height: auto;
    }

    /*  */
    .m__menu {
        display: block;
        width: 24px;
        height: 20px;
        cursor: pointer;
    }

    .m__menu ul {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .m__menu ul li {
        width: 100%;
        height: 3px;
        background-color: #444;
        border-radius: 2rem;
        transition: all 0.3s ease;
        position: absolute;
    }

    .m__menu ul li:nth-of-type(1) {
        width: 50%;
        background-color: #00a2e2;
        top: 0px;
        right: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .m__menu ul li:nth-of-type(2) {
        top: 8px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .m__menu ul li:nth-of-type(3) {
        top: 16px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .m__menu.active ul li:nth-of-type(1) {
        width: 100%;
        background-color: #444;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -2px;
        left: 0;
    }

    .m__menu.active ul li:nth-of-type(2) {
        width: 0%;
        opacity: 0;
    }

    .m__menu.active ul li:nth-of-type(3) {
        background-color: #444;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 15px;
        left: 0;
    }

    /*  */
    .call {
        display: none;
    }

    .m__call  {
        display: block;
        border-top: 1px solid #ccc;
        padding: 2rem 0;
    }

    .m__call >a {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 500;
        color: #666;
    }

    .m__call >a b {
        font-size: 1.6rem;
        font-weight: 700;
        color: #00a2e2;
    }

    /*  */
    .visual {
        height: auto;
        min-height: 400px;
        padding: 0 2rem;
    }

    .visual .title h2 {
        font-size: 3rem;
    }

    .visual .title h1 {
        font-size: 2rem;
    }

    .visual__img {
        right: 1rem;
    }

    .visual__img img {
        width: 400px;
    }

    .cs>.inner {
        flex-direction: column;
        transform: none;
        position: static;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }

    .cs__inputs {
        width: 100%;
        flex-wrap: wrap;
    }

    .cs__input {
        width: calc(50% - 5px);
    }

    .cs__input.last {
        width: 100%;
    }

    .cs__apply {
        width: 100%;
    }

    /*  */
    .content {
        margin-top: 0;
        padding: 2rem 1rem 0;
    }

    /*  */
    .content .list>h2 {
        font-size: 1rem;
    }

    .content .list>ul>li>a>h3 {
        font-size: 0.9rem;
        top: 5px;
        left: 5px;
    }

    /*  */
    .content .table>h3 {
        font-size: 1rem;
    }

    /*  */
    .type > h2 {
        margin-bottom: 10px;
    }

    .type__nav li {
        font-size: 1rem;
    }

    /*  */
    .warning {
        padding: 1rem 0;
    }

    /*  */
    .fixed__stuff {
        padding: 0 1rem;
    }

    /*  */
    .notice__modal>.inner {
        width: 80%;
        height: 80%;
    }
}


@media screen and (max-width: 767px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 공용 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .header {
        padding: 0 1rem;
    }

    .logo>a>img {
        width: 118px;
        margin-bottom: 5px;
    }

    .logo>a>span {
        font-size: 1rem;
        margin-top: 5px;
    }

    
    /*  */
    .nav {
        width: 100%;
        height: calc(100vh - 70px);
        display: none;
        justify-content: center;
        align-items: center;
        border-top: 1px solid #ccc;
        background-color: #fff;
        transition: all 0.3s ease;
        position: absolute;
        top: 70px;
        right: 0;
        padding: 2rem;
        z-index: 999;
    }

    .nav.active {
        display: flex;
        align-items: flex-start;
    }

    .nav > ul {
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }

    .nav > ul > li {
        width: 100%;
        height: auto;
    }

    /*  */
    .m__menu {
        display: block;
        width: 24px;
        height: 20px;
        cursor: pointer;
    }

    .m__menu ul {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .m__menu ul li {
        width: 100%;
        height: 3px;
        background-color: #444;
        border-radius: 2rem;
        transition: all 0.3s ease;
        position: absolute;
    }

    .m__menu ul li:nth-of-type(1) {
        width: 50%;
        background-color: #00a2e2;
        top: 0px;
        right: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .m__menu ul li:nth-of-type(2) {
        top: 8px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .m__menu ul li:nth-of-type(3) {
        top: 16px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .m__menu.active ul li:nth-of-type(1) {
        width: 100%;
        background-color: #444;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -2px;
        left: 0;
    }

    .m__menu.active ul li:nth-of-type(2) {
        width: 0%;
        opacity: 0;
    }

    .m__menu.active ul li:nth-of-type(3) {
        background-color: #444;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 15px;
        left: 0;
    }

    /*  */
    .call {
        display: none;
    }

    .m__call  {
        display: block;
        border-top: 1px solid #ccc;
        padding: 2rem 0;
    }

    .m__call >a {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 500;
        color: #666;
    }

    .m__call >a b {
        font-size: 1.6rem;
        font-weight: 700;
        color: #00a2e2;
    }

    /*  */
    .main.noti {
        padding: 0 1rem;
    }

    .visual {
        height: auto;
        min-height: 260px;
    }

    .visual .title {
        padding-left: 1rem;
    }

    .visual .title h2 {
        font-size: 1.8rem;
    }

    .visual .title h1 {
        font-size: 1.4rem;
    }

    .visual__img img {
        width: 250px;
    }

    .cs>.inner {
        flex-direction: column;
        transform: none;
        position: static;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
        padding: 1rem;
    }

    .cs__inputs {
        width: 100%;
        flex-wrap: wrap;
    }

    .cs__input {
        width: 100%;
    }

    .cs__input span {
        width: 70px;
        font-size: 0.9rem;
        text-align: left;
    }

    .cs__input input {
        width: calc(100% - 70px);
    }

    .cs__apply {
        width: 100%;
    }

    /*  */
    .content {
        margin-top: 0;
        padding: 2rem 1rem 1rem;
    }

    /*  */
    .content .list>h2 {
        font-size: 1rem;
    }

    .content .list>ul {
        flex-wrap: wrap;
    }

    .content .list>ul>li {
        width: 50%;
    }

    .content .list>ul>li>a>h3 {
        font-size: 0.8rem;
        top: 5px;
        left: 5px;
    }

    /*  */
    .content .table>h3 {
        font-size: 1rem;
    }

    .content .table table th,
    .content .table table td {
        font-size: 0.9rem;
    }

    /*  */
    .type > h2 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .type__nav {
        flex-wrap: wrap;
    }

    .type__nav li {
        width: 50%;
        font-size: 0.9rem;
        border: 1px solid #fff;
        margin-top: -1px;
        margin-left: -1px;
    }

    .type__table {
        margin: 1rem 0 0;
    }

    .type__table table th,
    .type__table table td {
        font-size: 0.9rem;
    }

    .type__table >p {
        font-size: 0.9rem;
    }

    /*  */
    .warning {
        padding: 0;
    }

    /*  */
    .fixed__stuff {
        padding: 0 1rem;
    }

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

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

    /*  */
    .footer >.inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__logo {
        text-align: left;
    }

    .footer__logo img {
        width: 110px;
    }

    .footer__logo p {
        font-size: 0.9rem;
    }

    /*  */
    .notice__modal>.inner {
        width: 90%;
        height: 90%;
    }

}