@charset "UTF-8";

/* ============================================
   独自スタイル (purchase_trouble.php用)
   ============================================ */
#purchase-trouble-section .trouble-container {
    padding-top: 8%;
    margin-top: -65px;
    position: relative;
    z-index: 1;
}

/* --- CSSで描画するヘッダーエリア --- */
#purchase-trouble-section .trouble-hero-section {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 10% 0 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* 赤い吹き出し本体 */
#purchase-trouble-section .trouble-red-bubble {
    border-radius: 9999px;
    padding: 4% 12%;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 吹き出しの下向き三角形 */
#purchase-trouble-section .trouble-red-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--color-red, #E60012) transparent transparent transparent;
}

#purchase-trouble-section .trouble-bubble-text-large {
    text-align: center;
}

/* 左の顔写真 (ジモンさん) の絶対配置 */
#purchase-trouble-section .trouble-face-left {
    position: absolute;
    left: 2%;
    top: 12%;
    width: 33%;
    max-width: 180px;
    z-index: 2;
}

/* 右の顔写真 (肥後さん) の絶対配置 */
#purchase-trouble-section .trouble-face-right {
    position: absolute;
    right: 2%;
    top: 15%;
    width: 29%;
    max-width: 160px;
    z-index: 2;
}

/* トラブルリスト */
#purchase-trouble-section .trouble-list-wrap {
    padding: 0 4cqw;
    margin-top: 2cqw;
}

#purchase-trouble-section .trouble-list-item {
    display: flex;
    align-items: center;
    padding: 4cqw 0;
    border-bottom: 1px dashed #cccccc;
}

#purchase-trouble-section .trouble-list-item:last-child {
    border-bottom: none;
}

#purchase-trouble-section .trouble-check-icon {
    width: calc(100cqw * 16 / 375);
    height: auto;
    margin-right: 2cqw;
    flex-shrink: 0;
    object-fit: contain;
}

#purchase-trouble-section .trouble-text {
    line-height: 1.5;
}

/* 中間メッセージエリア */
#purchase-trouble-section .middle-message {
    text-align: center;
    padding: 6cqw 0;
}

#purchase-trouble-section .middle-message .sub-text {
    margin-bottom: 1.5cqw;
}

/* 安心セクション */
#purchase-trouble-section .anshin-container {
    padding: 6cqw 4cqw;
}

#purchase-trouble-section .anshin-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 5cqw;
}

#purchase-trouble-section .anshin-list-item:last-child {
    margin-bottom: 0;
}

/* 丸い顔写真 */
#purchase-trouble-section .face-icon {
    width: 18cqw;
    height: 18cqw;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 3cqw;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#purchase-trouble-section .face-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* オレンジ色の吹き出し */
#purchase-trouble-section .orange-speech-bubble {
    background-color: #F15A24;
    border-radius: 8px;
    padding: 3cqw 7cqw;
    position: relative;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 吹き出しのしっぽ（左向き） */
#purchase-trouble-section .orange-speech-bubble::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2cqw;
    transform: translateY(-50%);
    border-width: 1.5cqw 2.5cqw 1.5cqw 0;
    border-style: solid;
    border-color: transparent #F15A24 transparent transparent;
}

#purchase-trouble-section .orange-speech-bubble p {
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 767px) {

    #purchase-trouble-section .trouble-container,
    #purchase-trouble-section .middle-message,
    #purchase-trouble-section .anshin-container {
        margin: -40px 2cqw 0;
    }

    #purchase-trouble-section .middle-message {
        padding: 12cqw 0;
    }

    #purchase-trouble-section .trouble-hero-section {
        padding: 12% 0 0;
        margin: 0 2cqw;
        width: auto;
    }

    /* 左の顔写真 (ジモンさん) の調整 */
    #purchase-trouble-section .trouble-face-left {
        width: 25%;
        top: 20%;
        left: 0%;
        max-width: 160px;
    }

    /* 右の顔写真 (肥後さん) の調整 */
    #purchase-trouble-section .trouble-face-right {
        width: 22%;
        top: 22%;
        right: -2%;
        max-width: 140px;
    }
}