/* PC */
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .contents {
    width: 100%;
    margin: 0 auto;
  }

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

  .overlay-text {
    position: absolute;
    transform: translate(39%, -124%);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 25px;
  }

  td {
    color: #552b1a;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial;
    padding-bottom: 5px;
  }

  .flavor {
    color: #552b1a;
    font-size: 16px;
    font-weight: bold;
    padding-left: 40px;
    font-family: Arial;
  }

  .comment {
    color: #000;
    font-size: 13px;
    font-weight: bold;
    font-family: Arial;
    padding-right: 60px;
  }

  .two {
    padding-top: 0.3rem;
  }

  .review {
    color: #e75504;
    padding-left: 20px;
  }
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
  }

  .contents {
    width: 100%;
    margin: 0 auto;
  }

  .contents img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .overlay-text {
    position: absolute;
    transform: translate(12rem, -16.3rem);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .limit {
    color: #552b1a;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: Arial;
  }

  .flavor {
    color: #552b1a;
    font-size: 0.8rem;
    font-weight: 600;
    padding-left: 3rem;
    font-family: Arial;
  }

  .comment {
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: Arial;
    padding-top: 0.3rem;
  }

  .two {
    padding-top: 0.3rem;
  }

  .review {
    color: #e75504;
    font-size: 1rem;
  }

}

/* スマホ */
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .contents {
    width: 100%;
    margin: 0 auto;
  }

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

  .overlay-text {
    position: absolute;
    transform: translate(8.5rem, -13.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0.25rem;
  }

  td {
    color: #552b1a;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: Arial;
    padding-bottom: 0.2rem;
  }

  .limit {
    color: #552b1a;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: Arial;
    padding-bottom: 0.2rem;
  }

  .flavor {
    color: #552b1a;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: Arial;
  }

  .comment {
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: Arial;
    padding-right: 2rem;
  }

  .two {
    padding-top: 0.3rem;
  }

  .review {
    color: #e75504;
    padding-left: 0.5rem;
  }
}

/* .limitが茶色、コメントが黒、フレーバーは茶色 */