@charset "utf-8";

/* about */
.about-wrapper {
    margin-top: 40px;
}

.about-top h3 {
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 100%;
    background: #3573b5;
    padding: 2px;
}

.about-top p {
    border: 1px solid #656565;
    padding: 10px 10px 10px 25px;
}

.about-bottom {
    display: flex;
    align-items: stretch;
    column-gap: 10px;
    margin-top: 20px;
}

.about-bottom__left {
    width: 50%;
}

.about-bottom__middle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 20px solid #656565;
    border-right: 0;
}

.about-bottom__right {
    width: 50%;
}

.about-bottom__right-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 20px;
    position: relative;
}

.about-bottom__right-img {
    height: 100%;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    z-index: 0;
}

.about-bottom__right-img img {
    max-height: 100%;
    width: auto;
    opacity: .8;
}

.about-block {
    display: flex;
    column-gap: 10px;
    position: relative;
    z-index: 1;
}

.about-num {
    display: block;
}

.about-num_content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 90%;
    font-weight: bold;
    color: #fff;
    background-color: #3573b5;
    border-radius: 100vmax;
    padding: 2px;
    width: 30px;
    height: auto;
    aspect-ratio: 1;
}

/* soudan */
.soudan-table {
    font-size: 90%;
    margin-top: 0px;
}

.soudan-table__row-head {
    display: flex;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background: #3573b5;
}

.soudan-table__row-head .--01 {
    width: 5%;
}

.soudan-table__row-head .--02,
.soudan-table__row-head .--03 {
    width: 25%;
}

.soudan-table__row-head .--04 {
    width: 55%;
}

.soudan-table__row {
    display: flex;
    border-bottom: 1px solid #656565;
}

.soudan-table__row .--01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EDF3FA;
    width: 5%;
}

.soudan-table__row .--02 {
    display: flex;
    align-items: center;
    background: #EDF3FA;
    width: 25%;
    padding: 10px;
}

.soudan-table__row .--03 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    padding: 20px;
    background: #fff;
}

.soudan-table__row .--04 {
    width: 50%;
    padding: 10px 20px;
    background: #fff;
}

/* development */
.development-flex-wrapper {
    display: flex;
    column-gap: 10px;
    margin-top: 40px;
}

/* .development-left */
.development-left {
    width: 50%;
}

.development-left__head {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 68px;
}

.development-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.development-left__box-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 5px;
    background-color: #3573b5;
    padding: 10px;
    margin-top: 10px;
}

.development-left__box {
    display: flex;
    column-gap: 5px;
    color: #3573b5;
    width: 100%;
}

.development-left__box span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: #EDF3FA;
    padding: 5px 15px;
}

.development-left__box p {
    flex-grow: 1;
    display: block;
    font-weight: bold;
    background-color: #EDF3FA;
    padding: 10px;
}

.development-arrow {
    position: relative;
    display: inline-block;
    width: 26.6px;
    height: 15.3px;
}

.development-arrow::before,
.development-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 2px);
    width: 4px;
    height: 20px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 50% calc(100% - 2px);
}

.development-arrow::before {
    transform: rotate(45deg);
}

.development-arrow::after {
    transform: rotate(-45deg);
}

.development-arrow.--blue {
    margin-inline: auto;
}

.development-arrow.--blue::before,
.development-arrow.--blue::after {
    background: #3573b5;
}

/* .development-right */
.development-right {
    width: 60%;
}

.development-right__box-wrapper {
    color: #3573b5;
    padding: 10px;
    margin-top: 10px;
}

.development-arrow__wrapper {
    display: flex;
    align-items: center;
    column-gap: 5%;
    margin-top: 0.5vw;
}

.development-arrow__wrapper:nth-of-type(2) {
    margin-top: 3vw;
}

.development-arrow__wrapper:nth-of-type(3) {
    margin-top: 2vw;
}

.development-right__arrow {
    display: inline-block;
    width: 60px;
    height: 4px;
    border-radius: 9999px;
    background-color: #3573b5;
    margin: 11.3px 0;
    position: relative;
}

.development-right__arrow::before,
.development-right__arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    width: 20px;
    height: 4px;
    border-radius: 9999px;
    background-color: #3573b5;
    transform-origin: 2px 50%;
}

.development-right__arrow::before {
    transform: rotate(45deg);
}

.development-right__arrow::after {
    transform: rotate(-45deg);
}

.development-right__bottom-text {
    color: red;
    text-align: center;
    margin-left: 60px;
    margin-top: 20px;
}

.development-right__box {
    line-height: 150%;
    margin-top: 20px;
}

.development-right__box-head {
    display: flex;
    column-gap: 5px;
    font-weight: bold;
    border-bottom: 1px solid #3573b5;
}

.development-right__box-head span {
    display: inline-block;
    color: #fff;
    font-size: 90%;
    background: #3573b5;
    padding: 2px 5px;

}

.development-right__box .body {
    font-size: 95%;
    padding: 10px;
}

.development-middle__arrow {
    display: none;
}

/* management */
.management-flex {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

/* training */
.training-wrapper {
    display: flex;
    column-gap: 1%;
    margin-top: 40px;
}

.training-arrow {
    width: 2%;
    height: 0;
    border-style: solid;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 20px solid #3573b5;
    border-right: 0;
}

.training-wrapper dl {
    width: 30%;
}

.training-wrapper dt {
    color: #fff;
    text-align: center;
    font-weight: bold;
    background: #3573b5;
    padding: 15px 10px 10px 10px;
    position: relative;
}

.training-wrapper dt span {
    color: #3573b5;
    font-weight: normal;
    line-height: normal;
    background: #fff;
    padding: 2px 10px;
    border-radius: 100vmax;
    border: 1px solid #3573b5;
    position: absolute;
    left: 0;
    top: -15px;
}

.training-wrapper dd {
    padding: 10px 10px 10px 22px;
    position: relative;
}

.training-box {
    color: #3573b5;
    line-height: 150%;
    text-align: center;
    border: 1px solid #3573b5;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.training-box .num {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100%;
    font-weight: bold;
    color: #fff;
    background-color: #3573b5;
    border-radius: 100vmax;
    padding: 5px;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    position: absolute;
    left: -22.5px;
    top: 50%;
    translate: 0 -50%;
}

.training-box+.training-box {
    margin-top: 10px;
}

.training-box__arrow {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    height: 100%;
    width: auto;
    z-index: 0;
}

.training-box__arrow img {
    max-height: 100%;
    width: auto;
    opacity: .8;
}

/* governance */
.governance-top {
    display: flex;
    align-items: stretch;
    column-gap: 4%;
    margin-top: 40px;
}

.governance-top dl {
    width: 48%;
    display: flex;
    flex-direction: column;
    height: auto;
}

.governance-top dt {
    color: #fff;
    font-weight: bold;
    background: #3573b5;
    padding: 5px 10px;
    text-align: center;
}

.governance-top dd {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    border: 1px solid #656565;
    height: 100%;
}

.governance-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 90%;
    margin-top: 5px;
}

.governance-table tbody th,
.governance-table tbody td {
    padding: 10px;
    background-color: #fff;
    border-bottom: 2px solid #fff;
}

.governance-table tbody th {
    width: 2%;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #3573b5;
    position: relative;
}

.governance-table tbody tr td:nth-of-type(1) {
    color: #3573b5;
    text-align: left;
    font-weight: bold;
    width: 28%;
    background: #EDF3FA;
}

.governance-table tbody tr td:nth-of-type(2) {
    width: 70%;
    padding-left: 20px;
    text-indent: -1em;
}

/* flow */
.phase-title__first {
    color: #fff;
    line-height: 150%;
    font-size: 90%;
    -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    background-color: #3573b5;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-section {
    display: flex;
    flex-direction: column;
}

.phase-section dd {
    display: flex;
    flex-direction: column;
    font-size: 90%;
    height: 100%;
}

.flow-box+.flow-box {
    margin-top: 10px;
}

.flow-phase1 {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    margin-bottom: 10px;
    position: relative;
}

.flow-phase1__arrow {
    color: #052990;
    text-align: center;
    -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    background-color: #E7EDF5;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* output */
.output-wrapper {
    width: 45%;
}

.output-wrapper img {
    max-width: 100%;
}

/* feature */
.feature-block__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 20px;
}

.feature-block {
    display: flex;
    column-gap: 20px;
}

.feature-num {
    display: block;
}

.feature-num_content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 110%;
    font-weight: bold;
    color: #fff;
    background-color: #3573b5;
    border-radius: 100vmax;
    padding: 5px;
    width: 45px;
    height: auto;
    aspect-ratio: 1;
}

.feature-text__head {
    font-size: 120%;
    border-bottom: 1px solid #656565;
}

.feature-arrow {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 20px;
}

.feature-arrow__content {
    width: 150px;
    height: 100%;
    -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    background: #3573b5;
}

.feature-bottom {
    text-align: center;
    background: #E7EDF5;
    padding: 10px;
}

.purpose{
    height:110px;
}

.flow-height-2{
    height:64.7px;
}

.flow-height-3{
    height:115px;
}

.flow-height-5{
    height:180px;
}

.output-top{
    height: 325.13px;
}




@media screen and (max-width: 769px) {

    /* about */
    .about-wrapper {
        margin-top: 20px;
    }

    .about-bottom {
        flex-direction: column;
        row-gap: 20px;
    }

    .about-bottom__left {
        width: 100%;
    }

    .about-bottom__right {
        width: 100%;
    }

    .about-bottom__middle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-triangle {
        width: 0;
        height: 0;
        border-style: solid;
        border-top: 20px solid #656565;
        border-bottom: none;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
    }

    /* soudan */
    .soudan-table {
        font-size: 85%;
        line-height: 160%;
    }

    .soudan-table__row-head {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .soudan-table__row-head .--01 {
        width: 10%;
    }

    .soudan-table__row-head .--02,
    .soudan-table__row-head .--03 {
        width: 25%;
    }

    .soudan-table__row-head .--04 {
        width: 40%;
    }

    .soudan-table__row .--01 {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #EDF3FA;
        width: 10%;
    }

    .soudan-table__row .--02 {
        width: 25%;
        padding: 10px 2px;
    }

    .soudan-table__row .--03 {
        width: 25%;
        padding: 10px 2px 5px 20px;
    }

    .soudan-table__row .--04 {
        width: 40%;
        padding: 10px 2px;
    }

    /* development */
    .development-flex-wrapper {
        flex-direction: column;
        row-gap: 40px;
        margin-top: 20px;
    }

    /* .development-left */
    .development-left {
        width: 100%;
    }

    .development-left__head {
        height: auto;
    }

    /* .development-right */
    .development-right {
        width: 100%;
    }

    .development-arrow__wrapper {
        margin-top: 10px;
    }

    .development-arrow__wrapper:nth-of-type(2) {
        margin-top: 10px;
    }

    .development-arrow__wrapper:nth-of-type(3) {
        margin-top: 10px;
    }

    .development-right__arrow {
        display: none;
    }

    .development-right__bottom-text {
        margin-left: 0;
    }

    .development-right__box {
        margin-top: 10px;
    }

    .development-middle__arrow {
        width: 100%;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .development-middle__arrow-content {
        width: 150px;
        height: 100%;
        -webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
        background: #3573b5;
    }

    /* training */
    .training-wrapper {
        flex-direction: column;
        align-items: center;
        row-gap: 10px;
    }

    .training-arrow {
        border-top: 20px solid #3573b5;
        border-bottom: none;
        border-right: 28px solid transparent;
        border-left: 28px solid transparent;
    }

    .training-wrapper dl {
        width: 100%;
    }

    .training-wrapper dd {
        padding: 10px 10px 10px 22px;
        position: relative;
    }

    /* governance */
    .governance-top {
        flex-direction: column;
        row-gap: 10px;
    }

    .governance-top dl {
        width: 100%;
    }

    .governance-table tbody tr td:nth-of-type(1) {
        width: 35%;
    }

    .governance-table tbody tr td:nth-of-type(2) {
        width: 63%;
    }

    /* output */
    .output-wrapper {
        width: 100%;
    }

    .output-wrapper+.output-wrapper {
        margin-top: 20px;
    }

    .purpose{
        height:auto;
    }
    
    .flow-height-2{
        height:auto;
    }
    
    .flow-height-3{
        height:auto;
    }

    .flow-height-5{
        height:auto;
    }

    .output-top{
        height: auto;
    }
    
    
    

}