.faqmark {
  background: #FD6900;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: block;
  width: 30px;
  border-radius: 3px;
  line-height: 1.2;
}

.faqmark1 {
  background: #FD6900;
  color: #fff;
  border-radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  padding: 4px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Accordion */
.ac-menu1:last-child {
  margin-bottom: 60px;
}

.ac-menu1 input {
  display: none;
}

.ac-menu1 label {
  color: #000;
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
  text-align: left;
  background: #EFF8FD;
  padding: 20px;
  cursor: pointer;
  position: relative;
  display: block;
  border-top: 1px solid #6091d3;
}

.ac-menu1 label::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "＋";
}

.ac-menu1 input:checked ~ label::after {
  content: "−";
}

.ac-menu1 div {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}

.ac-menu1 input:checked ~ div {
  height: auto;
  opacity: 1;
  padding: 20px;
  background: #FAFAFA;
}

.ac-menu-inside1 {
  color: #333;
  font-size: 17px;
  line-height: 2;
  display: flex;
}
