@charset "UTF-8";

.faq-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: #f1faf8;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  display: none; /* 装飾ブロブ無効化（背景を単色で統一）*/
  z-index: 0;
}
.faq-section .inner {
  position: relative;
  z-index: 1;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e8e8e8;
}
.faq-item:first-child {
  border-top: 2px solid #4DB6AC;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-q:hover {
  background: #fafafa;
}
.faq-q p {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4DB6AC;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-icon-a {
  background: #F5A623;
}
.faq-toggle {
  flex-shrink: 0;
  color: #4DB6AC;
  font-size: 1.4rem;
}
.faq-a {
  display: none;
  padding: 0 8px 24px;
}
.faq-a > span {
  float: left;
  margin-right: 16px;
}
.faq-a div {
  overflow: hidden;
}
.faq-a p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  padding-top: 6px;
}
