@charset "UTF-8";

html{
    font-size: 100%;
}
*{
    padding: 0;
    margin: 0;
}



body{
    background-color: #f0f0f0;
    color: #333;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
  }

  /**,*:before,*:after {
    outline: 2px solid red!important;
}

/*--共通css--*/

.wrapper{
    width: 100%;
    max-width: 1032px;
    padding: 0 16px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.section-title{
    font-weight: normal;
    line-height: 1;
    margin-bottom: 50px;
}

.section-title::after{
    content: "";
    width: 40px;
    height: 1px;
    background-color: #000;
    display: block;
}

.section-title .en{
    display: block;
    font-size: 2.25rem;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.section-title .ja{
    display: block;
    font-size: 0.875rem;
    margin-bottom: 36px;
}





/*--ヘッダ--*/


.header-list{
    display: flex;
    list-style: none;
    padding: 15px;
}

.header-inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-list li a{
    text-decoration: none;
    color: #333;
}

.header-list li{
    margin-right: 100px;
}

.header-logo{
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-left: 5%;
    color: #333;
}



/*メインビジュアル*/

.main-visual {
    background-image:url(mem.jpg);
    background-size: cover;
    background-position: center;
    height: 700px;
    border-radius: 15px;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    margin-bottom: 120px;
}

.container h1 {
    font-size: 70px;
    letter-spacing: -0.04em;
    color: #fff;
}

.container p {
    font-size: 25px;
    color:#fff;
}

.container {
    text-align: right;
    padding-top: 200px;
    padding-right: 80px;
}


/*--会社について--*/





#about{
    margin-bottom: 200px;
}



.about-list {
    display: flex;
    justify-content: space-between;
    padding-left: 150px;
}


.info h5{
    padding-bottom: 30px;
    padding-left: 170px;
    font-size: 30px;
}

.info p{
    font-size: 20px;
}



/*--NEWS--*/



#news{
    margin-bottom: 200px;
}


.news-list{
    display: flex;
    flex-direction: column;
    padding-left: 150px;
    list-style: none;
    width: 700px;
}


.news-area{
    display: flex;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.news-area p{
    padding-left: 20px;
}



/*--事業内容--*/

.content {
    flex-wrap: nowrap;
}


#services{
	margin-bottom: 200px;
}


.TOP {
    display: flex;
    list-style: none;
}

.bottom {
    display: flex;
    list-style: none;
}


.item{
    padding: 40px;
    border: #333 solid 2px;
    margin: 15px;
    border-radius: 15px;
    width: 100%;
    background-color: #fff;
}


.fa-solid {
    font-size: 60px;
    margin-bottom: 15px
}


.content h5 {
    font-size: 20px;
    margin-bottom: 15px;
}










/*--会社概要--*/




#company{
    margin-bottom: 120px;
}

.company-list table{
    width: 100%;
    height: 600px;
    background-color: #fff;
    border-collapse: collapse;
    border-spacing: 0;
}


.company-list table th{
    padding: 28px 10px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fbfbfb;
}

.company-list table td{
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid  #e6e6e6;
    padding-left: 80px;
}





/*--フッター--*/


.footer{
    background-color:rgba(29, 58, 80, 0.9);
}

.footer-list{
    color: #fff;
    display: flex;
    list-style: none;
    padding: 20px 0;
    justify-content: center;
    font-size: 15px;
}

.footer-list li{
    margin-left: 50px;
}

.footer-list li a{
    text-decoration: none;
    color: #fff;
}


/*スマホ・タブレット*/

@media  only screen and (max-width: 960px) {

    .header-list{
        display: flex;
    }

    .header-inner{
        width: 100%;
        display: block;
    }

    .header-list li{
        margin: 0 auto;
    }

    .header-logo {
        font-size: 20px;
    }
    


    .main-visual {
        max-width: 100%;
        height: 400px;
    }

    .container h1 {
        font-size: 30px;
    }
    
    .container p {
        font-size: 13px;
    }
    
    .container {
        padding-top: 120px;
        padding-right: 20px;
    }

    /*会社について*/

    #about{
        margin-bottom: 120px;
    }

    .about-list {
        padding-left: 0px;
    }
    
    .info h5{
        font-size: 20px;
        padding-bottom: 30px;
        padding-left: 0px;
    }
    
    .info p{
        font-size: 15px;

    }
    
    /*ニュース*/

    #news{
        margin-bottom: 120px;
    }
    
    
    .news-list{
        display: flex;
        flex-direction: column;
        padding-left: 0px;
        list-style: none;
        width: 100%;
    }

    
    .news-area p{
        padding-left: 10px;
    }
    


    /*共通*/
    .section-title .en{
        font-size: 1.50rem;
    }


    /*事業*/

    .wrapper {
        width: 100%;
    }
    .TOP {
        display: flex;
        flex-direction: column;
        font-size: 15px;
    }

    .bottom {
        display: flex;
        flex-direction: column;
        font-size: 15px;
    }

    .item{
        padding: 20px;
        margin: 0px;
        margin-bottom: 15px;
        height: 352px;
    }

    
    /*会社*/

    
    
    .company-list table th{
        padding: 10px 10px;
    }
    
    .company-list table td{
        padding-left: 40px;
    }



    /*フッター*/

    
    .footer-list li{
        margin-left: 10px;
    }
}