/*****************/
/* コントロール   */
/*****************/
input{
    border: 0;
    border-bottom: 1px #444 solid;
}
input[type=radio] {
    display: none;
}
input[type=text] {
    ime-mode: active;
    width: 95%;
    padding-bottom: 5px;
}
input[type=number] {
    width: 25%;
}
input[type=tel] {
    width: 40%;
}
input[type=email] {
    width: 95%;
}
input[type=submit]{
    width: 80%;
    background-color: #ffa500;
    color: white;
    font-weight: bold;
    margin-top: 40px;
    border: 0;
    padding: 20px 0;
    height: auto;
    text-align: center;
}
input[type=number], input[type=tel], input[type=email] {
    ime-mode: disabled;
}
input[type=text], input[type=number], input[type=tel], input[type=email] {
    padding-left: 5px;
    padding-right: 5px;
}
select {
    height: 50px;
    font-size: 18px;
}

.b-table {
    display: table;
    height: 100%;
    width: 100%;
}
.b-table-row {
    display: table-row;
}
.b-table-cell {
    display: table-cell;
    vertical-align: middle;
}
/**************/
/* 入力エリア */
/**************/
.input-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: black;
    opacity: 0.3;    
}
.entry-line {
    display: table;
    width: 100%;
    margin-top: 10px;
}
.line-title {
    display: table-cell;
    width: 310px;
    color: black;
    background: #ddd;
    border-right: #fff solid 10px;
}
    .line-title > p {
        font-size: 16px;
        margin-left: 1em;
        margin-top: 1em;
        line-height: 1.5em;
    }
    .line-title > p > span {
        font-size: 12px;
        margin-left: 1em;
    }
    .big-title {
        background-color: #bbbbbb;
        height: 75px;
    }
    .big-title > p {
        font-size: 22px;
        font-weight: bold;
    }
.line-content {
    display: table-cell;
    width: 630px;
    vertical-align: middle;
}
.line-content-1 { height: 80px; }
.line-content-2 { height: 140px; }
.line-content-3 { height: 180px; }
.line-content-4 { height: 250px; }
.line-content-5 { height: 300px; }

.line-status {
    width: 60px;
    color: white;    
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
}
.line-main {
    display: table-cell;    
}
.line-subtitle {
    width: 70px;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}
.line-subtitle_sp {
    display:none;
}
.line-example {
    color: rgba(0,0,0,0.3);
    margin: 5px 0 0;
    font-size: 15px;
}
.line-after {
    margin-top: 20px;
}

.btn-confirm-area {
    display: inline-block;
    width: 80px;
    margin-left: 30px;
    border: #444 1px solid;
    background: #ccc;
    font-size: 16px;
    text-align: center;    
    padding: 10px;
}
.btn-confirm-area:hover {
    opacity: 0.5;
    cursor:pointer;  
}
.btn-confirm-area:active {
    background-color: pink;
}



.p-submit {
    display: table;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}


/* ステータス部分の設定 */
.is-must {
    background-color: #e75b4c;
}
.is-must:after {
    content: "必須";
}
.is-may {
    background-color: #52bc67;
}
.is-may:after {
    content: "任意";
}
.is-ok {
    background-color: #52bc67;
}
.is-ok:after {
    content: "OK";
}
.is-ng {
    background-color: #fba848;
}
.is-ng:after {
    content: "NG";
}


/* 入力部分の設定 */
.p-radio-button {
    display: inline-block;
    width: 150px;
    height: 60px;
    border: 1px black solid;
    text-align: center;
    vertical-align: middle;
    line-height: 60px;
    background-color: #fff;
}

.p-item-area__error {
    display: none;
    color: red;
    margin-bottom: 5px;
}



/* FireFoxでのinput type=number 対策 */
/*.typeZip, .typeNumber {
    ime-mode: disabled;
    width: 25%!important;
}*/
.typeCount {
    width: 10%!important;
}


/* 個人情報の利用目的 小窓 */
#personal-info-protection {
    height:200px;
    background: white;
    overflow-y: scroll;
    border: 1px #444444 solid;
    margin: 10px 0;
    padding: 10px;
}


/* 確認ボタン */
#confirmButton {
    font-size: 32px;
}


/* エラーメッセージ関連 */
.p-item-error {
    display: none;
    color: red;
}
.p-item-error p {
    margin: 0;
}
.p-error-message {
    display:none;
    position: relative;
    color: #e75b4c;
    margin-top: 50px;
    padding: 2%;
    font-size: 25px;
}
