@charset "UTF-8";

.introduction-logo-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.introduction-logo {
    display: block;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.introduction_subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.introduction_description {
    margin-bottom: 40px;
}

.introduction_lv3 {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.introduction_lv3_en {
    display: inline-block;
    font-size: 28px;
    color: #e60012;
}

.introduction_lv3_jp {
    display: inline-block;
    font-size: 20px;
}

.introduction_list_wrapper {
    display: block;
    margin: 0 0 60px 0;
    padding: 30px 20px;
    background-color: #e7e7e7;
}

.introduction_list {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    margin-left: 1.5rem;
    gap: 1.2em 0;
}

.serviceList {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}

.introduction_lv4 {
    display: block;
    color: #e60012;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.introduction_lv4Sub {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.introduction_lv4Sub__service {
    display: inline!important;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0!important;
}

.introduction_text {
    margin-bottom: 40px;
}

.introduction_text__big {
    font-size: 20px;
    font-weight: 600;
}

.serviceList_inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.serviceList_image {
    display: block;
    width: 25%;
    height: auto;
}

.serviceList_text {
    display: block;
    width: calc(75% - 40px);
    height: auto;
    margin-right: 40px;
}

@media screen and (max-width: 599px) {
    .introduction_subtitle {
        font-size: 24px;
    }
    
    .introduction_lv3_en {
        font-size: 22px;
    }
    
    .introduction_lv3_jp {
        font-size: 20px;
    }
    
    .introduction_lv4 {
        font-size: 22px;
    }
    
    .introduction_lv4Sub {
        font-size: 20px;
    }

    .serviceList_inner {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 40px 0;
    }
    
    .serviceList_image {
        display: block;
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 0 auto;
    }
    
    .serviceList_text {
        display: block;
        width: 100%;
        margin: 0 auto!important;
    }
}