        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
        
body {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

:root {
    --faq-space-answer-offset: 1.4rem;
}

.faq-main {
    flex-grow: 1;
    background-color: #f8fafc;
    padding: 3rem 0;
}

.faq-main-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-main-content > section {
    padding-bottom: 0.25rem;
}

.faq-main-content > section + section {
    padding-top: 1.25rem;
    border-top: 1px solid #dbe3ee;
}

.faq-main-content > section > .ir-section-title {
    margin-bottom: 1rem !important;
}

.faq-panel {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 1rem;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

@media (min-width: 768px) {
    .faq-panel {
        margin-left: 1.25rem;
    }
}

.faq-item {
    padding: 1.125rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.faq-question {
    margin: 0;
    color: #1e293b;
    font-size: 1.0625rem;
    line-height: 1.65;
    font-weight: 700;
}

.faq-answer,
.faq-answer-stack {
    margin-left: var(--faq-space-answer-offset);
    margin-top: 0.375rem;
    color: #475569;
    line-height: 1.75;
}

.faq-answer-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-contact-box {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
}

.faq-contact-title {
    margin: 0 0 0.25rem;
    color: #334155;
    font-weight: 700;
}

.faq-contact-note {
    font-size: 0.75rem;
    color: #64748b;
}

.faq-inline-link {
    color: #2563eb;
}

.faq-inline-link:hover {
    text-decoration: underline;
}

        /* Stock Ticker Colors */
        .text-green-custom { color: #16a34a; }
        .text-red-custom { color: #dc2626; }
    

.faq-q-prefix { color: #2563eb; }

