@charset "UTF-8";

/* メイン部 */
.main {
    /* height: 100vh; */
    width: 100%;
    height: 80vh;
}

/* コンテンツ1START */
.container1_main{
    margin-top: 30px;
    height: auto;
    display: flex;
    flex-direction:column;
    align-items: center;
}
.container1_area{
    width: 90%;
    height: auto;
    background-color: #ffffff;
}
.profile_title{
    height: auto;
    width: 100%;
    text-align: center;
    font-size: 45px;
    line-height: normal;
    color: #2C7FC3;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 100px;
}
.profile_sub_title{
    font-size: 25px;
    line-height: normal;
    color: #000000;
    margin-left: 20px;
}
/* 会社概要エリアSTART */
.profile_area{
    margin-top: 10px;
    width: 100%;
}
.infomation_titile{
    font-size: 30px;
    line-height: normal;
    color: #2C7FC3;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.profile_table{
    width: 100%;
    background-color: #fef1f6;
    font-size: 15px;
    margin-top: 10px;
}
.profile_table th{
    width: 20%;
    border-bottom: 1px solid #999;
    text-align: left;
    vertical-align: top;
    padding-left:8px;
}
.profile_table td{
    border-style: none;
    border-bottom: 1px solid #999;
    vertical-align: top;
    padding-left: 8px;
}
.profile_table ul{
    list-style: disc;
    padding-left: 2em;
}
.table_title_font{
    font-family: "Murecho", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 15px;
}
.table_content_font{
    font-size: 15px;
    font-family: "Murecho", sans-serif;
    font-weight: 600;
    font-style: normal;
}
/* 会社概要エリアEND */
/* コンテンツ1END */

/*レスポンシブ対応*/
@media screen and (max-width: 480px){
    .main {
        /* height: 100vh; */
        width: 100vw;
        height: auto;
    }
    
    /* コンテンツ1START */
    .container1_main{
        margin-top: 10px;
        height: auto;
        display: flex;
        flex-direction:column;
        align-items: center;
    }
    .container1_area{
        width: 90%;
        height: auto;
    }
    .profile_title{
        font-size: 30px;
        margin-top: 0;
    }
    .profile_sub_title{
        font-size: 15px;
        line-height: normal;
        color: #000000;
        margin-left: 20px;
    }
    /* 会社概要エリアSTART */
    .profile_area{
        margin-top: 10px;
        width: 100%;
    }
    .infomation_titile{
        font-size: 20px;
    }
    .profile_table{
        font-size: 10px;
    }
    .table_title_font{
        font-size: 12px;
    }
    .table_content_font{
        font-size: 12px;
        font-weight: 500;
    }
}