.main h3:not(.contact h3){
    font-size: 2rem;
    padding-bottom:1.75rem;
    margin-bottom:1.75rem;
    color:#FF77AD;
    border-bottom:solid #FF77AD 1px;
}

/*企業理念*/
.philosophy_container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.philosophy_txt{
    width:70%;
}
.philosophy_txt span{
    display: inline-block;
    color:#FF77AD;
    font-weight: 600;
    margin-bottom:1rem;
    border:solid 1px #FF77AD;
    padding:1rem 4rem;
    background-color: white;
}
.philosophy_txt span:nth-of-type(2){
    margin-top:2rem;
}
.philosophy_txt p{
    margin-left:4rem;
}

.philosophy_container .philosophy_staff{
    width:30%;
}
.philosophy_container .philosophy_staff img{
    width:100%;
    height:auto;
    object-fit: cover;
}
.philosophy_container .philosophy_staff p{
    text-align: center;
    margin-top:.5rem;
}



/*会社概要*/
.company_profile{
    margin-top:6rem;
}
.company_profile_table{
    width:90%;
    margin:0 auto;
}
.company_profile_table table tr{
    display: flex;
    align-items:stretch;
    justify-content: space-between;
    background-color: #ff77ad11;
    padding:1rem 0;
}
.company_profile_table table tr:nth-of-type(n+2){
    margin-top:2rem;
}
.company_profile_table table tr th{
    width:15%;
    text-align: left;
    padding:1rem 2rem;
    color:#FF77AD;
    text-align: center;
    border-right:solid #FF77AD 1px;
}

.company_profile_table table tr td{
    width:75%;
    margin: 1rem 0;
}
.company_profile_table table tr td span{
    display: block;
    margin-left:2rem;
}
.company_profile_table table tr td img{
    width:60%;
    height:auto;
    object-fit: cover;
    border-radius: 1.5rem;
}
.company_profile_table table tr td iframe{
    width:60%;
    height:20vw;
}




/*スタッフ*/
.staff{
    margin-top:6rem;
}

.staff_container .staff_bubble{
    text-align: center;
    background-color:rgba(255, 119, 173, 0.1);
    border-radius: 9999px;
    width:80%;
    margin:4rem auto 0 auto;
    padding:3rem 0;
    color:rgb(237, 0, 94);
    font-weight: 600;
    position: relative;
}
.staff_container .staff_bubble::after{
    content:"";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 1.5rem solid transparent;
    border-left:1.5rem solid transparent;
    border-top: 2rem solid  rgba(255, 119, 173, 0.1);
    border-bottom: 0;
    position: absolute;
    bottom:-2rem;
    left:50%;
    transform: translateX(-50%);
}
.staff_content{
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top:4rem;
}
.staff_content div{
    width:calc((80% - 3%) / 4);
}
.staff_content div img{
    width:100%;
    height:auto;
}
.staff_content div p{
    text-align: center;
    font-weight: 600;
    margin-top:.5rem;
}



/*----------------------------------------------------------------------
レスポンシブ
------------------------------------------------------------------------*/
/*------------------------------------------
1024px以下
--------------------------------------------*/
@media(max-width:1024px){
    /*企業理念*/
    .philosophy_txt {
        width: 65%;
    }
    .philosophy_txt p{
        margin-left:0;
    }
}

/*------------------------------------------
768px以下
--------------------------------------------*/
@media(max-width:768px){
    /*会社概要*/
    .company_profile_table table tr{
        flex-flow: column;
    }
    .company_profile_table table tr th{
        width: 90%;
        margin: 0 auto;
        padding: 1rem 0;
        text-align: left;
        border-bottom:solid 1px #FF77AD;
        border-right:0;
    }
    .company_profile_table table tr td{
        width: 90%;
        margin: 1rem auto;
    }
}

/*------------------------------------------
600px以下
--------------------------------------------*/
@media(max-width:600px){
    /*企業理念*/
    .philosophy_container{
        flex-flow: column-reverse;
    }
    .philosophy_container .philosophy_staff{
        width: 50%;
        margin: 0 auto;
    }
    .philosophy_txt{
        margin-top: 2rem;
    }


    /*スタッフ*/
    .staff_container .staff_bubble{
        width: 90%;
        padding: 1rem 0;
    }
    .staff_content div{
        width: calc((80% - 3%) / 2);
    }
}


/*------------------------------------------
425px以下
--------------------------------------------*/
@media(max-width:425px){
    /*企業理念*/
    .philosophy_txt {
        width: 100%;
    }
    .philosophy_txt span{
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }


    /*会社概要*/
    .company_profile_table{
        width:100%;
    }
    .company_profile_table table tr td img{
        width: 100%;
    }
    .company_profile_table table tr td iframe {
        width: 100%;
        height: 50vw;
    }
}