@charset "utf-8";

/* 料金スタート */
.charge {
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .charge-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 3px solid #8b4e13;
    border-radius: 16px;
    padding: 40px;
    margin: 50px auto;
    background-color: #fff9e6;
    gap: 40px;
    max-width: 1200px;
  }
  
  
  .charge-info {
    flex: 1;
  }
  
  .charge-info h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #8b4e13;
    display: flex;
    align-items: baseline;
    gap: 25px;
  }

  .charge-info h3 .sub-title{
    font-size: 20px;
    color: #8b4e13;
  }
  
  .charge-info table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .charge-info th,
  .charge-info td {
    padding: 12px 10px;
    font-size: 20px;
    text-align: left;
    font-weight: bold;
  }
  
  .charge-info td:nth-child(2) {
    text-align: center;
    width: 40%;
  }
  
  .charge-info td:nth-child(3) {
    text-align: right;
    width: 20%;
  }
  
  .charge-info tr {
    border-bottom: 2px solid #8b4e13;
  }

  .charge-img {
    flex: 1px;
    max-width: 500px;
  }
  
  .charge-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .food-list {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .food-item {
    text-align: center;
    flex: 1 1 200px;
  }

  .food-item img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 50px;
  }

  .food-item p {
    font-size: 24px;
    font-weight: bold;
    color: #8b4e13;
  }

  .food-item p span{
    margin-left: 15px;
  }


  /* レスポンシブ対応スタート */
  @media screen and (max-width: 1024px) {

    .charge-box {
      flex-direction: column-reverse; 
      text-align: center;
      padding: 20px;
      gap: 20px;
      margin: 30px 15px;
    }
  
    .charge-info h3 {
      font-size: 20px;
      flex-direction: column; 
      gap: 10px;
    }
  
    .charge-info h3 .sub-title {
      font-size: 14px;
    }
  
    .charge-info table {
      font-size: 14px;
    }
  
    .charge-info th{
      white-space: nowrap;
      font-size: 14px;
      width: 30%;
    }
    
    .charge-info td {
      white-space: nowrap;
      font-size: 14px;
      padding: 8px 6px;
    }

    .charge-info td:nth-child(2) {
      width: 40%;
    }

    .charge-info td:nth-child(3){
      width: 30%;
    }
  
    .charge-img {
      max-width: 100%;
    }
  
    .food-list {
      gap: 20px;
    }
  
    .food-item {
      flex: 1 1 calc(50% - 20px); 
    }
  
    .food-item img {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .food-item p {
      font-size: 14px;
    }
  }