.itemTitle{
  text-align: center;
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 600;
}
.goToCart{
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.goToCart > .flex_left{
  width: 40%;
}
.goToCart > .flex_left > img{
  width: 80%;
  margin: 0 auto;
  max-height: 500px;
}
.goToCart > .flex_right{
  width: 60%;
}
.itemWriter{
  margin-top: 50px;
  font-size: 24px;
}
.itemPrice{
  font-size: 24px;
  margin-top: 50px;
}
.addToCart{
  background-color: #EDFF7F;
  width: 50%;
  height: 80px;
  border-radius: 40px;
  margin-top: 50px;
  font-weight:  600;
  background-image: url(../img/cartIcon.png);
  background-repeat: no-repeat;
  padding-left: 100px;
  background-position: 35px;
  background-size: 50px;
}
.itemPriceSpan{
  color: #FF0211;
  font-size: 36px;
}
.itemContentTitle{
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 600;

}
.itemInfo{
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 600;
}
.itemContents{
  width:80%;
  margin: 0 auto;
}
.itemText{
  font-size:20px;
  margin-bottom: 10px;
}
/* ::after要素をabsoluteで表示するために記載 */
.selectbox_area {
  position: relative;
  margin: 0em 0em 0em 0em;
  float: left;
}

/* セレクトボックス項目の後に"▼"を追加 */
.selectbox_area::after {
  pointer-events: none; /*矢印部分をクリックを可能にする*/
  position: absolute;
  color: #666666;
  top: 50%;
  left: 3em;
  transform: translateY(-50%); /*▼を上に移動*/
  margin-top:15px; 
  content: "▼";
}

.selectbox {
  /*元々の<select>のスタイルを削除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /*今回指定する<select>のスタイル */
  width: 4em;
  height: 1.6em;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  padding: 0em 1em 0em 1em;
  border: solid #333 1px;
  margin-top: 30px;
}
#select{
  border: solid #333 1px;
  margin-top: 30px;
  padding: 5px;
}