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

  company menu

---------------------------------*/
.company_menu_wrapper{
    margin-bottom: 80px;
}
.company_menu_inner{
    width: 88%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.company_menu_inner a{
    display: block;
    width: calc(33.333% - 4%);
    margin: 0 2%;
    background-color: #3ccb9c;
    color: #fff;
    border: solid 1px #3ccb9c;
    line-height: 1em;
    padding: 15px 20px 15px 15px;
    border-radius: 4px;
    font-weight: 500;
    position: relative;
    transition: .35s;
}
.company_menu_inner a:hover{
    background-color: #f6f6f6;
    color: #3ccb9c;
}
.company_menu_inner a::before {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url("../img/company/arrow_white.png") center / 10px 6px no-repeat;
    transition: .35s;
}
.company_menu_inner a:hover::before{
    background: url("../img/business/arrow_01.png") center / 10px 6px no-repeat;
}
.company_menu_inner a.here{
    background-color: #fff;
    color: #3ccb9c;
}
.company_menu_inner a.here::before{
    background: url("../img/business/arrow_01.png") center / 10px 6px no-repeat;
}


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

  会社概要・沿革

---------------------------------*/
.wrapper{
    margin-bottom: 100px;
}
.wrapper h3{
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    color: #1dc765;
    margin-bottom: 40px;
}
.inner{
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6em;
}
.inner:first-of-type{
    margin-bottom: 70px;
}
.inner table{
    width: 100%;
}
.inner table tr th{
    width: 26%;
    border-bottom: solid 1px #1dc765;
    text-align: left;
    font-weight: 500;
    padding: 18px 20px;
}
.inner table tr:first-of-type th{
    border-top: solid 1px #1dc765;
}
.inner table tr td{
    width: 74%;
    border-bottom: solid 1px #dddddd;
    padding: 18px 20px;
}
.inner table tr:first-of-type td{
    border-top: solid 1px #dddddd;
}
.inner table tr td p{
    margin-bottom: 10px;
}
.circle{
    position: relative;
    padding-left: 14px;
}
.circle::before{
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #1dc765;
}


@media print, screen and (max-width: 750px) {
    .company_menu_wrapper {
        margin-bottom: 50px;
    }
    .company_menu_inner {
        width: 100%;
        padding: 0 10px;
    }
    .company_menu_inner a {
        width: calc(33.333% - 10px);
        margin: 0 5px;
        line-height: 1.2em;
        padding: 8px 20px 8px 10px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }
    .wrapper h3{
        font-size: 22px;
        margin-bottom: 30px;
    }
    .inner {
        width: 100%;
        padding: 0 15px;
        line-height: 1.5em;
    }
    .inner table tr th{
        width: 30%;
        padding: 16px 5px 16px 2px;
    }
    .inner:last-of-type table tr th{
        font-size: 14px;
    }
    .inner table tr td{
        width: 70%;
        padding: 16px 5px 16px 10px;
    }
    .inner:first-of-type {
        margin-bottom: 45px;
    }
    .wrapper {
        margin-bottom: 60px;
    }


}
@media print, screen and (max-width: 376px) {
    .inner table tr th{
        width: 34%;
        padding: 16px 5px 16px 2px;
    }
    .inner:last-of-type table tr th{
        font-size: 14px;
    }
    .inner table tr td{
        width: 66%;
        padding: 16px 5px 16px 10px;
    }
}
