/* =========================================================
faq
========================================================= */
@media (max-width: 768px) {
  .faq-summary {
    padding-top: 50px;
  }
}
@media (min-width: 769px) {
  .faq-summary {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .faq-summary .wrap {
    margin: 60px auto 0;
  }
}
@media (min-width: 769px) {
  .faq-summary .wrap {
    margin: 100px auto 0;
  }
}
@media (max-width: 768px) {
  .faq-nav {
    margin: 60px auto 0;
  }
}
@media (min-width: 769px) {
  .faq-nav {
    margin: 100px auto 0;
  }
}
.faq-nav .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .faq-nav .list {
    grid-gap: 14px;
  }
}
@media (min-width: 769px) {
  .faq-nav .list {
    grid-gap: 20px 40px;
  }
}
.faq-nav .item {
  flex: 1;
}

.faq-nav .item a {
  display: flex;
  align-items: center;
  border: 2px solid #000;
  line-height: 1;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-nav .item a::before {
  content: "";
  -webkit-mask: url(https://en.dev-shinsaibashi-parco.sc-concierge.jp/assets/space14/images/common/ico_arrow01.svg) no-repeat center/contain;
          mask: url(https://en.dev-shinsaibashi-parco.sc-concierge.jp/assets/space14/images/common/ico_arrow01.svg) no-repeat center/contain;
  background: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

@media (max-width: 768px) {
  .faq-nav .item a::before {
    width: 10px;
    height: 7px;
    right: 14px;
  }
}
@media (min-width: 769px) {
  .faq-nav .item a::before {
    width: 13px;
    height: 8px;
    right: 16px;
  }
}
@media (max-width: 768px) {
  .faq-nav .item a {
    height: 50px;
    padding: 0 0 0 15px;
    font-size: clamp(10px, 3.4666666667vw, 13px);
  }
}
@media (min-width: 769px) {
  .faq-nav .item a {
    height: 80px;
    justify-content: center;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .faq-nav .item a:hover {
    background: #000;
    color: #fff;
  }

  .faq-nav .item a:hover::before {
    background: #fff;
  }
}
@media (max-width: 768px) {
  .faq-block + .faq-block {
    margin: 50px auto 0;
  }
}
@media (min-width: 769px) {
  .faq-block + .faq-block {
    margin: 80px auto 0;
  }
}
.faq-list .item {
  background: #F7F7F7;
}

@media (max-width: 768px) {
  .faq-list .item {
    padding: 25px 20px 25px 40px;
  }
}
@media (min-width: 769px) {
  .faq-list .item {
    padding: 40px 10% 40px 100px;
  }
}
.faq-list .item + .item {
  margin: 15px auto 0;
}

.faq-list .item .question,
.faq-list .item .answer {
  position: relative;
}

.faq-list .item .question::before,
.faq-list .item .answer::before {
  font-family: "bc-sklonar", sans-serif;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 0;
}

@media (max-width: 768px) {
  .faq-list .item .question::before,
.faq-list .item .answer::before {
    font-size: 24px;
    right: calc(100% + 11px);
  }
}
@media (min-width: 769px) {
  .faq-list .item .question::before,
.faq-list .item .answer::before {
    font-size: 30px;
    right: calc(100% + 40px);
  }
}
.faq-list .item .question {
  font-weight: 700;
}

@media (max-width: 768px) {
  .faq-list .item .question {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
@media (min-width: 769px) {
  .faq-list .item .question {
    font-size: 18px;
    line-height: 1.7222222222;
  }
}
.faq-list .item .question::before {
  content: "Q";
}

@media (max-width: 768px) {
  .faq-list .item .answer {
    margin: 25px auto 0;
    font-size: 13px;
    line-height: 1.8461538462;
  }
}
@media (min-width: 769px) {
  .faq-list .item .answer {
    margin: 30px auto 0;
    font-size: 16px;
    line-height: 1.875;
  }
}
.faq-list .item .answer::before {
  content: "A";
}