/* button.css */

/* 水色の角丸ピルボタン（例：新着情報一覧、リンク集など、サイト内で繰り返し使われる） */
.pill-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 70px;
    border: 1px solid #000;
    border-radius: 999px;
    background: #17bae5;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pill-button:hover {
    background: #fff;
    color: #17bae5;
}

/* グレーの角丸ピルボタン（例：詳細ページの「一覧に戻る」） */
.pill-button--dark {
    background: #3e3e3e;
}

.pill-button--dark:hover {
    background: #fff;
    color: #3e3e3e;
}

.pill-button__icon {
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    display: block;
    width: 26px;
    height: 26px;
}

/* 782px〜1279px：PC版(1366px基準)のサイズ感をvwでそのまま縮小 */
@media (max-width: 1279px) {
    .pill-button {
        width: 27.818vw;
        height: 5.124vw;
        font-size: 1.464vw;
    }

    .pill-button__icon {
        right: 1.903vw;
        width: 1.903vw;
        height: 1.903vw;
    }
}

/* 375px(Figmaスマホ実測値)基準：782pxまでvwで滑らかに拡大縮小する */
@media (max-width: 782px) {
    .pill-button {
        width: 61.867vw;
        height: 13.6vw;
        font-size: 4vw;
    }

    .pill-button__icon {
        right: 4.267vw;
        width: 5.333vw;
        height: 5.333vw;
    }
}
