@charset "utf-8";
/* CSS Document */

.faq {
	padding-bottom:50px;
}
/*よくある質問*/
.faq{
	width:100%;
	margin:auto;
	color:#0077A6;
}
.faq-item {
  margin-top: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*border: 1px solid #878787;*/
}

.faq-question__wrap {
  position: relative;
  /*background: #0C89B7;*/
	background:#fff;
  padding: 5px 40px 5px 55px;
  cursor: pointer;
  width:100%;
  margin:0;
  box-sizing: border-box;
	border: 1px solid #0077A6;
}

.minus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #0077A6;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #0077A6;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}

.plus-icon.active {
  transform: translateY(-50%);
}

.faq-question__title {
  font-weight: bold;
  color: #0077A6;
  font-size: 18px;
  position: relative;
	margin:10px;
}
.faq-question__title::before {
    position: absolute;
    color: #0077A6;
    content: "Q";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
  }
.faq-answer__wrap {
  background: #fff;
  padding: 10px 5px 10px 55px;
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-answer__wrap.active {
  height: auto;
  padding: 10px 5px 10px 55px;
}
.faq-answer__wrap {
  /*background: #ECECEC;*/
  opacity: 0;
  padding: 10px 5px 10px 55px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: ease all 0.7s; /* 擬似要素のトランジションを追加 */
}

.faq-answer__wrap.active {
  opacity: 1;
  padding: 10px 5px 10px 55px;
}

.faq-answer__title {
  position: relative;
  font-weight: bold;
  color: #000;
  font-size: 16px;
}

.faq-answer__title::before {
    position: absolute;
    color: #000;
    content: "A";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
  }

.faq-answer__text {
  margin-top: 5px;
}
@media(max-width:768px){
.faq-question__wrap {
  padding: 5px 40px 5px 40px;
}	
}
@media(max-width:520px){
.faq-item {
  margin-top: 10px;
}
.faq-question__title {
  font-size: 16px;
  margin:7px;
}
.faq-answer__title {
  font-size: 15px;
}
}