@charset "utf-8";

h1, h2, h3, a, p, small{
   font-family: "Montserrat","Noto Sans JP", sans-serif;
}

a{
  text-decoration: none;
}

.header{
  display: flex;
  justify-content: space-between;
}

.header-logo{
  margin-top:30px;
  margin-left:5vw;
  width: 260px;
  z-index: 10;
}

.header-logo img{
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.header .btn-nav {
  position:absolute;/* position: fixed; */
  top: 30px;
  right: calc(4vw + 60px);
  width: 35px;
  height: 24px;
  z-index: 30;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.header .btn-nav span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.header .btn-nav span:nth-child(1) {
  top: 0;
}

.header .btn-nav span:nth-child(2) {
  top: 8px;
}

.header .btn-nav span:nth-child(3) {
  top: 16px;
}

.header .btn-nav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header .btn-nav.open span:nth-child(2),
.header .btn-nav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-nav {
  display: block;
}

.nav-list{
  list-style-type:none;
  display:flex;
  font-size: 20px;
  font-weight: bold;
}

.site-nav {
  position:absolute;
  display: none;
  top: 0;
  right: -100%;
  width: 40%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.9);
  font-size: 16px;
  box-sizing: border-box;
  z-index: 28;
  padding-top: 50px;
  transition: all .5s;
}

.site-nav.open {
  right: 0;
  display: block;
  transition: all 0.5s;
}

.site-nav .nav-list {
  width: 100%;
  height: 100%;
  display: block;
  flex-direction: column;
  text-align: center;
  }

.site-nav .nav-list li {
    padding: 30px 0px 0px 0px;
}

.nav-item a{
  color:white;
}


.menu-bar{
  color: white;
  font-size: 10;
  font-weight: 900;
  margin-top: 30px;
  margin-right: 4vw;
  z-index: 15;
}

.fv{
  height:405px;
  /* background-color: pink; */
}

.fv-img{
  width:70vw;
  height: 387px;
  position: absolute;
  top:0;
  left: 0;
  z-index: 5;
}

.fv-img img{
  width: 100%;
  height: 387px;
  object-fit:cover;

}

.fv-backgroundbox{
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  width:55%;
  height:464px;
  z-index: 1;
}

.fv-msg-container{
  color:white;
  position: absolute;
  top:157px;
  right:20vw;
  z-index: 20;
}

.fv-subtitle{
  font-size: 20px;
  font-weight:700;
}

.fv-title{
  font-size: 72px;
  font-weight: bold;
}


.vision-wrapper{
  margin-top: 120px;
  padding-left: 35vw;
  overflow: hidden;
}

.vision-wrapper h2{
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 25px;
}

.vision-wrapper h3{
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 27px;
}

.vision-wrapper p{
  font-size: 16px;
  line-height: 30px;
}

.ceo-message-wrapper{
  margin-top: 120px;
  margin-left: 10vw;
  margin-right: 10vw;
  /* background-color: pink; */
  position:relative;
  /* margin-bottom: 10px; */
  height:1100px;
}

.ceo-msg-img{
  width:40%;
  position: relative;
  z-index: 40;
}

.ceo-msg-img img{
  width:100%;
  object-fit: cover;
}

.ceo-msg-content-wrapper{
 position:absolute;
 top: 12vw;
 right:0px;
 background-color: #F0F0F0;
 width:70%;
 z-index: 30;
}

.ceo-msg-content{
  width: 50%;
  margin:0 auto 0;
  padding-top:120px;
  padding-bottom: 90px;
}

.ceo-msg-content h2{
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 25px;
}

.ceo-msg-content p{
  font-size: 16px;
  line-height: 30px;
}


.footer{
  background-color: #525252;
  color: white;
  font-size: 10px;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.company-wrapper{
  width:80%;
  margin:120px auto 120px;
}

.company-wrapper h2{
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 30px;
  border-bottom: 1px solid #F0F0F0;
}

.company-details{
  width: 70%;
  margin:0 0 40px auto;
  /* background-color: pink; */
}

.company-details-item{
  display: flex;
  justify-content:left;
  border-bottom: 1px solid #F0F0F0;
  padding-top: 18px;
  padding-bottom: 18px;
}

.company-details-item .item{
  width:200px;
  font-size: 16px;
  font-weight: bold;
}

.company-details-item .description{
  font-size: 16px;
}

.map iframe{
  width: 100%;
  object-fit: cover;
}

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

  .header-logo{
    width: 189px;
  }

  .fv{
    height:560px;
    /* background-color: pink; */
  }
  
  .fv-img{
    width:70vw;
    height: 529px;

  }
  
  .fv-img img{
    height: 529px;
  }
  
  .fv-backgroundbox{
    height:615px;
  }
  
  .fv-msg-container{
    top:157px;
    right:16vw;
  }
  
  .fv-subtitle{
    font-size: 16px;
  }
  
  .fv-title{
    font-size: 52px;
  }
  
  .vision-wrapper{
    margin-top: 120px;
    padding-left: 20vw;
    overflow: hidden;
  }

  .ceo-message-wrapper{
    margin-left: 3vw;
    margin-right: 3vw;
    /* background-color: pink; */
    height:900px;
  }
  
  .ceo-msg-img{
    width:320px;
  }
  
  
  .ceo-msg-content-wrapper{
   top: 100px;
   width:75%;
  }
  
  .ceo-msg-content{
    width: 90%;
  }
  
  .company-wrapper{
    width:94%;
  }
   
  .company-details{
    width: 95%;
   }
  
  

}

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

  .fv{
    height:400px;
    /* background-color: pink; */
  }
  
  .fv-img{
    width:70vw;
    height: 387px;

  }
  
  .fv-img img{
    height: 387px;
  }
  
  .fv-backgroundbox{
    height:449px;
  }
  
  .fv-msg-container{
    top:157px;
    right:7vw;
  }
  
  .fv-subtitle{
    font-size: 16px;
  }
  
  .fv-title{
    font-size: 52px;
  }
  
  .vision-wrapper{
    margin-top: 120px;
    padding-left: 3vw;
    overflow: hidden;
  }

  .ceo-message-wrapper{
    margin-left: 0;
    margin-right: 3vw;
    /* background-color: pink; */
    height:900px;
  }
  
  .ceo-msg-img{
    width:320px;
  }
  
  
  .ceo-msg-content-wrapper{
   top: 100px;
   width:95%;
  }
  
  .ceo-msg-content{
    width: 90%;
  }
  
  .company-wrapper{
    width:94%;
  }
   
  .company-details{
    width: 100%;
   }
  
   .company-details-item .item{
   width:120px;
   font-size: 14px;
   }
 
 .company-details-item .description{
   font-size: 14px;
  }

  .map iframe{
    width: 100%;
    height: 470px;
  }
  
 


}