body{
  font-family: 'Raleway', sans-serif;
  color: #000;
  font-size: 0.85rem;
  background: lightgrey;
}
header{
  height: 80px;
  background-color: lightgrey;
  display: flex; 
  width: 100%;
}
.logoBox{
  width: 15%;
  text-align: center;
  position: relative;
}
.contactBox{
  width: 15%;
  background-color: #000;
}
.logoBox img{
  width: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.navBox{
  width: 70%;
  position: relative;
}
.navBox li{
  display: inline-block;
  margin-right: 30px;
}
.navBox ul{
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-10%,-50%);
}
.contactBox p{
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.contactBox{
  position: relative;
}
.mainvisualBox img{
  height: calc(100vh - 80px);
  width: 100%;
  object-fit: cover;
}
#newsSection{
  width: 100%;
  max-width: 1032px;
  height: 300px;
  margin: 100px auto 0 auto;
}
.sectionTitle{
  font-size: 50px;
  font-weight: normal;
}
#newsSection > p::after,
.hasBottomBar::after{
  content: "";
  display: block;
  width: 30px;
  border-bottom: 1px solid #000;
  margin: 30px 0 50px 0;
}
#newsSection ul{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#newsSection li{
  width: 32%;
  border-right: 1px solid #000;
}
#newsSection span{
  background-color: #000;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  width: 50px;
  height: 20px;
  margin-left: 10px;
  text-align: center;
  line-height: 20px;
}
#newsSection li p{
  margin: 20px 0;
}
#aboutSection{
  display: flex;
  justify-content: space-between;
}
.sectionImgBox{
  width: 55%;
}
#aboutSection img{
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.sectionTextBox{
  width: 45%;
  padding-left: 80px;
  padding-top: 170px;
}
#businessImageArea{
  width: 100%;
  max-width:  1032px;
  display: flex;
  margin: 0 auto;
  height: 750px;
  justify-content: space-around;
}
.leftside{
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: flex-end;
  width: 40%;
}
.rightside{
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: flex-start;
  width: 40%;
}
.inner{
  margin-bottom: 30px;
}
.inner img{
  width: 100%;
}
.imageTitle{
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15px;
}
.imageTitle::before{
  content: "ー";
  font-weight: lighter;
  width: 5px;
  margin-right: 10px;  
}
.info dt{
  float: left;
  margin-bottom: 15px;
}
.info dd{
  margin-left: 80px;
  margin-bottom: 15px;
}
#companySection{
  position: relative;
  height: 750px;
}
.companyLeftBox{
  position: absolute;
  left: 15%;
  background: #fff;
  padding: 80px 180px 60px 40px;
}
.companyRightBox{
  position: absolute;
  top: 100px;
  width: 40%;
  left: 50%;
}.companyRightBox img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
footer{
  background: #fff;
}
footer .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 150px 30px 100px;
}
footer .logoBox{
  width: 130px;
}
footer > p {
  padding-left: 100px;
}

  @media screen and (max-width: 1023px) {
    .contactBox{
      display: none;
    }

  }