@charset "UTF-8";
/*****************************
  pagesec-faq
*****************************/
.faqlist .faqitem{
  background: #fff;
  margin-bottom: 3rem;
}
.faqlist .ttl{
  background: #E8EEF5;
  border-radius: 50px;
  cursor: pointer;
  padding: 1rem 6rem 1rem 5rem;
  position: relative;
}
.faqlist .ttl.open{
  background: #8DAACB;
  color: #fff;
}
.faqlist .ttl::before,
.faqlist .ttl::after{
  content: '';
  background: #8DAACB;
  position: absolute;
  top: 45%;
  right: 3%;
  height: 3px;
  width: 15px;
}
.faqlist .ttl::after{
  transform: rotate(90deg);
  transition: transform .3s linear;
}
.faqlist .ttl.open::after{
  background:#fff;
  transform: rotate(360deg);
}
.faqlist .content{
  border: 2px solid #E8EEF5;
  border-radius: 10px;
  display: none;
  margin: 2.5rem 0 1rem;
  padding: 1rem 1rem 1rem 5rem;
  position: relative;
}
.faqlist .content a{
  color: #1a0dab;
  text-decoration: underline;
}
.faqlist .content a:hover{
  opacity: 1;
  text-decoration: none;
}
.faqlist .ttl .icon,
.faqlist .content .icon{
  color: #8DAACB;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.faqlist .ttl .icon{
  top: -2rem;
}
.faqlist .content .icon{
  color: #E88BB0;
  top: -2rem;
}
.faqlist .ttl.open .icon{
  mix-blend-mode: multiply;
}

@media only screen and (max-width: 1180px) {
    
}
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 820px) {
    
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 767px) {
  .faqlist .faqitem {
    margin-bottom: 3.5rem;
  }
  .faqlist .ttl{
    border-radius: 10px;
    padding: 1rem 3rem 1rem 2rem;
  }
  .faqlist .content {
    margin: 3.5rem 0 1rem;
    padding: 1rem 1rem 1rem 2rem;
  }
  .faqlist .ttl .icon ,
  .faqlist .content .icon {
    font-size: 3rem;
    top: -2rem;
  }
}