table.spc_hist {
  table-layout: fixed;
  width: 100%;
}

table.spc_hist tr {
  border-bottom: 1px dashed #9e9e9e;
}

table.spc_hist th {
  border-bottom: 5px dashed #fcfcfc;
}

table.spc_hist .date {
  width: 100px;
  min-width: 100px;
}

table.spc_hist .hist {
  width: 100%;
}

table.spc_prod tr {
  border-bottom: 1px dashed #9e9e9e;
}

table.spc_prod th {
  border-bottom: solid #ffffff !important;
}

table.spc_prod .date {
  width: 300px;
}

table.spc_prod .hist {
  width: 500px;
}

table.spc_rd {
  table-layout: fixed;
  width: 100%;
}

table.spc_rd tr {
  border-bottom: 1px dashed #9e9e9e;
}

table.spc_rd th {
  border-bottom: 5px dashed #fcfcfc;
  padding: 5px;
}

table.spc_rd .date {
  width: 100px;
  min-width: 100px;
}

table.spc_rd .hist {
  width: 100%;
}


.spc_spec {
  border: 1px solid #9e9e9e;
  table-layout: fixed;
  margin: 20px 100px 40px 40px;
  width: 60%;
  /*width: auto;*/

}

@media screen and (min-width: 320px) {
  .spc_spec {
    width: 80%;
    /* タブレット以上 */
  }
}

@media screen and (min-width: 768px) {
  .spc_spec {
    width: 60%;
    /* 大画面用 */
  }
}



.spc_spec .spec_item {
  color: #ffffff;
  background-color: #0972c1;
  width: 30%;
}

.spc_spec .spec_desc {
  color: #ffffff;
  background-color: #0972c1;
  width: 70%;
}

.spc_spec .spec_item_e {
  color: #ffffff;
  background-color: #0972c1;
  width: 40%;
}

.spc_spec .spec_desc_e {
  color: #ffffff;
  background-color: #0972c1;
  width: 60%;
}

.spc_spec td,
th {
  border: 1px solid #9e9e9e;
  font-weight: 200;
  padding: 2px 0 2px 10px;
}






.articleBody_spc table tr td:first-child {
  background: #fcfcfc !important;
  color: #333;
  font-weight: bold;
}

.articleBody_spc h2 {
  margin: 25px 0 15px;
  padding: 0 0 4px;
  border-bottom: 2px solid #0972c1;
  font-size: 20px;
  font-size: 2rem;
  color: #0972c1;
}

.pageTitle_spc {
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 10px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #0972c1;
  text-align: center;
}

.pageTitle_spc:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 160px;
  height: 2px;
  margin-left: -80px;
  background: #0972c1;
  content: "";
}

.c-form {
  max-width: 800px;
  /*    margin: 0 auto;*/
  margin-right: auto;
}

.c-form__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.c-form__label,
.c-form__input {
  padding: 10px;
}

.c-form__label {
  width: 90%;
}

.c-form__input {
  width: 90%;
  font-size: 16px;
  border: solid 1px #333;
  border-radius: 4px;
}

.c-form__input:focus-visible {
  outline: rgb(0, 0, 0) auto 1px;
}

.c-form__required {
  color: #fff;
  background-color: rgb(255, 0, 0);
  border-radius: 4px;
  padding: 5px 5px;
  margin: 0 0 0 18px;
}

textarea.c-form__input {
  height: 160px;
  width: 30%;
}

.c-form__submit {
  text-align: center;
}

.c-form__submit button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: green;
  border: solid 1px green;
  border-radius: 4px;
  padding: 5px 32px;
  transition: 0.4s;
  cursor: pointer;
}

.c-form__submit button:hover {
  color: green;
  background-color: transparent;
}

@media (min-width: 640px) {
  .c-form__item {
    flex-wrap: nowrap;
  }

  .c-form__label {
    width: 40%;
  }

  .c-form__input {
    width: 55%;
  }
}

.boardBody_spc {
  width: 980px;
  display: table-cell;
  padding: 15px 0;
  background: #fff;
  height: 65rem;
  vertical-align: middle;
  text-align: center;
}

.boardBody_spc {
  padding: 20px;
}

.product_image {
  display: flex;
  justify-content: space-around;
}

/*モバイル表示*/
@media screen and (max-width: 700px) {
  .products_image {
    flex-direction: column;
    /*flexアイテムを縦並びに変更*/
  }

  .prodImage {
    display: flex;
    justify-content: center;
  }
}

.products_comment {
  display: flex;
  justify-content: space-around;
}

.board_gyoumu {
  width: 980px;
  display: table-cell;
  padding: 15px 0;
  background: #fff;
  height: 50rem;
  vertical-align: middle;
}

span[data-descr] {
  position: relative;
  text-decoration: underline;
  color: #00f;
  /*cursor: help;*/
}

span[data-descr]:hover::after,
span[data-descr]:focus::after {
  content: attr(data-descr);
  position: absolute;
  left: 20;
  top: -15px;
  min-width: 280px;
  border: 1px #aaaaaa solid;
  border-radius: 10px;
  background-color: #ffffcc;
  margin-left: 10px;
  margin-top: 10px;
  padding-top: 8px;
  padding-bottom: 10px;
  padding-left: 8px;
  color: #000000;
  font-size: 14px;
  z-index: 1;
}

span[data-descr-e] {
  position: relative;
  text-decoration: underline;
  color: #00f;
  /*cursor: help;*/
}

span[data-descr-e]:hover::after,
span[data-descr-e]:focus::after {
  content: attr(data-descr-e);
  position: absolute;
  left: 20;
  top: -8px;
  min-width: 330px;
  border: 1px #aaaaaa solid;
  border-radius: 10px;
  background-color: #ffffcc;
  margin-left: 10px;
  padding-bottom: 5px;
  padding-top: 3px;
  padding-left: 8px;
  color: #000000;
  font-size: 14px;
  z-index: 1;
}

.main_theme {
  font-weight: 900;
  font-size: 1.6rem;
  position: relative;
}

.main_theme::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 110px;
  background-color: #0972c1;
  position: absolute;
  top: -25px;
  left: -15px;
}

/*.main_theme::after{
    content:"";
    display:inline-block;
    width:80%;
    /*height:1px;
    background-color:#c0c0c0;/////
    border-bottom: 1px dashed #9e9e9e;
    position:absolute;
    bottom:-45px;
    left:20px;
  }*/
.main_theme_short {
  font-weight: 900;
  font-size: 1.6rem;
  position: relative;
}

.main_theme_short::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 80px;
  background-color: #0972c1;
  position: absolute;
  top: -25px;
  left: -15px;
}

/*.main_them_short::after{
    content:"";
    display:inline-block;
    width:80%;
    /*height:1px;
    background-color:#c0c0c0;/////
    border-bottom: 1px dashed #9e9e9e;
    position:absolute;
    bottom:-45px;
    left:20px;
  }*/
.sub_theme {
  font-family: roboto;
  font-size: 1.2rem;
}

.sub_theme_b {
  font-family: roboto;
  font-size: 1.2rem;
  position: relative;
}

.sub_theme_b2 {
  font-family: roboto;
  font-size: 1.2rem;
  position: relative;
}

.sub_theme_b::after {
  content: "";
  display: inline-block;
  width: 80%;
  /*height:1px;
    background-color:#c0c0c0;*/
  border-bottom: 1px dashed #9e9e9e;
  position: absolute;
  bottom: -20px;
  left: 20px;
}

.descript {
  position: relative;
}

.descript::after {
  content: "";
  display: inline-block;
  width: 80%;
  /*height:1px;
    background-color:#c0c0c0;*/
  border-bottom: 1px dashed #9e9e9e;
  position: absolute;
  bottom: -12px;
  left: 20px;
}

table.business-name.row td {
  width: 100%;
  display: block;
}

details {
  /*border: 1px solid #aaa;
    border-radius: 4px;*/
  margin: 5px auto;
  padding: 0.5em 0.5em 0;
}

summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
}

details[open] {
  padding: 0.5em;
}

/*.prodImage {
    border: solid 2px #0972c1;
  }*/