/*ビジュアルエディタースタイル*/
.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6{
    font-family: 'Oswald', sans-serif;
}
.post h1,
.post h2{
    border-bottom: 1px solid var(--kimap-gray);
    padding-bottom: 10px;
    margin-bottom: 25px;
    margin-top: 30px;
}
.post h3,
.post h4,
.post h5,
.post h6{
    margin-bottom: 15px;
    margin-top: 35px;
}
.post h1{
    font-size: 42px;
}
.post h2 {
    font-size: 32px;
}
.post h3{
    font-size:24px;
}
.post h4{
    font-size:24px;
    color: var(--kimap-blue);
}
.post h5{
    font-size:22px;
}
.post h6{
    font-size:22px;
    color: var(--kimap-gray);
}
.post strong{
    font-weight: bold;
}
.post em{
    font-style: italic;
}
.post ul{
    list-style:none;
    margin-bottom: 0.8rem;
    margin-top: 0.8rem;
}
.post ul li{
    padding-left: 0.5rem;
    margin-bottom: 0.4rem;
    margin-top: 0.4rem;
}
.post ul li:before{
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 5px;
    display: inline-block;
    background-color: #333;
    left: -0.5rem;
    position: relative;
}
.post ol{
    list-style: none;
    counter-reset: li;
}
.post ol li{
    position: relative;
    margin-bottom: 0.4rem;
    margin-top: 0.4rem;
    padding-left: 20px;
}
.post ol li:before{
    counter-increment: li;
    content: counter(li) '.';
    position: absolute;
    left: 0;
}
.post dl{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.post dt{
    width: 50%;
}
.post dd{
    width: 50%;
}
.post a{
    word-break: break-all;
    color: var(--kimap-lightblue);
    border-bottom: 0.5px solid;
}
@media screen and (max-width: 768px){
    .post dl{
        display: block;
    }
    .post dt,
    .post dd{
        width: 100%;
    }
}