@charset "utf-8";

input:focus,
select:focus,
textarea:focus {
	background: #fff;
}
a:hover {
    text-decoration: none;
}

.toiawase_caution {
    margin: 5px;
    padding: 5px;
    line-height: 1.2;
    font-size: 12px;
    background-color: #f3f2f1;
}

.toiawase_caution a {
    text-decoration: underline;
    color: #3366cc;
}

.toiawase_caution_mb10 {
    margin-bottom: 10px;
}

.toiawase_caution_important {
    font-weight: bold;
    color: red;
}

.toiawase_error_message {
    margin: 5px;
    padding: 10px;
    line-height: 1.2;
    font-size: 12px;
    background-color: #f9c7ce;
    color: red;
}

.toiawase_info {
    margin: 10px 5px;
    padding: 5px;
    line-height: 1.4;
    font-size: 14px;
}

.toiawase_label {
    background-color: #d3ebf9;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    margin: 0 5px;
    vertical-align: top;
}
.toiawase_label_required {
    font-size: 9px;
    color: white;
    background-color: red;
    padding: 3px;
    border-radius: 3px;
}
.toiawase_input {
    padding: 10px 5px;
    margin-bottom: 5px;
    font-size: 14px;
}
.toiawase_input > input, 
.toiawase_input > select, 
.toiawase_input > textarea {
    border: 1px solid #dee2e6;
    border-radius: 3px;
    font-size: 14px;
    padding: 3px 5px;
}
.toiawase_input > input, textarea {
    width: 97%;
    font-family: inherit;
}
.toiawase_input > select  {
    width: 100%;
}


.toiawase_button_wrapper,
.toiawase_button_wrapper_confirm {
    text-align: center;
}

.toiawase_button_submit {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
    background: -webkit-gradient(linear,center top,center bottom,from(#3ea1ff),to(#108AFF));
    background: -moz-linear-gradient(center top,#3ea1ff,#108AFF) repeat scroll 0 0 transparent;
}

.toiawase_button_back {
    font-size: 14px;
    display: inline-block;
    border: 1px solid #999;
    color: #333;
    padding: 5px 10px;
    text-align: center;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
    background-color: #fff;
}


.toiawase_button_wrapper > .toiawase_button_submit {
    width: 70%;
}

.toiawase_button_wrapper_confirm > .toiawase_button_submit,
.toiawase_button_wrapper_confirm > .toiawase_button_back {
    width: 30%;
}


/* PC版定義 */
.toiawase_row {
    display: flex;
    justify-content: center;
    border-top: 1px solid #bdc1c5;
    padding: 5px;
}
.toiawase_row_last {
    border-bottom: 1px solid #bdc1c5;
    margin-bottom: 20px;
}

.toiawase_label_pc {
    font-size: 12px;
    font-weight: bold;
    width: 180px;
    margin: 5px;
    display: inline-block;
}

.toiawase_input_pc {
    font-size: 12px;
    width: 320px;
    margin: 5px;
    display: inline-block;
    overflow-wrap: break-word;
}

.toiawase_input_pc > input, 
.toiawase_input_pc > select, 
.toiawase_input_pc > textarea {
    border: 1px solid #dee2e6;
    border-radius: 3px;
    font-size: 14px;
    padding: 3px 5px;
}
.toiawase_input_pc > input, textarea {
    width: 97%;
    font-family: inherit;
}
.toiawase_input_pc > select  {
    width: 100%;
}

.toiawase_max_height_pc {
    max-height: 250px;
    overflow: auto;
}

