

/* --- [03. パンくずリスト] --- */
.btc-mypage-change-confirm__breadcrumb-container {
    position: relative;
    padding: 85px 25px 20px;
    z-index: 10;
}
.btc-mypage-change-confirm__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-change-confirm__breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
}
.btc-mypage-change-confirm__breadcrumbs a {
    text-decoration: none;
    color: #2d2d2d;
    opacity: 0.5;
}

/* --- [05. コンテンツエリア共通設定] --- */
main { position: relative; z-index: 1; }
.btc-mypage-change-confirm__main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* --- [06. TOPへ戻るボタン] --- */
.btc-mypage-change-confirm__totop-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    background-color: #bda16b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 200;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.1em;
}
.btc-mypage-change-confirm__totop-button:hover { opacity: 0.8; transform: translateY(-3px); }
.btc-mypage-change-confirm__totop-button.btc-mypage-change-confirm__is-show { opacity: 1; visibility: visible; }

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

/* --- [08. セクション見出し] --- */
.btc-mypage-change-confirm__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-change-confirm__form-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 5px;
    box-sizing: border-box;
}

.btc-mypage-change-confirm__form-lead {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555555;
    text-align: left;
}

/* --- [10. 確認リスト（1列表示）] --- */
.btc-mypage-change-confirm__confirm-list {
    width: 100%;
    margin-bottom: 8px;
}
.btc-mypage-change-confirm__confirm-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}
.btc-mypage-change-confirm__confirm-item:first-child {
    border-top: 1px solid #e5e5e5;
}
.btc-mypage-change-confirm__confirm-item-label {
    font-size: 13px;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}
.btc-mypage-change-confirm__confirm-item-value {
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.6;
    word-break: break-all;
}

/* パスワードマスク表示 */
.btc-mypage-change-confirm__confirm-item-value.btc-mypage-change-confirm__masked {
    font-size: 16px;
    color: #aaaaaa;
}

/* --- [13. ボタンエリア] --- */
.btc-mypage-change-confirm__btn-container {
    padding: 0 35px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.btc-mypage-change-confirm__form-btn {
    width: 100%;
    height: 60px;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 30px;
    box-sizing: border-box;
}
.btc-mypage-change-confirm__form-btn:hover { opacity: 0.8; }
.btc-mypage-change-confirm__btn-green { background-color: #008075; color: #ffffff; }
.btc-mypage-change-confirm__btn-white { background-color: #ffffff; color: #008075; border: 1px solid #008075; }

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

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