/*
* 動画投稿フォーム用
* 2024-09
*/
body {
    background-color: lightblue;
    min-width:auto;
    font-size:16px;
}
#content {
    width:100%;
}
hr {
    display:none;
}
.container h1 {
    font-size:200%;
}
.container .body_start {
    padding:0.5em;
    margin-bottom:1em;
}
.container .form_start {
    padding:0.5em;
    margin-bottom:1em;
}
.container .input {
    padding:0.5em;
    margin-bottom:1em;
}
.container input, textarea {
    font-size:100%;
}
.container .input.radio div {
    padding:1em;
}
.question_complement {
    font-weight:normal;
}
/* 送信ボタン */
.container form .submit {
    padding:0.5em;
    margin-bottom:1em;
}
.container form .submit input[type=submit] {
    background:#ccc;
    color:#333;
    text-shadow:none;
    width:8em;
}
.container form .submit input[type=submit]:hover {
    background:rgb(255, 196, 128);
}
/* 入力エラー */
.container form div.error {
    background:#fcc;
}
.container form .form-error {
    outline:solid 1px #f33;
    background:#fee;
}
/* 幅リセット */
.container_12 {
    width:98%;
}
.container_12 [class^="grid_"] {
    width:auto;
}

