.help-children .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.help-children .flex > div {
    flex: 1;
}

.help-children .flex > div img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 100/70;
    object-fit: cover;
}

h2.active-title {
    font-size: 27px;
    line-height: 1.5;
    margin: 10px 0;
}

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: 15px;
}

.help-children .flex .active-effort {
    background: #e7f2e7;
    padding: 1.5em 1em;
    margin-top: 15px;
    border-radius: 10px;
}

.help-children .flex div:first-child h3 {
    color: #61A85E;
    text-align: center;
    font-size: 1em;
    word-break: auto-phrase;
    line-height: 1.5;
}

.help-children .flex .active-effort ul {
    column-count: 2;
}

@media (max-width: 380px){
    .help-children .flex .active-effort ul {
    column-count: 1;
    }
}

.help-children .flex .active-effort li {
    list-style-type: disc;
    margin-left: 1.5em;
}

.help-children .flex .active-effort ul li + li {
    margin-top:.3em;
}

.help-image {
    margin-top: 20px;
}

.help-image > div {
    display: flex;
    gap: 15px;
}

.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: 50px 0 30px;
}

.give-us-info ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 90px;
    flex-direction: column;
}

.give-us-info ul li {
    text-align: center;
    flex: 1;
    position: relative;
    aspect-ratio: 1/1;
    max-width: 280px;
}

.give-us-info ul li:before {
    content: "";
    display: block;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    aspect-ratio: 1;
    bottom: -47px;
}

.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;
    font-size: 18px;
}

.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 15%;
}

.help-shop-wrapper {
    background: #E7E0E9;
    padding: 20px 0 30px;
    overflow: hidden;
}

.altenate-side > div {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    flex-direction: column;
    gap: 20px;
}

.altenate-side > div + div {
    margin-top: 40px;
}

.altenate-side > div:nth-child(even) {
}

.altenate-side-img {
    width: 100%;
}

.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;
    padding: 10px 10px 0;
}

.altenate-side > div:nth-child(odd) .altenate-side-text {
    margin-left: 0px;
}

.altenate-side > div:nth-child(even) .altenate-side-text {
}

.altenate-side-text h4 img {
    width: 100%;
}

.altenate-side-text ul {
    position: absolute;
    left: 0;
    bottom: 0;
}

.altenate-side-text ul li {
    list-style-type: disc;
    margin-left: 2.4em;
    font-size: 2.9vw;
}

@media screen and (max-width: 500px) {
    .give-us-info h3, .help-image + h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 413px) {
    h2.active-title {
        font-size: 24px;
    }

    .help-children .active-effort .active-effort > div ul {
        flex-direction: column;
        align-items: center;
        padding-left: 20px;
    }

    .help-children .active-effort .active-effort > div ul li {
        width: 190px;
    }

    .help-image > div {
        flex-direction: column;
    }
}

@media screen and (max-width: 360px) {
    h2.active-title {
        font-size: 20px;
    }
}

.vision {
    margin:70px 0;
    text-align:center;
}

.vision img {
    width: 90%;
    max-width:600px;
}




.large-title {
    font-size: 20px;
    margin: 60px 0 25px;
}

.main-wrapper h3 {
    font-weight: bold;
    /* text-align: center; */
    /* font-size: 18px; */
    margin: 45px auto 20px;
    /* color: #5a5a5a; */
}

.plan-detail-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 470px;
    margin: 0 auto 70px;
}

.plan-detail ol li {
    margin-left: 1.4em;
}

.plan-detail > ol > li + li {
    margin-top:1em;
}

.plan-detail ol {
    margin-top: .5em;
}

.adjust-br {
    display: none;
}