.help-children .flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    margin-top: 32px;
}

.help-children .flex > div:nth-child(1) {
    flex: 1.2;
}

.help-children .flex > div:nth-child(2) {
    flex: 1;
}

.help-children .flex > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

h2.active-title {
    font-size: var(--h2fontsize);
    line-height: 1.5;
    margin: -10px 0 20px;
    text-align: center;
}

h2.active-title + p {
    text-align:justify;
    word-break: auto-phrase;
    letter-spacing: -0.7px;
}

h2.active-title span:first-child {
    font-size: 18px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

h2.active-title span:first-child:before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -3px;
    height: 1px;
    background: #61A85E;
    z-index: 1;
}

h2.active-title span:first-child:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    background: white;
    border: solid #61A85E;
    border-width: 0 1px 1px 0;
    z-index: 2;
    transform: rotate(45deg);
    left: 60px;
    bottom: -11px;
}

.help-shop h2.active-title span:first-child:before {
    background: #916d98;
}

.help-shop h2.active-title span:first-child:after {
    border: solid #916d98;
    border-width: 0 1px 1px 0;
}

.help-shop h2.active-title span:first-child:after {
    background: #e7e0e9;
}

h2.active-title span:nth-child(2) {
    color: #61A85E;
    display: block;
    margin-top: 10px;
}

.help-children .flex .active-effort {
    background: #e7f2e7;
    padding: 2em;
    border-radius: 10px;
    margin-top: 30px;
}

.help-children .flex .active-effort h3 {
    color: #61A85E;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.5;
    word-break: auto-phrase;
}

.help-children .flex .active-effort ul {
    column-count: 2;
}

@media (min-width: 1000px){
    .help-children .flex .active-effort ul {
    position: relative;
    left: 7px;
    }
}

.help-children .flex .active-effort li {
    list-style-type: disc;
    margin-left: 1em;
}

.help-children .flex .active-effort li + li {
    margin-top:.3em;
}

.help-image {
    margin-top: 20px;
}

.help-image > div {
    display: flex;
    gap: 20px;
}

.help-image > div div {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.help-image > div img {
    width: 100%;
}

.help-image + h3 {
    font-size: 24px;
    text-align: center;
    margin: 50px 0 30px;
}

.give-us-info h3 {
    font-size: 24px;
    text-align: center;
    margin: 60px 0 40px;
}

.give-us-info ul {
    display: flex;
    justify-content: space-between;
    gap: 4%;
    margin-bottom: 100px;
}

.give-us-info ul li {
    text-align: center;
    flex: 1;
    position: relative;
    padding-bottom: 7%;
}

.give-us-info ul li:before {
    content: "";
    display: block;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    aspect-ratio: 1;
    bottom: 0;
}

.give-us-info ul li:nth-child(1):before {
    background: #DDF9FD;
}

.give-us-info ul li:nth-child(2):before {
    background: #FDF6D3;
}

.give-us-info ul li:nth-child(3):before {
    background: #FDEBED;
}

.give-us-info ul li > div {
    position: relative;
}

.give-us-info ul li > div > div {
    height: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.give-us-info ul li > div > h4 {
    margin-bottom: 10px;
}

.give-us-info ul li:nth-child(1) h4 {
    color: #1693A3;
}

.give-us-info ul li:nth-child(2) h4 {
    color: #C6A40A;
}

.give-us-info ul li:nth-child(3) h4 {
    color: #F43E4B;
}

.give-us-info ul li > div > p {
    margin: 0 10%;
}

.give-us-info ul li > div > p span {
    display:inline-block;
}

.help-shop-wrapper {
    background: #E7E0E9;
    padding: 40px 0 50px;
    overflow: hidden;
}

.altenate-side > div {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.altenate-side > div + div {
    margin-top: 40px;
}

.altenate-side > div:nth-child(even) {
    flex-direction: row-reverse;
}

.altenate-side-img {
    width: 44%;
}

.altenate-side-img img {
    width: 100%;
    height: auto;
}

.altenate-side-text {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0;
    position: relative;
}

.altenate-side > div:nth-child(odd) .altenate-side-text {
    margin-left: 0px;
}

.altenate-side > div:nth-child(even) .altenate-side-text {
    margin-left: 15px;
}

.altenate-side-text h4 img {
    width: 100%;
}

.altenate-side-text ul {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 30px;
}

.altenate-side-text ul li {
    list-style-type: disc;
    margin-left: 40px;
}

@media screen and (max-width: 1000px) {
    .give-us-info ul {
        gap: 10px;
    }

    h2.active-title {
        font-size: 28px;
    }

    .help-children > div:first-child {
        align-items: stretch;
    }

    .help-children > div:first-child > div img {
        object-fit: cover;
        height: 100%;
    }

    .altenate-side-text ul {
        margin-left: 10px;
    }

    .altenate-side-text ul li {
        margin-left: 20px;
    }

    .altenate-side > div:nth-child(even) .altenate-side-text {
        margin-left: 5px;
    }
}

@media screen and (max-width: 920px) {
    h2.active-title {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    h2.active-title {
        font-size: 28px;
    }

    .help-children > div:first-child > div:first-child > div {
        padding: 1.5em;
    }

    .give-us-info ul {
        margin-bottom: 30px;
    }
}

.vision {
    margin:124px 0;
    text-align:center;
}

.vision img {
    width: 90%;
    max-width:750px;
}



.large-title {
    margin: 100px 0 30px;
}

.main-wrapper h3 {
    font-weight: bold;
    /* text-align: center; */
    /* font-size: 20px; */
    margin: 40px auto 25px;
    /* color: #5a5a5a; */
}

.plan-detail-wrapper {
    display: flex;
    justify-content: center;
    align-items: self-start;
    gap: 2.4em;
    margin: 60px 0 120px;
}

.plan-detail ol li {
    margin-left: 1.4em;
    word-break: auto-phrase;
}

.plan-detail > ol > li + li {
    margin-top:1em;
}

.plan-detail ol {
    margin-top: .5em;
}


@media screen and (min-width: 1099px){
    h2.large-title + p:has(.adjust-br) {
        margin-left:1em;
    }
}

@media screen and (max-width: 1100px){
    .adjust-br {
        display: none;
    }
}

.support-lead {
    max-width: 680px;
    margin: auto;
    word-break: auto-phrase;
    /* text-align: justify; */
    letter-spacing: 0px;
    /* font-size: 18px; */
}


ol.basic-concept {
    max-width: 582px;
    margin: auto;
    word-break: auto-phrase;
    /* text-align: justify; */
}

ol.basic-concept li {
    /* font-size: 18px; */
}
