@charset "utf-8";

.faq-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 100px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background-color: transparent;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
  text-align: left;
  outline: none;
}
.faq-question-text-wrapper {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  flex-grow: 1;
  background-color: #e7ecef;
}
.faq-q-text {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.faq-q-text::after {
  content: "Q.";
  order: -1;
  margin-top: -0.15em;
  margin-right: 0.5em;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.faq-icon-wrapper {
  width: 80px;
  min-height: 80px;
  background-color: #eef2f4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
  transform: translateY(-50%);
}
.faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #333333;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #eef2f4;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-a-text {
  position: relative;
  padding: 30px 80px 30px 80px;
  margin: 0;
  line-height: 1.8;
  text-align: justify;
  word-break: break-all;
}
.faq-a-text a {
  text-decoration: underline;
}
.faq-a-text::after {
  content: "A.";
  position: absolute;
  top: 30px;
  left: 30px;
  color: #a0afb4;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}