@charset "utf-8";
/* CSS Document */

.form-wrapper {
    background: #fafafa;
    margin: 3em auto;
    padding: 0 1em;
    max-width: 960px;
}
.contact {
    width: 960px; /*横幅*/
    margin: 0 auto; /*中央寄せ*/
    padding: 0px 0;
}

.regist-table {
    width: 100%;
    /* margin-bottom: 20px; */
}

.regist-item,
.regist-body {
    border: 10px solid #fafafa;
}

.regist-item {
    color: dimgray;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    padding: 10px 0px 10px 15px;
    text-align: left;
    width: 30%;
    background-color: #eee;
}

.regist-body {
    color: gray;
    padding: 0px 0px 0px 5px;
    vertical-align: middle;
    width: 70%;
}

.regist-body input {
    background: #fafafa;
    border: none;
    border-bottom: 2px solid #e9e9e9;
    color: darkslategray;
    font-size: 1em;
    height: 30px;
    transition: border-color 0.3s;
    width: 100%;
}

.regist-body input:focus {
    border-bottom: 2px solid #c0c0c0;
    outline: none;
}

.regist-body-radio {
    color: darkslategray;
    padding-left: 10px;
}

.regist-body-select {
    font-family: inherit;
    color: dimgray;
    background-color: transparent;
    width: 100%;
    font-size: 1em;
    border: none;
    border-bottom: 2px solid #e9e9e9;
}
.regist-body-select:focus {
    outline: none;
    border-bottom: 2px solid #c0c0c0;
}

.button-panel {
    padding-left: 9px;
    width: 99%;
}

input[type="text"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    height: 50px;
}

input[type="email"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    height: 50px;
}

input[type="password"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    height: 50px;
}

input[type="date"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    height: 50px;
}

input[type="time"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    height: 50px;
}

input[type="number"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    height: 50px;
}

input[type="tel"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    height: 50px;
}

.radio-label {
    display: block;
}
input[type="radio"] {
    display: none;
}
.radio-text:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    padding: 2px;
    background-clip: content-box;
}
input[type="radio"]:not(:checked) + .radio-text:before {
    border-color: #72767b;
}
input[type="radio"]:checked + .radio-text:before {
    border-color: slategray;
    background-color: steelblue;
}
