.container {
    max-width: 732px;
    margin: 0 auto;
}
.search_bank_section {
    background: #F9F9F9;
    padding: 40px 0 32px;
    letter-spacing: 0.06em;
}
.search_bank {
    display: flex;
    justify-content: space-between;
}
.search_bank label {
    font-size: 18px;
    font-weight: 700;
    padding: 16px 24px 16px 0px;
    white-space: nowrap;
    color: #4D4D4D;
}
.search_bank input[type="text"] {
    border: solid 1px #E6E6E6;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    padding: 19px 16px 18px;
    width: 100%;
    margin-right: 14px;
}
.search_bank input[type="text"]::placeholder {
    color: #CCCCCC;
}
.search_bank input[type="text"]:-ms-input-placeholder {
    color: #CCCCCC;
}
.search_bank input[type="text"]::-ms-input-placeholder {
    color: #CCCCCC;
}
.search_bank input[type="button"] {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 56px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    min-width: 128px;
    border: none;
    border-radius: 10px;
    background: #E7002B;
    -webkit-box-shadow: 0px 4px 0px 0px #9E232D;
    box-shadow: 0px 4px 0px 0px #9E232D;
    outline: none;
    cursor: pointer;
}
.search_bank input[type="button"] + input[type="button"] {
    margin-left: 10px;
}
.search_bank input[type="button"]:hover {
    top: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0.7;
}
.search_bank input[type="button"]:disabled {
    background: #777;
    -webkit-box-shadow: 0px 4px 0px 0px #605f5f;
    box-shadow: 0px 4px 0px 0px #605f5f;
}
.search_bank input[type="button"]:disabled:hover {
    top: 0;
    -webkit-box-shadow: 0px 4px 0px 0px #605f5f;
    box-shadow: 0px 4px 0px 0px #605f5f;
    opacity: 1;
}
.search_bank_note {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #313131;
    margin-top: 20px;
}
.bank_list_section {
    padding: 56px 0 0;
    letter-spacing: 0.06em;
}
.bank_list_header {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
    padding-bottom: 16px;
}
.bank_icon_list {
    display: flex;
}
.bank_icon_list span {
    margin-right: 10px;
}
.bank_icon {
    margin-left: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bank_icon img {
    width: 32px;
}
.bank_icon.electricity img {
    width: 18px;
}
.bank_icon.gas img {
    width: 12px;
}
#search_result {
    display: none;
}
.search_result_title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #EF7B83;
    border: #E6E6E6 solid 1px;
    padding: 15px 20px;
}
.bank_line + .bank_line {
    margin-top: 24px;
}
.bank_line_title {
    position: relative;
}
.bank_line_title::before,
.bank_line_title::after {
    position: absolute;
    content: "";
    background: #fff;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    height: 2px;
    width: 16px;
    transition: transform .3s;
    pointer-events: none;
}
.bank_line_title::after {
    transform: rotate(90deg);
}
input.bank_accordion:checked ~ .bank_line_title::after {
    transform: rotate(0deg);
}
.bank_line_title label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #EF7B83;
    border: #E6E6E6 solid 1px;
    padding: 15px 20px;
    cursor: pointer;
}
.bank_step_title {
    background: #F2F2F2;
    border: solid 1px #E6E6E6;
    border-top: none;
}
.bank_step_title span {
    display: inline-block;
    background: #E6E6E6;
    font-size: 16px;
    font-weight: 700;
    color: #4D4D4D;
    padding: 6px 20px 5px;
}
.bank_name {
    display: flex;
    justify-content: space-between;
    border: solid 1px #E6E6E6;
    border-top: none;
    padding: 12px 20px 11px;
}
.bank_name_title {
    font-size: 16px;
    font-weight: 700;
    color: #4D4D4D;
}
.bank_data {
    display: flex;
    margin-left: 8px;
}
.bank_data .bank_icon + .bank_icon {
    margin-left: 48px;
}
.bank_data .bank_icon {
    width: 32px;
}
.bank_data .bank_icon.electricity {
    width: 18px;
}
.bank_data .bank_icon.gas {
    width: 12px;
}
input.bank_accordion {
    display: none;
}
input.bank_accordion:checked ~ .bank_accordion_detail {
    display: block;
    height: auto;
}
.bank_accordion_detail {
    height: 0;
    display: none;
}
#bank_list.result .bank_line_title {
    display: none;
}
#bank_list.result .bank_step_title {
    display: none;
}
#bank_list.result .bank_accordion_detail {
    display: block;
    height: auto;
}
#bank_list.result .bank_line + .bank_line {
    margin: 0;
}
#bank_list.result .bank_name.off {
    display: none;
}
.search_result_note {
    display: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 24px;
}
.bank_list_section--noresult .bank_list_header{
    display: none;
}
.foot_note {
    font-size: 14px;
    margin-top: 24px;
}
.display_sp {
    display: none;
}
.display_pc {
    display: block;
}
@media screen and (max-width: 767px) {
    .el-common__main-wrap {
        margin-bottom: 0;
    }
    .container {
        max-width: none;
        margin: 0 4.2vw;
    }
    .search_bank_section {
        padding: 18px 0 16px;
    }
    .search_bank {
        flex-wrap: wrap;
    }
    .search_bank label {
        font-size: 15px;
        padding: 13px 16px 13px 0px;
    }
    .search_bank input[type="text"] {
        width: calc(100% - 48px);
        box-sizing: border-box;
        margin: 0;
        font-size: 16px;
        padding: 15px 16px 15px;
    }
    .search_bank input[type="button"] {
        width: 100%;
        margin-top: 18px;
        font-size: 15px;
        -webkit-box-shadow: 0px 2px 0px 0px #9E232D;
        box-shadow: 0px 2px 0px 0px #9E232D;
        height: 40px;
    }
    .search_bank input[type="button"]:disabled {
        -webkit-box-shadow: 0px 2px 0px 0px #605f5f;
        box-shadow: 0px 2px 0px 0px #605f5f;
    }
    .search_bank input[type="button"] + input[type="button"] {
        margin-left: 0;
        margin-top: 8px;
    }
    .search_bank input[type="button"]:hover {
        top: 0;
        -webkit-box-shadow: 0px 2px 0px 0px #9E232D;
        box-shadow: 0px 2px 0px 0px #9E232D;
        opacity: 1;
    }
    .search_bank input[type="button"]:disabled:hover {
        top: 0;
        -webkit-box-shadow: 0px 2px 0px 0px #605f5f;
        box-shadow: 0px 2px 0px 0px #605f5f;
    }
    .search_bank_note {
        font-size: 13px;
        margin-top: 16px;
    }
    .bank_list_section {
        padding: 40px 0 0;
    }
    .bank_list_header {
        display: block;
        padding-bottom: 40px;
    }
    .bank_list_header_title {
        text-align: center;
        font-size: 18px;
        border-bottom: 1px solid #E6E6E6;
        padding-bottom: 16px;
    }
    .bank_icon_list {
        margin-top: 20px;
        justify-content: center;
    }
    .bank_icon {
        margin: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .bank_icon + .bank_icon {
        margin-left: 32px;
    }
    .bank_icon span {
        font-size: 13px;
        margin: 0;
    }
    .bank_icon img {
        width: 29px;
    }
    .bank_icon.electricity img {
        width: 16px;
    }
    .bank_icon.gas img {
        width: 10px;
    }
    .bank_line + .bank_line {
        margin-top: 22px;
    }
    .bank_line_title label {
        font-size: 15px;
        padding: 12px 10px;
    }
    .bank_line_title::before,
    .bank_line_title::after {
        width: 13px;
        right: 12px;
    }
    .bank_step_title span {
        font-size: 15px;
        padding: 4px 10px 3px;
    }
    .bank_name {
        padding: 13px 24px 13px 10px;
    }
    .bank_name_title {
        font-size: 14px;
    }
    .bank_data .bank_icon + .bank_icon {
        margin-left: 32px;
    }
    .bank_data .bank_icon {
        width: 29px;
    }
    .bank_data .bank_icon.electricity {
        width: 16px;
    }
    .bank_data .bank_icon.gas {
        width: 10px;
    }
    .search_result_title {
        font-size: 15px;
        padding: 12px 10px;
    }
    .foot_note {
        font-size: 12px;
        margin-top: 22px;
    }
    .display_sp {
        display: block;
    }
    .display_pc {
        display: none;
    }
}
