body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.3em;
}

a {
  text-decoration: none;
}

/* ヘッダー部 */
.hamburger {
  border: none;
  width: 50px;
  height: 50px;
  background: url(../images/hamburger.png) no-repeat;
  background-size: contain;
}

.div-nav {
  width: 100%;
  margin: auto;
  background: #565656;

}

.div-ul {
  width: 100%;
  margin: auto;

}

/* ナビゲーション */
.navbar {
  display: none;

  margin: 0;
  padding: 0;
  list-style-type: none;

}

.navbar li {
  display: block;
  width: 100%;
  font-size: 1em;
  text-align: center;
  background: #565656;

}

.navbar li a {
  display: block;
  padding: 10px 8px;
  color: #fff;
  text-decoration: none;
}

.navbar li:hover {
  background: #fff;
  color: #565656;
}

.navbar li:hover a {

  color: #565656;
}

.div-logo-pc {
  display: none;
}

.div-logo {
  width: 90%;
  margin: auto;
  display: block;


}

.div-index {
  margin: 0;
  padding: 0;
}

.div-index img {
  width: 100%;
}


.div-title {

  height: 100px;
  margin: 0;

}

.div-title h1 {
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  line-height: 100px;
  font-size: 2.2em;
  color: navy;
  margin: 0;

}

.h2-title {

  padding: 0.5rem 0 1rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.6em;
  background: linear-gradient(90deg, #b2d5de 0% 50%, #353535 50%);
  background-repeat: no-repeat;
  background-size: 10rem 0.2rem;
  background-position: bottom;
  color: #353535;
  text-align: center;
}

@media(width <=600px) {
  .div-title {

    height: 50px;
    margin: 0;

  }

  .div-title h1 {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    line-height: 50px;
    font-size: 18px;
    color: navy;
    margin: 0;

  }

  .h2-title {

    padding: 0.5rem 0 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 15px;
    background: linear-gradient(90deg, #b2d5de 0% 50%, #353535 50%);
    background-repeat: no-repeat;
    background-size: 10rem 0.2rem;
    background-position: bottom;
    color: #353535;
    text-align: center;
  }
}


.daihyoaisatsu {
  padding: 2px;
  display: flex;
  justify-content: space-between;

  div {
    img {
      width: 250px;
      object-fit: cover;
    }

    p {
      margin: 0;
      text-align: center;
      line-height: 1em;

    }
  }

  p {
    margin: 20px;
    font-size: 0.85em;
  }
}

@media(width <=600px) {
  .daihyoaisatsu {
    display: flex;
    justify-content: space-between;

    div {
      img {
        width: 100px;
        object-fit: cover;
      }

      p {
        margin: 0;
        text-align: center;
        line-height: 9px;

      }
    }

    p {
      margin: 3px;

      line-height: 9px;
      font-size: 7px;
    }
  }
}

.gaiyo {
  margin: 10px auto;

  tr {
    th {
      width: 200px;
      background: #b2d5de;
      padding: 10px;
    }

    td {
      width: 500px;
      font-size: 0.9em;
      padding: 5px;
    }
  }

}

@media(width <=600px) {

  .gaiyo {
    margin: auto;

    tr {
      th {
        width: 100px;
        background: #b2d5de;
        padding: 5px;
        font-size: 10px;
      }

      td {
        width: 400px;
        font-size: 10px;
        padding: 5px;
      }
    }
  }
}


.shamei {
  margin: auto;
  width: 80%;
  font-size: 1.1em;
  background: #fdfaef;
  padding: 40px;

}

@media(width <=600px) {
  .shamei {
    margin: auto;
    width: 90%;
    font-size: 0.6em;
    background: #fdfaef;
    padding: 10px;
  }
}

.staff {
  display: flex;
  margin: 50px auto;
  width: 80%;


  img {
    width: 200px;
    object-fit: cover;
    border-radius: 50px;
  }

  div {
    width: 70%;
    margin: 20px;

    p {
      span {
        font-size: 1.3em;
        font-weight: bold;

      }
    }
  }
}

@media(width <=600px) {
  .staff {
    display: flex;
    margin: 10px auto;
    width: 80%;


    img {
      width: 80px;
      object-fit: cover;
      border-radius: 50px;
    }

    div {
      width: 70%;
      margin: 20px;

      p {
        font-size: 10px;

        span {
          font-size: 11px;
          font-weight: bold;

        }
      }
    }
  }
}

.faq {
  width: 90%;
  margin: auto;

  dt {
    font-weight: bold;
    margin: 10px;
  }

  dt::before {
    content: "Q ";
    color: #b2d5de;
    font-size: 1.2em;

  }

  dd {
    border-bottom: #b2d5de 2px solid;
    margin: 10px;
  }

  dd::before {

    content: "A ";
    color: #f8a6a6;
    font-size: 1.2em;
    font-weight: bold;


  }

}

@media(width<=600px) {
  .faq {
    width: 99%;
    margin: auto;

    dt {
      font-weight: bold;
      font-size: 12px;
      margin: 10px;
    }

    dt::before {
      content: "Q ";
      color: #b2d5de;
      font-size: 1.2em;

    }

    dd {
      margin: 10px;
      border-bottom: #b2d5de 2px solid;
      font-size: 12px;
    }

    dd::before {

      content: "A ";
      color: #f8a6a6;
      font-size: 1.2em;
      font-weight: bold;


    }

  }
}

.service-body1 {
  padding: 0;
  margin: 0;
  background: #29b1d3;

  p {
    width: 70%;
    margin: auto;
    font-size: 2.5em;
    line-height: 2em;

    span {
      background: white;
      padding: 0 10px;
    }

  }

  img {
    margin: 0;
    padding: 0;
  }

  .service-happen {
    display: flex;
    justify-content: center;

    .service-fukidashi {
      margin: 30px;
      position: relative;
      width: 140px;
      border-radius: 120px;
      padding: 60px;
      font-size: 1.2em;
      font-weight: bold;
      background: white;

      height: 140px;
      text-align: center;

      p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1em;
      }

    }

    img {
      width: 400px;
      object-fit: cover;
    }
  }

}

@media(width<=1100px) {
  .service-body1 {
    padding: 0;
    margin: 0;
    background: #29b1d3;

    p {
      width: 70%;
      margin: auto;
      font-size: 1.8em;
      line-height: 2em;

      span {
        background: white;
        padding: 0 10px;
      }

    }

    img {
      margin: 0;
      padding: 0;
    }

    .service-happen {
      display: flex;
      justify-content: center;

      .service-fukidashi {
        margin: 30px;
        position: relative;
        width: 90px;
        border-radius: 150px;
        padding: 60px;
        font-size: 1.2em;
        font-weight: bold;
        background: white;

        height: 90px;
        text-align: center;

        p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 0.8em;
        }

      }

      img {
        width: 300px;
        object-fit: cover;
      }
    }

  }

}


@media(width<=1000px) {
  .service-body1 {
    padding: 0;
    margin: 0;
    background: #29b1d3;

    p {
      width: 70%;
      margin: auto;
      font-size: 1.4em;
      line-height: 2em;

      span {
        background: white;
        padding: 0 10px;
      }

    }

    img {
      margin: 0;
      padding: 0;
    }

    .service-happen {
      display: flex;
      justify-content: center;

      .service-fukidashi {
        margin: 20px;
        position: relative;
        width: 50px;
        border-radius: 100px;
        padding: 60px;
        font-size: 1em;
        font-weight: bold;
        background: white;

        height: 50px;
        text-align: center;

        p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 0.8em;
        }

      }

      img {
        width: 250px;
        object-fit: cover;
      }
    }

  }

}


@media(width<=800px) {
  .service-body1 {
    padding: 0;
    margin: 0;
    background: #29b1d3;

    p {
      width: 70%;
      margin: auto;
      font-size: 1.1em;
      line-height: 2em;

      span {
        background: white;
        padding: 0 10px;
      }

    }

    img {
      margin: 0;
      padding: 0;
    }

    .service-happen {
      display: flex;
      justify-content: center;

      .service-fukidashi {
        margin: 10px;
        position: relative;
        width: 100px;
        border-radius: 100px;
        padding: 15px;
        font-size: 0.8em;
        font-weight: bold;
        background: white;

        height: 100px;
        text-align: center;

        p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 0.8em;
        }

      }

      img {
        width: 200px;
        object-fit: cover;
      }
    }

  }

}

@media(width<=450px) {
  .service-body1 {
    padding: 0;
    margin: 0;
    background: #29b1d3;

    p {
      width: 80%;
      margin: auto;
      font-size: 0.9em;
      line-height: 2em;

      span {
        background: white;
        padding: 0 10px;
      }

    }

    img {
      margin: 0;
      padding: 0;
    }

    .service-happen {
      display: flex;
      justify-content: center;

      .service-fukidashi {
        margin: 10px;
        position: relative;
        width: 50px;
        border-radius: 100px;
        padding: 15px;
        font-size: 0.5em;
        font-weight: bold;
        background: white;

        height: 50px;
        text-align: center;

        p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 0.8em;
        }

      }

      img {
        width: 100px;
        object-fit: cover;
      }
    }

  }

}

.service-body2 {
  padding: 0;
  margin: 0;
  background: #d7f7ff;
  text-align: center;

  h2 {
    font-size: 1.2em;
    padding: 30px;
    margin: 0;
  }
}

.service {
  margin: 0;
  padding: 0;

  h1 {
    background: #60c5df;
    color: white;
    padding: 5px 0px;
    margin: 0px;


    text-align: center;
  }

  ul {

    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    justify-content: center;
    width: 100%;

    li {
      list-style: none;
      padding: 0px;
      margin: 10px;
      width: 45%;
      font-size: 1.2em;
      font-weight: bold;




      div {
        display: flex;
        width: 100%;
        background: #fdfbf0;

        img {
          width: 250px;
          object-fit: cover;
        }

        p {
          margin: 10px;
          font-size: 1em;
          line-height: 1.2em;
          font-weight: 100;
        }
      }
    }
  }
}

@media(width<=1920px) {
  .service {
    margin: 0;
    padding: 0;

    h1 {
      background: #60c5df;
      color: white;
      padding: 5px 0px;
      margin: 0px;


      text-align: center;
    }

    ul {

      display: flex;
      flex-wrap: wrap;
      padding: 0;
      margin: 0;
      justify-content: center;

      li {
        list-style: none;
        padding: 0px;
        margin: 10px;

        font-size: 1.2em;
        font-weight: bold;




        div {
          display: flex;
          width: 100%;
          background: #fdfbf0;

          img {
            width: 250px;
            object-fit: cover;
          }

          p {
            margin: 10px;
            font-size: 0.7em;

            font-weight: 100;
          }
        }
      }
    }
  }
}

@media(width<=1100px) {


  .service {

    h1 {
      background: #60c5df;
      color: white;
      padding: 5px 0px;
      margin: 0px;
      font-size: 15px;

      text-align: center;
    }

    ul {

      display: flex;
      flex-wrap: wrap;
      padding: 0;
      margin: 0;
      justify-content: center;

      li {
        list-style: none;
        padding: 0;
        margin: 5px;

        font-size: 11px;
        font-weight: bold;



        div {
          display: flex;
          width: 350px;

          img {
            width: 150px;
            object-fit: cover;
          }

          p {
            margin: 5px;
            font-size: 10px;
            line-height: 12px;
            font-weight: 100;
          }
        }
      }
    }
  }

}


@media(width<=900px) {


  .service {

    h1 {
      background: #60c5df;
      color: white;
      padding: 5px 0px;
      margin: 0px;
      font-size: 15px;

      text-align: center;
    }

    ul {

      display: flex;
      flex-wrap: wrap;
      padding: 0;
      margin: 0;
      justify-content: center;

      li {
        list-style: none;
        padding: 0;
        margin: 5px;
        width: 300px;
        font-size: 11px;
        font-weight: bold;



        div {
          display: flex;
          width: 300px;

          img {
            width: 120px;
            object-fit: cover;
          }

          p {
            margin: 5px;
            font-size: 10px;
            line-height: 12px;
            font-weight: 100;
          }
        }
      }
    }
  }

}

@media(width<=600px) {


  .service {

    h1 {
      background: #60c5df;
      color: white;
      padding: 5px;
      margin: 5px;
      font-size: 17px;

      text-align: center;
    }

    ul {

      display: block;

      padding: 0;
      margin: 0;
      justify-content: center;

      li {
        list-style: none;
        padding: 0;
        margin: 5px;
        width: 97%;
        font-size: 15px;
        font-weight: bold;



        div {
          display: flex;
          width: 100%;

          img {
            width: 120px;
            object-fit: cover;
          }

          p {
            margin: 5px;
            font-size: 13px;
            line-height: 15px;
            font-weight: 100;
          }
        }
      }
    }
  }

}

.use {
  counter-reset: number;
  list-style: none;
  background: #0AC2DE;
  padding: 40px;
  margin: 0;

  h3 {

    font-weight: bold;
    margin: 0;
    padding: 0;
    color: #1313b4;
    /* 文字の色 */
    font-size: 3em;
    /* 文字のサイズ */
    letter-spacing: 6px;
    /* 文字間 */

    text-align: center;
  }


  h2 {

    font-weight: bold;
    margin: 0;
    padding: 0;
    color: #ffffff;
    /* 文字の色 */
    font-size: 3em;
    text-align: center;
  }

  div {
    display: flex;
    background: white;
    padding: 10px;
    margin: 40px;
    position: relative;
    border-radius: 20px;


    img {
      width: 20%;
      object-fit: cover;
    }

    li {
      position: absolute;
      top: 20%;
      left: 20%;

      font-size: 1.5em;
      padding-bottom: 15px;
      margin-left: 20px;


      color: navy;
      font-weight: bold;

      p {
        font-size: 0.7em;
        color: black;
      }
    }

    li::before {
      counter-increment: number;
      content: counter(number);
      font-size: 0.9em;
      padding: 10px 20px;
      background: #29b1d3;
      color: white;
      font-weight: bold;
      margin-right: 10px;

      border-radius: 10px;
      line-height: 10px;
      font-family: "Arial Black";
    }
  }

}


@media(width<=1200px) {

  .use {
    counter-reset: number;
    list-style: none;
    background: #0AC2DE;
    padding: 10px;
    margin: 0;

    h3 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #1313b4;
      /* 文字の色 */
      font-size: 2.5em;
      /* 文字のサイズ */
      letter-spacing: 6px;
      /* 文字間 */

      text-align: center;
    }


    h2 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #ffffff;
      /* 文字の色 */
      font-size: 3em;
      text-align: center;
    }

    div {
      display: flex;
      background: white;
      padding: 10px;
      margin: 20px;
      position: relative;
      border-radius: 20px;


      img {
        width: 20%;
        object-fit: cover;
      }

      li {
        position: absolute;
        top: 15%;
        left: 20%;
        font-size: 1.4em;
        padding-bottom: 10px;
        margin-left: 20px;
        color: navy;
        font-weight: bold;

        p {
          font-size: 0.7em;
          color: black;
        }
      }

      li::before {
        counter-increment: number;
        content: counter(number);
        font-size: 0.9em;
        padding: 10px 20px;
        background: #29b1d3;
        color: white;
        font-weight: bold;
        margin-right: 10px;

        border-radius: 10px;
        line-height: 10px;
        font-family: "Arial Black";
      }
    }

  }
}

@media(width<=1000px) {

  .use {
    counter-reset: number;
    list-style: none;
    background: #0AC2DE;
    padding: 10px;
    margin: 0;

    h3 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #1313b4;
      /* 文字の色 */
      font-size: 2.5em;
      /* 文字のサイズ */
      letter-spacing: 6px;
      /* 文字間 */

      text-align: center;
    }


    h2 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #ffffff;
      /* 文字の色 */
      font-size: 3em;
      text-align: center;
    }

    div {
      display: flex;
      background: white;
      padding: 10px;
      margin: 20px;
      position: relative;
      border-radius: 20px;


      img {
        width: 15%;
        object-fit: cover;
      }

      li {
        position: absolute;
        top: 15%;
        left: 15%;
        font-size: 1.1em;
        padding-bottom: 10px;
        margin-left: 20px;
        color: navy;
        font-weight: bold;


        p {
          font-size: 0.7em;
          color: black;
          line-height: 1.2em;
        }
      }

      li::before {
        counter-increment: number;
        content: counter(number);
        font-size: 0.6em;
        padding: 10px 15px;
        background: #29b1d3;
        color: white;
        font-weight: bold;
        margin-right: 10px;

        border-radius: 10px;
        line-height: 10px;
        font-family: "Arial Black";
      }
    }

  }

}



@media(width<=700px) {

  .use {
    counter-reset: number;
    list-style: none;
    background: #0AC2DE;
    padding: 5px;
    margin: 0;

    h3 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #1313b4;
      /* 文字の色 */
      font-size: 2em;
      /* 文字のサイズ */
      letter-spacing: 6px;
      /* 文字間 */

      text-align: center;
    }


    h2 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #ffffff;
      /* 文字の色 */
      font-size: 2em;
      text-align: center;
    }

    div {
      display: flex;
      background: white;
      padding: 15px;
      margin: 20px 10px;
      position: relative;
      border-radius: 20px;


      img {
        width: 15%;
        object-fit: cover;
      }

      li {
        position: absolute;
        top: 15%;
        left: 15%;
        font-size: 1em;
        padding-bottom: 10px;
        margin-left: 20px;
        color: navy;
        font-weight: bold;


        p {
          font-size: 0.7em;
          color: black;
          line-height: 1.2em;
        }
      }

      li::before {
        counter-increment: number;
        content: counter(number);
        font-size: 0.8em;
        padding: 10px 15px;
        background: #29b1d3;
        color: white;
        font-weight: bold;
        margin-right: 10px;

        border-radius: 10px;
        line-height: 10px;
        font-family: "Arial Black";
      }
    }

  }

}



@media(width<=500px) {

  .use {
    counter-reset: number;
    list-style: none;
    background: #0AC2DE;
    padding: 3px;
    margin: 0;

    h3 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #1313b4;
      /* 文字の色 */
      font-size: 1.5em;
      /* 文字のサイズ */
      letter-spacing: 6px;

      text-align: center;
    }


    h2 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #ffffff;
      /* 文字の色 */
      font-size: 1.5em;
      text-align: center;
    }

    div {
      display: flex;
      background: white;
      padding: 15px;
      margin: 10px;
      position: relative;
      border-radius: 20px;


      img {
        width: 15%;
        object-fit: cover;
      }

      li {
        position: absolute;
        top: 15%;
        left: 15%;
        font-size: 0.8em;
        padding-bottom: 10px;
        margin-left: 20px;
        color: navy;
        font-weight: bold;


        p {
          font-size: 0.6em;
          color: black;
          line-height: 1.2em;
        }
      }

      li::before {
        counter-increment: number;
        content: counter(number);
        font-size: 0.6em;
        padding: 8px 12px;
        background: #29b1d3;
        color: white;
        font-weight: bold;
        margin-right: 10px;

        border-radius: 10px;
        line-height: 10px;
        font-family: "Arial Black";
      }
    }

  }

}



@media(width<=400px) {

  .use {
    counter-reset: number;
    list-style: none;
    background: #0AC2DE;
    padding: 3px;
    margin: 0;

    h3 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #1313b4;
      /* 文字の色 */
      font-size: 1.5em;
      /* 文字のサイズ */
      letter-spacing: 6px;
      /* 文字間 */

      text-align: center;
    }


    h2 {

      font-weight: bold;
      margin: 0;
      padding: 0;
      color: #ffffff;
      /* 文字の色 */
      font-size: 1.2em;
      text-align: center;
    }

    div {
      display: flex;
      background: white;
      padding: 15px;
      margin: 10px;
      position: relative;
      border-radius: 20px;


      img {
        width: 15%;
        object-fit: cover;
      }

      li {
        position: absolute;
        top: 15%;
        left: 15%;
        font-size: 0.7em;
        padding-bottom: 10px;
        margin-left: 20px;
        color: navy;
        font-weight: bold;


        p {
          font-size: 0.6em;
          color: black;
          line-height: 1.2em;
        }
      }

      li::before {
        counter-increment: number;
        content: counter(number);
        font-size: 0.6em;
        padding: 6px 10px;
        background: #29b1d3;
        color: white;
        font-weight: bold;
        margin-right: 10px;

        border-radius: 10px;
        line-height: 10px;
        font-family: "Arial Black";
      }
    }

  }

}

.otoiawase {
  margin: 20px auto;
  width: 300px;
  font-size: 1.3em;
  font-weight: bold;
  padding: 20px;
  background: #60c5df;
  text-align: center;
  color: white;
  transition-duration: 0.3s;


}

.otoiawase:hover {
  background: #DF7A60;

}

.div-top img {
  width: 100%;
}

.div-topbac {
  /*background-image: url(../images/hedaer.png);*/
  background-size: cover;
  background: #b2d5de;
  padding: 0;
  margin: 0;
}

.div-footer {
  /* background-image: url("../images/footer.png");*/
  width: 100%;
  background-size: cover;

  background-position: center center;

}

.div-footer-bag {
  background: #5e9ec695;
  width: 100%;

}

.div-footer2 {
  padding: 0px;
  padding-top: 1em;
  width: 100%;
  margin: auto;
  font-size: 1em;
  color: white;

  h3 {
    margin: 0;

  }

  p {
    margin: 0;
  }
}

.div-eigyo {
  width: 100%;
  margin: 3em auto;
  padding: 1em;
}

.div-comment {
  padding: 1em;
  font-size: 1.1em;

}

.p-name {
  font-size: 1.1em;
}

.div-rentalbox {

  width: 100%;
    /*margin: 10px;
*/

}



.nav-sti {
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
}

@media(width<=600px) {
  .nav-sti {
    position: static;


  }
}

.div-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.div-trucklist {
  width: 100%;

}





.navbar li {
  display: block;

  padding: 5px;
  width: 100%;
  font-size: 0.8em;
  text-align: center;
  background: #565656;

}

@media only screen and (min-width: 768px) {
  section .container {
    flex-flow: row;
  }

  main {
    flex: 1 1 auto;
  }

  .sidebar {
    flex: 0 0 340px;
  }

  /* ナビゲーション */
  .hamburger {
    display: none;
  }

  .navbar {
    display: flex !important;
  }
}

.menu-tel {
  display: none;
}

.menu-top {


  h3 {
    display: none;
  }
}

@media (min-width: 768px) {
  .div-bodycolor {
    width: 100%;
    /*background: #EDD9B8;*/
    margin: 0;
    padding: 0;
  }

  .div-body {
    max-width: 1160px;
    background: white;
    /* border: 1px solid black;*/
    margin: auto;

  }

  .div-bodytruck {
    width: 95%;
    /* border: 1px solid black;*/
    margin: auto;
    background: white;

  }

  .div-ul {
    width: 90%;
    margin: auto;

  }

  .navbar li {
    display: block;

    padding: 2px;
    width: 250px;
    font-size: 0.8em;
    text-align: center;
    background: #565656;

  }

  .navbar li a {
    display: block;
    padding: 10px 4px;
    color: #fff;
    text-decoration: none;
  }


  .div-footer {
    padding: 0;
    margin: 0;
    /*background-image: url("../images/footer.png");*/
    width: 100%;
    background-size: cover;
    height: 20vh;
    background-position: top;

  }


  .div-footer2 {

    width: 70%;
    padding-top: 1em;
    margin: auto;
    font-size: 1.4em;

  }

  .div-logo-pc {
    display: block;
    margin: 0;
    padding: 0;

    img {
      margin: 0;
      padding: 0;
    }
  }

  .div-logo {
    display: none;
  }

  .menu-top {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;

    h3 {
      color: red;
      display: block;
    }
  }

  .menu-tel {
    display: block;
    font-weight: bold;


    p {
      margin: 0;
      padding: 0;
      font-size: 1.1em;
      text-decoration: underline 2px double red;
    }
  }

  .blinking {
    -webkit-animation: blink 0.8s ease-in-out infinite alternate;
    -moz-animation: blink 0.8s ease-in-out infinite alternate;
    animation: blink 0.8s ease-in-out infinite alternate;
  }

  @-webkit-keyframes blink {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @-moz-keyframes blink {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes blink {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .div-flex {
    display: flex;
    flex-wrap: nowrap;
  }




}

.recruitbox {
  text-align: center;
}

.recruit {
  font-size: 1.2em;
  color: #ffffff;
  background: #60c5df;
  font-weight: bold;
  display: inline-block;
  padding: 15px;
  margin: 15px 0;
  transition-property: opacity;
  transition-duration: 0.5s;

}

.recruit:hover {
  opacity: 0.7;
}


.recruit2 {
  font-size: 1em;
  color: #ffffff;
  background: #9bd7e5;
  font-weight: bold;
  display: inline-block;
  padding: 5px;
  margin: 7px;
  transition-property: opacity;
  transition-duration: 0.5s;
}

.recruit2:hover {
  opacity: 0.7;
}

.div-index {
  margin: 0;
  padding: 0;
}

.div-index img {
  width: 100%;
}

.div-gaiyo {

  width: 70%;
  margin: 3em auto;
  font-size: 1.3em;
  /*border-top: #353535 1px solid;
 border-bottom: #353535 1px solid;*/
}

.table-gaiyo th {
  padding: 0.6em;
  width: 40%;
  background: rgb(155, 187, 206);
}

.table-gaiyo td {
  padding: 0.6em;

}

.div-top img {
  width: 100%;
}

.div-topbac {
  /* background-image: url(../images/hedaer.jpg);
  background-size: cover;
  */
  background: #b2d5de;
  padding: 0;
  margin: 0;
}




/*１枚目*/
@keyframes slide1 {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {}

  50% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/*２枚目*/
@keyframes slide2 {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  65% {}

  75% {
    opacity: 1;
  }

  85% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/*3枚目*/
@keyframes slide3 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/*mainimg
  ---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
  clear: left;

  /*text-indent: -9999px
    /*position: fixed;	スクロールしても固定表示させる指定*/
  position: relative;
  top: 0px;
  width: 100%;
  /*height: 100%;*/
  height: 800px;
  /*※スライドショー解説用に追加*/
  margin-bottom: 30px;
  /*※スライドショー解説用に追加*/
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  /*影の設定。右に、下に、広げる幅、rgbaは色で0,0,0は黒、0.2は透明度20%の事。*/
}

/*３枚画像の共通設定*/
.slide1, .slide2, .slide3 {
  animation-duration: 15s;
  /*実行する時間。「s」は秒の事。*/
  animation-iteration-count: infinite;
  /*実行する回数。「infinite」は無限に繰り返す意味。*/
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-delay: 2s;
}

/*土台画像*/
.slide0 {
  background: url(../images/top1.jpg) no-repeat center center/cover;
  position: relative;
  width: 100%;
  height: 100%;
}

/*１枚目*/
.slide1 {
  background: url(../images/top2.jpg) no-repeat center center/cover;
  animation-name: slide1;
  /*上で設定しているキーフレーム（keyframes）の名前*/
}

/*２枚目*/
.slide2 {
  background: url(../images/top3.jpg) no-repeat center center/cover;
  animation-name: slide2;
  /*上で設定しているキーフレーム（keyframes）の名前*/
}

/*３枚目*/
.slide3 {
  background: url(../images/3.jpg) no-repeat center center/cover;
  animation-name: slide3;
}




.top-video video {

  width: 100%;
  /* 余白指定 */

}


/*スライドショー下の曲線グラデーション画像*/
#kazari {
  position: absolute;
  bottom: 90px;
  /*飾りがメニューの上に配置されるよう、ここはメニューブロックの高さを指定しておく。*/
  z-index: 2;
  width: 100%;
}

.div-topcomment {
  width: 70%;
  height: 300px;
  margin: auto;
}

.come1 h1 {
  font-size: 3em;
  color: white;
}

.come2 h1 {
  font-size: 2em;
  color: white;
}

.div-otoiawase {

  padding: 10px;
  width: 50%;
  text-align: center;
  margin: auto;
  font-size: 1.2em;
  color: red;
}

@media(width<=900px) {
  .div-otoiawase {

    padding: 10px;
    width: 90%;
    text-align: center;
    margin: auto;
    font-size: 0.9em;
    color: red;
  }
}

.shousai-table th {
  text-align: left;
  width: 25%;
  font-weight: bold;
  font-size: 14px;

  border-bottom: 1px dotted rgb(205, 219, 230);
  background-color: #b2d5de;
  padding-left: 5px;

}

.shousai-table td {
  font-size: 14px;


}

.soubihin {
  text-align: center;
  font-size: 14px;
  background-color: #b2d5de;
}

.shousai-table-right {
  text-align: right;

}





@media (min-width: 768px) {

  .shousai-table th {
    text-align: left;
    width: 25%;
    font-weight: bold;
    font-size: 16px;

    border-bottom: 1px dotted rgb(205, 219, 230);

  }

  .shousai-table td {
    font-size: 16px;


  }

  .soubihin {
    text-align: center;
    font-size: 16px;
  }

  .shousai-table-right {
    text-align: right;

  }
}


.nakka {
  position: relative;
  display: inline-block;
}

.nakka img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nakka img:nth-of-type(2) {
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: auto;
}

.contact-table {
  width: 70%;
  border: none;

  th {
    text-align: left;
    font-size: 0.9em;
    border: none;
  }

  td {
    border: none;

    textarea {
      width: 100%;
      height: 60px;
    }

    input {
      width: 100%;
      height: 20px;
    }

    button {
      font-size: 1.5em;
    }
  }

  span::after {
    content: "※必須";
    color: red;
    font-size: 0.8em;
  }

}

/*トラック*/

  .div-bodytruck {
    width: 100%;
    /* border: 1px solid black;*/
    margin: auto;
    background: white;

  }
.div-trucklist {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: auto;
  gap: 10px;
}

.div-rentalbox {

  width: 100%;
  margin: 10px 5px;
  color: black;
  border: 1px solid #0AC2DE;
  background: #e1f7fa;
  transition-property: opacity;
  transition-duration: 0.5s;
  display: block;

  &:hover {
    opacity: 0.7;
  }
}

.p-rental {
  font-weight: bold;
  span {
    color: red;
    border: 2px solid red;
    padding: 2px;
    background: white;
  }
}


.table-trucklist {
  width: 100%;
  height: 200px;
}

.table-trucklist th {
  background-color: #a2d9e7;

  font-weight: 100;
}

.table-trucklist th, td {

  font-size: 0.6em;
  border-bottom: 1px dotted rgb(205, 219, 230);
  line-height: 1em;
  padding: 2px;
}

.table-trucklist td {
  width: 70px;
  font-weight: bold;
}

.table-trucklist .th-back {
  background-color: #c1d4db;
}




@media(width<=1100px) {

  .div-trucklist {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: auto;
    gap: 10px;
  }

}

@media(width<=760px) {

  .div-trucklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    gap: 5px;
        width: 94%;
  }

  .table-trucklist {
    width: 100%;
    height: 200px;
  }

  .table-trucklist th {
    background-color: #a2d9e7;

    font-weight: 100;
  }

  .table-trucklist th, td {

    font-size: 0.6em;
    border-bottom: 1px dotted rgb(205, 219, 230);
    line-height: 1em;
    padding: 2px;
  }

  .table-trucklist td {
    width: 70px;
    font-weight: bold;
  }

  .table-trucklist .th-back {
    background-color: #c1d4db;
  }


}
@media(width<=500px) {

  .div-trucklist {
    display: grid;
    grid-template-columns: 1fr;
    margin: auto;

  }
    .table-trucklist td {
    width: 120px;
    font-weight: bold;
  }
}