
.mlfaq-wrap{
  --mlfaq-text:#111111;
  --mlfaq-line:#d9d9d9;
  --mlfaq-accent:#f08a1a;
  --mlfaq-accent-soft:#fff3e4;
  --mlfaq-muted:#666666;
  max-width:100%;
  color:var(--mlfaq-text);
}
.mlfaq-head{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:10px;
  margin:0 0 28px;
  line-height:1;
}
.mlfaq-heading-main{
  font-size:54px;
  font-weight:800;
  letter-spacing:.02em;
}
.mlfaq-heading-sub{
  font-size:28px;
  font-weight:700;
  transform:translateY(-4px);
}
.mlfaq-list{
  border-top:1px solid var(--mlfaq-line);
}
.mlfaq-item{
  border-bottom:1px solid var(--mlfaq-line);
}
.mlfaq-question,
.mlfaq-question:link,
.mlfaq-question:visited,
.mlfaq-question:hover,
.mlfaq-question:active,
.mlfaq-question:focus,
.mlfaq-question:focus-visible{
  -webkit-appearance:none;
  appearance:none;
  color:var(--mlfaq-text) !important;
  text-decoration:none !important;
  box-shadow:none !important;
  outline:none;
}
.mlfaq-question{
  width:100%;
  background:transparent !important;
  border:none;
  display:flex;
  align-items:center;
  gap:14px;
  padding:20px 10px 20px 0;
  text-align:left;
  cursor:pointer;
  color:var(--mlfaq-text);
  transition:background-color .18s ease;
}
.mlfaq-question:hover,
.mlfaq-question:focus,
.mlfaq-question:focus-visible,
.mlfaq-question:active{
  background:rgba(240,138,26,.055) !important;
}
.mlfaq-question:hover .mlfaq-question-text{
  color:var(--mlfaq-text);
}
.mlfaq-qmark{
  flex:0 0 24px;
  width:24px;
  height:24px;
  border-radius:999px;
  background:var(--mlfaq-accent);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
  line-height:1;
  box-shadow:0 0 0 3px rgba(240,138,26,.08);
}
.mlfaq-question-text{
  flex:1 1 auto;
  font-size:clamp(20px,1.55vw,28px);
  font-weight:800;
  line-height:1.35;
  letter-spacing:.01em;
}
.mlfaq-plus{
  position:relative;
  flex:0 0 28px;
  width:28px;
  height:28px;
  margin-left:10px;
}
.mlfaq-plus::before,
.mlfaq-plus::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:24px;
  height:2.5px;
  background:var(--mlfaq-accent);
  transform:translate(-50%,-50%);
  transition:transform .22s ease, opacity .22s ease;
}
.mlfaq-plus::after{
  width:2.5px;
  height:24px;
}
.mlfaq-question[aria-expanded="true"] .mlfaq-plus::after{
  opacity:0;
  transform:translate(-50%,-50%) scaleY(.2);
}
.mlfaq-answer{
  overflow:hidden;
}
.mlfaq-answer-inner{
  padding:4px 0 22px 38px;
  font-size:18.67px;
  line-height:1.9;
  color:#222;
}
.mlfaq-answer-inner p{
  margin:0 0 1em;
}
.mlfaq-answer-inner a{
  color:var(--mlfaq-accent);
  text-decoration:underline;
  text-underline-offset:2px;
}
.mlfaq-answer-inner strong{
  font-weight:800;
}
.mlfaq-answer-inner img{
  max-width:100%;
  height:auto;
}
.mlfaq-answer-inner iframe,
.mlfaq-answer-inner video{
  max-width:100%;
  width:100%;
}
.mlfaq-empty{
  padding:16px 0;
  color:var(--mlfaq-muted);
  border-top:1px solid var(--mlfaq-line);
  border-bottom:1px solid var(--mlfaq-line);
}
@media (max-width: 767px){
  .mlfaq-head{
    margin-bottom:18px;
    gap:8px;
  }
  .mlfaq-heading-main{
    font-size:34px;
  }
  .mlfaq-heading-sub{
    font-size:18px;
    transform:translateY(-2px);
  }
  .mlfaq-question{
    gap:10px;
    padding:15px 8px 15px 0;
  }
  .mlfaq-qmark{
    width:22px;
    height:22px;
    flex-basis:22px;
    font-size:12px;
    box-shadow:0 0 0 2px rgba(240,138,26,.08);
  }
  .mlfaq-question-text{
    font-size:18px;
    line-height:1.4;
  }
  .mlfaq-plus{
    width:24px;
    height:24px;
    flex-basis:24px;
  }
  .mlfaq-plus::before{
    width:20px;
  }
  .mlfaq-plus::after{
    height:20px;
  }
  .mlfaq-answer-inner{
    padding:2px 0 16px 32px;
    font-size:17px;
    line-height:1.8;
  }
}


.mlfaq-question[aria-expanded="true"]{
  background:rgba(240,138,26,.045) !important;
}
.mlfaq-question[aria-expanded="true"]:hover,
.mlfaq-question[aria-expanded="true"]:focus,
.mlfaq-question[aria-expanded="true"]:focus-visible,
.mlfaq-question[aria-expanded="true"]:active{
  background:rgba(240,138,26,.06) !important;
}
