@charset "UTF-8" ;
/*全体設定*/
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: black;
  font-size: 0.875rem;
}

html {
  font-size: 100%;
}
body {
  background-color: #F0F0F0;
  color: #000;
  font-size: 0.875rem;
}
/*header*/
#header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 100px;
  line-height: 1px;
  margin-right: 60px;
}
.logo a {
  display: block;
}
#header .inner {
  display: flex;
  align-items: center;
}
#header .inner ul {
  display: flex;
  align-items: center;
}
#header .inner li {
  margin-right: 30px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}
#header .inner li:last-child {
  margin-right: 0;
}
#header .contact {
  width: 200px;
  height: 80px;
  line-height: 80px;
  background-color: #000;
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  text-align: center;
}
#header .contact:hover {
  background-color: #333;
}
#mainvisual {
  margin-bottom: 120px;
}
#mainvisual img {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}
/*wrapper*/
.wrapper {
  margin: 0 auto;
  max-width: 1032px;
  padding: 0 16px;
  width: 100%;
}
.section-title {
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
}
/*news------------------------------*/
.section-title .en {
  letter-spacing: 0.3em;
  display: block;
  font-size: 2.25rem;
  margin-bottom: 10px;
}
.section-title .ja {
  font-size: 1rem;
  display: block;
  font-size: 0.875rem;
  margin-bottom: 36px;
}
.section-title::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  display: block;
}
/*list*/
#NEWS .list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  
}
.date-area span {
  width: 50px;
  height: 20px;
  line-height: 20px;
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 10px;
  text-align: center;
}
.date-area  {
  margin-bottom: 20px;
}
#NEWS .list li {
  border-right: solid 1px #000;
  width: calc(100%/3);
  margin-right: 20px;
}
#NEWS .list li:last-child {
  border-right: none;
  padding-right: 0;
}
/*ABOUT*/
#ABOUT  .img  img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#ABOUT  .img  {
  width: 55%;
}
#ABOUT {
  display: flex;
  margin-top: 120px;
}
#ABOUT .text {
  width: 45%;
  padding: 180px 5% 0 5%;
}
#ABOUT .text p {
  line-height: 2.2;
}
/*BUSINESS*/
#BUSINESS {
  margin-bottom: 120px;
}
#BUSINESS .flex {
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
}
#BUSINESS .flex .left {
  width: 46%;
  margin-top: 100px;
}
#BUSINESS .flex .right {
  width: 46%;
}
#BUSINESS .flex .item {
  margin-bottom: 50px;
}
#BUSINESS .flex .item:last-child {
  margin-bottom: 0;
}
#BUSINESS .flex .title {
  font-weight: bold;
  margin: 0 0 10px 18px;
  position: relative;
}

#BUSINESS .flex .title::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: -18px;
}

/*company*/
#company {
  height: 750px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 20px;
}
#company .text {
  width: 55%;
  background-color: #fff;
  padding: 100px 8% 100px 6%;
  position: absolute;
  top: 0;
  left: 0;
}
#company .img {
  width: 53%;
  position: absolute;
  top: 115px;
  right: 0px;
}
#company .img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#company .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#company .info dt {
  width: 20%;
  margin-top: 10px;
}
#company .info dt:first-of-type {
  margin-top: 0;
}
#company .info dd {
  width: 80%;
  margin-top: 10px;
}
#company .info dd:first-of-type {
  margin-top: 0;
}
#company .info .add {
  margin-left: 20%;
}
/*footer----------------------------------*/
#footer {
  background-color: #fff;
  padding-bottom: 20px;
}
#footer .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
#footer .info {
  font-size: 0.875rem;
  text-align: left;
}
#footer .flex .logo {
  margin-right: 0;
}
#footer .copyright {
  font-size: 0.625rem;
}
/*レスポンシブ対応------------------------*/
@media screen and (max-width: 900px) {
  .logo {
    width: 80px;
    margin-bottom: 8px;
  }
  .section-title {
    margin-bottom: 34px;
  }
  .section-title .ja {
    margin-bottom: 24px;
  }
  /*header*/
  #header .contact {
    display: none;
    margin: 8px 0;
  }
  #header .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  #mainvisual {
    margin-bottom: 80px;
  }
  /*news*/
  #NEWS .list {
    flex-direction: column;
  }
  #NEWS .list li {
    width: 100%;
    border-right: none;
    padding: 10px 0;
    margin-bottom: 20px;
  }
  #news .list li:last-child {
    margin-bottom: 0;
  }
  /*-------------------------------------------
  about
  --------------------------------------------*/
  #ABOUT {
    flex-direction: column;
    margin-bottom: 80px;
  }
  #ABOUT .img {
    width: 100%;
    margin-bottom: 32px;
  }
  #ABOUT .img img {
    height: 300px;
  }
  #ABOUT .text {
    width: 100%;
    padding: 0 16px;
  }
  /*-------------------------------------------
  business
  --------------------------------------------*/
  #BUSINESS .flex {
    flex-direction: column;
    padding: 0;
  }
  #BUSINESS  .flex .left {
    width: 100%;
    margin: 0 0 30px 0;
  } 
  #BUSINESS .flex .right {
    width: 100%;
  } 
  #BUSINESS .flex .item {
    text-align: center;
    margin-bottom: 30px;
  }
  #BUSINESS .flex .title {
    text-align: left;
  }
  /*------------------------------------------
  company
  ---------------------------------------------*/
  #company {
    flex-direction: column;
    position: static;
    height: auto;
  }
  #company .text {
    width: 100%;
    position: static;
  }
  #company .img {
    width: 100%;
    position: static;
    padding: 0;
  }
  #company .info {
    flex-direction: column;
  }
  #company .info dt {
    width: 100%;
    margin-top: 20px;
  }
  #company .info dd {
    width: 100%;
    margin-top: 5px;
    padding-left: 14px;
  }
  #company .info dt:first-of-type {
    margin-top: 5px;
  }
  #company .info .add {
    margin-left: 0;
  }
  /*------------------------------------------
  footer
  ---------------------------------------------*/
  #footer .flex {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer .flex .logo {
    margin-bottom: 10px;
  }
}