/*
ミールシステムのご案内
*/

.bg_meal {
  background-color: #fedc5e;
}

.q_toggle {
  display: none;
}
.q_label {
  /*タイトル*/
  background: #fce2c4;
  border: 1px solid #ec642c;
  color: #000;
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1em 2em 1em 1em;
  margin-bottom: 0;
}
.q_label::before {
  /*タイトル横の矢印*/
  content: "";
  width: 9px;
  height: 9px;
  border-top: 3px solid #ec642c;
  border-right: 3px solid #ec642c;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  transform: rotate(135deg);
}
.q_label,
.q_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.q_content {
  /*本文*/
  height: 0;
  padding: 0 1em;
  margin-bottom: 0;
  overflow: hidden;
}
.q_content p {
  margin-bottom: 0;
}
.q_toggle:checked + .q_label + .q_content {
  /*開閉時*/
  border: 1px solid #ec642c;
  border-top: none;
  height: auto;
  padding: 1em;
  transition: all 0.3s;
}
.q_toggle:checked + .q_label::before {
  transform: rotate(-45deg) !important;
}

.q_label:hover {
  background: #fedc5e;
}

/*ミールカード*/
.icon_faq-q:before {
  content: "Q";
  font-size: 85%;
  margin-right: 5px;
  display: inline-block;
  vertical-align: 2px;
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  line-height: 1.4;
  border-radius: 50%;
  background: #6eba44;
  color: #fff;
  font-weight: bold;
}

p.icon_faq-a:before {
  content: "A";
  font-size: 100%;
  margin-right: 5px;
  display: inline-block;
  vertical-align: 2px;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  line-height: 1.3;
  border-radius: 50%;
  background: #f08300;
  color: #fff;
  font-weight: bold;
}
