.button-multiple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 39px;
    margin-bottom: 0px;
    margin-top: 23px;
}

.button-download {
    position: relative;
    text-align: center;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 18px 32px;
    border: #4B5D92 1px solid;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0px 4px 0px rgba(88, 131, 255, 0.25);
    letter-spacing: 0.05em;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
    align-items: center;
    justify-content: space-between;
}

.button-download:hover {
    transform: translateY(4px);
    box-shadow: none;
    background-color: #4B5D92;
    color: #ffffff;
}

.button-white {
    margin-top: 0;
}

.left {
    display: flex;
    gap: 27px;
}


.link-icon {
    position: relative;
    display: inline-block;
    min-width: 22px;
    height: 18px;
    margin-left: 20px;
}

.link-icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

/* 通常時：青を表示 */
.link-icon .link-normal {
    opacity: 1;
}

/* 通常時：ピンクを非表示 */
.link-icon .link-hover {
    opacity: 0;
}

/* hover時：青を消す */
.button-download:hover .link-icon .link-normal {
    opacity: 0;
}

/* hover時：ピンクを表示 */
.button-download:hover .link-icon .link-hover {
    opacity: 1;
}

.closed {
    margin-bottom: 23px;
}

@media screen and (max-width: 1023px) {
    .button-multiple {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .button-multiple {
        gap: 18px;
    }

    .button-download {
        position: relative;
        text-align: center;
        font-size: 18px;
        line-height: 1.6;
        padding: 18px 32px;
        border-radius: 60px;
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }

    .button-white{
        padding: 8px 30px;
    }

    .left {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}