@charset "UTF-8";

/* =============================
main
============================= */
.main {
    /* background-image: url(../images/color_bg.png); */
    /* background-repeat: no-repeat; */
    /* background-size: 72.1vh auto; */
    /* background-position: center; */
    /* background-attachment: fixed; */
    margin: 45px 0;
    width: 100%;
    /* height: 86.8vh; */
}

.main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url(../images/color_bg.png);
    background-repeat: no-repeat;
    background-size: 72.1vh auto;
    background-position: center center;
}


.article {
    margin: 0 10.6vw;
}

.contents__topic {
    width: 37.06vw;
    max-width: 169px;
}

.contents__live {
    margin-top: 15px;
    font-family: "Shippori Mincho";
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.33px;
}

.contact {
    margin-top: 30px;
}

.form__parts {
    margin-top: 30px;
}

.form__parts:first-of-type {
    margin-top: 0;
}

.form__category {
    font-family: "Shippori Mincho";
    font-size: 1.2rem;
    font-weight: 600;
    line-height: normal;
}

.group {
    margin-top: 10px;
    width: 66.66vw;
    height: 25px;
    border: 1px solid var(--primary-lightGrey);
    background: rgba(255, 255, 255, 0.70);
}

.group input,
.group--select select {
    width: 100%;
    height: 100%;
    padding: 3px;
    font-size: smaller;

}

.group--select {
    position: relative;
}

.group--select__2 {
    width: 50%;
}


.group--select::after {
    content: '';
    position: absolute;
    background-image: url(../images/contact_arrow.svg);
    background-repeat: no-repeat;
    width: 9%;
    height: 40%;
    top: 30%;
    right: 3.5px;
    pointer-events: none;
}

.group--select__2::after {
    width: 14%;
}

.send {
    display: flex;
    padding: 0.98vh 13.3vw;
    margin: 50px auto;
    border-radius: 100px;
    background: var(--primary-black);
    color: var(--primary-white);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.418px;
}

/* main pc */
@media screen and (min-width:769px) {
    .main {
        background-image: url(../images/color_bg.png);
        background-repeat: no-repeat;
        background-size: auto 82.7vh;
        background-position: center;
        background-attachment: fixed;
        margin: 18px 0;
        padding-top: 58px;
        min-height: 81.5vh;
    }

    .main::before {
        display: none;
    }

    .article {
        margin: 0 10.48vw;
    }

    .topic__Live {
        display: flex;
        gap: 3.86vw;
    }

    .contents__topic {
        width: 19.4vw;
        min-width: 279.36px;
    }

    .contents__live {
        margin-top: 0;
        font-size: 2.3rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.55px;
    }

    .contact {
        margin: 67px 25.55vw 0 4.72vw;
    }

    .form__parts {
        display: flex;
        align-items: center;
        gap: 15.83%;
    }

    .form__category {
        flex: 18;
        font-size: 1.8rem;
        width: fit-content;
    }

    .group {
        margin-top: 0;
        flex: 50;
        height: 30px;
        position: relative;
    }

    .group--select::after {
        background-size: contain;
        width: 7%;
        height: 42%;
        top: 33.33%;
        right: 8px;
        pointer-events: none;
    }

    .group input,
    .group--select select {
        padding: 5px;
        font-size: small;
    }

    .group--select__2 {
        width: 50%;
    }

    .group--select__2::after {
        width: 7%;
    }

    .send {
        position: absolute;
        left: 34%;
        margin-top: 60px;
        padding: 10px 80px;
        font-size: 2.5rem;
        letter-spacing: -0.55px;
    }

}