@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap'); 

*{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
}
ul, li{
    list-style: none;
    margin: 0;
}
a{
    text-decoration: none;
}
a:hover{
    border-bottom: solid 1px #cccccc;
}
img{
    vertical-align: bottom;
}


header{
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem;
    display: flex;
    width: calc(100% - 4rem);
    justify-content: space-between;
    z-index: 100;
}
header.bgCng{
    background: #ffffff;
}
header #logo{
    width: 200px;
    height:  50px;
}


header nav ul{
    display: flex;
}
header nav ul a,
header nav ul span{
    color: #000000;
    font-size: 0.75rem;
    text-align: center;
    display: block;
    margin: 0 0.5rem;
    font-weight: bold;
}
header nav ul li span::before{
    content: attr(data-title);
    display: block;
    font-family: sans-serif;
    font-size: 0.5rem;
} 


main>section:not(#sec-top){
    margin: auto;
    padding: 4rem 0;
}

section:not(#sec-top) > h2{
    text-align: center;
}
section:not(#sec-top) > h2 span{
    font-size: 1.5rem;
    font-family: serif;
    font-weight: bold;
}
section:not(#sec-top) > h2>span::before{
    content: attr(data-title);
    display: block;
    font-family: sans-serif;
    font-size: 1rem;
    margin-bottom:2rem;
} 
section:not(#sec-top) > h2>span::after{
    content: "";
    border-bottom: solid 3px #000;
    display: block;
    width: 2rem;
    margin: -4.5rem auto 6.5rem;
}


.section-body{
    width: 620px;
    margin: auto;
}
section  li{
    margin: 0.5rem 0;
}


#sec-top{
    background: #dddddd;
    padding: 3rem;
    padding-top: 10rem;
}
#sec-topmessage{
    background: #F4D3D3;
    padding-bottom: 0 !important;
}
#sec-career{
    background: #FAECED;
}
#sec-about{
/*    background: #dddddd; */
    background-image: url(/assets/image/bkg_about.png);
    background-size: auto 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


#sec-top .section-body{
    width:  840px;
}
#sec-top .section-body h2{
    margin-bottom: 1rem;
}
#sec-top .section-body h2 span{
    font-family: serif;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    display: block;
}
#sec-top .section-body p{
    font-size: 0.75rem;
}



#sec-topmessage .section-body{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    width: 960px;
}
#sec-topmessage .main-text{
    width:   620px;
}
#sec-topmessage img{
    height: 500px;
}

#sec-topmessage dl{
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
#sec-topmessage dl::after{
    content: "";
    display: block;
    width: 100%;
    height: 70px;
    background-image: url(/assets/image/sign.svg);
    background-repeat: no-repeat;
    transform: rotateZ(-10deg);
    margin-left: -50px;
    margin-top: -10px;
    margin-bottom: 60px;

}
#sec-topmessage dt{
    width: 100px;
    font-weight: bold;
}
#sec-topmessage dd{
    width: 200px;
    font-weight: bold;
}

#sec-about .section-body{
    width: 400px;
    margin: auto;
}
#sec-about .logo img{
    vertical-align: bottom;
    margin-right: 0.5rem;
}
#sec-about .section-body dl{
    display: flex;
    flex-wrap: wrap;
}
#sec-about .section-body dt{
    width: 100px;
    padding: 0.5rem 0;
}
#sec-about .section-body dd{
    width:  300px;
    padding: 0.5rem 0;
}


footer{
    background: #1F1F1F;
    text-align: center;
    padding-bottom: 2rem;
}
footer nav{
    background: #2C2C2C;
}

footer nav ul{
    display: flex;
    justify-content: center;
    width: 960px;
    margin: auto;
}
footer nav ul li{
    margin: 1rem;
}
footer nav ul li a{
    color: #ffffff;
}

footer .logo{
    margin: 5rem auto;
    width: 100px;
}

footer .copyright{
    color: #ffffff;
}



