
.header-search-wrap {
    display: flex;
    justify-content: flex-end;
}
.header-search-inner:first-child {
    width: 69%;
    background: none;
}
.header-search-inner a {
    width: 20px;
    height: 20px;
    margin: 0 0 0 10px;
}
/*///////////////////
search
///////////////////*/
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.header-search {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid #000;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 10.25px 0.8em;
    width: 100%;
    border-radius: 200px;
}
.header-search:focus {
    border: 1px solid #000;
    box-shadow: none;
    outline: none;
}
.header-search-form {
    position: relative;
}
.header-search-submit {
    border: 0;
    position: absolute;
    right: 15px;
    top: 9px;
    width: 20px;
    background: none;
}
@media (max-width: 979px) {


    .line-list-search {
        display: block;
        transition: all 0.3s;
        box-sizing: border-box;
        position: absolute;
        width: 18px;
        height: 18px;
        right: 20px;
        top: 16px;
        z-index: 300;
    }

    .link-list-search {
        padding: 20px 0;
    }
    .link-list-search .header-search-form{
            width: 90%;
    margin: auto;
    }
    .link-list-search .header-search{
        padding: 12px;
    }
    .link-list-search .header-search-submit{
        top: 12px;
    }
    .header-search-submit{
        width: 18px;
    }

    /* メニューが開いたときの黒い半透明の背景 */
    .menu-bg-search {
        position: fixed;
        left: 0;
        top: 60px;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background: #000;
        opacity: 0;
        visibility: hidden;
        /*transition: all 0.3s;*/
        cursor: pointer;
        opacity: 0.5;
    }

    /* メニューの中身 */
    .global-nav-search {
        position: fixed;
        top: -60px;
        width: 100%;
        background: #F1F0E7;
        transition: all 0.3s;
        z-index: 200;
        overflow-y: auto;
        opacity: 0;
    }

    /* メニューが横から開く */
    .nav-open-search .global-nav-search {
        top: 59px;
        opacity: 1;
    }

    /* メニューが横から開いた時の背景 */
    .nav-open-search .menu-bg-search {
        visibility: visible;
    }
}
