@charset "UTF-8";

/* =============================================================================

よくある質問 CSS

・よくある質問ページ用CSS「.faq-×××」

上記はここに記述する

============================================================================= */
.faq-section {
  margin-block-start: 7.6rem;
}
.faq-contents {
	border-bottom: 1px solid var(--cc-gray-E-hex);
}
.faq-contents:not(:last-of-type) {
  margin-bottom: 2.7rem;
}
.faq-question {
	display: flex;
	align-items: flex-start;
	padding: 0 0 2rem;
	position: relative;	
}
.faq-question::before {
  content: "Q";
  font-size: 2.5rem;
  line-height: 0;
  letter-spacing: 0.05em;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  color: #fff;
  background-color: var(--cc-black-A-hex);
  font-family:var(--ff-bellefair);
  font-weight:400;
}
.faq-question span {
  width: 95.6rem;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-left: 1.6rem;
  margin-right: 3.6rem;
  padding-top: .6rem;
}
.faq-question i {
  display: flex;
	justify-content: center;
	align-items: center;
  width: 4.6rem;
  height: 4.6rem;
	position: relative;
	right: 0;
}
.faq-question i::before,
.faq-question i::after {
  content: "";
  width: 2.4rem;
  height: 3px;
  background-color: var(--cc-black-A-hex);
  position: absolute;
  transition: transform 0.5s;
}
.faq-question i::after {
  transform: rotate(-90deg);
}
.faq-question[aria-expanded="true"] i::before {
  transform: rotate(180deg);
}
.faq-question[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-answer-wrap {
  padding: 0 0 2rem;
}
.faq-answer-inner {
	padding: 2rem 2.2rem 2rem 10.8rem;
  background-color: var(--cc-gray-A-hex);
}
.faq-answer-inner p {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media (width <= 640px) {
  .faq-section {
    margin-block-start: 0;
    border-radius: 0;
    padding-top: 5rem;
  }
  .faq-contents:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .faq-question {
    padding: 0 0 1.6rem;
  }
  .faq-question::before {
    font-size: 1.8rem;
    width: 2.8rem;
    height: 2.8rem;
  }
  .faq-question span {
    width: 24.1rem;
    font-size: 1.4rem;
    margin-left: 1rem;
    margin-right: 2rem;
    padding-top: .2rem;
  }
  .faq-question i {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: .4rem;
  }
  .faq-question i::before,
  .faq-question i::after {
    width: 1.6rem;
  }
  
  .faq-answer-wrap {
    padding: 0 0 1.6rem;
  }
  .faq-answer-inner {
    padding: 1rem 1.6rem 1rem 3.6rem;
  }
  .faq-answer-inner p {
    font-size: 1.4rem;
  }
}