@charset "UTF-8";
/* CSS Document */
/*FAQ page topにあるimage画像の部分*/
h2 {
  color: #666;
  margin-bottom: 10px;
}
.page-image {
  background-image: url("../images/faq/sp-faq-top.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin: 75px auto 0;
  padding: 50px 0;
}
.faq-wrapper {
  background-color: #f7fcfe;
  width: 100%;
  padding: 50px 0 100px;
}
.faq-inner {
  max-width: 89%;
  margin: 0 auto 50px;
}
.faq-inner:last-of-type {
  margin-bottom: 0;
}
/*category title*/
.faq-categry__title {
  display: flex;
  margin-bottom: 25px;
}
.faq-categry__title {
  padding-top: 50px;
}
.faq-categry__title:first-of-type {
  padding-top: 0;
}
.faq-item__q {
  line-height: 1.8;
}
.faq-item__q:before {
  content: "Q";
  display: block;
  position: absolute;
  top: 33px;
  left: 15px;
  color: #7490af;
  font-size: 1.8rem;
  line-height: 1;
}
/*アコーディオンの設定*/
.accordion ul {
  width: 100%;
  padding: 0;
}
.accordion li {
  position: relative;
  list-style: none;
  margin-bottom: 2px;
}
.accordion > ul > li > a {
  position: relative;
  display: block;
  background-color: #fff;
  text-decoration: none;
  cursor: pointer;
  padding: 30px 40px;
}
.accordion > ul > li > p {
  display: none;
  background-color: #d6e6f2;
  text-align: left;
  padding: 30px 40px;
  color: #333;
  line-height: 1.8;
}
.accordion li .accordion_icon,
.accordion li .accordion_icon span {
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}
.accordion li .accordion_icon {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 39px;
  right: 10px;
}
.accordion li .accordion_icon span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.accordion li .accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
}
.accordion li .accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
}
.accordion li .accordion_icon.active span:nth-of-type(1) {
  display: none;
}
.accordion li .accordion_icon.active span:nth-of-type(2) {
  transform: rotate(180deg);
}
.faq-info-wrapper {
  position: relative;
}
.faq-info {
  background-image: url("../images/faq/faq-footer.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding: 50px 0;
}
.faq-info__text {
  margin-bottom: 25px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
}
.faq-line-button {
  width: 50%;
  margin: 0 auto 20px;
}
.faq-lineId {
  margin-bottom: 25px;
  color: #fff;
}
.faq-info__tel a {
  display: block;
  color: #fff;
  font-size: 2.4rem;
}

/* --------------------------------------------------
  pc版
-------------------------------------------------- */
@media screen and (min-width: 1000px) {
  .page-image {
    background-image: url("../images/faq/faq-top.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 100px 0;
    margin-top: 95px;
  }
  .faq-wrapper {
    width: 100%;
    padding: 100px 0 200px;
  }
  .faq-inner {
    max-width: 71%;
    margin: 0 auto 100px;
  }
  .faq-inner:last-of-type {
    margin-bottom: 0;
  }
  /*category title*/
  .faq-categry__title {
    margin-bottom: 50px;
  }
  .faq-categry__title {
    padding-top: 100px;
  }
  .faq-categry__title:first-of-type {
    padding-top: 0;
  }
  .faq-item__q:before {
    top: 48px;
    left: 40px;
  }
  .accordion > ul > li > a {
    padding: 45px 122px;
  }
  .accordion > ul > li > a p:hover {
    color: #7490af;
    text-decoration: none;
  }
  .accordion > ul > li > p {
    padding: 55px 122px;
  }
  .accordion li .accordion_icon {
    width: 16px;
    height: 16px;
    top: 60px;
    right: 25px;
  }
  .faq-info {
    padding: 200px 0;
  }
  .faq-line {
    width: 30%;
    margin: auto;
  }
}
