/* 求人一覧ページのスタイル */


:root {
    --brand-color: #003d7a;
    --text-color: #333333;
    --accent-color: #0066cc;
    --bg-color: #f0f4f8;
    --cta-color: #009688;
    --border-color: #f0f4f8;
}

.re-jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px 20px 20px;
}

.re-jobs-header {
    margin-bottom: 30px;
}

.re-jobs-header h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.re-search-form {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.re-search-form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.re-search-form input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.re-search-form button {
    padding: 10px 30px;
    background: var(--brand-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.re-search-form button:hover {
    background: var(--brand-color);
}

.re-search-form .re-reset-link {
    border-radius: 4px;
    border: solid 1px var(--text-color);
    background-color: var(--bg-color);
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    display: inline-block;
}

.re-jobs-count {
    color: #666;
    font-size: 14px;
}

.totop {
    bottom: 160px;
}



.re-sort-box label {
    font-size: 14px;
    color: #666;
}

.re-sort-box select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.re-job-list {
    display: grid;
    gap: 20px;
}

.re-job-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    padding: 20px;
    position: relative;
    min-height: 250px;
}

.re-job-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.re-job-card-top {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.re-job-image {
    max-width: 200px;
    max-height: 150px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}

.re-job-main {
    flex: 1;
    min-width: 0;
}

.re-job-title {
    font-size: 1.3em;
    margin: 0 0 15px 0;
    color: var(--accent-color) !important;
    font-weight: bold;
    line-height: 1.4;
}

.re-job-title a {
    color: var(--accent-color);
    text-decoration: none;
}

.re-job-title a:hover {
    text-decoration: underline;
}

.re-job-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.re-job-meta-item {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.re-job-meta-label {
    display: inline-block;
    color: #666;
    min-width: 90px;
}

.re-job-description-preview {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.re-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.re-job-tag {
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
}

.re-job-point {
    background: var(--bg-color);
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 60px;
}

.re-job-point-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.re-job-point-content {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.re-apply-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--cta-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.re-apply-button:hover {
    background: #4a9d8f;
    color: white;
}

.re-pagination {
    margin: 30px 0;
    text-align: center;
}

.re-pagination a,
.re-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.re-pagination a:hover {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

.re-pagination .re-current {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

.re-pagination .re-dots {
    border: none;
    padding: 8px 4px;
}

.re-no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--cta-color);
}

.re-no-results h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.re-no-results-message {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.re-consultation-box {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
}

.re-consultation-title {
    font-size: 1.4em;
    color: var(--brand-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.re-consultation-text {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.re-consultation-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--cta-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: bold;
}

.re-consultation-button:hover {
    background: #4a9d8f;
    color: white;
}

.re-consultation-features {
    margin-top: 20px;
    text-align: left;
}

.re-consultation-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.re-consultation-features li {
    padding: 8px 0;
    color: #333;
}

.re-consultation-features li:before {
    content: "✓ ";
    color: var(--cta-color);
    font-weight: bold;
    margin-right: 8px;
}

.re-jobs-result-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* レスポンシブ対応 - タブレット */
@media (max-width: 1024px) and (min-width: 769px) {
    .re-job-card {
        padding-bottom: 90px !important;
    }
}

/* レスポンシブ対応 - スマホ */
@media (max-width: 768px) {
    .totop {
        bottom: 190px;
    }

    .re-jobs-container {
        padding: 30px 20px 20px 20px;
    }

    .re-search-form {
        padding: 0;
    }

    .re-job-card {
        min-height: auto !important;
        padding-bottom: 20px !important;
    }

    .re-job-card-top {
        flex-direction: column !important;
    }

    .re-job-image {
        width: 100% !important;
    }

    .re-job-point {
        margin-bottom: 15px !important;
        margin-top: 15px !important;
    }

    .re-job-actions {
        position: static !important;
        flex-direction: column !important;
        align-items: stretch !important;
        margin-top: 15px !important;
        gap: 10px !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
    }

    .re-job-keep-label {
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .re-apply-button {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }
}

/* 求人詳細ページのスタイル */

.job-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.job-detail-header {
    margin-bottom: 30px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--brand-color);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.job-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.job-detail-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.job-meta-section {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.job-meta-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.job-meta-row:last-child {
    border-bottom: none;
}

.job-meta-label {
    font-weight: bold;
    color: #666;
}

.job-meta-value {
    color: #333;
}

.job-section {
    margin-bottom: 40px;
}

.job-section-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-color);
    color: #333;
}

.job-section-content {
    line-height: 1.8;
    color: #555;
    white-space: pre-line;
}

.apply-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--brand-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
    text-align: center;
    margin: 30px 0;
}

.apply-button:hover {
    background: var(--brand-color);
}

@media (max-width: 768px) {
    .job-meta-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .job-meta-label {
        border-bottom: 1px dotted #ddd;
        padding-bottom: 5px;
    }
}

/* キープ機能のスタイル */

/* 応募ボタンとキープのエリア */
.re-job-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

/* キープラベル */
.re-job-keep-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.re-job-keep-label:hover {
    background: var(--bg-color);
    border-color: var(--cta-color);
}

.re-job-keep-text {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

/* チェックボックス */
.re-job-keep-checkbox {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

/* 固定バー */
.re-kept-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.re-kept-bar-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.re-kept-bar-btn-view {
    color: #333;
    border-right: 1px solid #e0e0e0;
}

.re-kept-bar-btn-view:hover {
    background: #f8f9fa;
}

.re-kept-bar-btn-apply {
    background: var(--cta-color);
    color: white;
    justify-content: center !important;
    align-items: center !important;
}

.re-kept-bar-btn-apply:hover {
    background: #4a9d8f;
}

.re-kept-bar-count {
    font-size: 13px;
    font-weight: normal;
    color: #666;
}

.re-kept-bar-label {
    font-size: 15px;
}

/* モーダル */
.re-kept-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.re-kept-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.re-kept-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.re-kept-modal-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
}

.re-kept-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.re-kept-modal-close:hover {
    color: #333;
}

.re-kept-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.re-kept-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.re-kept-item {
    display: flex;
    gap: 10px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.re-kept-item-content {
    flex: 1;
    min-width: 0;
}

.re-kept-item-title {
    color: var(--brand-color);
    text-decoration: none;
    font-size: 15px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.re-kept-item-title:hover {
    text-decoration: underline;
}

.re-kept-item-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}

.re-kept-item-remove:hover {
    background: #c82333;
}

.re-kept-modal-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
}

.re-kept-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
}

.re-kept-btn-clear {
    background: #6c757d;
    color: white;
}

.re-kept-btn-clear:hover {
    background: #5a6268;
}

.re-kept-btn-apply {
    background: var(--cta-color);
    color: white;
}

.re-kept-btn-apply:hover {
    background: #4a9d8f;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .re-kept-modal-content {
        max-height: 90vh;
    }

    .re-kept-item-title {
        font-size: 14px;
    }

    .re-kept-item {
        padding: 12px;
    }

    .re-kept-modal-footer {
        flex-direction: column;
    }
}

/* 閲覧履歴：フローティングボタン */
.re-history-floating-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--brand-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s;
}

.re-history-floating-btn:hover {
    background: var(--brand-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .re-history-floating-btn {
        bottom: 140px;
        /* スマホでは固定バーが大きいので更に上に */
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* こだわり検索 */
.re-search-tags-section {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.re-search-tags-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.re-search-tags-category {
    margin-bottom: 30px;
}

.re-search-tags-category:last-child {
    margin-bottom: 0;
}

.re-search-tags-category-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--brand-color);
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-color);
}

.re-search-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.re-search-tag {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.re-search-tag:hover {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .re-search-tags-section {
        margin: 40px 10px 20px;
        padding: 30px 15px;
    }

    .re-search-tags-title {
        font-size: 1.4em;
    }

    .re-search-tag {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* 詳細ページの固定バー */
.job-detail-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 12px 0;
}

.job-detail-fixed-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.job-detail-action-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.job-detail-back-btn {
    padding: 12px 20px;
    background: #6c757d;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s;
    flex-shrink: 0;
}

.job-detail-back-btn:hover {
    background: #5a6268;
    color: white !important;
}

.job-detail-keep-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--cta-color);
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.job-detail-keep-label:hover {
    background: #f0fffe;
    border-color: #4a9d8f;
}

.job-detail-keep-text {
    color: #333;
    font-weight: bold;
}

.job-detail-apply-button {
    padding: 12px 30px;
    background: var(--cta-color);
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
}

.job-detail-apply-button:hover {
    background: #4a9d8f;
    color: white !important;
    transform: translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .job-detail-fixed-container {
        flex-direction: column !important;
        gap: 10px;
        justify-content: flex-start !important;
    }

    .job-detail-action-group {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .job-detail-back-btn {
        width: 100% !important;
        text-align: center;
        padding: 10px;
        font-size: 13px;
        display: block !important;
        order: -1;
    }

    .job-detail-keep-label {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
        padding: 10px;
        font-size: 13px;
    }

    .job-detail-apply-button {
        flex: 1 1 calc(50% - 5px);
        text-align: center;
        padding: 10px;
        font-size: 13px;
    }
}

/* コンテンツが固定バーに隠れないように余白を追加 */
body {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 120px;
    }
}

/* 一覧へ戻るボタン（0件ページ用） */
.re-back-to-list-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--brand-color);
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.re-back-to-list-button:hover {
    background: var(--brand-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ==============================================
   非公開求人・掲載終了メッセージ
   ============================================== */

.re-job-not-found-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.re-job-not-found-content {
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
}

.re-job-not-found-icon {
    font-size: 72px;
    color: #ddd;
    margin-bottom: 20px;
}

.re-job-not-found-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.re-job-not-found-message {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.re-job-not-found-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.re-job-not-found-actions .re-button-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}

.re-job-not-found-actions .re-button-primary:hover {
    background: #135e96;
    transform: translateY(-2px);
}

.re-job-not-found-actions .re-button-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #2271b1;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: 2px solid #2271b1;
    transition: all 0.3s;
}

.re-job-not-found-actions .re-button-secondary:hover {
    background: #2271b1;
    color: white;
}

.re-job-not-found-recommendations {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.re-job-not-found-recommendations h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.re-job-not-found-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.re-job-not-found-recommendations li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.re-job-not-found-recommendations li:last-child {
    border-bottom: none;
}

.re-job-not-found-recommendations a {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.3s;
}

.re-job-not-found-recommendations a:hover {
    color: #135e96;
    text-decoration: underline;
}

/* 画像角のラベル（必見！など） */
.re-label-corner {
    position: absolute;
    top: 0;
    left: 0;
    background: #e60012;
    /* 赤色背景 */
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    z-index: 5;
    border-bottom-right-radius: 6px;
    /* 角を少し丸く */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

/* 応募ボタンのラベル（急募など） */
.re-label-button {
    display: inline-block;
    background: #ff9900;
    /* オレンジ色背景 */
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 8px;
    /* ボタンとの隙間 */
    vertical-align: middle;
    position: relative;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

/* 吹き出しのしっぽ（装飾） */
.re-label-button::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent #ff9900;
}


@media (max-width: 768px) {
    .re-job-not-found-icon {
        font-size: 56px;
    }

    .re-job-not-found-title {
        font-size: 24px;
    }

    .re-job-not-found-message {
        font-size: 14px;
    }

    .re-job-not-found-actions {
        flex-direction: column;
    }

    .re-job-not-found-actions .re-button-primary,
    .re-job-not-found-actions .re-button-secondary {
        width: 100%;
        text-align: center;
    }
    .re-label-button::after{
        display: none;
    }

    /* 吹き出しのしっぽ（装飾） */
    .re-label-button::before {
        content: '';
        position: absolute;
        left: 15%;
        top: 100%;
        transform: translateX(-50%);
        border-style: solid;
        border-width: 6px 6px 0 6px;
        border-color: #ff9900 transparent transparent transparent;
    }
    .re-label-button {
        width: 30%;
    }
}