.subpageTitle01 {
  background-image: url(../images/bg_index01.png);
}

.subpageTitle01 img {
  width: 257px;
  height: 106px;
}

.subpageContent02 .container {
  max-width: 740px;
}

.faqList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .faqList {
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
.faqList li {
  width: 165px;
  height: 60px;
  margin: 0 10px 20px 10px;
}
@media screen and (max-width: 767px) {
  .faqList li {
    width: 49%;
    height: 45px;
    margin: 0 2% 10px 0;
  }
  .faqList li:nth-child(2n) {
    margin-right: 0;
  }
}
.faqList li a {
  text-align: center;
  font-size: 16px;
  width: 100%;
  height: 100%;
  line-height: 1.25;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faqList li a {
    font-size: 14px;
  }
}
.faqList li a:after {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .faqList li a:after {
    width: 4px;
    height: 4px;
    right: 10px;
  }
}
.faqList li a.active {
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}
.faqList li a.active:after {
  border-top: 2px solid #fff !important;
  border-right: 2px solid #fff !important;
}
.faqList li a.blue {
  background: #e1f4fa;
}
.faqList li a.blue:after {
  border-top: 2px solid #00a0e6;
  border-right: 2px solid #00a0e6;
}
.faqList li a.blue.active {
  background: #00a0e6;
}
.faqList li a.yellow {
  background: #fffcd8;
}
.faqList li a.yellow:after {
  border-top: 2px solid #ff8f00;
  border-right: 2px solid #ff8f00;
}
.faqList li a.yellow.active {
  background: #ff8f00;
}
.faqList li a.green {
  background: #e7f7d9;
}
.faqList li a.green:after {
  border-top: 2px solid #8fd152;
  border-right: 2px solid #8fd152;
}
.faqList li a.green.active {
  background: #8fd152;
}
.faqList li a.pink {
  background: #fceef5;
}
.faqList li a.pink:after {
  border-top: 2px solid #fc7eb9;
  border-right: 2px solid #fc7eb9;
}
.faqList li a.pink.active {
  background: #fc7eb9;
}

.faqArea {
  max-width: 720px;
  width: 100%;
  margin: auto;
  padding: 30px 20px 20px 20px;
}
@media screen and (max-width: 767px) {
  .faqArea {
    padding: 20px 3%;
  }
}
.faqArea img {
  vertical-align: top;
}
.faqArea .faqTitle {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .faqArea .faqTitle {
    font-size: 18px;
  }
}
.faqArea .question,
.faqArea .answerContents {
  display: flex;
}
.faqArea .question {
  background: #fff;
  position: relative;
  margin-top: 10px;
}
.faqArea .question .ico {
  align-items: center;
}
.faqArea .question .txt {
  font-weight: bold;
  padding: 18px 42px 18px 18px;
}
@media screen and (max-width: 767px) {
  .faqArea .question .txt {
    padding: 15px 20px 15px 10px;
  }
}
.faqArea .question:hover {
  cursor: pointer;
}
.faqArea .question:after {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .faqArea .question:after {
    width: 4px;
    height: 4px;
    right: 10px;
  }
}
.faqArea .question.active:after {
  width: 10px;
  height: 2px;
  transform: rotate(0deg);
}
@media screen and (max-width: 767px) {
  .faqArea .question.active:after {
    width: 8px;
  }
}
.faqArea .answer {
  background: #fff;
  display: none;
}
.faqArea .answer .ico {
  padding-top: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .faqArea .answer .ico {
    padding-top: 18px;
  }
}
.faqArea .answer .txt {
  padding: 18px;
}
@media screen and (max-width: 767px) {
  .faqArea .answer .txt {
    padding: 15px 15px 15px 10px;
  }
}
.faqArea .answer a {
  word-break: break-all;
}
.faqArea .ico {
  width: 90px;
  min-height: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .faqArea .ico {
    width: 50px;
    min-height: 50px;
  }
}
.faqArea .txt {
  font-size: 16px;
  width: calc(100% - 90px);
}
@media screen and (max-width: 767px) {
  .faqArea .txt {
    width: calc(100% - 50px);
    font-size: 14px;
  }
}
.faqArea.blue {
  background: #e1f4fa;
}
.faqArea.blue .question .ico {
  background: #00a0e6;
}
.faqArea.blue .question::after {
  border-top: 2px solid #00a0e6;
  border-right: 2px solid #00a0e6;
}
.faqArea.blue .question.active:after {
  background: #00a0e6;
  border: none;
}
.faqArea.blue .answer {
  border-top: 1px solid #00a0e6;
}
.faqArea.blue .answer a {
  color: #00a0e6;
}
.faqArea.yellow {
  background: #fffcd8;
}
.faqArea.yellow .question .ico {
  background: #ff8f00;
}
.faqArea.yellow .question::after {
  border-top: 2px solid #ff8f00;
  border-right: 2px solid #ff8f00;
}
.faqArea.yellow .question.active:after {
  background: #ff8f00;
  border: none;
}
.faqArea.yellow .answer {
  border-top: 1px solid #ff8f00;
}
.faqArea.yellow .answer a {
  color: #ff8f00;
}
.faqArea.green {
  background: #e7f7d9;
}
.faqArea.green .question .ico {
  background: #8fd152;
}
.faqArea.green .question::after {
  border-top: 2px solid #8fd152;
  border-right: 2px solid #8fd152;
}
.faqArea.green .question.active:after {
  background: #8fd152;
  border: none;
}
.faqArea.green .answer {
  border-top: 1px solid #8fd152;
}
.faqArea.green .answer a {
  color: #8fd152;
}
.faqArea.pink {
  background: #fceef5;
}
.faqArea.pink .question .ico {
  background: #fc7eb9;
}
.faqArea.pink .question::after {
  border-top: 2px solid #fc7eb9;
  border-right: 2px solid #fc7eb9;
}
.faqArea.pink .question.active:after {
  background: #fc7eb9;
  border: none;
}
.faqArea.pink .answer {
  border-top: 1px solid #fc7eb9;
}
.faqArea.pink .answer a {
  color: #fc7eb9;
}