@charset "utf-8";

.pv_visual{
  background: url(../img/page_visual.png) no-repeat center/cover;
}

.faq_inner{
  max-width: 1120px;
  width: 100%;
  margin: auto;
  padding: 65px 0 170px 0;
}
.answer{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.q_title{
  background: url(../img/q_bg.png) no-repeat center/contain;
  min-width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-weight: bold;
}
.a_title{
  background: url(../img/a_bg.png) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-weight: bold;
  font-size: 2.6rem;
}
.a_txt{
  max-width: 1054px;
  width: 100%;
  font-weight: 500;
}

/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
  
details{
  margin-bottom: 30px;
  &:last-child{
    margin-bottom: 0;
  }
}
details summary {
  list-style: none;
  cursor: pointer;
  font-size: 2rem;
  border-bottom: 1px solid #3D77EB;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 55px 20px 0;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::before {
  content: url(../img/down.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
details[open] summary::before {
  content: url(../img/up.svg);
}
details p {
  margin: 0;
}

@media screen and (max-width: 767px){
  .faq_inner{
    padding: 40px 5%;
  }
  .answer{
    flex-direction: column;
    align-items: flex-start;
  }
}