@charset "UTF-8";
.question {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #dfe8eb;
}
.question::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/feature2_left@2.webp"), url("../img/feature2_right@2.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: left 13px top 2px, right 8px top 2px;
  background-size: 10%, 10%;
  pointer-events: none;
  z-index: 0;
}
.question__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  padding-top: 180px;
  padding-bottom: 240px;
}
.question__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.question__title {
  font-size: 30px;
  font-family: "zen old mincho", serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
  text-shadow: 2px 1px 2px #aaa;
}
.question__box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 90px;
}
.question__box:last-child {
  margin-bottom: 0;
}
.question__box-title {
  height: 62px;
  line-height: 62px;
  padding-left: 40px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #cc4e8f;
  border-radius: 5px;
  margin-bottom: 20px;
}
.question__accordion-btn {
  position: relative;
  height: 62px;
  line-height: 62px;
  padding-left: 66px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background-color: #fff;
  color: #cc4e8f;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  /* 回転状態 */
}
.question__accordion-btn--q {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.question__accordion-btn--arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 10;
  transition: transform 0.3s ease;
}
.question__accordion-btn:hover {
  background-color: #eee3cb;
  transition: 0.2s;
}
.question__accordion-btn .rotate {
  transform: translateY(-50%) rotate(270deg); /* 180度回転 */
}
.question__accordion-btn::after {
  position: absolute;
  content: "";
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(124, 124, 124, 0.4);
}
.question__accordion-btn::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #cc4e8f;
}
.question__accordion-content {
  background: #fff;
  border-radius: 5px;
  padding: 0 50px; /* 開閉にあたって、上下のpaddingを0に */
  font-size: 14px;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  max-height: 0; /* 初期状態で高さを0に */
  overflow: hidden; /* 高さが超える場合は隠す */
  transition: max-height 0.3s ease, padding 0.3s ease; /* max-heightとpaddingのアニメーション */
}
.question__accordion-content--list {
  margin: 43px 0; /* コンテンツ内のマージン */
}
.question__accordion-content--list li {
  margin-bottom: 4px;
}
.question__accordion-content--list ul {
  margin-left: 24px;
}
.question__accordion-content--text {
  margin: 43px 0;
  font-weight: 500;
}
.question__accordion-content--text a {
  font-size: 14px;
}/*# sourceMappingURL=question.css.map */