/*----------------リクエスト応募画面-------------------*/
:root {
    --main-color: #2196F3;
    /* 基調ブルー */
    --accent-color: #42A5F5;
    /* アクセントブルー */
    --text-color: #ffffff;
}

.request-post-text {
    color: var(--main-color);
    font-weight: bold;
    margin-top: 5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
}

/* 縦並びフォーム */
.request-post-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.request-text-form {
    font-size: 14px;
    margin: 1rem 0 !important;
    width: 23rem;
    height: 8rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    color: #2b2b2b;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: border-color 0.3s ease;
}

.request-post-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 1rem 0;
}

.request-post-button:hover {
    background-color: var(--main-color);
}


/* スマホ向け調整*/
@media (pointer: coarse) {

    .request-post-text {
        color: var(--main-color);
        font-weight: bold;
        margin: 3rem 0.5rem 0rem;
        text-align: center;
        font-size: 1rem;
    }

    /* 縦並びフォーム */
    .request-text-form {
        height: 8rem !important;
        width: 15rem !important;
        font-size: 0.7rem !important;
        margin-top: 2rem !important;
        padding: 0.6rem 1rem;
        border: 2px solid --main-color;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .request-post-button {
        border: none;
        text-align: center;
        border-radius: 10px;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;

    }

}