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

.accordion{
  max-width: 800px;
  margin: 0 auto 120px;
  padding: 0 18px;
}


.q {
  font-size: 1.8rem;
  color: #EB6711;
  height: 60px;
  padding: 15px 40px 15px 15px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #555;
}
  .q::before {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #333;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .q::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #333;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
  }
  .q span{
    color: #333;
    font-size: 1.6rem;
    margin-left: 10px;
  }
 
  .q.active::after{
    display: none;
  }
 
  .a {
    height: 60px;
    display: none;
    padding: 0 15px;
    margin: 24px 0;
    color: #333;
    line-height: 1.7;
  }
  .qa{
    margin-bottom: 24px;
  }
  .qa-last{
    margin-bottom: 0;
  }

  @media(max-width:599px){
    .q{
      font-size: 1.6rem;
      padding: 15px 40px 32px 15px;
      height: auto;
    }
    .q span{
      font-size: 1.4rem;
      margin-left: 8px;
      line-height: 1.7;
    }
    .a{
      font-size: 1.3rem;
      margin:24px 0 32px ;
    }
      }