@charset "UTF-8";

/* =========================
Mission
================= */

.about-mission {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
                url('../../assets/img/mission-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    min-height: 900px;
    padding-top: 150px;
    padding-bottom: 400px;
    text-align: center;
    position: relative;
}

.about-mission::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.about-mission .container {
    position: relative;
    z-index: 2;
}

.about-mission .mission-text p {
    font-size: 24px;
    color: var(--c-text);
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
    .about-mission {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 210px;
        background-size: contain;
        background-position: center bottom;
        background-image: url('../../assets/img/mission-bg.webp');
    }

    .about-mission .section-title {
        margin-bottom: 60px;
    }

    .about-mission .mission-text p {
        font-size: 15px;
    }
}

/* =========================
実学について
========================= */
.about-values {
    background-color: #fff;
    text-align: center;
}

.about-values .intro-group {
    margin-bottom: 80px;
}

.about-values .lead {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--c-text);
    margin-bottom: 160px;
}

.about-values .lead span,
.about-values .question span,
.about-values .desc span {
    color: var(--c-mint-accent);
    font-weight: 700;
}

.about-values .question {
    font-size: 24px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 108px;
}

.about-values .desc p {
    font-size: 18px;
    margin-bottom: 64px;
}

.about-values .box-outline {
    border: 2px solid var(--c-main);
    border-radius: 40px;
    padding: 60px 40px;
    max-width: 880px;
    margin: 0 auto;
}

.about-values .box-head {
    margin-bottom: 40px;
}

.about-values .box-head .label {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: var(--c-mint-accent);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.about-values .box-head .sub {
    display: block;
    font-size: 20px;
    color: var(--c-mint-accent);
    font-weight: 700;
    margin-top: 10px;
}

.about-values .box-figure {
    max-width: 600px;
    margin: 0 auto;
}

.about-values .box-figure img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .about-values .lead {
        font-size: 20px;
        margin-bottom: 120px;
    }
    .about-values .question {
        font-size: 18px;
        margin-bottom: 80px;
    }
    .about-values .desc p {
        font-size: 15px;
    }
    .about-values .box-outline {
        padding: 40px 20px;
        border-radius: 25px;
    }
    .about-values .box-head .label {
        font-size: 24px;
    }

    .about-values .box-head .sub {
        font-size: 16px;
        margin-top: 4px;
    }
}

/* =========================
実学を大切にする理由
======================== */

.about-reason {
    background-color: var(--bg-beige);
    text-align: center;
}

.about-reason .title {
    font-size: 28px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 108px;
}

.about-reason .title span {
    color: var(--c-mint-accent);
}

.about-reason .content span {
    color: var(--c-mint-accent);
    font-weight: 700;
}

.about-reason .content p {
    margin-bottom: 80px;
    font-size: 18px;
}

.about-reason .content p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .about-reason .title {
        font-size: 22px;
        margin-bottom: 64px;
    }

    .about-reason .content p {
        margin-bottom: 40px;
        font-size: 15px;
    }
}

/* =========================
会社概要
======================== */
.about-info {
    background-color: var(--bg-mint);
    padding: 100px 0 160px;
    position: relative;
}

.about-info .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.about-info .info-box {
    background-color: #fff;
    border-radius: 40px;
    padding: 80px 100px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.about-info .info-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.about-info .info-item:last-child {
    border-bottom: none;
}

.about-info dt {
    width: 30%;
    color: var(--c-main);
    font-weight: 600;
}

.about-info dd {
    width: 70%;
    color: var(--c-text);
    line-height: 1.6;
}

/* キャラクターの配置 */
.about-info .info-character {
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 120px;
}

.about-info .info-character img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .about-info {
        padding: 60px 0 100px;
    }

    .about-info .info-box {
        padding: 10px 24px;
        border-radius: 24px;
        width: 100%;
        margin: 0 auto;
    }

    .about-info .info-item {
        display: block;
        padding: 20px 0;
    }

    .about-info dt {
        width: 100%;
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 0;
        margin-left: 0;
    }

    .about-info dd {
        width: 100%;
        font-size: 16px;
        padding-left: 0;
        margin-left: 0;
    }

    .about-info .info-character {
        right: 8%;
        bottom: -4%;
        width: 80px;
    }
}
