@charset "UTF-8";

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
body {
    overflow-x: hidden;
}

.mainimg {
    position: relative;
    margin-top: 97px;
}

.bgimg img {
    width: 100%;
    object-fit: cover;
    max-height: 252px;
    min-height: 252px;
}

.text_img {
    position: absolute;
    top: 50px;
    right: 0;
    left: 11px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.symbol_wrap {
    position: relative;
}

.symbol {
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
    bottom: 0;
}

.symbol img {
    margin: 0 auto;
}




@media screen and (max-width: 768px) {

    .mainimg {
        margin-top: 72px;
    }
}

@media screen and (max-width: 480px) {
    .mainimg {
        margin-top: 58px;
    }

    .bgimg img {
        min-height: 200px;
    }

    .text_img img {
        max-height: 80px;
    }

    .symbol img {
        max-width: 80px;
        padding-right: 0;
    }

    .text_img {
        left: 0;
    }

}

/*-------------------------------------------*/
/*会社概要*/
/*-------------------------------------------*/
.outline .maxWid {
    max-width: 800px;
}

.outline {
    margin-top: 210px;
    margin-bottom: 185px;
}


.list li {
    display: flex;
    position: relative;
    margin-bottom: 28px;
    padding: 0px 0 28px 0px;
    font-size: 1.6rem;
}

.list li::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 7.5em;
    height: 1px;
    background-color: #d01c97;
}

.list li::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 7.5em;
    width: calc(100% - 7.5em);
    height: 1px;
    background-color: #c3c3c3;
}

.list li span {
    display: block;
    width: 12em;
    font-weight: bold;
}

.list li p {
    font-size: 1.6rem;
    line-height: 1.25;
    font-feature-settings: "palt";
}

p[x-apple-data-detectors] {
    pointer-events: none;
    /*リンク解除*/
    cursor: default;
    color: inherit;
    text-decoration: none;
}




@media screen and (max-width: 768px) {
    .overview {
        margin-top: 140px;
    }

    .list li {
        font-size: 1.5rem;
    }

    .list li p {
        font-size: 1.5rem;
    }

}


@media screen and (max-width: 480px) {
    .outline {
        margin-top: 100px;
        margin-bottom: 120px;
    }

    .list li {
        font-size: 1.2rem;
        padding: 0px 0 20px 5px;
        margin-bottom: 20px;
    }

    .list li span {
        width: 6em;
    }

    .list li p {
        font-size: 1.2rem;
        line-height: 1.25;
        width: calc(100% - 6em);
    }
}