@charset "UTF-8";
.first_text {
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}

section.top {
  padding-bottom: 150px;
  background-size: 100% 100%;
}

.right {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.right h2 {
  font-weight: 800;
  font-size: 22px;
  text-align: center;
  padding-top: 10px;
}
.right h2 span {
  color: #e8423c;
}
.right img {
  width: 200px;
  max-width: 90%;
  margin: 0 auto;
}

details {
  margin-bottom: 50px;
}

.q_box {
  width: 100%;
  border: solid 1px #707070;
  border-radius: 15px;
  background: white;
  position: relative;
  padding: 30px 50px 50px 100px;
  z-index: 2;
}
.q_box .d_title {
  font-weight: 400;
}

.a_box {
  width: 100%;
  border: solid 1px #707070;
  border-radius: 0 0 15px 15px;
  background: white;
  position: relative;
  padding: 40px 50px 50px 100px;
  margin-top: -35px;
  z-index: 1;
  background: #f2f2f2;
  font-size: 18px;
}
.a_box .circle {
  top: 30px;
  background: white;
  color: #ffb2b2;
  border: solid 1.5px #ffb2b2;
}
.a_box .circle::before {
  top: 21px;
  left: 72.5px;
  background-image: url("../../src/faq/speak2.webp");
}

.circle {
  position: absolute;
  top: -30px;
  left: -30px;
  background: #ffb2b2;
  color: white;
  width: 80px;
  height: 70px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  font-family: "MS PGothic", sans-serif;
}
.circle::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -13px;
  width: 20px;
  height: 20px;
  background-image: url("../../src/faq/speak1.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* summary 全体をクリック可能にする */
details summary {
  list-style: none; /* デフォルトの三角アイコンを消す */
  cursor: pointer;
  position: relative;
  padding: 25px 0 25px 0px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
}

/* 疑似要素で右側に + を表示 */
details summary::after {
  content: "↓";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #e8423c;
  z-index: 3;
}

/* open 時は − に切り替える */
details[open] summary::after {
  content: "↑";
}

.q_box {
  padding-right: 20px;
}

@media (max-width: 700px) {
  section.top {
    padding-bottom: 0px;
  }
  .first_text {
    margin-bottom: 30px;
    font-weight: 600;
  }
  .q_box {
    padding: 30px 50px 30px 60px;
  }
  .a_box {
    padding: 40px 50px 50px 60px;
    font-size: 16px;
  }
  .right h2 {
    margin-bottom: 20px;
    font-weight: 600;
  }
  details summary {
    font-size: 16px;
  }
  .circle {
    width: 60px;
    height: 50px;
    font-size: 25px;
    top: -20px;
    left: -20px;
  }
  .circle::before {
    top: 11px;
    left: -10px;
    width: 15px;
    height: 15px;
  }
  .a_box .circle::before {
    top: 14px;
    left: 53.5px;
  }
}/*# sourceMappingURL=faq.css.map */