/* ========================================
   ブロックパターン用スタイル
   ======================================== */

/* --- インフォボックス（タイトルボックス type3 風） --- */
.lnavi-infobox {
    --accent-color: #f7931e;
    --bg-color: #fff9e5;
    --border-radius: 7px;
    position: relative;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 2em 0;
}

/* ボーダー（::beforeで描画） */
.lnavi-infobox::before {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    z-index: 1;
}

/* タイトル（タブ型） */
.lnavi-infobox__title {
    position: relative;
    display: table;
    min-width: 5em;
    padding: 0.4em 1.2em;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    border-bottom-right-radius: var(--border-radius);
}

.lnavi-infobox__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 5px;
    vertical-align: middle;
}

.lnavi-infobox__title-icon::after {
    content: "\2714";
    font-size: 13px;
    color: var(--accent-color);
}

/* コンテンツ */
.lnavi-infobox__content {
    padding: 1.2em 1.5em;
}

.lnavi-infobox__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lnavi-infobox__content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.lnavi-infobox__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #ffa200;
    border-radius: 50%;
}

.lnavi-infobox__content ul li:last-child {
    margin-bottom: 0;
}