@charset "UTF-8";

/*------ボタン2カラム-------*/
.button {
    margin-top: 20px;
}

.button a:nth-of-type(1) {
    margin-right: 5px;
}

.button a {
    text-decoration: none;
    border: 1px solid var(--i_btn_color);
    background: var(--i_btn_color);
    color: #fff !important;
    position: relative;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    transition: .4s ease-in-out;
    font-family: inherit;
    /* border-radius: 99px; */
    background-position: 1% 50%;
    background-size: 200% auto;
    min-width: clamp(0px, 100%, 200px);
    max-width: 840px;
    box-sizing: border-box;
    margin-bottom: 8px;
    vertical-align: top;
}

.button a span {
    text-align: center;
    line-height: 1.6;
    font-size: 1.5rem;
    padding: 12px 25px;
    display: block;
    font-family: "EB Garamond", "Shippori Mincho", "Petit Formal Script", serif;
}

.button a:hover {
    transition: 0.5s ease-in-out;
    background-position: 99% 50%;
    opacity: 1;
}

@media screen and (max-width: 900px) {
    .button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
}