/**
 * キャンセル・変更についてページ専用スタイル
 * guide/cancel.blade.php
 */

/* キャンセルページ専用スタイル */
.cancel_page .cancel_intro {
    margin-bottom: 32px;
    line-height: 1.8;
}
.cancel_sectionTtl {
    background-color: #24bbb7;
    color: #fff;
    padding: 12px 16px;
    margin: 28px 0 16px;
    font-size: 1.15rem;
    font-weight: bold;
}
.cancel_sectionTtl_nobg {
    background: none;
    color: #333;
    border-bottom: 2px solid #24bbb7;
    padding-bottom: 8px;
}
/* 作業フロー 4ステップ（PCは2列） */
.cancel_workflow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.cancel_workflow_step {
    text-align: center;
}
.cancel_workflow_fig {
    margin: 0 0 8px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cancel_workflow_fig img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.cancel_workflow_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: #24bbb7;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
}
.cancel_workflow_txt {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}
/* 実費内訳テーブル */
.cancel_table_wrap {
    margin-bottom: 24px;
}
.cancel_fee_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}
.cancel_fee_table th,
.cancel_fee_table td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    text-align: left;
}
.cancel_fee_table thead th {
    background-color: #24bbb7;
    color: #fff;
    font-weight: bold;
}
.cancel_status_icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}
.cancel_status_blue { background-color: #3B67B8; }
.cancel_status_orange { background-color: #e67e22; }
.cancel_table_note {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}
/* よくあるご質問 アコーディオン */
.cancel_faq {
    margin-bottom: 24px;
}
.cancel_faq_item {
    border: 1px solid #ddd;
    border-bottom: none;
    margin: 0;
}
.cancel_faq_item:last-of-type {
    border-bottom: 1px solid #ddd;
}
.cancel_faq_q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    margin: 0;
    cursor: pointer;
    list-style: none;
    font-weight: bold;
    background: #fff;
}
.cancel_faq_q::-webkit-details-marker { display: none; }
.cancel_faq_q::after {
    content: "▼";
    font-size: 0.75rem;
    color: #24bbb7;
    transition: transform 0.2s;
}
.cancel_faq_item[open] .cancel_faq_q::after {
    transform: rotate(180deg);
}
.cancel_faq_a {
    padding: 12px 16px 16px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}
.cancel_faq_a p {
    margin: 0;
    line-height: 1.7;
}
/* スマホ用調整（1列） */
@media (max-width: 767px) {
    .cancel_page .cancel_intro {
        margin-bottom: 24px;
        font-size: 0.95rem;
    }
    .cancel_workflow {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }
    .cancel_workflow_fig {
        min-height: 100px;
    }
    .cancel_table_wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }
    .cancel_fee_table {
        min-width: 280px;
    }
    .cancel_fee_table th,
    .cancel_fee_table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    .cancel_faq_q {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    .cancel_faq_a {
        padding: 10px 14px 14px;
    }
}
