@charset "utf-8";
/* CSS Document */
:root {
  --fs-sm: clamp(13.6px, 16 / 736 * 100vw, 16px);
}

/* 共通 */

/* ディレクトリ内ナビ */
h2.ttl_disc {
  margin: 2.4rem 0;
  color: #039;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: 0.125rem;
}

#innerNav {
  background: #eaebf0;
  padding: 1.2rem 0;
  margin-bottom: 4rem;
}

ul.innerNav_list {
  text-align: center;
}

ul.innerNav_list li {
  flex-basis: 18%;
  max-width: 18%;
}

ul.innerNav_list li button {
  display: block;
  width: 100%;
  color: #039;
  padding: 0.6rem 1.8em;
  border-radius: 3rem;
  border: 1px solid #039;
  background: #fff;
  box-sizing: border-box;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.innerNav_list li:nth-child(3) button {
  line-height: 1.2;
}

ul.innerNav_list li.checked button,
ul.innerNav_list li button.active {
  color: #fff;
  background: #039;
}

ul.innerNav_list li button:hover {
  color: #fff;
  background: #039;
}

@media screen and (max-width: 1024px) {
  #innerNav {
    margin-bottom: 2rem;
  }
  h2.ttl_disc {
    margin: 1.2rem 0;
    font-size: 1rem;
  }
  #innerNav {
    padding: 0;
  }

  #innerNav .wrapper {
    padding: 0;
  }

  ul.innerNav_list {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #039;
    border-left: 1px solid #039;
  }

  ul.innerNav_list li {
    flex-basis: 50%;
    max-width: 50%;
  }
  ul.innerNav_list li button {
    border-bottom: 1px solid #039;
    border-right: 1px solid #039;
    border-top: 0;
    border-left: 0;
    font-size: 90%;
    border-radius: 0;
  }
}

/* 商品リスト */
.product_item {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  box-sizing: border-box;
  border-bottom: 2px solid #ccc;
  padding-bottom: 1.2rem;
  margin-bottom: 2.4rem;
}
.product_item:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}
/* .product_item > div {
  max-width: 442px;
  flex-basis: 46%;
} */
.product_item .products_item_ig {
  margin-right: 8%;
  flex: 0 0 48%;
}
.products_item_ig > ul {
  width: fit-content;
  margin-inline: auto;
}
.products_item_ig li {
  max-width: 440px;
  border: 1px solid #ccc;
  margin-bottom: 1.2rem;
  box-sizing: border-box;
}
.products_item_col {
  width: 100%;
  border-bottom: 2px solid #ccc;
  padding-bottom: 1.2rem;
  margin-bottom: 2.4rem;
}

.products_item_detail p strong {
  font-weight: 500;
}

.products_item_detail p {
  font-size: var(--fs-sm);
}
.products_item_detail > h3 {
  font-size: 1.9rem;
  color: #101010;
  font-weight: 500;
  border-bottom: 1px solid #039;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
}
.products_item_preparing {
  background: #666;
  color: #fff;
  margin-right: 4px;
  font-size: clamp(18px, 24 / 1080 * 100vw, 24px);
  padding: 4px 12px;
  line-height: 1.8;
}

.products_item_tag {
  display: inline-block;
  border: 1px solid #039;
  color: #039;
  padding: 0 0.5em;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1.8rem;
  border-radius: 4px;
}

.item_table {
  font-size: var(--fs-sm);
  border-top: 1px solid #cccccc;
  margin: 1.8rem 0;
  width: 100%;
}
.item_table strong {
  font-weight: 500;
}
.item_table tr {
  border-bottom: 1px solid #cccccc;
  vertical-align: middle;
}
.item_table th,
.item_table td {
  padding: 0.6rem 0.25rem;
  vertical-align: middle;
}
.item_table th {
  width: 25%;
  background: #eaebf0;
  text-align: center;
}

.item_table td.content {
  width: 20%;
  text-align: right;
  padding: 0.6rem 0.25rem 0.6rem 1rem;
}
ul.caution {
  list-style: decimal;
  list-style-position: inside;
  text-indent: -1rem;
  padding-left: 1rem;
}

ul.caution strong {
  text-decoration: underline;
}
ul.caution > li > ul {
  padding-left: 1rem;
  font-size: 94%;
  padding-bottom: 0.5rem;
}
ul.caution > li > ul > li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
}

ul.caution > li > ul > li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
.btn_sml {
  font-size: 0.9rem;
}

.maker_link {
  margin-bottom: 1em;
}

@media screen and (max-width: 736px) {
  #prudoct_list {
    font-size: 85%;
    line-height: 1.6;
  }

  .product_item {
    -ms-flex-direction: rrow;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .product_item > div {
    max-width: 100%;
    flex-basis: 100%;
  }

  .products_item_col {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .product_item .products_item_ig {
    margin-right: 0;
  }
  .products_item_detail > h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .products_item_tag {
    margin-bottom: 1.2rem;
  }

  .item_table {
    margin-top: 1.4rem;
  }
  .item_table th,
  .item_table td {
    padding: 0.5rem 0.25rem;
  }

  .products_item_ig {
    margin-top: 1rem;
  }

  .products_item_ig li {
    margin-bottom: 1rem;
  }
}

td li:not(:first-child) {
  margin-top: 16px;
}

td:has(li) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

td:has(li)::before,
.item_table tr td:first-child::before {
  content: "";
  position: absolute;
  top: 50%; /* 真ん中に線を引く */
  left: 0;
  right: 0;
  /* border-top: 1px solid #ccc;  */
  /* 線のスタイル */
  z-index: 0; /* 背景に配置 */
}

/* カスタム */
.item_table {
}
/* .item_table thead th, */
/* .item_table tbody td:nth-child(2) {
}

.item_table {
  display: flex;
}
.item_table th,
.item_table td {
  width: 100%;
  display: block;
} */
