/*----------------リクエスト応募画面-------------------*/
.request-post-text {
    color: #FF6F61;
    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 #FF6F61;
    border-radius: 8px;
    color: #2b2b2b;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: border-color 0.3s ease;
}

.request-post-button {
    background-color: #FF6F61;
    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: #FF3B2F;
}


/* スマホ向け調整*/
@media (pointer: coarse) {

    .request-post-text {
        color: #FF6F61;
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: center;
        font-size: 1rem;
        margin-top: 3rem;
    }

    /* 縦並びフォーム */
    .request-text-form {
        height: 7rem !important;
        width: 60% !important;
        font-size: 1rem !important;
        margin: 1rem !important;
        padding: 0.6rem 1rem;
        border: 2px solid #FF6F61;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .request-post-form {
        width: 90%;
        max-width: 500px;
        flex-direction: column;
        display: flex;
        align-items: flex-start;
        align-items: center;
    }

    .request-post-button {
        background-color: #FF6F61;
        color: rgb(255, 255, 255);
        border: none;
        text-align: center;
        border-radius: 10px;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin: 0;
    }

    .request-post-button:hover {
        background-color: #FF3B2F;
    }
}