
  /*----------------------------------------------------- */
/*  footer           */
/*----------------------------------------------------- */
.footer {
    background: #FF7A21;
    padding: 10px 0;
    line-height: 1.15;
    display: block;
  }
  
  .footer_logo {
    max-width: 174px;
    margin: 0 auto 10px;
  }
  
  .footer_logo img {
    max-width: 100%;
    display: block;
  }
  
  .footer_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 690px;
    margin: 0 auto;
    pa
  }
  .footer_list li {
    padding: 0 10px;
    border-right: 1px solid #fff;
    margin-bottom: 10px;
    display: inline-flex;    
  }
  .footer_list li:first-child {
    border-left: 1px solid #fff;
  }
  .footer_list a {
    color: #fff;
    font-size: 12px;
  }
  
  .footer_copy {
    text-align: center;
    color: #fff;
    margin: 0;
  }
  
  @media screen and (min-width: 768px) {
    .footer_list a {
      transition: 0.3s ease-in-out;
    }
    .footer_list a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 767px) {
    .footer {
      padding: 10px 5%;
    }
    .footer_logo {
      max-width: 30%;
    }
    .footer_list {
      justify-content: flex-start;
      margin: 0 auto;
    }
    .footer_list li {
      padding: 0 12px;
      margin-bottom: 15px;
      line-height: 1.2;
    }
    .footer_list li:nth-child(3), .footer_list li:nth-child(6) {
      border-left: 1px solid #fff;
    }
    .footer_copy {
      font-size: 12px;
    }
  }
