/*-------------------------
    faq
-------------------------*/
.faq-type03 {
  --color-primary: #1f3b9e;
  --color-primary-light: #eef6fd;
  --color-primary-dark: #002d6a;
}
.faq-type03.faq-course {
  background-color: var(--color-primary-light);
}
.faq-type03 .l-container._middle {
  max-width: 1200px;
}
.faq-type03 .c-title._h2 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
.faq-type03 .md-toggle__btn--has-icon {
  font-weight: 700;
}
.faq-type03 .md_button {
  max-width: 350px;
}

@media (any-hover: hover) {
  .faq-type03 a:hover {
    text-decoration: underline;
  }
  .faq-type03 .md_button:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 769px) {
  .faq-type03 .p-section__inner {
    padding: 80px 0;
  }
}
@media screen and (min-width: 768px) {
  .faq-type03 .c-title._h2 {
    font-size: 40px;
  }
  .faq-type03 .p-section.faq-course {
    padding: 60px 10px 85px;
  }
}

/*-------------------------
    btn
-------------------------*/
.faq-type03 .md_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  background: var(--color-primary);
  max-height: 64px;
  padding: 18px;
  box-shadow: 0 4px 0 var(--color-primary-dark);
  margin: 0 auto;
}
.faq-type03 .md_button::after {
  position: absolute;
  content: '';
  background: url('/assets/img/top/play-circle-blu.png') no-repeat center / contain;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 768px) {
  .faq-type03 .md_button {
    max-width: 450px;
    font-size: 20px;
    border-radius: 8px;
    padding: 20px 60px 20px 20px;
    box-shadow: 0 6px 0 var(--color-primary-dark);
  }
  .faq-type03 .md_button::after {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}