/*  ページ移動ボタンCSS */
.resv-btn-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap;
}
@media (max-width: 700px) {
    .resv-btn-row {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
}

.resv-btn-row a,
.resv-btn-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    border-radius: 8px;
    font-weight: bold;
    padding: 18px 0;
    font-size: 1.25rem;
    transition: all 0.2s;
    border: 2px solid #41a8cc;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .resv-btn-row a,
    .resv-btn-row button {
        min-width: auto;
        width: 100%;
    }
}

/* Bootstrapボタンスタイル上書き */
.resv-btn-row .btn-outline-secondary {
    background: #fff;
    color: #41a8cc;
}
.resv-btn-row .btn-outline-secondary:hover {
    background: #eaf6fa;
    color: #41a8cc;
}
.resv-btn-row .btn-primary {
    background: #41a8cc;
    color: #fff;
}
.resv-btn-row .btn-primary:hover {
    background: #2693b8;
    color: #fff;
}

.resv-btn-row .btn-outline-primary {
    background: #fff;
    color: #41a8cc;
}
.resv-btn-row .btn-outline-primary:hover {
    background: #eaf6fa;
    color: #41a8cc;
}

.resv-btn-row i {
    margin: 0 8px 0 0;
    font-size: 1.2em;
}