@charset "utf-8";

/* ====================================================
FAQ
==================================================== */
.faq-box {
  max-width: 1060px;
  width: 90%;
  margin: 40px auto 0;
}
.faq-content-txt {
  margin-bottom: 80px;
}
.faq-details {
  border-top: 1px solid #D3D3D3;
}
.faq-details:last-child {
  border-bottom: 1px solid #D3D3D3;
}
.faq-details:hover {
  background: #F6F8FA;
}
.faq-summary {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 32px 8%;
  font-weight: bold;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-contents {
  padding: 32px 0 32px 8%;
}
.faq-summary::before,
.faq-text::before {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.faq-summary::before {
  content: "Q";
  font-size: var(--font-size30);
  font-family: "Century", "Century Gothic", "Century Schoolbook", serif;
  color: #ADADAD;
  font-weight: normal;
}
.faq-text {
  position: relative;
  padding: 32px 3% 32px 8%;
}
.faq-text-list {
  position: relative;
  padding: 0 3% 32px 8%;
}
.faq-text a {
  text-decoration: underline;
}
.faq-text-list li {
  text-indent: -1em;
    padding-left: 1em;
}
.faq__content {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}
.js-details[open] .js-content {
  height: auto;
}

/* ＋ - アイコン */
.plus-icon {
  margin-left: 20px;
}
.plus-icon,
.plus-icon span {
	display: inline-block;
	transition: all .4s;
}
.plus-icon {
  flex-shrink: 0;
	position: relative;
  right: 2%;
	width: 28px;
	height: 28px;
}
.plus-icon span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #707070;
}
.plus-icon span:nth-of-type(1) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.plus-icon span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
/*＋、－切り替え*/
.plus-icon.active span:nth-of-type(1) {
	display:none;
}
.plus-icon.active span:nth-of-type(2) {
	top: 5px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  	-moz-transform: rotate(180deg);
  	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.plus-icon.active span:nth-of-type(1) {
	top: 5px;
  transform: rotate(45deg);
  	-webkit-transform: rotate(45deg);
  	-moz-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.plus-icon.active span:nth-of-type(2) {
	top: 5px;
  transform: rotate(180deg);
  	-webkit-transform: rotate(180deg);
  	-moz-transform: rotate(180deg);
  	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
@media (max-width: 767px) {
  .faq-content-txt {
    margin-bottom: 40px;
  }
  .faq-summary {
    padding: 26px 0 26px 50px;
    line-height: 1.6;
  }
  .faq-text {
    padding: 0 3% 20px 50px;
  }
  .faq-text-list {
    padding: 0 3% 32px 50px;
  }
  .plus-icon {
    right: 3%;
    width: 20px;
    height: 20px;
  }
}