/* --- [01. 基礎設定] --- */
*, *::before, *::after {
    box-sizing: border-box;
}


/* --- [03. パンくずリスト] --- */
.btc-mypage-history-list__breadcrumb-container {
    position: relative;
    padding: 85px 25px 20px;
    z-index: 10;
}
.btc-mypage-history-list__breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.05em;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.btc-mypage-history-list__breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
}
.btc-mypage-history-list__breadcrumbs a {
    text-decoration: none;
    color: #2d2d2d;
    opacity: 0.5;
}

/* --- [04. ページヘッダー] --- */
.btc-mypage-history-list__page-header {
    padding: 20px 25px 30px;
    text-align: center;
    position: relative;
}
.btc-mypage-history-list__page-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin: 0;
    color: #008075;
    line-height: 1.6;
}
.btc-mypage-history-list__page-title span {
    display: block;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2em;
    text-indent: 2em;
    text-align: center;
    margin-top: 0px;
    opacity: 0.6;
}

/* --- [05. コンテンツエリア] --- */
main { position: relative; z-index: 1; }
.btc-mypage-history-list__main-content {
    padding: 0 16px 80px;
}

/* --- [06. TOPへ戻るボタン] --- */
.btc-mypage-history-list__totop-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    background-color: #bda16b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s, visibility 0.3s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.08em;
}
.btc-mypage-history-list__totop-button.btc-mypage-history-list__is-show { opacity: 1; visibility: visible; }

/* --- [07. ユーザー挨拶エリア] --- */
.btc-mypage-history-list__mypage-greeting {
    padding: 0 0 12px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}
.btc-mypage-history-list__mypage-greeting .btc-mypage-history-list__user-name {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #2d2d2d;
    letter-spacing: 0.06em;
    margin: 0;
}
.btc-mypage-history-list__mypage-greeting .btc-mypage-history-list__user-name em {
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    margin-left: 4px;
}

/* --- [08. セクション見出し] --- */
.btc-mypage-history-list__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008075;
    margin: 36px 0 24px;
    letter-spacing: 0.05em;
}

/* --- [09. フィルターエリア] --- */
.btc-mypage-history-list__filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.btc-mypage-history-list__filter-label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
}
.btc-mypage-history-list__filter-select-wrapper {
    position: relative;
    flex: 1;
}
.btc-mypage-history-list__filter-select {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 14px;
    border: 1.5px solid #008075;
    border-radius: 6px;
    background-color: #fff;
    color: #2d2d2d;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23008075' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}
.btc-mypage-history-list__filter-select:focus {
    border-color: #005f57;
    box-shadow: 0 0 0 3px rgba(0,128,117,0.1);
}

/* --- [10. 件数表示] --- */
.btc-mypage-history-list__history-counter {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #2d2d2d;
    margin-bottom: 18px;
    font-weight: 500;
}
.btc-mypage-history-list__history-counter span {
    font-size: 20px;
    font-weight: 700;
    color: #008075;
    margin: 0 2px;
}

/* --- [11. 購入履歴カード] --- */
.btc-mypage-history-list__history-card.btc-mypage-history-list__is-hidden {
    display: none;
}

.btc-mypage-history-list__history-card {
    border: 0.5px solid #d8d8d8;
    border-left: 5px solid #008075;
    border-radius: 0 8px 8px 0;
    background-color: #fff;
    padding: 16px 8px 0 15px;
    margin-bottom: 28px;
}
.btc-mypage-history-list__history-card[data-type="normal"] {
    border-left-color: #888;
}

/* 上段：画像＋テキスト */
.btc-mypage-history-list__history-card-top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* 商品画像 */
.btc-mypage-history-list__history-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    background-color: #f5f5f5;
}
.btc-mypage-history-list__history-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* テキスト情報 */
.btc-mypage-history-list__history-meta {
    flex: 1;
    min-width: 0;
}

/* バッジ */
.btc-mypage-history-list__badge-sub,
.btc-mypage-history-list__badge-normal,
.btc-mypage-history-list__badge-send,
.btc-mypage-history-list__badge-cancel {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px 4.5px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}
.btc-mypage-history-list__badge-sub {
    background-color: #008075;
    color: #fff;
}

.btc-mypage-history-list__badge-normal {
    background-color: #f0f0f0;
    color: #555;
    border: 0.5px solid #ccc;
}
.btc-mypage-history-list__badge-send {
    background-color: #fff;
    color: #008075;
    border: 0.5px solid #008075;
}
.btc-mypage-history-list__badge-cancel {
    background-color: #cc3333;
    color: #fff;
}

/* 情報リスト */
.btc-mypage-history-list__history-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.btc-mypage-history-list__history-info-list li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #2d2d2d;
}
.btc-mypage-history-list__history-info-list strong {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    color: #666;
    margin-right: 1px;
}

/* 下段：金額＋詳細ボタン */
.btc-mypage-history-list__history-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.5px solid #e8e8e8;
    padding: 12px 0;
    gap: 10px;
}

/* 合計金額 */
.btc-mypage-history-list__history-total {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    white-space: nowrap;
}
.btc-mypage-history-list__history-total em {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    margin-right: 3px;
}

/* 詳細ボタン */
.btc-mypage-history-list__history-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    background-color: #fff;
    color: #008075;
    border: 1.5px solid #008075;
    border-radius: 21px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.btc-mypage-history-list__history-card[data-type="normal"] .btc-mypage-history-list__history-detail-btn {
    color: #555;
    border-color: #888;
}

.btc-mypage-history-list__btn-small-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
@media (max-width: 840px) {
    .btc-mypage-history-list__history-total em {
        font-size: 14px;
    }
    .btc-mypage-history-list__history-total {
        font-size: 22px;
    }
    .btc-mypage-history-list__history-card-foot {
        padding: 12px 5px;
    }
    .btc-mypage-history-list__btn-small-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }    
}

.btc-mypage-history-list__download-receipt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    background-color: #008075;
    color: #fff;
    border-radius: 21px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;    
}

/* --- [12. ページネーション] --- */
.btc-mypage-history-list__pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 32px;
    padding: 8px 0;
}
.btc-mypage-history-list__pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background-color: #fff;
    color: #555;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.btc-mypage-history-list__pagination-link.btc-mypage-history-list__is-current {
    background-color: #008075;
    color: #fff;
    border-color: #008075;
    font-weight: 700;
    pointer-events: none;
}
.btc-mypage-history-list__pagination-link.btc-mypage-history-list__is-prev,
.btc-mypage-history-list__pagination-link.btc-mypage-history-list__is-next {
    font-size: 12px;
    padding: 0 12px;
    color: #777;
}

/* --- [13. マイページTOPボタン] --- */
.btc-mypage-history-list__btn-container {
    padding: 0 20px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.btc-mypage-history-list__form-btn {
    width: 100%;
    height: 60px;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 29px;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.btc-mypage-history-list__btn-white {
    background-color: #fff;
    color: #008075;
    border: 1.5px solid #008075;
}

/* ============================================================
   PC・タブレット レイアウト（768px以上）
   ============================================================ */
@media (min-width: 768px) {
    .btc-mypage-history-list__breadcrumb-container {
        max-width: 960px;
        margin: 0 auto;
    }
    .btc-mypage-history-list__breadcrumbs {
        font-size: 12px;
    }
    .btc-mypage-history-list__main-content {
        max-width: 960px;
        padding: 15px 30px 80px;
        display: flex;
        flex-wrap: wrap;
    }
    .btc-mypage-history-list__main-content .c-contents-header {
        width: 100%;
    }
    .btc-mypage-history-list__main-content .mypage-contents__aside {
        width: 240px;
        margin-right: 50px;
        position: sticky;
        top: 95px;
        align-self: flex-start;
    }
    .btc-mypage-history-list__main-content .btc-mypage-history-list__form-content {
        width: calc(100% - 290px);
    }
    .btc-mypage-history-list__section-title {
        font-size: 26px;
        margin: 20px 0 30px;
    }
    .btc-mypage-history-list__btn-container {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================
   ワイドデスクトップ（1024px以上）
   ============================================================ */
@media (min-width: 1024px) {
    .btc-mypage-history-list__main-content {
        max-width: 1060px;
        margin: 0 auto;
    }
    .btc-mypage-history-list__breadcrumb-container {
        max-width: 1060px;
    }
}
