@charset "UTF-8";

/*--------------ボタン動き--------------*/
.more_btn {
    margin-top: 10px;
    text-align: center;
}
.more_btn > * {
    box-sizing: border-box;
}
.more_btn a {
    color: var(--i_btn_color);
    background: transparent;
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 0.2rem;
    transition: 0.5s ease-in-out;
    min-width: 200px;
    text-decoration: none;
    overflow: visible !important;
    margin-bottom: 8px;
    vertical-align: top;
}
.more_btn a span {
    text-align: center;
    font-size: 1.5rem;
    padding: 10px 20px 9px;
    display: block;
}
.more_btn a:before {
    content: '';
    position: absolute;
    transition: all 0.3s;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--i_btn_color);
    pointer-events: none;
}
.more_btn a:after {
    content: '';
    position: absolute;
    transition: all 0.3s;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: var(--i_btn_color);
    transform: scale(1, 0.1);
    z-index: -1;
    pointer-events: none;
}
.more_btn a:hover {
    color: #fff !important;
}
.more_btn a:hover:before {
    transform: scale(1, .1);
    opacity: 0;
}
.more_btn a:hover:after {
    opacity: 1;
    transform: scale(1, 1);
}