@charset "utf-8";

.company_p_b {
    color: #0067b3;
    font-weight: bold;
    margin-bottom: 3px;
}

:root {
    --faq_border: #E6EEF0;
    --faq_q_color: #00A7C5;
    --faq_a_color: #FF9900;
    --faq_text: #333;
}

.faq {
    background: #fff;
}

.sr_only {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

.faq_list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    /* 左右の縦線は不要（border無し） */
}

.faq_item {
    border-top: 1px solid var(--faq_border);
    background: #fff;
}

.faq_item:first-child {
    border-top: none;
}

.faq_q {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 100%;
    padding: 18px 16px;
    background: #fff;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.faq_q:focus-visible {
    outline: 3px solid #00c2ff;
    outline-offset: 2px;
}

.faq_q_label {
    color: var(--faq_q_color);
    font-weight: 700;
    font-size: 1.7rem;
}

.faq_q_text {
    flex: 1 1 auto;
    color: var(--faq_text);
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: .02em;
}

.faq_a_text ul li,
.faq_a_text ol li {
    font-size: 15px !important;
}

.faq_caret {
    margin-left: auto;
    width: 12px;
    height: 12px;
    position: relative;
    transform: rotate(-90deg);
    transition: transform .2s ease;
}

.faq_caret::before {
    content: "";
    position: absolute;
    inset: 0;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(-45deg);
}

.faq_q[aria-expanded="true"] .faq_caret {
    transform: rotate(90deg);
}

.faq_a {
    display: flex;
    align-items: flex-start;
    grid-template-columns: 30px 1fr;
    gap: 35px;
    padding: 0 16px 18px;
}

.faq_a[hidden] {
    display: none;
}

.faq_a_label {
    color: var(--faq_a_color);
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.8;
}

.faq_a_text {
    line-height: 1.9;
    color: #333;
    font-size: clamp(.95rem, 2.1vw, 1rem);
}

@media (min-width: 992px) {
    .faq_q {
        padding: 20px 22px;
    }

    .faq_a {
        padding: 0 22px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq_caret {
        transition: none;
    }
}


/* sp css */

.smartphone .faq_item p button {
    width: 100%;
}

.smartphone li.faq_item {
    list-style: none;
    margin: 0 !important;
}

.smartphone .faq_a_text ul {
    list-style-type: disc;
}

.smartphone .faq_a_text ul, .smartphone .faq_a_text ol {
    margin: 0 !important;
}

.smartphone .faq_a_text ul li, .smartphone .faq_a_text ol li {
    margin: 0 !important;
}

.smartphone .faq_q {
    gap: 10px;
}

.smartphone .faq_a {
    gap: 10px;
}

.smartphone .faq_q_text {
    display: block;
    width: 80%;
    font-size: 14px;
}

.smartphone .faq_a_text {
    font-size: 14px;
}

.smartphone .faq_q_label {
    font-size: 1.3rem;
}

.smartphone .faq_a_label {
    font-size: 1.3rem;
}

.smartphone .faq_caret {
    width: 7px;
    height: 7px;
}

