
.articleContent {

}

/**
    汎用リスト
*/
.articleContent ul {

}

.articleContent ul li {
    color: #576064;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.articleContent ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #1EAC4B;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 8px;
}



/**
    この記事でわかること
*/
.articleContent .list-point {
    border-radius: 10px;
    border: 3px solid #1EAC4B;
    padding: 25px 15px 20px;
    margin: 20px 0;
    position: relative;
}
.articleContent .list-point p:first-child,
.articleContent .list-point .title {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    border-radius: 5px;
    background: #1EAC4B;
    position: absolute;
    padding: 4px 8px 2px 8px;
    left: 10px;
    top: -18px;
}
.articleContent .list-point ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.articleContent .list-point ul li {
    font-weight: 700;
    line-height: 2;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 5px;
}
.articleContent .list-point ul li::before {
    top: 11px;
}

.articleContent .list-point ul li:last-child {
    margin-bottom: 0;
}


/**
    見出し
*/
.articleContent h2 {
    color: #1EAC4B;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    background-color: #F6F7F7;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.articleContent h3 {
    color: #576064;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    border-left: 4px solid #1EAC4B;
}

.articleContent h4 {
    color: #576064;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

@media screen and (max-width:500px) {

    /* 既存H1調整 */
    .articleSection__title {
        font-size: 22px;
    }

    .articleContent h2 {
        font-size: 22px;
    }

    .articleContent h3 {
        font-size: 20px;
    }
}


/**
    本文
*/
.articleContent > p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1em;
}


/**
    注釈
*/
.articleContent p.note {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    padding-left: 1em;
    text-indent: -1em;
}


/**
    wrapper a
*/
.articleContent .wrapper-a {
    border-radius: 10px;
    border: 2px solid #1EAC4B;
    background: #FDFAF1;
    padding: 15px;
    margin-bottom: 20px;
}

.articleContent .wrapper-a .title ,
.articleContent .wrapper-a > h1,
.articleContent .wrapper-a > h2,
.articleContent .wrapper-a > h3,
.articleContent .wrapper-a > h4,
.articleContent .wrapper-a > h5,
.articleContent .wrapper-a > h6 {
    color: #576064;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
    margin-top: 0;
}
.articleContent .wrapper-a > h2 {
    padding: 0;
    background-color: transparent;
}
.articleContent .wrapper-a > h3 {
    border-left: none;
}

.articleContent .wrapper-a ul {

}

@media screen and (max-width:500px) {
    .articleContent .wrapper-a {
        padding-left: 10px;
        padding-right: 10px;
    }
}



/**
    wrapper b
*/
.articleContent .wrapper-b {
    border-radius: 10px;
    background: #F8FDF9;
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.articleContent .wrapper-b::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1EAC4B;
}

.articleContent .wrapper-b .title ,
.articleContent .wrapper-b > h1,
.articleContent .wrapper-b > h2,
.articleContent .wrapper-b > h3,
.articleContent .wrapper-b > h4,
.articleContent .wrapper-b > h5,
.articleContent .wrapper-b > h6 {
    color: #576064;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    border-left: none;
    margin: 0 0 5px;
}
.articleContent .wrapper-b > h2 {
    padding: 0;
    background-color: transparent;
}

@media screen and (max-width:500px) {
    .articleContent .wrapper-b {
        padding-left: 10px;
        padding-right: 10px;
    }
}





/**
    目次
*/
.articleContent .list-index {
    background-color: #f8fdf9;
    border: 2px solid #1eac4b;
    border-radius: 10px;
    padding: 40px 24px 20px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(30, 172, 75, 0.08);
}

.articleContent .list-index p {
    color: #1eac4b;
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.articleContent .list-index p span {
    font-size: 1.4em;
    margin-right: 8px;
    vertical-align: -3px;
}

.articleContent .list-index ul {
    counter-reset: listnum;
}

.articleContent .list-index ul li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
    line-height: normal;
}

.articleContent .list-index ul li::before {
    counter-increment: listnum;
    content: counter(listnum) ". ";
    font-size: 18px;
    color: #1eac4b;
    font-weight: 600;
    position: absolute;
    left: 15px;
    top: 12px;
    background: none;
    width: auto;
    height: auto;
}

.articleContent .list-index ul li a {
    background: #fff;
    border: 1px solid #dcefdc;
    border-radius: 6px;
    padding: 10px 12px 10px 45px;
    text-decoration: none;
    color: #333;
    display: block;
}
/* aタグが無いliタグが対象 */
.articleContent .list-index ul li:not(:has(> a)) {
    background: #fff;
    border: 1px solid #dcefdc;
    border-radius: 6px;
    padding: 10px 12px 10px 45px;
    color: #333;
}


.articleContent .list-index .note {
    font-size: 14px;
    color: #666;
    margin-top: 14px;
    text-align: right;
    margin-bottom: 0;
    font-weight: 400;
}

.articleContent .list-index a[href^="http"]:not([href*="ouchi-mall.com"])::after {
    content: "";
    display: none;
}

@media screen and (max-width:500px) {
    .articleContent .list-index {
        padding-left: 10px;
        padding-right: 10px;
    }
}




/**
    table
*/
.articleContent table {

}

.articleContent table th ,
.articleContent table td {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    padding: 12px 5px;
}

@media screen and (max-width:500px) {
    .articleContent table th ,
    .articleContent table td {
        font-size: 14px;
    }
}



/**
    CTA
*/
.articleContent .customBanner3 {
    margin: 50px 0;
}

.articleContent .customBanner3 .customBanner__content {
    background-color: #F6F7F7;
    padding-bottom: 0;
}

.articleContent .customBanner3 .customBanner__content__description {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: normal !important;
    color: #576064 !important;
}

.articleContent .customBanner3 .customBanner__content__snallDescription {
    
}

.articleContent .customBanner3 .customBanner__content__snallDescription span {
    
}

.articleContent .customBanner3 .customBanner__content__signupButton {
    background: #FF8200 !important;
    
}

@media screen and (max-width:500px) {
    .articleContent .customBanner3 .customBanner__content__description {
        font-size: 16px !important;
    }

    .articleContent .customBanner3 .customBanner__content__snallDescription span {
        font-size: 22px !important;
    }
}





/**
  * 画像
  */
.articleContent img {
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
}



/**
イタリックの機能を下線に変更
*/
.articleContent em {
    font-style: normal;
    background: linear-gradient(transparent 35%, #FDFCC4 0%);
}

