@charset "UTF-8";


/*------------------pc     pc---------------------*/
@media (min-width: 769px) {
  body{
      min-width: 769px;
      margin: 0 auto;
  }





/*-----------------------Q&A---------------------------*/
h2 {
  font-size: 2rem;
  padding-left:5%;
  border-bottom: 1px double #716246;
  width: 40%;
  margin-left: 5%;
}

.qa {
  margin-top: 50px;
}

.qa-6 {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5px;
  border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa-6 summary::before {
  color: #bbdbf3;
  content: "Q";
}

.qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .5s;
}

.qa-6[open] summary::after {
  transform: rotate(225deg);
}

.qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333;
  transition: transform .8s, opacity .8s;
}

.qa-6[open] p {
  transform: none;
  opacity: 1;
}

.qa-6 p::before {
  color: #e3adc1;
  line-height: 1.2;
  content: "A";
}


}












/*------------------sp      sp---------------------*/
@media (max-width: 768px) {
  body{
      max-width: 768px;
      margin: 0 auto;
  }



/*-----------------------Q&A---------------------------*/
h2 {
  font-size: 1rem;
  padding-left:5%;
  border-bottom: 1px double #716246;
  width: 70%;
  margin-left: 5%;
  margin-top: 30px;
}

.qa {
  margin-top: 30px;
}

.qa-6 {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 5px;
  border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-size: 0.8rem;
  cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 0.8em;
}

.qa-6 summary::before {
  color: #bbdbf3;
  content: "Q";
}

.qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .5s;
}

.qa-6[open] summary::after {
  transform: rotate(225deg);
}

.qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333;
  font-size: 0.8rem;
  transition: transform .8s, opacity .8s;
}

.qa-6[open] p {
  transform: none;
  opacity: 1;
}

.qa-6 p::before {
  color: #e3adc1;
  line-height: 1.2;
  content: "A";
}






}