/* ====================================================
   service_buttons.css
   service.php の「その他のサービス」ボタングリッド用スタイル
   - PC: 2列
   - モバイル: 1列
   - 青チェック柄の横長角丸ボタン
   ==================================================== */

.taiou_erea.service_buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 0 80px;
}

.taiou_erea.service_buttons p {
    background-color: #809bce;
    background-image: url(./images/背景画像/067.webp);
    background-size: 210px;
    border: none;
    border-radius: 40px;
    padding: 20px 25px;
    font-size: 24px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.taiou_erea.service_buttons p a {
    color: black;
    text-decoration: none;
    display: block;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 4px rgba(255, 255, 255, 0.9);
}

.taiou_erea.service_buttons p a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .taiou_erea.service_buttons {
        grid-template-columns: 1fr;
        margin: 0 20px;
        gap: 12px;
    }

    .taiou_erea.service_buttons p {
        padding: 16px 20px;
        font-size: 24px;
    }
}
