/* 青から緑のグラデーション */
.is-style-blue-to-green-gradient {
    background: linear-gradient(49.43deg, #2376D0 0.87%, #25ACCA 43.12%, #20CD7A 99.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 添付ファイル風スタイル */
.is-style-variable-rounded-corner-double-end-icons {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    max-width: 100%;
    padding: 12px 50px;
    margin: 20px auto;
    font-weight: 600;
    color: #263943;
    background: #FFFFFF;
    border-radius: 50px;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(white, white), 
        linear-gradient(49.43deg, #2376D0 0.87%, #25ACCA 43.12%, #20CD7A 99.13%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.is-style-variable-rounded-corner-double-end-icons::before,
.is-style-variable-rounded-corner-double-end-icons::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 24px;
    background-image: url("../img/Subtract.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.is-style-variable-rounded-corner-double-end-icons::before {
    left: 15px;
}

.is-style-variable-rounded-corner-double-end-icons::after {
    right: 15px;
}