@charset "utf-8";

/* background img */
#introduce.bg_img {
    background-image: url('../images/introduce_bg1.jpg');
}

#organization.bg_img {
    background-image: url('../images/bg001.jpg');
    background-position-y: -150px;
}

#welfare.bg_img {
    background-image: url('../images/welfare_bg_1.jpg');
}

/* COMPANY CSS */
#introduce_container .section01 {
    margin: 100px 0;
}

#introduce_container .text_box {
    margin-bottom: 120px;
}

.inner_text_wrap h1 {
    letter-spacing: 4px;
}

.intro_inner {
    padding-left: 25px;
}

.intro_inner p {
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
    animation-duration: 1s;
    animation-name: fadeInUp;
    animation-iteration-count: unset;
}

.intro_img_box {
    padding-right: 25px;
    /* border-right: 2px solid #e9e9e9; */
    animation-duration: 1s;
    animation-name: fadeInUp;
    animation-iteration-count: unset;
}

.intro_img_box img {
    box-shadow: 0 2px 6px rgb(0 0 0 / 47%);
}

.name_right {
    margin-top: 60px;
}

.name_right p {
    font-weight: bold;
    text-align: right;
}


/* Organization Part */

#organization_wrap {
    overflow: hidden;
    margin: 50px 0;
    padding: 0px 110px;
}

#organization_wrap img.o_chart_img {
    animation-duration: 2s;
    animation-name: fadeInUp;
    animation-iteration-count: unset;
}

/* Welfare Part */
#welfare_container .section01 {
    margin: 60px 0;
}

#welfare_container .section02 {
    margin: 100px 0;
}

.wel_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.wel_con {
    /* flex: 0 0 33.33%; */
    box-sizing: border-box;
    padding: 10px;
}

.cBox {
    height: 250px;
    padding: 35px;
    background-color: #FAFAFA;
    line-height: 1.5;
    min-width: 290px;
}

.cBox .icon_bar {
    width: 20px;
}

.wel_tt01 {
    font-weight: 900;
    font-size: 20px;
    margin: 20px 0;
}

.wel_tt02 {
    margin-top: 10px;
    margin-left: 11px;
    text-indent: -11px;
    text-align: justify;
}

.cBox.titleBox {
    background-color: #2F5CED;
    padding: 60px 35px 70px;
}

.title_img {
    margin-right: 25px;
}

.title_txt {
    font-size: 20px;
    color: #fff;
    margin-top: 15px;
}

.wel_ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    margin-bottom: 50px;
}

.wel_ul li {
    width: 200px;
    height: auto;
    padding: 20px 20px;
    border-radius: 30px;
    border: 1px solid #dbdbdb;
    text-align: center;
}

.wel_ul li p {
    font-weight: 900;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@media only screen and (max-width: 1100px) {
    #organization.bg_img {
        background-position-y: 0px;
    }
 }


@media only screen and (max-width: 992px) {
    #organization_wrap {
        padding: 0px;
    } 

    /* welfare */
    .wel_ul li {
        width: 150px;
    }


    .intro_img_box {
        padding-right: 10px;
        border-right: none;
    }

    .intro_inner {
        width: 100%;
        padding-left: 10px;
        margin-top: 30px;
    }

}


@media only screen and (max-width: 767px) {

    .intro_inner p {
        font-size: 14px;
    }

    .organization_container {
        width: 100%;
    }

    .wel_ul li {
        width: 120px;
    }

}

@media only screen and (max-width: 576px) {

    .wel_ul {
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .wel_ul li {
        width: 45%;
        min-width: 90px;
    }
}

@media only screen and (max-width: 375px) {
    #introduce_container .section01 {
        margin: 50px 0;
    }

    .wel_ul li {
        padding: 15px 10px;
    }
}