@charset "utf-8";
/* CSS Document */

/*----------------
contact.htmlの設定
-----------------*/
#inquiry .top_img {
    position: relative;
    background-image: url(../images/access-top.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
    margin-bottom: 150px;
    & h1 {
        font-size: 4.8rem;
        color: #fff;
        -webkit-text-stroke: 1px #888;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
} /* .hero_img */

#inquiry article {
    & h2 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    & ul {
        padding: 10px;
        text-align: left;
        /* border: 3px solid #333; */
        background: #999;
        margin-bottom: 50px;
    }
    & form {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding: 3rem;
        text-align: left;
        border: 1px solid #333;
        background: #fefefe;
        box-shadow: 5px 5px 3px rgba(0, 0, 0, .5);
        & label {
            display: block;
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            & span {
                color: red;
            }
        }
        & input {
            border: 3px solid #000;
            width: 100%;
            height: 50px;
            margin-bottom: 50px;
            font-size: 1.6rem;
        }
        & input:focus {
            border: 3px solid red;
        }
        & p {
            text-align: center;
            & input[type="checkbox"] {
                display: inline-block;
                width: 1.6rem;
                height: 1.6rem;
                margin-right: auto;
                margin-left: auto;
            }
            & a {
                text-decoration: underline;
                color: #0003b8;
                & span {
                    font-size: 1.6rem;
                }
            }
        }
        & textarea {
            width: 100%;
            height: 500px;
            border: 3px solid #000;
            margin-bottom: 50px;
            font-size: 1.6rem;
        }
        & textarea:focus {
            border: 3px solid red;
        }
        & input[type="submit"] {
            width: 160px;
            height: 50px;
        }
    } /* form */
} /* #inquiry article */

/*------------------
スマートフォンの設定//
------------------*/
@media (max-width:768px) {
    #inquiry .top_img {
        margin: 80px 0 100px;
        & h1 {
            font-size: 4.8rem;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    } /* .hero_img */

    #inquiry article {
        & ul {
            width: 95%;
            margin: 0 auto 50px;
        }
        & form {
            width: 95%;
            & p {
                & input[type="checkbox"] {
                    margin-bottom: 5px;
                }
            }
            & input[type="submit"] {
                margin-top: 50px;
            }
        } /* form */
    } /* #inquiry article */
}
/*----- contact.htmlの設定 ここまで ------*/