@charset "UTF-8";
/* CSS Document */

/*---------------------------------

  共通heading

---------------------------------*/
.greeting .heading span,.overview .heading span,.history .heading span{
    display: block;
    font-size: 16px;
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
    line-height: 1em;
}
.greeting .heading span::before,.overview .heading span::before,.history .heading span::before{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e0e0e0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.greeting .heading h3,.overview .heading h3,.history .heading h3{
    font-size: 30px;
}


/*---------------------------------

  代表挨拶

---------------------------------*/
.greeting{
    margin-bottom: 13rem;
}
.greeting .inner{
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
}
.greeting .inner .heading{
    width: 30%;
}
.greeting .inner .contents{
    width: 70%;
    padding-top: 12rem;
}
.greeting .inner .contents h4{
    font-size: 26px;
    line-height: 1.6em;
    padding-bottom: 4rem;
}
.greeting .inner .contents .text p{
    padding-bottom: 2rem;
}
.greeting .inner .contents .text p:last-of-type{
    padding-bottom: 3rem;
}
.greeting .inner .contents .name{
    text-align: right;
    font-size: 18px;
}


/*---------------------------------

  会社概要

---------------------------------*/
.overview{
    position: relative;
    padding-bottom: 14rem;
}
.overview::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85%;
    background: linear-gradient(90deg, rgba(252,250,250,1) 0%, rgba(226,226,226,1) 100%);
    z-index: -1;
}
.overview .inner{
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
}
.overview .image{
    width: 60%;
    margin: 0 0 5rem auto;
}
.overview .inner .heading{
    width: 30%;
}
.overview .inner .contents{
    width: 70%;
    padding-top: 12rem;
}
.overview .inner .contents table{
    width: 100%;
}
.overview .inner .contents table tr th{
    width: 35%;
    padding: 30px 0;
    border-top: solid 1px #bdb190;
    border-bottom: solid 1px #bdb190;
    text-align: left;
    line-height: 1.4em;
}
.overview .inner .contents table tr td{
    width: 65%;
    padding: 30px 30px 30px 0;
    border-top: solid 1px #bdb190;
    border-bottom: solid 1px #bdb190;
    line-height: 1.4em;
}
.overview .inner .contents table tr td .circle{
    position: relative;
    padding-left: 14px;
}
.overview .inner .contents table tr td .circle::before{
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #555;
}


/*---------------------------------

  沿革

---------------------------------*/
.history{
    margin-bottom: 15rem;
}
.history .inner{
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}
.history .inner::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -12rem;
    width: 115%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}
.history .inner .heading{
    width: 30%;
}
.history .inner .contents{
    width: 70%;
    padding-top: 12rem;
}
.history .inner .contents table{
    width: 100%;
}
.history .inner .contents table tr th{
    width: 35%;
    text-align: left;
    line-height: 1.4em;
    padding: 0 0 6rem 15%;
    position: relative;
}
.history .inner .contents table tr th::before{
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    background-color: #bdb190;
    border-radius: 50%;
}
.history .inner .contents table tr th::after{
    content: '';
    position: absolute;
    left: 5px;
    top: 4px;
    width: 1px;
    height: 100%;
    background-color: #bdb190;
}
.history .inner .contents table tr:last-of-type th::after{
    display: none;
}
.history .inner .contents table tr td{
    width: 65%;
    line-height: 1.4em;
}
.history .image{
    position: relative;
    z-index: -2;
}


@media print, screen and (max-width: 1080px){
    .greeting .inner .contents h4{
        font-size: 22px;
    }
}


@media print, screen and (max-width: 900px){
    .greeting .inner .contents h4{
        font-size: 18px;
    }
    .history .inner .contents table tr th{
        display: block;
        width: 100%;
        padding: 0 0 2rem 10%;
    }
    .history .inner .contents table tr td{
        display: block;
        width: 100%;
        padding: 0 0 10rem 10%;
    }
    .history .inner .contents table tr{
        position: relative;
    }
    .history .inner .contents table tr::before{
        content: '';
        position: absolute;
        left: 5px;
        top: 4px;
        width: 1px;
        height: 100%;
        background-color: #bdb190;
    }
    .history .inner .contents table tr:last-of-type::before{
        display: none;
    }
    .history .inner .contents table tr th::after{
        display: none!important;
    }    
}


@media print, screen and (max-width: 750px){

    /*---------------------------------

      共通heading

    ---------------------------------*/
    .greeting .heading span, .overview .heading span, .history .heading span{
        font-size: 13px;
        margin-bottom: 5rem;
    }
    .greeting .heading h3, .overview .heading h3, .history .heading h3{
        font-size: 24px;
    }


    /*---------------------------------

      代表挨拶

    ---------------------------------*/
    .greeting {
        margin-bottom: 20rem;
    }
    .greeting .inner {
        width: 100%;
        padding: 0 10rem;
        display: block;
    }
    .greeting .inner .heading{
        width: 100%;
    }
    .greeting .inner .contents{
        width: 100%;
    }
    .greeting .inner .contents h4 {
        font-size: 18px;
        line-height: 1.6em;
        padding-bottom: 6rem;
    }
    .greeting .inner .contents h4 br{
        display: none;
    }
    .greeting .inner .contents .text p{
        padding-bottom: 3rem;
    }
    .greeting .inner .contents .name{
        font-size: 16px;
    }
    .greeting .inner .contents .text p:last-of-type{
        padding-bottom: 5rem;
    }


    /*---------------------------------

      会社概要

    ---------------------------------*/
    .overview {
        padding-bottom: 22rem;
    }
    .overview .image{
        width: 90%;
        margin: 0 0 22rem auto;
    }
    .overview::before{
        height: 90%;
    }
    .overview .inner{
        width: 100%;
        padding: 0 10rem;
        display: block;
    }
    .overview .inner .heading{
        width: 100%;
    }
    .overview .inner .contents{
        width: 100%;
        padding-top: 16rem;
    }
    .overview .inner .contents table{
        font-size: 14px;
    }
    .overview .inner .contents table tr th{
        width: 25%;
        padding: 10rem 0;
    }
    .overview .inner .contents table tr td{
        width: 75%;
        padding: 10rem 0;
    }
    .overview .inner .contents table tr td .circle::before{
        transform: none;
        top: 8px;
    }
    .overview .inner .contents table tr td .circle{
        padding-left: 12px;
    }


    /*---------------------------------

      沿革

    ---------------------------------*/
    .history .inner{
        width: 90%;
        padding: 0 10rem;
        display: block;
    }
    .history .inner::after{
        width: 100%;
        top: -15rem;
    }
    .history .inner .heading{
        width: 100%;
    }
    .history .inner .contents{
        width: 100%;
        padding-top: 16rem;
    }
    .history .inner .contents table tr:first-of-type::before{
        height: 94px;
    }
    .history .inner .contents table tr:nth-of-type(2)::before{
        height: 73px;
    }
}