@charset "UTF-8";

/* メールフォーム */
form {
    width: 500px;
}

/* テキストエリアのはみ出しを消す */
input,textarea {
    box-sizing: border-box;
}

input[type="text"],input[type="email"] {
    width: 100%;
    border: solid 1px #aaa;
    border-radius:5px;
    padding:5px;
    font-size: 14px;
    margin-bottom: 10px;
}

input[type="text"],input[type="email"]:focus {
    border: solid 1px #aaa;
    outline: 0;
}

textarea {
    width: 100%;
    border: solid 1px #aaa;
    border-radius:5px;
    padding: 5px;
    margin-bottom: 10px;
    height: 140px;
    font-size: 14px;
    font-family: inherit;
}

textarea:focus {
    border: solid 1px #aaa;
    outline: 0;    
}

input[type="submit"] {
    width: 100%;
    background: #202f55;
    border: none;
    border-radius: 5px;
    color: white;
    font-size:14px;
    letter-spacing: 0.3em;
    padding: 5px 0px;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background-image: linear-gradient(rgba(0,102,204,0.3),rgba(0,102,204,0.3));
}

ol {
    padding-left: 5px;
}

ol li {
    list-style: none;
    padding: 2px;
}

@media (max-width: 768px) {
    form {
        width: 100%;
    }
}


/* 送信完了 */
.thanks {
    max-width: 800px;
    padding-top: 20px;
    text-align: center;
    margin: auto;
}

.thanks a:hover {
    background-image: linear-gradient(rgba(0,102,204,0.4),rgba(0,102,204,0.4));
}