@charset "utf-8";
.faq_container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.top_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}

.icon_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq_lower h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Question item
--------------------------*/
.faq_link_wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.faq_link_wrapper a {
  display: flex;
  width: 19%;
  padding: 1.4rem;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  border-radius: 12px;
  border: 3px solid var(--primary);
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.qa_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1024px;
  width: 100%;
}

@media screen and (max-width: 768px) {}

/* FAQ下層ページ
--------------------------*/