/*—————————————————————————————————
faq
—————————————————————————————————*/
.top_bg_wrap_title {
  line-height: 64px;
}
.top_bg.faq {
  background-image: url("../img/faq/keyV.jpg");
}
.faq_intro {
  width: 90%;
  margin: 24px auto 40px;
  text-align: center;
  letter-spacing: 0.1em;
}
.faq_subtitle {
  line-height: 1.5em;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
}
.faq_intro .text {
  margin-top: 24px;
}
.faq_subtitle .sub_en {
  display: block;
}
.faq_intro_title {
  font-weight: 400;
}
.faq_intro .text {
  margin-top: 16px;
}
.faq_intro .sub {
  margin-top: 16px;
  font-size: 14px;
  color: #818181;
}
@media screen and (max-width: 960px) {
  .faq_intro {
    margin: 40px auto;
  }
	.accordion__title {
    padding: 18px 8px;
    font-size: 13px;
    letter-spacing: 0.15em;
	line-height: 1.2em;
	}
	.accordion__title .q {
	font-size: 16px;
	}
	.accordion__content.is-open {
    padding: 18px 8px;
	font-size: 13px;
    letter-spacing: 0.15em;
	line-height: 1.2em;
	}
}
@media screen and (max-width: 560px) {
	
	.top_bg.faq {
		height: 250px;
	}
	.top_bg.faq .top_bg_wrap {
    height: 250px;
	}
  .top_bg.faq .top_bg_wrap .top_bg_wrap_title {
    padding-top: 20px;
    line-height: 48px;
    font-size: 3.5rem;
  }
  .top_bg.faq .top_bg_wrap .top_bg_wrap_title .jp {
    padding-top: 0;
	 font-size: 12px;
  }
	.top_bg.faq .top_bg_wrap .top_bg_wrap_title .jp::after {
    bottom: 0px;
	}


  .top_bg_wrap_title {
    padding-top: 40px;
  }
  .top_bg_wrap_title .jp {
    padding-top: 0;
  }
  .faq_intro {
    margin: 24px auto;
    font-size: 14px;
    text-align: left;
  }
  .faq_subtitle {
    font-size: 20px;
  }
}

/*
accordion
———————————*/
.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 80px auto;
}
.accordion_item {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #c0c0c0;
  cursor: pointer;
}
.accordion_item:last-child {
  border-bottom: 1px solid #c0c0c0;
}
.accordion__title {
  position: relative;
  padding: 24px 0 24px 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  border: none;
}
.accordion__title .q::before {
  content: "Q";
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5e91a6;
  margin-right: 16px;
  padding-right: 2px;
  color: #fff;
  border-radius: 50%;
  font-family: ACaslonPro-Regular;
}
/* (+)icon */
.accordion__title::before,
.accordion__title::after {
  content: "";
  position: absolute;
  left: 95%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #a5a5a5;
  width: 16px;
  height: 1px;
  transition: all 0.3s;
}
.accordion__title::after {
  transform: rotate(90deg);
}
/* (-)icon */
.accordion_item.is-active .accordion__title::before {
  transform: rotate(180deg);
}
.accordion_item.is-active .accordion__title::after {
  transform: rotate(180deg);
  opacity: 0;
}
.accordion__content {
  background-color: #f4f4f4;
  font-size: 14px;
  text-align: left;
}
.accordion__content.is-open {
  padding: 24px 0 24px 40px;
}
@media screen and (max-width: 560px) {
  .accordion {
    margin: 24px auto;
  }
  .accordion__title {
    padding: 22px 0;
	font-size: 13px;
    letter-spacing: 0.15em;
    line-height: 1.4em;
  }
  .accordion__title::before,
  .accordion__title::after {
    right: 8px;
  }
  .accordion__content.is-open {
    padding: 22px;
	 font-size: 13px;
    letter-spacing: 0.15em;
    line-height: 1.4em;
  }
.accordion__title .q::before {
    margin-right: 10px;
	}
}
