/* ============================================================
   37. SEKCJA FAQ
   ============================================================ */
.rev-faq-section {
    padding: 0px 60px;
    width: 100%;
    box-sizing: border-box;
}
.rev-faq-inner {
    max-width: 1500px;
    margin: 0 auto;
}
.rev-faq-header {
    margin-bottom: 48px;
}
.rev-faq-badge {
    font-family: "Bahnschrift", sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    color: #1c1c1b;
    letter-spacing: 0.02em;
    line-height: 1.1;
    display: block;
    margin-bottom: 16px;
}
.rev-faq-title-line {
    width: 48px;
    height: 3px;
    background: #e30613;
}
.rev-faq-list {
    border-top: 1px solid #e0e0e0;
}
.rev-faq-item {
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}
.rev-faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #e30613;
    transition: width 0.3s ease;
    z-index: 0;
}
.rev-faq-item.is-open::before {
    width: 3px;
}
.rev-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 0 28px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    z-index: 1;
}
.rev-faq-q-text {
    font-family: "Bahnschrift", sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    color: #1c1c1b;
    line-height: 1.3;
    text-align: left;
    transition: color 0.2s;
    text-transform: none;
}
.rev-faq-item.is-open .rev-faq-q-text {
    color: #ffffff;
}
.rev-faq-icon {
    flex-shrink: 0;
	margin-right:10px;
    width: 32px;
    height: 32px;
    border: 1px solid #cacaca;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c1c1b;
    transition:
        background 0.25s,
        border-color 0.25s,
        color 0.25s;
}
.rev-faq-item.is-open .rev-faq-icon {
    background: #e30613;
    border-color: #e30613;
    color: #fff;
}
.rev-faq-icon svg .rev-faq-icon-v {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    transform-origin: center;
}
.rev-faq-item.is-open .rev-faq-icon svg .rev-faq-icon-v {
    transform: scaleY(0);
    opacity: 0;
}
.rev-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}
.rev-faq-item.is-open .rev-faq-answer {
    max-height: 600px;
}
.rev-faq-answer-inner {
    padding: 0 0 28px 24px;
    max-width: 960px;
}
.rev-faq-answer-inner p {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 16px !important;
    line-height: 2 !important;
    color: #555 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

