/* =============================================
   FAQ Accordion — shared component
   ============================================= */

/* PC FAQ: hide on mobile */
.sd[data-s-07c0107a-a2bd-4bd9-a933-2e226480515f] {
  display: flex;
  width: 100% !important;
}
/* SP FAQ: hide on PC */
.sp-faq {
  display: none;
}
@media screen and (max-width: 480px) {
  .sd[data-s-07c0107a-a2bd-4bd9-a933-2e226480515f] {
    display: none !important;
  }
  .sp-faq {
    display: flex;
  }
}

.sd[data-s-c6b9aa0e-7da0-4c97-ae75-3768028702a3] {
  transition: height 0.3s ease;
  overflow: hidden;
}

/* FAQ Q/A icons — PC */
.sd[data-s-6ed0d680-a917-4b93-9f62-dd04872c604e].faqq {
  width: 80px;
  height: auto;
  left: 0px;
  position: absolute;
  top: 0px;
  z-index: 1;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
.sd[data-s-6ed0d680-a917-4b93-9f62-dd04872c604e].faqq {
  width: 70px;
}
}
.sd[data-s-6ed0d680-a917-4b93-9f62-dd04872c604e].faqa {
  width: 34px;
}

/* =============================================
   SP FAQ — shared mobile component
   ============================================= */

.sp-faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.sp-faq__title {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sp-faq__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #000;
  line-height: 1;
  margin: 0;
}

.sp-faq__subheading {
  font-family: 'ヒラギノ角ゴ W6 JIS2004', 'Hiragino Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  line-height: 1.3;
  margin: 0;
}

.sp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sp-faq__item {
  display: flex;
  flex-direction: column;
  background: #757879;
}

.sp-faq__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.sp-faq__q-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: auto;
  z-index: 1;
}

.sp-faq__q-text {
  flex: 1;
  font-family: 'ヒラギノ角ゴ W6 JIS2004', 'Hiragino Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-align: left;
  padding: 0 0 0 55px;
  height: 67px;
  display: flex;
  align-items: center;
  margin: 0;
}

.sp-faq__toggle-icons {
  position: relative;
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.sp-faq__icon-add,
.sp-faq__icon-remove {
  color: #fff;
  font-size: 30px;
}

.sp-faq__icon-remove {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sp-faq__btn._isClose .sp-faq__icon-remove {
  opacity: 0;
}

.sp-faq__btn._isOpen .sp-faq__icon-add {
  opacity: 0;
}

.sp-faq__content {
  overflow: hidden;
  transition: height 0.3s ease;
  background: #fff;
  border: 1px solid #a0a0a0;
  border-top: none;
  box-sizing: border-box;
}

.sp-faq__content._isClose {
  height: 0;
  border-color: transparent;
}

.sp-faq__answer {
  display: flex;
  gap: 20px;
  padding: 20px 20px 30px 20px;
  align-items: flex-start;
}

.sp-faq__a-icon {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.sp-faq__a-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.sp-faq__a-title {
  font-family: 'ヒラギノ角ゴ W6 JIS2004', 'Hiragino Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  line-height: 1.4;
  margin: 0;
}

.sp-faq__a-text {
  font-family: 'ヒラギノ角ゴ W3 JIS2004', 'Hiragino Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 480px) {
  .sp-faq__q-icon_wrapper {
    background-color: #888b8c;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    .sp-faq__q-icon {
      position: relative;
    }
  }
}
