@charset "utf-8";

.faq {
  padding-top: 40px;
}
.faq-item {
  position: relative;
  overflow: hidden;
}
.faq-item:not(:first-child) {
  margin-top: 20px;
}
.faq-question {
  appearance: none;
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 50px 15px 80px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  background-color: #f2f2f2;
  transition: 0.3s all;
  cursor: pointer;
}
.faq-question:focus {
  box-shadow: none;
}
.faq-question::before,
.faq-answer::before {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 60px;
  height: 60px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}
.faq-question::before {
  content: "Q";
  color: #FFF;
  background-color: #000;
}
.faq-answer::before {
  content: "A";
  color: #ac2330;
  background-color: #fae3e3;
}
.faq-question::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 2px);
  right: 25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 10px 0 10px;
  border-color: #333 transparent transparent transparent;
  transform: translateY(-50%);
}
.faq-item.is-AcorShow .faq-question::after {
  top: calc(50% - -2px);
  transform:  translateY(-50%) rotate(-180deg);
}
.faq-answer {
  position: relative;
  top: 20px;
  padding: 0 50px 20px 90px;
}
.faq-txt:first-child {
  min-height: 80px;
}
.faq-txt:last-child {
  padding-bottom: 20px;
}
.faq-answer .pattern-space,
.faq-answer dl,
.faq-answer dt {
  margin-top: 15px;
}
.faq-answer dl dt:first-child {
  margin-top: 0;
}
.faq-list {
  padding-left: 40px;
  list-style: auto;
}
.faq-list li {
  margin-top: 5px;
}
.faq-list img {
  display: block;
  margin-bottom: 30px;
}


@media screen and (max-width: 768px) {
  .faq {
    padding-top: 20px;
  }
  .faq-item {
    position: relative;
    border-width: 1px;
    min-height: 36px;
  }
  .faq-wrapItem:not(:first-child) {
    margin-top: 25px;
  }
  .faq-question {
    min-height: 45px;
    padding: 6px 35px 6px 60px;
    font-size: 14px;
    line-height: 1.4;
  }
  .faq-question::before {
    width: 45px;
    height: 45px;
    padding: 6px 0;
    font-size: 20px;
  }
  .faq-question::after {
    top: calc(50% + 1px);
    right: 15px;
    border-width: 10px 6px 0 6px;
  }
  .faq-wrapItem.is-AcorShow .faq-question::after {
    top: calc(50% - 2px);
  }
  .faq-answer {
    top: 10px;
    padding: 0 35px 10px 60px;
  }
  .faq-answer::before {
    width: 45px;
    height: 45px;
    padding: 6px 0;
    font-size: 20px;
  }
  .faq-txt {
    min-height: 55px;
    padding-bottom: 10px;
  }
  .faq-answer .pattern-space,
  .faq-answer dl,
  .faq-answer dt {
    margin-top: 8px;
  }
  .faq-list {
    padding-left: 30px;
  }
}