@charset "UTF-8";
/* CSS Document */
.essential
{
    background: #d8534d;
    color: #fafafa;
    font-size: 0.6rem;
    padding: 0.2rem 1rem;
    font-weight: normal;
    margin-left: 10px;
}
.contact-area
{
    background: #daeed7;
    padding: 2rem;
    margin: 2rem auto;
    width: 100%;
}
.contact-table
{
    width: 100%;
}
.table-list
{
    display: flex;
    justify-content: space-between;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    width: 100%;
    margin-bottom: 40px;
}
.table-list th
{
    font-size: 1rem;
    font-weight: bold;
    width: 40%;
    text-align: left;
}
.table-list-address
{
    flex-wrap: wrap;
}
.table-list-address .input-area
{
    margin-bottom: 10px;
}
.input-area
{
    background-color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    padding: 0 10px;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #c4c4c4;
}
.table-list td
{
    font-size: 1rem;
    width: calc(100% - 250px);
}
input::placeholder
{
    color: #bfbfbf;
    font-size: 1rem;
    font-weight: bold;
}
textarea
{
    background-color: #fff;
    width: 100%;
    height: 200px;
    padding: 0;
    border: 1px solid #c4c4c4;
    resize: vertical; /* 横方向のみサイズを固定する */
}
textarea::placeholder
{
    color: #bfbfbf;
    font-size: 1rem;
}
input[type="text"]
{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.contact-area .text
{
    font-size: 1rem;
    text-align: center;
    margin-bottom: 100px;
}
.contact-area .text a
{
    color: #000;
    border-bottom: 1px solid #000;
    transition: all .3s;
    text-decoration: none;
}
.contact-area .text a:hover
{
    border-bottom: 1px solid #777;
    padding-bottom: 5px;
    color: #777;
}
.submit-button
{
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 30px auto 0;
    background-color: #44ac35;
    cursor: pointer;
    border: 1px solid #44ac35;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .5s;
    padding: 20px 100px;
}
.submit-button:hover
{
    background: #cae1e3;
    color: #000;
    border: 1px solid #cae1e3;
}
@media(max-width:835px)
{
    .contact-area
    {
        padding: 2rem 8vw;
    }
    .check-box label
    {
        width: 100%;
    }
    .input-area
    {
        width: 100%;
        height: 30px;
    }
    textarea
    {
        width: 100%;
        height: 200px;
    }
    .table-list
    {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .table-list th
    {
        font-size: 1rem;
        width: 200px;
        margin-bottom: 10px;
    }
    .table-list td
    {
        font-size: 1rem;
    }
    .table-list td
    {
        width: 100%;
    }
    .contact-message
    {
        font-size: 1rem;
    }
    .contact-area .text
    {
        font-size: 1rem;
    }
}
/*タブレット用（836px 〜 1100px） Start*/
@media (min-width:836px) and (max-width:1100px)
{

}
/*タブレット用（835px 〜 1100px） End*/
/*PC（ワイドディスプレイ）用（1101px 〜） Start*/
@media (min-width:1101px)
{
    .container
    {
        margin-left: 14vw;
        margin-right: 14vw;
    }
    .contact-area
    {
        width: 100%;
        padding: 60px;
    }
}