/** Shopify CDN: Minification failed

Line 78:2 Expected identifier but found bad string token
Line 78:3 Unterminated string token

**/
.sm-noticeFaqs {
  width: 100%;
  margin-bottom: 120px;
}

.sm-noticeFaqs__container {
  width: 100%;
  max-width: 1065px;
  margin: 0 auto;
  padding: 0 20px;
}

.sm-noticeFaqs__header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-grey-09);
}

.sm-noticeFaqs__title {
  font-size: var(--font-size-24);
  font-style: normal;
  font-weight: var(--font-weight-500);
  line-height: normal;
}

.sm-noticeFaqs__faq {
  border-bottom: 1px solid var(--color-grey-09);
}

.sm-noticeFaqs__questionContainer {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
}

.sm-noticeFaqs__question {
  font-size: var(--font-size-16);
  font-style: normal;
  font-weight: var(--font-weight-500);
  line-height: normal;
  color: var(--color-grey-01);
  cursor: pointer;
}

.sm-noticeFaqs__dropdown {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.sm-noticeFaqs__dropdown.rotate {
  transform: rotate(180deg);
}

.sm-noticeFaqs__answer {
  color: var(--color-grey-01);
  font-size: var(--font-size-14);
  font-style: normal;
  font-weight: var(--font-weight-400);
  line-height: 160%;
  display: none;
  padding-bottom: 24px;
}

.sm-noticeFaqs__answer em {
  text-decoration: underline;
  font-weight: 600;
}

.sm-noticeFaqs__answer strong {
  font-weight: var(--font-weight-600);
  line-height: 200%;
  '

}

.sm-noticeFaqs__answer a {
  text-decoration: underline;
  cursor: pointer;
}

.sm-noticeFaqs__answer p:empty {
  height: 16px;
}

.sm-noticeFaqs__answer p {
  margin-bottom: 10px;
}

.sm-noticeFaqs__answer__image .notice-img {
  width: 100%;
  max-width: 640px;
  height: auto;
  padding: 0 20px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sm-noticeFaqs {
    margin-bottom: 80px;
  }

  .sm-noticeFaqs__title {
    font-size: var(--font-size-18);
  }

  .sm-noticeFaqs__answer__image .notice-img {
    padding: 0;
  }
}