@charset "UTF-8";
.btn{
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 1.2rem 3rem;
}
/*--オストリッチアイコン--*/
.floating-icon-wrap{
  position: fixed;
  z-index: 100;
  right: 3vw;
  bottom: 3vh;

  width: max(20rem , 10vw);
  aspect-ratio: 1/1;

  transform-origin: center;
}
.floating-icon-wrap img{
  width: 100%;
  height: 100%;
}
.floating-icon-wrap img:hover{
  animation: rotateanime 0.7s ease-in-out infinite;
}
@keyframes rotateanime{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(0.9);
  }
  100%{
    transform: scale(1.0);
  }
}

#hero{
  display: flex;
  justify-content: flex-end;
  align-items:flex-end;

  width: 100%;
  height: 1024px;
  /*msg-wrapの位置調整*/
  padding-bottom: 4.8rem;

  margin-top: var(--header-height);
  margin-bottom: 10rem;
  background-image: url(../img/warehouse.jpg);
  background-position: center;
  background-size: cover;
}
#hero .heromsg-wrap{
  display: flex;
  justify-content: flex-end;

  width: min(100% - 2rem, 1080px);
  margin-inline: auto;
}
#hero .heromsg{
  padding: .8rem 3.2rem;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  font-size: 1.6rem;
  line-height: 1.4;
  color: #009b37;

  background: rgba(255, 255, 255, 0.70);
}
#hero .heromsg-large{
  font-size: 3.2rem;
  font-weight: 700;
}
/*--Information--*/
#information{
  width: min(100% - 2rem, 1080px);
  margin-inline: auto;
  padding-bottom: 100px;
}
#information .top{
  display: flex;
  justify-content: space-between;
  align-items: end;

  margin-bottom: 4rem;
}
#information h2{
  font-size: 3.2rem;
  font-weight: 400;
  -webkit-text-stroke: .3rem;
  letter-spacing: .3rem;
}
#information .top a{
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;

  text-decoration: underline;
}
#information .infolist{
  padding: 0 2rem;
}
.service{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 4rem;

  width: 100%;
  padding: 6rem 2rem;

  background: #d8ecdc;
  border-bottom: solid 2px #009b37;
  transition: 1s all linear;
}
.service::before{
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  background: #d8ecdc;
  background: radial-gradient(circle, rgba(216,236,220,1) 0%, rgba(71,115,168,1) 100%);
  transition: all .6s linear;
}
.service:hover::before{
  opacity: 1;
}
.service h2{
  position: relative;
  z-index: 3;

  width: min(100%, 32rem);
  font-size: 3.2rem;
  font-weight: 400;
  -webkit-text-stroke: .3rem;
  letter-spacing: .3rem;

  padding-top: 2.4rem;
}
.service h2::before{
  content: attr(data-text);
  position: absolute;
  z-index: 3;
  top: -2.5rem;
  left: 0;

  font-size: 3.2rem;
  font-weight: 300;
  -webkit-text-stroke: .3rem;
  letter-spacing: .3rem;

  color: #009b37;
}
.service .content-text{
  position: relative;
  z-index: 3;
  width: 60rem;
  
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;

  padding: 1.6rem 0;
  padding-left: 4rem;

  border-left: solid 3px #ccc;
}
.service .content-text small{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.service .content-text a{
  margin-top: 4rem;
}
/*--Reason--*/
#reason{
  position: relative;
  z-index: 2;
  padding: 10rem 0;
}
#reason h2{
  width: 100%;
  text-align: center;

  color: #009b37;
  font-size: 4rem;
  font-weight: 400;
  -webkit-text-stroke: .1rem;
  letter-spacing: .3rem;

  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: solid 3px #009b37;
}
#reason .unitContainer{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap : 3rem;
  row-gap: 6rem;

  width: min(100% - 2rem , 1200px);
  margin-inline: auto;
}
#reason .unitContainer .unit img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1.5rem;
}
#reason .unitContainer a:nth-child(2) img,
#reason .unitContainer a:nth-child(4) img{
  object-fit: contain;
}
#reason .unitContainer .unit .title{
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#reason .unitContainer .unit .content{
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.4;
}
#reason svg{
  width: 100%;
}
/*--banner--*/
.banner,
.staff-banner{
  position: relative;
  z-index: 1;

  width: min(1200px, 100%);
  margin-inline: auto;
  margin-bottom: 4rem;

  overflow: hidden;
}
.banner{
  height: 60rem;
  padding-top: 8rem;

  background-image: url(../img/driver.jpg);
  background-size: cover;
  background-position: center;

  color: #fff;
  text-align: center;
}
.banner::before,
.banner::after{
  content: '';
  position: absolute;
  top:0;
  left:0;

  display: inline-block;
  width: 100%;
  height: 100%;
}
.banner::before{
  z-index: 2;
  background: #001f1f;
  opacity: 0.75;
}
.banner::after{
  z-index: 3;
  background:url(
  data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAABtJREFUGFdjZGBg+M/AwMDIAAVwBjYBsEoMFQBW5gIF0HSEnwAAAABJRU5ErkJggg==
   ) repeat;
}
.banner p,
.banner small,
.banner .btn{
  position: relative;
  z-index: 10;
}
.banner p{
  font-size: 7rem;
  font-weight: 500;
  -webkit-text-stroke: .1rem;
  line-height: 1.2;
  text-shadow: 0 0 .8rem rgba(0,0,0,0.3);
}
.banner small{
  font-size: 3rem;
  font-weight: 500;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 .4rem rgba(0,0,0,0.3);
}
.banner .btn{
  margin-top: 6rem;
}
.atrtxt{
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: -4rem;
  transform: translate(-50%,0);

  color: #fff;
  font-size: 28rem;
  font-weight: 500;
  -webkit-text-stroke: .1rem;
  opacity: 0.1;
}
/*--staff-interview--*/
.staff-banner{
  display: flex;
  justify-content: center;
  height: 40rem;
  padding-top: 6rem;

  background: #009725;
}
.staff-banner::before,
.staff-banner::after{
  content: '';
  position: absolute;
  z-index: 2;

  width: 0;
  height: 0;
  border-style: solid;
  
}
.staff-banner::before{
  top:0;
  left:0;

  border-width: 48rem 30rem 0 0;
  border-color: #006b31 transparent transparent transparent;
}
.staff-banner::after{
  bottom: 0;
  right: 0;

  border-width: 0 0 48rem 30rem;
  border-color: transparent transparent #ffff00 transparent;
}
.staff-banner p{
  position: relative;
  z-index: 10;

  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  -webkit-text-stroke: .1rem;
  text-shadow: 0 0 .8rem rgba(0,0,0,0.3);
}
.staff-banner img{
  position: absolute;
  z-index: 9;
  bottom: 0;

  width: 20%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.staff-banner img:nth-child(1){
  left: 5%;
}
.staff-banner img:nth-child(2){
  right: 5%;
}
@media (max-width : 1024px){
}
@media (max-width : 599px){
  .floating-icon-wrap{
    display: none;
  }

  #hero{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    /*msg-wrapの位置調整*/
    padding-bottom: .8rem;
    margin-bottom: 5vh;
  }
  .heromsg-small{
    display: none;
  }
  #hero .heromsg-wrap{
    width: min(100% - 2rem, 1080px);
  }
  #hero .heromsg{
    padding: .8rem 1.6rem;
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
    line-height: 1;
  }
  #hero .heromsg-large{
    font-size: 2rem;
  }

  #information .top{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: start;
  
    margin-bottom: 1.6rem;
  }
  #information .top a{
    align-self: flex-end;
  }
  #information .infolist{
    padding: 0;
  }

  .service{
    flex-direction: column;
    gap: 4rem;
  }
  .service .content-text{
    width: 100%;
    max-width: 60rem;
  }
  #reason .unitContainer{
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .banner{
    height: 40rem;
    padding-top: 3rem;
  }
  .banner p{
    font-size: calc(2.8rem + (1vw - 0.33rem) * 8.0292);
  }
  .banner small{
    font-size: calc(1.6rem + (1vw - 0.33rem) * 5.1095);
  }
  .staff-banner{
    height: 24rem;
    padding-top: 6rem;
  }
  .staff-banner::before{
    border-width: 24rem 15rem 0 0;
  }
  .staff-banner::after{
    border-width: 0 0 24rem 15rem;
  }
  .staff-banner p{
    font-size: 2rem;
  }
  .atrtxt{
    font-size: calc(10rem + (1vw - 0.33rem) * 29.1971);
    bottom: 0;
  }
}