#content.faq-accordion {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    align-items: stretch !important;
    box-sizing: border-box;
    gap: 12px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 4px 0 20px 0;
}

.faq-item {
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--color-bg);
    border: 1px solid var(--color3);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
    border-color: var(--color1);
    box-shadow: 0 0 0 1px var(--color1) inset, 0 4px 8px rgba(0, 0, 0, 0.12);
}

.faq-question {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    margin: 0;
    background: transparent;
    border: none;
    appearance: none;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    background-color: var(--color-bg2);
}

.faq-question:focus-visible {
    outline: 2px solid var(--color1);
    outline-offset: -2px;
}

.faq-q-text::before {
    content: "Q. ";
    color: var(--color1);
    font-weight: bold;
}

.faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--color-text);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.2s ease;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 100%;
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.is-open .faq-icon::before {
    background-color: var(--color1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 18px 16px 18px;
    border-top: 1px solid var(--color3);
    color: var(--color-text);
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: left;
    white-space: pre-wrap;
}

.faq-answer-inner::before {
    content: "A. ";
    color: var(--color1);
    font-weight: bold;
}