/* common */
*{
  box-sizing: border-box;
}
body{
  max-width: 1400px;
  margin: 0 auto;
  font-size: 14px;
  background-color: #F0F0F0;
}
img{
  max-width: 100%;
}
a{
  text-decoration: none;
}
.container{
  max-width: 1000px;
  margin: 0 auto; 
  padding: 0 1.6%;
}
.en{
  font-size: 36px;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
.ja{
  margin-bottom: 35px;
  position: relative;
}
.ja::after{
  content: "" ;
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: -35px;
}
.section-ttl{
  padding-bottom: 50px;
}

/* ヘッダー */
header{
  display: flex;
  justify-content: space-between;
}
.inner-wrapper{
  display: flex;
  align-items: center;
}
.logo{
  width: 100px;
  margin: 0 60px 0 90px;
}
.logo a{
  display: block;
}
.menu ul{
  display: flex;
}
.menu ul li{
  list-style: none;
}
.menu ul li:not(:last-of-type){
  margin-right: 30px;
}
.menu ul li a{
  color: #000;
}
.menu ul li a:hover{
  text-decoration: underline;
}
.contact{
  display: inline-block;
  font-size: 12px;
  color: #fff;
  width: 200px;
  height: 80px;
  background-color: #000;
  text-align: center;
  line-height: 80px;
}
.contact:hover{
  text-decoration: underline;
  background-color: #333;
}
/* メインビジュアル */
.mainvisual{
  margin-bottom: 120px;
}
.mainvisual img{
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}
/* NEWS */
.news{
  margin-bottom: 135px;
}
.news-list{
  display: flex;
  justify-content: space-between;
}
.news-content{
  border-left: 1px solid #000;
  padding: 10px 20px;
}
.news-content:first-of-type{
  border-left: none;
  padding-left:0;
}
.news-content:last-of-type{
  padding-right: 0;
}
.news-content p{
  font-size: 16px;
}
.news-area{
  margin-bottom: 15px;
}
.news-area span{
  font-size: 12px;
  width: 50px;
  height: 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 20px;
  margin-left: 20px;
}
/* ABOUT */
.about-sec{
  display: flex;
  margin-bottom: 120px;
}
.about-img{
  width: 55%;
}
.about-img img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-text{
  width: 45%;
  padding: 180px 4% 0 4%;
}
.about-text p{
  line-height: 2.2;
}
/* BUSINESS */
.business{
  margin-bottom: 120px;
}
.business-content{
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
}
.business-left{
  margin-top: 130px;
  width: 46%;
}
.business-right{
  width: 46%;
}
.business-ttl{
  margin-bottom: 10px;
  position: relative;
  margin-left: 18px;
}
.business-ttl::before{
  content: "";
  border: 1px solid #000;
  width: 8px;
  position: absolute;
  left: -18px;
  top: 50%;
}
.business-item{
  margin-bottom: 45px;
}
.business-item:last-of-type{
  margin-bottom: 0;
}
/* COMPANY */
.company{
  margin-bottom: 185px;
}
.company-content{
  display: flex;
  position: relative;
}
.left{
  width: 56%;
  padding: 100px 8% 100px 6%;
  background-color: #fff;
}
.info{
  width: 100%;
}
.table-header{
  width: 20%;
  text-align: left;
  margin-bottom: 6px;
}
.table-data{
  width: 80%;
  margin-bottom: 6px;
}
.company-img{
  width: 53%;
  position: absolute;
  right: 0;
  top: 90px;
}
.company-img img{
  z-index: 10;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
/* フッター */
footer{
  background-color: #fff;
  padding-bottom: 20px;
}
.flex{
  display: flex;
  padding: 40px 0;
  justify-content: space-between;
  align-items: center;
}
.footer-logo img{
  width: 200px;
  height: 100px;
}
footer small{
  font-size: 12px;
}

@media(max-width:900px){
  /* common */
  .ja{
    margin-bottom: 20px;
    position: relative;
  }
  .ja::after{
    content: "" ;
    position: absolute;
    bottom: -20px;
  }
  .section-ttl{
    padding-bottom: 45px;
  }
  /* ヘッダー */
  .contact{
    display: none;
  }
  .inner-wrapper{
    flex-direction: column;
    align-items: flex-start;
    padding: 0 4%;
    margin: 15px 0;
  }
  .logo{
    width: 80px;
    margin: 0;
  }
  .menu ul{
    padding: 0;
  }
  /* メインビジュアル */
  .mainvisual{
    margin-bottom: 80px;
  }
  /* NEWS */
  .news-list{
    flex-direction: column;
  }
  .news-content{
    margin-bottom: 40px;
    border-left: none;
    padding: 0;
  }
  .news-content:last-of-type{
    margin-bottom: 0;
  }
  .news{
    margin-bottom: 80px;
  }
  /* ABOUT */
  .about-sec{
    flex-direction: column;
    margin-bottom: 80px;
  }
  .about-img{
    width: 100%;
    margin-bottom: 30px;
  }
  .about-text{
    width: 100%;
    padding: 0 1.6%;
  }
  /* BUSINESS */
  .business{
    margin-bottom: 80px;
  }
  .business-content{
    flex-direction: column;
    padding: 0;
  }
  .business-left{
    margin-top: 0;
  }
  .business-left{
    width: 100%;
    margin-bottom: 27px;
  }
  .business-right{
    width: 100%;
  }
  .business-item{
    margin-bottom: 27px;
  }
  /* COMPANY */
  .company{
    margin-bottom: 0;
  }
  .company-content{
    flex-direction: column;
    position: static;
  }
  .left{
    width: 100%;
    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 20px;
  }
  .table-header{
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
  .table-data{
    display: block;
    width: 100%;
    padding-left: 20px;
    margin-bottom: 15px;
  }
  .add{
    display: none;
  }
  #data{
    margin-bottom: 0;
  }
  .company-content{
    position: static;
  }
  .company-img{
    position: static;
    width: 100%;
  }
  /* フッター */
  .flex{
    flex-direction: column;
    padding-top: 48px;
    align-items: flex-start;
  }
  .footer-logo img{
    width: 80px;
    height: 20px;
    margin-bottom: 8px;
  }
}
