@charset "utf-8";
body {
    -webkit-text-size-adjust: none;
    background-color: #F7F7F7;
}
img {max-width: 100%;}
#content {
    width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

@media screen and (max-width: 768px){
	#content {
        width: 100%;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 50px 12px;
    }
}
h1 {
    text-align: center;
    margin-bottom: 30px;
}
#header p {text-align: center;}
#alert {
    text-align: center;
    padding: 40px;
}
#alert p {
    display: inline;
    border-top: 1px solid #CCC;
    padding-top: 20px;
}
.kome {
    font-size: 11px;
    color: #666;
    padding-top: 10px;
}
table {
    width: 100%;
    border-spacing: 17px;
    margin-bottom: 30px;
}
@media screen and (max-width: 768px){
    table,tbody,tr,caption {display: block;}
    caption {margin-bottom: 12px;}
}
caption {
    text-align: left;
    font-size: 21px;
}
th,td {
    padding: 2px 10px;
    text-align: left;
    vertical-align: middle;
}
th {
    border-left: 1px solid #FBA848;
    width: 190px;
    position: relative;
}
td {
    border-left: 1px solid #CCC;
    position: relative;
}
th:after,
td:after {
    content: "";
    display: block;
    width: 209px;
    height: 1px;
    background-color: #CCC;
    position: absolute;
    left: 9px;
    bottom: -9px;
}
td:after {width: 544px;}
@media screen and (max-width: 768px){
    th,td {
        display: block;
        width: 100%;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    th,td {margin-bottom: 12px;}
    th:after,
    td:after {
        content: "";
        display: none;
    }
}
input[type="number"],
input[type="text"],
select,
textarea {
    border: none;
    border: 1px solid #FBA848;
    border-radius: 4px;
    height: 30px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2px 10px;
}
select[disabled="disabled"] {background-color: #EEE;}
@media screen and (max-width: 768px){
    input[type="text"],
    select,
    textarea {
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        height: 44px;
        max-width: 100%;
    }
}
input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #58BE89;
    border-width: 2px;
}
input::-webkit-input-placeholder {color: #BBB;}
input::-moz-placeholder {color: #BBB;}
.w6 {width: 6em;}
.w8 {width: 8em;}
.w16 {width: 16em;}
.w26 {width: 26em;}
.furi {
    display: inline-block;
    padding: 0 1em 0 0.5em;
}
textarea {
    width: 100%;
    height: 5em;
}
input[type="radio"],
table input[type="checkbox"] {display: none;}
input[type="radio"] + label {
    background: url(../imgs/radio_off.png) 0 center no-repeat;
    line-height: 22px;
    padding: 4px;
    padding-left: 30px;
    margin-right: 1em;
    cursor: pointer;
}
input[type="radio"]:checked + label {background: url(../imgs/radio_on.png) 0 center no-repeat;}

.moreCheck,
.moreCheck02{
    position: relative;
    background-color: #CCC;
    padding: 12px;
    top: 0;
    left: 0;
    margin-top: 12px;
}
.moreCheck:before,
.moreCheck02:before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    border-color: transparent transparent #CCC transparent;
    position: absolute;
    top: -10px;
    left: 150px;
}
table input[type="checkbox"] + label {
    background: url(../imgs/check_off.png) 0 center no-repeat;
    padding-left: 30px;
    margin-right: 1em;
    cursor: pointer;
    padding-top: 4px;
    padding-bottom: 4px;
}
table input[type="checkbox"]:checked + label {background: url(../imgs/check_on.png) 0 center no-repeat;}
#privacy {
    text-align: center;
    margin-bottom: 30px;
}
#privacy a {
    display: block;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #F76D00;
    text-decoration: none;
}
#privacy a:hover {
    color: #A6A;
    text-decoration: underline;
}
#submitArea {text-align: center;}
#submitArea input {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    display: inline-block;
    border: 3px solid #FFF;
    color: #FFF;
    background-color: #333;
    padding: 6px 40px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);
    cursor: pointer;
    -webkit-transition: all 0.1s linear 0;
    transition: all 0.1s linear 0;
}
#submitArea input:hover {
    background-color: #D21111;
}
hr {
    display: none;
}
@media screen and (max-width: 768px){
    hr {
        display: block;
        border: none;
    }
}

.v_error {
    border: 2px solid red;
    padding: 1.5em 1em 1em 1em;
    margin-bottom: 2em;
    position: relative;
    background-color: #FFF;
}
.v_error:after {
    content: "！ご確認ください！";
    display: block;
    position: absolute;
    top: -1em;
    left: 1em;
    padding: 0 6px;
    background-color: #FFF;
    font-size: 16px;
    color: red;
    font-weight: bold;
}
.v_error p {
    padding-left: 1em;
    font-family: serif!important;
    margin-bottom: 4px;
}
.v_error p:before {
    content: "・";
}