/* 20220603 QAと成分折りたたみ */
.acd-check{
  display: none;
}
.acd-label{
  background: #1da6a6;
  color: #fff;
  display: block;
  margin-bottom: 1px;
  padding: 10px 30px 10px 10px;
  position: relative;
  line-height: 1.6;
  font-weight: bold;
  font-size: 13px;
  text-align: left;
}
.acd-label:before {
  content: " ";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #707070;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  transition: all .3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.acd-label:after{
  content: " ";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #707070;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  transition: all .3s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.acd-content {
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .3s;
  visibility: hidden;
  background-color: #fff;
}
.acd-check:checked + .acd-label + .acd-content{
  height: auto;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}
.acd-check:checked + .acd-label:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.acd-label2{
  background: #1da6a6;
  color: #fff;
  padding: 10px;
  text-align: center;
}
.folate_qa {
  line-height: 1.5;
  font-size: 13px;
  position: relative;
  display: block;
  text-align: left;
}
.folate_detail {
  color: #666;
  margin: 0 10px 10px 10px;
  font-size: 11px;
  line-height: 1.3em;
}
.overlay-flash {
    background: #fff2c7 !important;
}