/*===========================================
About
===========================================*/

/*-------------------------------------------
History
-------------------------------------------*/
.title-found{
    color:var(--primary-color);
    font-size:1.5rem; font-weight:700;
    line-height:1.3;
    text-align:center;
}
.history{
    display:flex;
}
    .history-content{
        position:relative;
        flex:1;
    }
        .history-content p{
            margin:0 0 1.5em;
            line-height:1.75;
            text-indent:2em;
        }
    .history-mission{
        position:relative;
        width:50%;
        padding-left:5%;
    }
        .mission-list{
            list-style:none;
            margin:10px 0 0;
            padding:0;
        }
        .mission-list li{
            margin-bottom:10px;
            padding:10px 0 10px 50px;
            position:relative;
        }
            .mission-list li span{
                display:inline-block;
                border:1px solid var(--primary-color);
                border-radius:50%;
                width:40px;
                height:40px;
                overflow:hidden;
                position:absolute; left:0; top:0px;
            }
                .mission-list li i{
                    display:block;
                    color:var(--primary-color);
                    font-size:2.5rem;
                    line-height:40px;
                    text-align:center;
            }
@media screen and (max-width:768px){
    .history{
        flex-wrap:wrap;
    }
        .history-mission{
            width:100%;
            margin-top:1em;
            padding-left:0;
        }
}
@media screen and (max-width:576px){
    .mission-list li{
        margin-bottom:5px;
    }
}
@media screen and (max-width:440px){/* i16 Pro Max */
    .title-found{
        font-size:6.25vw;
    }
        .title-found span{
            display:block;
        }
}

/*-------------------------------------------
constitution
-------------------------------------------*/
.constitution .modify-date{
    color:#999;
    font-size:.75rem;
    line-height:16px;
    text-align:right;
}
.constitution dl{
    margin:0;
    display:flex;
    flex-wrap:wrap;
    --dt-width:100px;
}
    .constitution dt{
        width:var(--dt-width);
        color:var(--primary-color);
        padding:8px 0;
    }
    .constitution dd{
        margin:0;
        width:calc(100% - var(--dt-width));
        border-left:1px solid rgba(var(--primary-rgb),.3);
        border-top:1px dotted #ddd;
        padding:8px 5px 8px 15px;
        min-height:45px;
    }
    .constitution dd:first-of-type{
        border-top:none;
    }
        .list-chinese{
            list-style:none;
            margin:0;
            padding:0;
        }
            .list-chinese > div{
                padding-left:2em;
                text-indent:-2em;
            }
                .list-chinese > div > div{
                    text-indent:0;
                }
        .list-chinese-brackets{
            list-style:none;
            margin:0;
            padding:0;
        }
            .list-chinese-brackets > div{
                padding-left:3em;
                text-indent:-3em;
            }
                .list-chinese-brackets > div > div{
                    text-indent:0;
                }
@media screen and (max-width:576px){
    .constitution .part-title{
        margin-bottom:5px;
    }
    .constitution dt,
    .constitution dd{
        width:100%;
    }
    .constitution dt{
        border-top:1px dotted #ddd;
    }
    .constitution dt:first-of-type{
        border-top:none;
    }
    .constitution dd{
        margin-left:8px;
        border-top:none;
    }
}
