.detail__body{
    margin: 0;
}

/* 見出し */
.detail__title::before{
    content: "";
    display: block;
    width: 46px;
    height: 31px;
    background: url(../../assets/img/column/ttl_h1_deco.svg) no-repeat top center / 100% auto;
    margin-bottom: .8rem;
}
    
.detail__body h2{
    line-height: 1.6;
}

.detail__body h2:not(:first-of-type)::before{
    content: "";
    display: block;
    width: 343px;
    height: 40px;
    background: url(../../assets/img/column/ttl_h2_deco.svg) no-repeat top center / 100% auto;
    margin: 0 auto .8rem;
}

.detail__body h2::after{
    display: none;
}


.detail__body h3{
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem;
    border: 1px solid;
    border-radius: 40px;
}

.detail__body h3::before{
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url(../../assets/img/column/icon_onpu.svg) no-repeat center center / 100% auto;
}

.detail__body h4{
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.75;
    padding: .8rem;
    margin: 20px 0;
    border-bottom: 1px solid;
}

.detail__body h4::before{
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url(../../assets/img/column/icon_onpu.svg) no-repeat center center / 100% auto;
}

/* リスト */
.detail__body ul,
.detail__body ol {
    font-size: 1.5rem;
    line-height: 1.75;
    margin: 20px 0;
}

.detail__body ul li,
.detail__body ol li {
    padding-left: 1.5rem;
    position: relative;
}

.detail__body ol {
    counter-reset: list;
}

.detail__body ul li::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background-color: var(--main600-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: .8rem;
}

.detail__body ol li {
    counter-increment: list;
    position: relative;
}

.detail__body ol li::before {
    content: counter(list) ".";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

/* 表 */
table{
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.75;
    margin: 20px 0;
}

