@charset "utf-8";
/*==========================
vision
==========================*/
.section--vision {
    padding: 60px 5% 40px;
    background: linear-gradient(135deg, #f7f8fb 0%, #eceff8 50%, #f7f8fb 100%);
}

.vision__main-title {
    font-size: 3.6rem;
    font-weight: 700;
    color: #000c56;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px; 
    text-transform: uppercase; 
}

.vision__title-line {
    color: #fca957; 
    font-weight: 500;
}

.vision__txt {
    font-size: 1.6rem;
    color: var(--primary-black);
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.vision__txt:last-of-type {
    margin-bottom: 0;
}

/* pc vision */
@media screen and (min-width: 769px) {
    .section--vision {
        padding: 90px 5% 90;
    }

    .vision__main-title {
        margin-bottom: 50px;
        color: #030170;
        font-family: Roboto;
        font-size: 5.8rem;
        line-height: 1;
    }
    
    .vision__txt {
        font-size: 1.8rem;
    }
}

/*==========================
mission
==========================*/
.section--mission {
    padding: 80px 5% 0;
}

.mission__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.mission__main-title {
    font-size: 3.6rem;
    font-weight: 700;
    color: #000c56; 
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-transform: uppercase; 
}

.mission__title-line {
    color: #fca957; 
    font-weight: 500;
}

.mission__subtitle {
    font-size: 1.6rem;
    color: var(--primary-black);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.mission__list {
    display: flex;
    flex-direction: column; 
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mission__item {
    background-color: #00025c; 
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 2, 92, 0.1);
}

.mission__img-wrapper {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10; 
}

.mission__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission__txt {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 10px;
    width: 100%;
}

/* pc mission */
@media screen and (min-width: 769px) {
    .section--mission {
        padding: 120px 5% 0;
    }

    .mission__main-title {
        color: #030170;
        font-family: Roboto;
        font-size: 5.8rem;
        line-height: 1;
    }

    .mission__subtitle {
        font-size: 2.0rem;
        margin-bottom: 40px;
        font-weight: 300;
    }

    .mission__list {
        flex-direction: row;
        justify-content: space-between;
        gap: 2.5%;
    }

    .mission__item {
        flex: 1;
        max-width: 31.6%; 
        padding: 30px 24px 40px; 
    }
    
    .mission__txt {
        font-size: 1.5rem; 
    }
}

/*==========================
value
==========================*/
.section--value {
    padding: 80px 5% 40px;
}

.value__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* スマホ時は縦一列に並べる */
    gap: 50px;
}

.value__main-title {
    font-size: 3.6rem;
    font-weight: 700;
    color: #000c56; 
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.value__title-line {
    color: #fca957; 
}

.value__list {
    display: flex;
    flex-direction: column;
    gap: 45px; 
    padding: 0;
    margin: 0;
    list-style: none;
}

.value__item {
    position: relative;
    padding-left: 50px; 
}

.value__number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fca957;
    line-height: 1;
}

.value__item-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000c56; 
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.value__txt {
    font-size: 1.6rem;
    color: var(--primary-black);
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin: 0;
}

.value__item::after {
    content: "";
    position: absolute;
    left: 11px; 
    top: 26px; 
    width: 2px; 
    height: 36px;
    background-color: #fca957;
}

.value__figure-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.value__graphic {
    width: 100%;
    max-width: 768px;
    display: block;
}

.value__graphic img {
    width: 100%;
    height: auto;
    display: block;
}

/* pc value */
@media screen and (min-width: 769px) {
    .section--value {
        padding: 120px 5% 100px;
    }

    .value__main-title {
        color: #030170;
        font-family: Roboto;
        font-size: 5.8rem;
        line-height: 1;
    }

    .value__inner {
        flex-direction: row; 
        justify-content: space-between;
        align-items: flex-start; 
        gap: 5%;
    }

    .value__content {
        width: 50%;
        flex-shrink: 0;
    }

    .value__figure-wrapper {
        width: 45%;
        max-width: 540px;
        margin-top: 100px;
    }

    .value__number,
    .value__item-title {
        font-size: 2.0rem;
    }

    .value__txt {
        font-size: 1.8rem;
    }
}