/* --- [03. ページヘッダー] --- */
.btc-shopping-complete-pc__page-header {
    padding: 100px 25px 20px;
    text-align: center;
    position: relative;
}
.btc-shopping-complete-pc__page-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
    letter-spacing: 0.1rem;
    margin: 0;
    color: #1a2a40;
    line-height: 1.6;
}
.btc-shopping-complete-pc__page-title span {
    display: block;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3em;
    margin-top: 10px;
    opacity: 0.6;
}

/* --- [きんちゃん & アイテム演出] --- */
.btc-shopping-complete-pc__kin-animation-container {
    position: relative;
    width: 100%;
    height: 120px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
}

/* きんちゃん本体（真ん中） */
.btc-shopping-complete-pc__order-kin {
    width: 80px;
    height: auto;
    z-index: 5;
    animation: kin-jump 0.6s ease-in-out infinite alternate;
}

/* アイテム共通設定（バッグ・ボックス） */
.btc-shopping-complete-pc__order-item {
    height: auto;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    animation: item-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    margin-bottom: 10px;
}

/* ショッピングバッグ（左側） */
.btc-shopping-complete-pc__order-bag {
    width: 70px;
    animation-delay: 0.7s;
}

/* ショッピングボックス（右側） */
.btc-shopping-complete-pc__order-box {
    width: 85px;
    animation-delay: 0.9s;
}

/* きんちゃんの跳ねるアニメーション */
@keyframes kin-jump {
    0% { transform: translateY(0) scale(1, 1); }
    100% { transform: translateY(-15px) scale(0.95, 1.05); }
}

/* アイテムがポンっと出るアニメーション */
@keyframes item-pop {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- [04. コンテンツエリア基礎] --- */
.btc-shopping-complete-pc__main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px 100px;
    box-sizing: border-box;
}

/* 完了メッセージ */
.btc-shopping-complete-pc__complete-msg {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 15px 0 30px;
}

/* --- [05. ホワイトBOX・完了情報表] --- */
.btc-shopping-complete-pc__white-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    box-sizing: border-box;
}

.btc-shopping-complete-pc__info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    box-sizing: border-box;
    table-layout: fixed;
}
.btc-shopping-complete-pc__info-table tr {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}
.btc-shopping-complete-pc__info-table tr:last-child {
    border-bottom: none;
}
.btc-shopping-complete-pc__info-table th, .btc-shopping-complete-pc__info-table td {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.btc-shopping-complete-pc__info-table th {
    font-weight: 700;
    color: #1a2a40;
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 15px 0 0;
    margin-bottom: -5px;
    opacity: 0.6;
}
.btc-shopping-complete-pc__info-table td {
    font-weight: 500;
    color: #2d2d2d;
    font-size: 16px;
    padding: 20px 0;
}

/* 金額項目のtdだけ個別にパディングを調整 */
.btc-shopping-complete-pc__price-td {
    padding-top: 5px !important;
}

/* 金額注釈用スタイル */
.btc-shopping-complete-pc__price-note {
    display: block;
    font-size: 11px;
    color: #888888;
    margin: 2.5px auto 15px;
    font-weight: 400;
    line-height: 1.2;
}

/* --- [追加: お問い合わせセクション] --- */
.btc-shopping-complete-pc__contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 13px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 30px 0;
    padding: 0 10px;
}
.btc-shopping-complete-pc__contact-tel {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1a2a40;
    margin: 15px 0 0px;
    letter-spacing: 0.05em;
}
.btc-shopping-complete-pc__contact-link {
    display: inline-block;
    color: #1a2a40;
    text-decoration: underline;
    margin-bottom: 20px;
    font-weight: 500;
}
.btc-shopping-complete-pc__business-hours {
    font-size: 12px;
    color: #666666;
    border-top: 1px solid #e0e0d8;
    padding-top: 15px;
    display: inline-block;
}

/* --- [06. ボタン共通設定] --- */
.btc-shopping-complete-pc__btn-container {
    padding: 0 35px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.btc-shopping-complete-pc__form-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: 60px;
    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;
    box-sizing: border-box;
    border-radius: 30px;
}
.btc-shopping-complete-pc__form-btn:hover { opacity: 0.8; }
.btc-shopping-complete-pc__btn-primary { background-color: #1a2a40; color: #ffffff; }



/* --- [LINE連携ゾーン] --- */
.btc-shopping-complete-pc .line-connect {
  width: 100%;
  max-width: fit-content;
  margin: 40px auto 30px;
  background-color: var(--color__gray--lighter);
  border-radius: 6px;
}
.btc-shopping-complete-pc .line-connect__title {
  padding: 16px 20px;
  font-size: 18px;
  color: var(--color__white);
  background-color: #1a2a40;
  border-radius: 6px 6px 0 0;
  font-weight: 550;
}
.btc-shopping-complete-pc .line-connect__content {
  padding: 30px 30px;
  border-radius: 0 0 6px 6px;
}
.btc-shopping-complete-pc .line-connect__content .c-line-connect-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 60px;
  background-color: #06c755;
  border: none;
  border-radius: 30px;
  margin-left: 15px;
  margin-right: 15px;
}
.btc-shopping-complete-pc .line-connect__content .c-line-connect-button .left {
  width: 60px;
}
.btc-shopping-complete-pc .line-connect__content .c-line-connect-button .left img {
  width: 32px;
  padding: 7.5px 0 6.76px;
  margin: auto;
}
.btc-shopping-complete-pc .line-connect__content .c-line-connect-button .right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.btc-shopping-complete-pc .line-connect__content .c-line-connect-button:active ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
.btc-shopping-complete-pc .line-connect__content .c-line-connect-button {
  margin: 20px auto;
}
.btc-shopping-complete-pc .line-connect__content .position {
    display: flex;
    flex-direction: row;
    align-items: center;
    transform: translateX(-25px);
}



/* --- [ステップインジケーター 案A：丸バッジ＋コネクターライン] --- */
.btc-shopping-complete-pc__step-wrapper {
    max-width: 800px;
    margin: 0 auto 10px;
    padding: 0 25px;
}

.btc-shopping-complete-pc__order-step {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    counter-reset: step-counter;
}

.btc-shopping-complete-pc__order-step__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    counter-increment: step-counter;
}

/* バッジ間のコネクターライン */
.btc-shopping-complete-pc__order-step__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 19px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

/* 丸バッジ */
.btc-shopping-complete-pc__order-step__left {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #d5d5d5;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btc-shopping-complete-pc__order-step__left span {
    display: none;
}

.btc-shopping-complete-pc__order-step__left::before {
    content: counter(step-counter);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ccc;
    line-height: 1;
}

.btc-shopping-complete-pc__order-step__left::after {
    content: 'STEP';
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: #ddd;
    letter-spacing: 0.08em;
    margin-top: 1px;
    line-height: 1;
}

/* ステップラベル */
.btc-shopping-complete-pc__order-step__right {
    margin-top: 10px;
    text-align: center;
    font-size: 10px;
    color: #bbb;
    line-height: 1.6;
    padding: 0 4px;
}

.btc-shopping-complete-pc__order-step__right span {
    display: block;
}

/* 現在ステップ */
.btc-shopping-complete-pc__order-step__item--current .btc-shopping-complete-pc__order-step__left {
    background: #1a2a40;
    border-color: #1a2a40;
    box-shadow: 0 3px 10px rgba(26, 42, 64, 0.25);
}

.btc-shopping-complete-pc__order-step__item--current .btc-shopping-complete-pc__order-step__left::before {
    color: #fff;
}

.btc-shopping-complete-pc__order-step__item--current .btc-shopping-complete-pc__order-step__left::after {
    color: rgba(189, 161, 107, 0.85);
}

.btc-shopping-complete-pc__order-step__item--current .btc-shopping-complete-pc__order-step__right span {
    color: #1a2a40;
    font-weight: 700;
    font-size: 11px;
}


/* =============================================
   PC レスポンシブ (768px)
   ============================================= */
@media (min-width: 768px) {
    .btc-shopping-complete-pc__page-header {
        padding: 100px 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btc-shopping-complete-pc__page-title { font-size: 1.6rem; }
    .btc-shopping-complete-pc__page-title span { font-size: 0.8rem; }

    /* テーブルレイアウト復元 */
    .btc-shopping-complete-pc__info-table { table-layout: auto; }
    .btc-shopping-complete-pc__info-table tr {
        display: table-row;
        width: auto;
        border-bottom: 1px solid #eeeeee;
    }
    .btc-shopping-complete-pc__info-table th,
    .btc-shopping-complete-pc__info-table td {
        display: table-cell;
        width: auto;
        text-align: left;
        border-bottom: none;
    }
    .btc-shopping-complete-pc__info-table th {
        width: 40%;
        padding: 15px 15px;
        margin-bottom: 0;
        vertical-align: middle;
        background-color: #f9f9f7;
    }
    .btc-shopping-complete-pc__info-table td {
        padding: 15px 15px;
        vertical-align: middle;
    }

    .btc-shopping-complete-pc__btn-container {
        padding: 0 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =============================================
   PC レスポンシブ (1024px)
   ============================================= */
@media (min-width: 1024px) {
    .btc-shopping-complete-pc__main-content { max-width: 900px; }

    .btc-shopping-complete-pc__btn-container {
        padding: 0 60px;
        max-width: 600px;
    }
    .btc-shopping-complete-pc__step-wrapper {
        max-width: 900px;
    }
}
