/* アコーディオン全体 */
.menutab {
  width: 100%;
  padding: 0;
  margin: 20px 0 0 0;
}
/* チェックボックスを隠す */
.menutab input {
  display: none;
}
ul.itemdes {
  padding-left: 1rem;
}
ul.itemdes li {
  list-style: disc;
  margin: 8px 0;
}
/* バー部分 */
.menutab label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #000000;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 15px;
  background-color: #ffffff;
  text-align: left;
}
/* 開いたときに表示される部分 */
.menutab .openlist {
  height: 0;
  overflow-y: hidden;
  /* 閉じるときのアニメーション */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#menu_bar01:checked ~ #links01 .openlist, #menu_bar02:checked ~ #links02 .openlist, #menu_bar03:checked ~ #links03 .openlist, #menu_bar04:checked ~ #links04 .openlist {
  /* 開いたときに表示されるliの高さ */
  height: auto;
  opacity: 1;
  /* 開くときのアニメーション */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/* 開いたときの下の余白 */
#menu_bar01:checked ~ #links01 .openlist:last-child, #menu_bar02:checked ~ #links02 .openlist:last-child, #menu_bar03:checked ~ #links03 .openlist:last-child, #menu_bar04:checked ~ #links04 .openlist:last-child {
  margin: 0 0 30px 0;
  text-align: left;
}
/* 閉じた状態の矢印描画 */
.menutab label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #000 2px solid;
  border-right: #000 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 2%;
  top: 0;
  bottom: 15%;
  margin: auto;
}
/* 開いた状態の矢印描画 */
.menutab input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #000 2px solid;
  border-right: #000 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 2%;
  top: 7%;
  bottom: 0;
  margin: auto;
}
.tabcont {
  margin: 10px 0;
}
.tabborder {
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  margin-bottom: 0;
}
.tabborder_last {
  /*  border-top: solid 1px #ccc;*/
  border-bottom: solid 1px #ccc;
  margin-top: 0;
}
#item_detail .row.col2 {
  margin-bottom: 0 !important;
}