@charset "utf-8";

#qAndA_main_block
{
    position: relative;
}

/* @overwrite common.css */
section
{
    margin: 0px auto 40px;
    width: 80%;
}

/* @overwrite common.css */
section>h1
{
    margin: 80px 80px 30px;
}

/* @overwrite common.css */
section>h1+hr
{
    color: #c3c1c0;
}

/* article -> enhanced articles */
.qAndA_list_container
{
    margin-bottom: 0px;
    border: 1px solid #c3c1c1;
    border-radius: 30px;
}

.qAndA_list_question
{
    margin: 0px;
    padding: 20px 30px;
    border: 1px solid #c3c1c1;
    border-radius: 30px;
    color: #6a6969;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.qAndA_list_question:hover
{
    background-color: #c49f5f;
    color: #ffffff;
}

.qAndA_list_answer
{
    color: #6a6969;
    font-size: 18px;
    line-height: 1.7;
}

.qAndA_list_answer a:link,
.qAndA_list_answer a:visited
{
    border-bottom: 1px solid transparent;
    color: #a78233;
    text-decoration: none;
}

.qAndA_list_answer a:hover,
.qAndA_list_answer a:active
{
    border-bottom: 1px solid #a78233;
}

/* RWD */
@media only screen and (max-width: 1260px)
{
    .qAndA_list_container
    {
        width: 100%;
    }
}

@media only screen and (max-width: 800px)
{
    section
    {
        width: 80%;
    }

    section>section
    {
        width: 100%;
    }
}

@media only screen and (max-width: 500px)
{
    section>h1
    {
        margin: 80px 20px 30px;
    }
}

