@charset "UTF-8";

/* ========================================
   吹き出しコンポーネント
======================================== */

.speech-list {
    container-type: inline-size;
    width: min(100%, 384px);
    margin: 20px auto 15px;
}

.speech {
    position: relative;
    width: 100%;
    height: 23.5cqw;
}

.speech + .speech {
    margin-top: 1.2cqw;
}

/* ========================================
   人物画像
======================================== */

.speech__image {
    position: absolute;
    top: 50%;
    display: block;
    width: 22.5cqw;
    height: 28cqw;
    object-fit: contain;
    object-position: center;
    transform: translateY(-50%);
}

.speech--left .speech__image {
    left: 0;
}

.speech--right .speech__image {
    right: 0;
}

/* ========================================
   吹き出し本体
======================================== */

.speech__bubble {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    min-height: 20.833cqw;
    padding: 2.083cqw 3.125cqw;
    border-radius: 3.125cqw;
    box-sizing: border-box;
    opacity: 0;
}

/* 青：横幅を少し広げる */
.speech--left .speech__bubble {
    right: 0;
    width: 74.5cqw;
    transform: translate(6.25cqw, -50%);
}

/* グレー：テキスト量に合わせて短くする */
.speech--right .speech__bubble {
    right: 23.5cqw;
    left: auto;
    width: 58.5cqw;
    transform: translate(-6.25cqw, -50%);
}

/* ========================================
   吹き出しの色
======================================== */

.speech--blue .speech__bubble {
    background: var(--color-blue-light);
}

.speech--gray .speech__bubble {
    background: #EEEEEE;
}
/* ========================================
   吹き出しの三角
======================================== */

.speech__bubble::after {
    position: absolute;
    display: block;
    width: 5.8cqw;
    height: 3.6cqw;
    content: "";
}

/* 青：左側のやや中央寄りから、左上へ鋭く伸ばす */
.speech--left .speech__bubble::after {
    left: -4.9cqw;
    bottom: 5.4cqw;
    background: var(--color-blue-light);
    clip-path: polygon(
        100% 18%,
        100% 100%,
        0 0
    );
}

/* グレー：右側のやや中央寄りから、右上へ鋭く伸ばす */
.speech--right .speech__bubble::after {
    right: -4.9cqw;
    bottom: 5.4cqw;
    background: #EEEEEE;
    clip-path: polygon(
        0 18%,
        0 100%,
        100% 0
    );
}
/* ========================================
   吹き出し内テキスト
======================================== */

.speech__text {
    width: 100%;
    margin: 0;
    color: var(--color-text);
    font-size: 4.167cqw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .03em;
}

/* ========================================
   表示アニメーション
======================================== */

.speech.is-show .speech__bubble {
    opacity: 1;
    transform: translate(0, -50%);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

/* ========================================
   アニメーションを減らす設定
======================================== */

@media (prefers-reduced-motion: reduce) {

    .speech__bubble {
        opacity: 1;
    }

    .speech--left .speech__bubble,
    .speech--right .speech__bubble,
    .speech.is-show .speech__bubble {
        transform: translate(0, -50%);
        transition: none;
    }

}