@charset "utf-8";
/*入力フォーム*/
form table {
    border-collapse: collapse;
/*    width: 100%;*/
    border-right: solid 1px #CCC;
    border-bottom: solid 1px #CCC;
    margin: auto;
}
form table tr th,
form table tr td {
    padding: 20px;
    border-top: solid 1px #CCC;
    border-left: solid 1px #CCC;
}
form table tr th {
    background-color: #f3f3f3;
    text-align: left;
    width: 200px;
}
form table tr th strong {
    color: #fff;
    background-color: #e75757;
    font-size: small;
    margin-right: 10px;
    padding: 0 5px;
}
form table tr th span {
    display:inline-block;
    width: 48px;
}
form table tr td span {
    color: red;
}
@media (max-width:414px) {
form table tr th,
form table tr td {
    display: block;
    width: 100%;
}
}
/*入力パーツ*/
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    background-color: #fafafa;
    padding: 10px;
    font-family: inherit;
    font-size: large;
    border: solid 1px #bbb;
}
input[type=radio] {
    margin-right: 10px;
}
label {
    cursor: pointer;
}
input[type=text],
input[type=email],
input[type=tel],
select {
    width: 300px;
}
textarea {
    width: 500px;
}
@media (max-width:414px) {
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    width: 100%;
}
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
    background-color: #ffe5ff;
    outline: 0;
}
/*ボタン*/
form div {
    margin: 20px 0;
    text-align: center;
}
button {
    padding: 5px 10px;
    font-size: large;
    color: var(--setting-color);
    background-color: var(--setting-background-color);
    cursor: pointer;
}
