@charset "UTF-8";
.contents-and-side-contents {
  display: flex;
  justify-content: center;
}

.contents {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.product-images {
  display: flex;
  align-items: flex-start;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
}

.thumb-container {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  cursor: pointer;
}

.thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-gazou {
  position: relative;
  width: 300px;
  height: 300px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}

.thumb-container:hover ~ .main-gazou .main-image {
  content: attr(data-image);
}

.text {
  margin-left: 20px;
  max-width: 500px;
  min-width: 300px;
}

.pro_name {
  font-size: 20px;
  padding-bottom: 5px;
  border-bottom: solid 1px lightgray;
}

.pro_price {
  font-size: 20px;
  margin-top: 20px;
}

.pro_price small {
  font-size: 12px;
  margin-left: 8px;

}

.pro_description {
  margin-top: 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.pro_description h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 100;
}

.side-contents {
  border: solid 1px lightgray;
  border-radius: 5px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  width: 150px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.pro_shipping, .side_pro_shipping {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

.side_pro_price {
  font-size: 20px;
}

.pull-down {
  position: relative;
  display: inline-block;
}

.pull-down select {
  padding-left: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  border: none;
  border-radius: 5px;
  background-color: #f0f0f0;
  cursor: pointer;
  width: 50px; /* 幅を調整 */
}

.pull-down select:hover {
  background-color: #ddd;
}
/* カスタム矢印を追加 */
.pull-down::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333; /* 矢印の色 */
}



.cart-look, .cart-in {
  border-radius: 50px;
  background-color: #ffd900;
  min-width: 100px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
}