@charset "utf-8";
/*===========================
add
===========================*/
/* 黄色マーカー */
.marker-animation {
    display: inline;
    background-image: linear-gradient(transparent 65%, rgba(255, 235, 59, 0.75) 65%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 100%;
    transition: background-size 1.2s ease;
}
/* 発動後 */
.marker-animation.is-active {
    background-size: 100% 100%;
}
.campaignBox {
    background: linear-gradient(135deg, #f5fff7 0%, #e7fff0 100%);
    border: 3px solid #2bb673;
    border-radius: 20px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}
.campaignInner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.campaignLabel {
    display: inline-block;
    background: #ff7f32;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.campaignBox h2 {
    margin-bottom: 25px;
    line-height: 1.4;
}
.campaignBox h2 span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0f7b48;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.campaignBox h2 span::after {
    content: "";
    width: 100%;
    height: 6px;
    background: #b8f0cf;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    margin-bottom: 0px;
}
.campaignBox h2:after {
    height: 0;
}
.campaignTxt {
    /*font-size: 1.7rem;*/
    line-height: 2;
    color: #333;
}
.campaignTxt strong {
    color: #e53935;
    font-size: 1.2em;
}
@media screen and (max-width: 768px) {
    .campaignBox {
        padding: 35px 20px;
    }
    .campaignLabel {
        /*font-size: 1.2rem;*/
        padding: 8px 18px;
    }
    .campaignBox h2 span {
        /*font-size: 2.3rem;*/
        margin-bottom: 0px;
    }
    .campaignTxt {
        /*font-size: 1.5rem;*/
        text-align: left;
    }
}


.text-center-text-left__child {
  text-align: left;
  display: inline-block;
  padding: 0;
}