.accti {
    font-size: 1.25em;
    margin: auto;
    text-align: center;
    color: #777;
}

.acmin {
    margin: 0 auto 2em;
    font-size: 0.8em;
}

.acmin li {
    list-style-type: lower-roman;
}

.acmin li::marker {
    color: #222;
    font-size: 1em;
}

.aclis {
    margin: 0 auto 2em;
    text-align: center;
}

.aclis li {
    list-style-type: decimal-leading-zero;
    list-style-position: inside;
}

.aclis li::marker {
    color: #222;
    font-size: 1em;
}

.aclis p {
    margin: 0;
    padding: 0;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25em;
    text-align: center;
    color: #777;
}

.heading::before,
.heading::after {
    content: '';
    width: 4em;
    height: 1px;
    background-color: #777;
}

.heading::before {
    margin-right: 20px;
}

.heading::after {
    margin-left: 20px;
}

.accont a{
    font-size: 1.2em;
    font-weight: 600;
}
.liscont {
    font-size: 0.8em;
    color: #777;
}
.acccti{
    font-size: 0.7em;
    color: #777;
    text-align: center;
}
.acnote{
    margin: 1em;
}
.acnote p{
    margin: 1em 0;
    padding: 0;
}
time{
    border-bottom: #777 solid 1px;
    display: block;
    padding: 0 0.5em;
}
time::before{
    content: "◯";
}

/* --- ★★★ 簡単カスタマイズエリア ★★★ --- */
:root {
    --balloon-bg-color: #e9e9e9;
    --balloon-text-color: #333;
    --balloon-font-size: 16px;
    --balloon-border-radius: 12px;
}
/* -------------------------------------- */


.chat-container {
    max-width: 600px;
    margin: 0 auto;
}

/* 吹き出しの基本レイアウト */
.balloon-left, .balloon-right {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.balloon-right {
    justify-content: flex-end; /* 右寄せにする */
}

/* アイコン */
.face-icon {
    width: 3em;
    height: 3em;
    font-size: 0.8em;
    text-align:center;
    line-height: 3em;
    color: #fff;
    border-radius: 50%;
    background-color: #777;
}
.balloon-left .face-icon { margin-right: 15px; }
.balloon-right .face-icon { margin-left: 15px; }

/* 吹き出しの本体 */
.chat-bubble {
    position: relative; /* しっぽの位置の基準 */
    max-width: 70%;
    padding: 15px;
    background-color: var(--balloon-bg-color);
    border-radius: var(--balloon-border-radius);
}
.chat-bubble p {
    margin: 0;
    font-size: var(--balloon-font-size);
    color: var(--balloon-text-color);
    line-height: 1.6;
}


/* --- ここからが「しっぽ」の定義 --- */

.chat-bubble::before {
    content: '';
    position: absolute;
    top: 15px;
    border: 12px solid transparent;
}

/* 左からの吹き出しのしっぽ */
.balloon-left .chat-bubble::before {
    left: -24px;
    border-right-color: var(--balloon-bg-color);
}

/* 右からの吹き出しのしっぽ */
.balloon-right .chat-bubble::before {
    right: -24px;
    border-left-color: var(--balloon-bg-color);
}

.mt2em{
    margin-top: 2em;
}