@charset "UTF-8";
/* CSS Document */

/*************************************************
 * アシタノクラス – 上品な横並びボタングループ
 *************************************************/
.ac-button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* ボタン本体 */
.ac-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;

    color: #1c2e45;
    background: #ffffff;
    border: 1px solid #cdd5df;
    border-radius: 999px;

    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

/* ホバー時：ほんのり色づく上品な動き */
.ac-button:hover {
    background: linear-gradient(135deg, #5eb6ff, #3a8bff);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(26,86,168,0.25);
    transform: translateY(-2px);
}

/* スマホ対応：自然に縦並び */
@media (max-width: 600px) {
    .ac-button-group {
        gap: 0.75rem;
    }
    .ac-button {
        width: 100%;
        padding: 0.9rem 1.2rem;
    }
}
