footer {
    background-color: #560e00; /* 背景色 */
    color: #ddc79b; /* テキスト色 */
  
  }
  
  a {
    display: block;
    color: #0D0F12;
    text-decoration: none;
}



  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .footer-left {
    text-align: center;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center; /* 横方向も中央揃え */
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 50px;
  }
  
  .footer-left h1 {
    font-size: 36px;
    font-weight: normal;
    line-height: 1.2; /* 行間を詰める */
  }
  
  .footer-left a {
    color: #ddc79b;
    font-size: 10px;
    margin: 2px 0; /* 上下のマージンを詰める */
    border: #ddc79b solid 1px;
    padding: 5px;
    border-radius: 5px;
    width: 70%;
    text-align: center; /* テキストを中央に配置 */
    line-height: 1.2; /* 行間を詰める */
    margin-bottom: 30px;
  }
  
  
  .company {
    font-size: 1.25vw;
    line-height: 0.8; /* 行間を詰める */
  }
  
  .footer-left img {
    margin-bottom: 20px;
    width: 80%;
  }
  
  .footer-right {
    display: flex;
    justify-content: space-between;
    width: 75%;
    padding-top: 30px;
  }
  
  .footer-item {
    width: 20%;
  }
  
  .footer-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: normal;
    display: flex;
    align-items: center; /* 画像とテキストを縦中央に配置 */
  }
  
  .footer-item ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-item ul li {
    font-size: 0.85vw;
    margin-bottom: 5px;
    padding-left: 30px;
  }
  
  .footer-links a {
    color: #ddc79b;
    text-decoration: none;
    font-size: 18px;
    margin: 0 10px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%; /* 画像の幅 */
  }
  
  .footer-middle img{
    height: 200px;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;  /* フッター全体を縦並び */
      align-items: center;
      text-align: center;
    }
  
    .footer-left,
    .footer-middle,
    .footer-right {
      width: 100%;  /* 幅を100%にして横幅いっぱいに */
      padding: 10px 0;
    }
  
    .footer-left {
      padding-right: 0;
    }
  
    .footer-middle img {
      height: 150px;  /* 画像を少し小さく */
    }
  
    .footer-right {
      flex-direction: column;  /* 各項目を縦並びに */
      align-items: center;
    }
  
    .footer-item {
      width: 80%;  /* 各項目を横幅80%に */
      margin-bottom: 20px;  /* 間隔を調整 */
    }
  
    .footer-item h2 {
      justify-content: center;  /* アイコンとタイトルを中央に */
    }
  
    .footer-item ul li {
      padding-left: 0;  /* スマホで余白をなくす */
    }

    .footer-middle {
    display: none;  /* スマホでは非表示 */
    }
    .company {
        font-size: 24px;
    
      }
      
      .footer-item ul li {
        font-size: 12px;
        
      }
  }