input,
[type=text],
[type=email],
[type=url],
[type=password],
[type=number],
[type=date],
[type=datetime-local],
[type=month],
[type=search],
[type=tel],
[type=time],
[type=week],
[type=file],
[multiple],
textarea,
select,
.form-textarea,
.form-file {
  border-width: 1px;
  border-style: solid;
  border-radius: 0.5rem;
  border-color: rgb(123 123 123 / 100%);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  appearance: none;
  font-size: 1.2rem;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  text-align: center;
  text-align-last: center;
}

.faq-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.faq-form button {
  background-color: #33247D;
  border-radius: 5px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 2.5rem;
}

.faq-form button svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-top: 1px solid #E5E7EB;
  padding: 2rem 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

.faq-item+.faq-item {
  margin-top: 2rem;
}

.faq-content {
  flex: 1;
}

.l-contents_sec__inner .faq-content p {
  margin-bottom: 0;
}

.l-contents_sec__inner .faq-content .faq-question p {
  margin-top: 0.3em;
}

.faq-question,
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.faq-question>span,
.faq-answer>span {
  width: 30px;
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 1.9;
}

.faq-question {
  font-weight: bold;
  font-size: 1.1rem;
}

.faq-answer {
  margin-top: 1rem;
}

.faq-answer>span {
  padding-left: 0.12rem;
}

.faq-categories {
  background-color: #ffd700;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 100%;
}

.faq-categories a {
  display: block;
}

.faq-list+.box-title_001 {
  margin-top: 3rem;
}

.faq-note {
  /* background-color: #f1f0f2; */
  /* color: #555555; */
  border-radius: 0.5rem;
  padding: 15px 1.5rem 1px 1.5rem;
  width: 100%;
  margin: 1.5rem auto 0 auto;
  font-weight: bold;
  border: solid 3px #33257B;
}

.faq-note ul li {
  background: none;
  list-style-type: disc;
  padding-left: 0;
}

@media screen and (min-width:1024.5px) {
  .faq-form {
    flex-direction: row;
    align-items: stretch;
  }

  .faq-form button {
    width: 3rem;
    height: auto;
  }

  .faq-item {
    flex-direction: row;
  }

  .faq-categories {
    width: 20%;
  }

  .faq-note {
    width: 70%;
  }

}