@charset "utf-8";
/*--京company.css--*/
/* ##########PC########## */
.greeting_box{
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 5rem;
}

    .greeting_box::before{
        content: "";
        display: block;
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        height: 100%;
        background: #ccc;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        background-image: url(../shared/home/bg_introduction.png);
        background-size: 1.5rem auto;
    }

    .greeting_box > .box_header{
        position: relative;
        z-index: 1;
    }

    .greeting_box > .box_inner{
        position: relative;
        z-index: 1;
    }

        .greeting_box > .box_inner .text{}


        .greeting_box > .box_inner .president{
            margin-top: 2em;
        }

            .greeting_box > .box_inner .president dl{
                display: flex;
                align-items: center;
                justify-content: flex-end;
                line-height: 1.5;
                gap: 1em;
            }

                .greeting_box > .box_inner .president dl dd{
                    font-size: 1.6em;
                    font-weight: 500;
                }

.company_outline{
    width: 100%;
}

    .company_outline th,
    .company_outline td{
        border-bottom: 2px solid #f0f0f0;
        padding: 1em;
    }

    .company_outline th{
        width: 6em;
    }

.page_body .maker_list{
    display: flex;
    flex-wrap: wrap;
    gap: 1em 2em;
    line-height: 1.3;
}

    .page_body .maker_list li{
        box-sizing: border-box;
        width: calc((100% - 2em) / 2);
        margin-bottom: 0;
    }

        .page_body .maker_list li::before{
            top: 0.4em;
        }


@media screen and (min-width:1px) and (max-width:1300px) {

}
/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){

}
    
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {
    .greeting_box{
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        margin-bottom: 2rem;
    }

    .greeting_box > .box_inner .president dl dd{
        font-size: 1.4em;
    }

    .page_body .maker_list{
        flex-direction: column;
        gap: 0.5em 0;
    }

        .page_body .maker_list li{
            width: auto;
        }

            .page_body .maker_list li::before{
                top: 0.4em;
            }

}


/* ##########印刷用########## */
@media print{

}