@charset "utf-8";
/* CSS Document */

/*　よくある質問　*/
.faq {
  background-color: var(--mainMedium)/*#ddd*/;
}

.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;
}


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

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

/*
.faq__item::before{
  content: "";
  position: absolute;
  top: 32px;
  right: 16px;
  width: 28px;
  background-color: #444;
}
*/
.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;*/
}

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

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

.faq__q::before {
  content: "Q";
  position: absolute;
  color: var(--main);
  font-size: 3rem;
  top: 0;
  left: 0.5rem;
/*
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
*/
  opacity: .3;
    line-height: 1;
}

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


.faq__a::before {
/*
  content: "A";
    position: absolute;
    color: var(--main);
    font-size: 3rem;
    font-weight: bold;
    top: 0;
    left: 0.5rem;
    opacity: .3;
    line-height: 1;    
*/
/*
  width: 16px;
  height: 16px;
*/
/*
  background-image: url(../assets/img/faq_a.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
*/
}
.faq__attention{
  font-size: clamp(12px,1.66cqw,14px);
  padding: 0 8px;
}