@charset "utf-8";
/* faq.css */
:root {
  --hover-time: .3s;
  --zoom-time: .5s;
  --animation-time: .6s;
  --bganime-time: 10s;
}
/* =================== */
/*   common            */
/* =================== */
@media screen and (max-width: 767px) {
  .pageHeader-ttl {
    letter-spacing: -0.05em;
  }
}

.faq-annotation {
  list-style: none;
  display: inline-block;
  margin-top: 5px;
  padding-left: 21px;
  position: relative;
  font-size: 14px;
}
.faq-annotation::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}


/* =================== */
/*   faq               */
/* =================== */
.faq {
  width: 100%;
  padding-bottom: 80px;
}
.faq-inner {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .faq-inner {
    width: 90%;
    padding: 0;
  }
}
section {
padding-bottom: 12px;
}
.faq-ttl {
  font-size: 35px;
  font-weight: 700;
  margin: 30px 0 40px;
  text-align: center;
}
.faq-inner section {
  border-bottom: 1px solid #cccccc;
}
.faq-question {
  position: relative;
  cursor: pointer;
  padding:	15px 27px 13px 0;
  display: flex;
 font-weight: bold;
 background-color: #E84660;
border-radius: 10px;
}
.faq-question p {
 font-weight: bold;
	font-size: 112.5%;
	color: #fff;
}
.faq-question::before, .faq-question::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all .5s ease;
}
.faq-question::before {
  /* top: calc(50% - 1px); */
  top: 23px;
  right: 15px;
  transform: rotate(0deg);
}
.faq-question::after {
  /* top: calc(50% - 1px); */
  top: 23px;
  right: 16px;
  transform: rotate(90deg) translateY(-50%);
  transition: all var(--hover-time);
}
.faq-question.open::after {
  transform: rotate(0deg);
}
.faq-question > p {
  padding-left: 10px;
  position: relative;
}
.faq-answer {
  margin-top: 7px;
}
