//フリーワード検索
.c-searchForm {
    position: relative;
}

.c-searchForm__s {
    width: 100%;
    padding: 4px 44px 4px 8px;
    line-height: 2;
}

.c-searchForm__submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    overflow: hidden;
    line-height: 10;
    background: none;
    border: none;
    transition: opacity .25s;

    &::before {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 1;
        font-size: 16px;
        transform: translateX(-50%) translateY(-50%);

        @extend %arkheIcon;
        @extend .arkhe-icon-search::before;
    }

    &:hover {
        opacity: .75;
    }
}

