@charset "utf-8";
/* CSS Document */
/*　よくある質問　*/
.contents__area #faq{
    background: var(--sub);
}
.contents__area .faq__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contents__area .faq__list {
  width: 100%;
  /*border-bottom: 1px solid #444;*/
  margin-bottom: 40px;
  padding: 0 8px;
}

.contents__area .faq__item {
/* border-top: 1px solid #444; */
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
.contents__area .faq__item:last-child{
    margin-bottom: 0;
}

.contents__area .faq__q::after{/*.faq__item::before*/
  content: "";
  position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    right: clamp(16px,2.75vw,30px);
    border-top: 2px solid var(--main);
    border-left: 2px solid var(--main);  
    -webkit-transition: all .3s;
  transition: all .3s;
/*  transform-origin: 50% 0;*/
}

.contents__area .faq__item.is-open .faq__q::after {/*.faq__item.is-open::before*/
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.contents__area .faq__q {
  font-size: clamp(14px,1.95cqw,18px);
  font-weight: bold;
  padding: 20px 60px 20px 30px;
  position: relative;
  cursor: pointer;
}

.contents__area .faq__q::before {
  content: "Q";
  position: absolute;
  color: var(--main);
  font-size: 3rem;
  top: 0;
  left: 0.5rem;
  opacity: .3;
    line-height: 1;
}

.contents__area .faq__a {
  font-size: clamp(14px,1.95cqw,18px);
  padding: 0 clamp(16px,2.75vw,30px) 16px;
  position: relative;
  display: none;
  cursor: pointer;
}

.contents__area .faq__attention{
  font-size: clamp(12px,1.66cqw,14px);
  padding: 0 8px;
}