#main {
  height: calc(100dvh - 50px);
  overflow: auto;
}

/* ＜ 戻る */
.goBack {
  width: 90%;
  margin: 0 auto;
  padding-top: 15px;
  cursor: pointer;
}

/* 商品ラップ */
#product-detail-wrap {
  width: 90%;
  margin: 0 auto;
  padding: 5%;
  text-align: center;
}

/* 商品画像 */
#product-image {
  width: 80vw;
  /* 画面幅の80% */
  height: auto;
  height: 45dvh;
  object-fit: contain;
  width: 100%;
}

/* 商品名 */
#product-name {
  text-align: left;
  font-size: 18px;
}

/* 値段 */
#product-price {
  text-align: left;
  font-size: 2rem;
  margin: 0;
}

#kind.hidden {
  display: none;
}
#kindArea {
  display: flex;
  overflow: scroll;
  padding: 0 15px;
  margin: 15px 0;
}
#kindArea::-webkit-scrollbar {
  display: none;
}
.kindinput {
  display: none;
}

.kind-label {
  height: 50px;
  display: flex;
  width: auto;
  border: solid 1px #c7c7c7;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
  margin: 0 5px;
  max-width: 100px;
}

.kind-label.disabled {
  background: #dfdfdf;
  color: #949494;
  text-decoration: line-through;
}

.kind-label > span {
  width: 80px;
  text-align: left;
}

.kindinput:checked + .kind-label {
  background: #e3f6ff;
  color: #0b1236;
  border: solid 2px #1a5176;
  font-weight: bold;
}

/* 数量 */
#quantity {
  margin-left: 5%;
}

#quantity p {
  margin-bottom: 5px auto;
}

/* 数量プルダウン */
#quantity-select {
  width: 25%;
  height: 30px;
  border-radius: 8px;
}

/* ボタンコンテナ */
#btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 15px;
  border-top: 1px solid gray;
}

/* 共通ボタンスタイル */
#btn-container button {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* カートボタンの色 */
.cartBtn {
  background-color: #ec971f;
  color: #fff;
}

/* 注文ボタンの色 */
.orderBtn {
  background-color: #ff3737;
  color: #fff;
}

/* サムネイル（群） */
#change-img-list {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 5px;
  margin: 0;
  overflow-x: auto;
  /*	flex-wrap: wrap;*/
}

/* サムネイル（個） */
.change-img-item {
  background: none;
  border: none;
  padding: 0;
  margin: 1px;
  cursor: pointer;
  height: 75px;
  width: 75px;
}

/* サムネイル（画像） */
.change-img-item img {
  /*  object-fit: cover;*/
  border-radius: 5px;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  height: 100%;
  width: 75px;
}

/* 商品説明文（群） */
#note-list {
  list-style: none;
  padding: 5px;
  margin: 0;
  word-break: break-word;
  white-space: pre-wrap;
  display: flex;
  flex-direction: column;
}

/* 商品説明文（個） */
#note-list li {
  text-align: left;
  padding: 5px;
  margin-top: 15px;
}

/* 在庫表示 */
.zaiko {
  display: flex;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff3737;
}

.cannot {
  background-color: #333;
  color: #fff;
}

.hidden {
  display: none;
}
