@charset "UTF-8";

.widget_menu01 .contents_btn01 {
    background: var(--i_btn_color);
    color: var(--i_btn_txt_color);
    position: relative;
    display: inline-block;
    text-align: center;
    transition: .4s ease-in-out;
    font-family: inherit;
    font-weight: 400;
    border-radius: 50px;
    width: 220px;
    text-decoration: none;
    padding: 10px 25px 10px 30px;
}
.widget_menu01 .contents_btn01 span {
    text-align: center;
    line-height: 1.6;
    font-size: 1.5rem;
}
.widget_menu01 .contents_btn01:before {
    position: absolute;
    content: " ";
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    left: 10px;
    background: var(--i_btn_hover_color);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 10;
}
.widget_menu01 .contents_btn01 span:before, .widget_menu01 .contents_btn01 span:after {
    border: 1px solid #fff;
    content: "";
    display: block;
    width: 6px;
    height: 4px;
    position: absolute;
    transition: 0.4s ease-in-out;
}
.widget_menu01 .contents_btn01 span:before {
    right: 6px;
    top: calc(50% - 1px);
}
.widget_menu01 .contents_btn01 span:after {
    right: 8px;
    top: calc(50% - 3px);
}
.widget_menu01 .contents_btn01:hover {
    background: var(--i_btn_hover_color);
    color: var(--i_btn_hover_txt_color) !important;
}
.widget_menu01 .contents_btn01:hover:before {
    left: 15px;
    background: #fff;
}