@charset "UTF-8";
/* search box */
.search_word_top {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1050;
    -webkit-transform: translateY(-160px);
    transform: translateY(-160px);
    -webkit-transition: .3s;
    transition: .3s;
}

.search_word_top.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.search_word_top .search_free {
    margin: 0 auto;
}
.search_word_top .search_word_top_body {
    padding-top: 30px;
    height: 100px;
    background-color: #eee;
}
.search_word_top .button_fw_close {
    position: absolute;
    top: -60px;
    width: 60px;
    height: 60px;
    padding-top: .5rem;
    background-color: #eee;
    border: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}
.search_word_top .button_fw_close::before {
    content: "";
    display: block;
    margin: 0 22% .5rem;
    width: 56%;
    height: 56%;
    background: url(../../img/list/ic_close.svg) center center no-repeat;
    background-size: contain;
}

.is_open:not(.sp) .search_word_top .search_word_top_body {
    padding-right: 17px;
}

/* form input
-------------------------------------*/
input {
    border-radius: 0;
}

input[type="text"],
select {
    padding: 10px 20px 9px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Yu Gothic", YuGothic, sans-serif;
    border: 1px solid #ccc;
    font-size: 1.6rem;
    line-height: normal;
    color: #333;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline-block;
    margin: -3px 20px 0 0;
    padding: 0;
    width: auto;
    vertical-align: middle;
}

button,
input[type="button"],
input[type="submit"] {
    padding: 0;
    border: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Yu Gothic", YuGothic, sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: pointer;
}

/* checkbox */
.chk_wrap input {
    display: none;
}

.chk_wrap span {
    padding-left: 24px;
    position: relative;
    display: inline-block;
}

@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .chk_wrap span {
        padding-top: .4rem;
    }

    /* IE11 */
}
.chk_wrap span::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 4px;
    background-color: #fff;
}

.chk_wrap input:checked + span::after {
    content: "\f00c";
    position: absolute;
    top: 2px;
    left: 3px;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.chk_wrap input:checked + span::before {
    background-color: #004387;
    border-color: #004387;
}

.input_error_background {
    background: pink;
}
