@charset "UTF-8";

/* =============================
main
============================= */

.main {
    margin: 45px 0 0;
    width: 100%;
}

.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;
    padding-bottom: 70px;
}

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

.contents__live {
    margin-top: 30px;
    padding: 10px 30px 11px;
    width: fit-content;
    background: var(--primary-black);
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.33px;
}

.contents__live a {
    display: flex;
    align-items: center;    /* 縦方向の中央寄せ */
    justify-content: center; /* 横方向の中央寄せ（ボタン形式の場合） */
    text-decoration: none;
}

.contents__live a span {
    margin-left: 10px;
    display: inline-block;
    line-height: 1;
}

.contents__live span {
    font-size: 1rem;
}

.contents__live.past {
    display: none;
    pointer-events: none;
}

.contact {
    margin-top: 30px;
}

.form__parts {
    margin-top: 30px;
}

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

.form__category {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
}

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

.group input {
    font-size: 1.2rem;
    padding: 2px;
}

.group--select {
    width: 40vw;
    position: relative;
}

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

.group--select select {
    width: 100%;
    height: 100%;
    padding: 3px;
    font-size: 0.9rem;
}


.group input,
.group__textArea {
    width: 100%;
    height: 100%;
}

.group__textArea{
    font-size: 1.2rem;
}

.group--message {
    width: 90%;
    height: 24vh;
}

.send {
    display: flex;
    padding: 0.98vh 13.3vw;
    margin: 40px auto 0;
    border-radius: 100px;
    background: var(--primary-black);
    color: var(--primary-white);
    font-size: 1.6rem;
    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;
        height: auto;
        /* width: 100%; */
    }

    .main::before {
        display: none;
    }

    .article {
        margin: 0 10.48vw;
    }

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

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

    .contents__live {
        margin-top: 0;
        padding: 12px 40px 14px;
        font-size: 1.7rem;
        letter-spacing: -0.44px;
    }

    .contact {
        margin: 50px 16.95% 0 7.43%;
    }

    .form__parts {
        margin-top: 27px;
        display: flex;
        gap: 12.14%;
    }

    .form__category {
        width: 11.26%;
        font-size: 2rem;
        flex: 103;
    }

    .group {
        height: 30px;
        flex: 700;
        position: relative;
        padding: 5px;
    }

    .group--message {
        height: 23.33vh;
    }

    .group input {
        font-size: 1.6rem;
    }

    .group--select {
        width: 43.76vw;
    }

    .group--select select {
        padding: 2px;
        font-size: smaller;
    }

    .group--select::after {
        width: 11.6%;
        height: 40%;
        top: 35%;
        right: -5.33%;
        pointer-events: none;
    }

    .group__textArea{
        font-size: 1.4rem;
    }

    .send {
        position: absolute;
        left: 30%;
        margin-top: 70px;
        padding: 10px 80px;
        font-size: 2rem;
        letter-spacing: -0.55px;

    }
}

/* =============================
footer
============================= */

/* footer pc 縦レイアウト */
@media screen and (min-width:769px) {
    .footer {
        padding: 0 0;
        display: flex;
        /* gap: 0.76%; */
        position: absolute;
        bottom: 12.69vh;
        left: 90.8vw;
        /* right: 5.27%; */
        width: max-content;
        transform: translateX(0);
    }

    .sns {
        margin-bottom: 0;
        flex-direction: column;
        gap: 2.92vh;
        width: fit-content;
    }

    .copy {
        position: absolute;
        left: 58.5px;
        transform-origin: top left;
        transform: rotate(90deg);
        /* transform-origin: 1.56vw; */
        color: var(--primary-lightGrey);
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: -0.286px;
        /* height: fit-content; */
        width: max-content;
    }
}
/* pc 769px */
