.faq_list {
    margin-bottom: 2rem;
}

.textInner .faq_list h2 {
    margin-bottom: 0.75rem;
}

.faq_list .itm {
    margin-bottom: 1rem;
}

.faq_list .itm.hid {
    display: none;
}

.faq_list .itm>h3, .textInner .faq_list .itm>h3 {
    position: relative;
    padding: 1rem;
    padding-right: 4.25rem;
    font-size: 1.125rem;
    background: #f3f3f3;
    transition: background 200ms;
    cursor: pointer;
    color: #333 !important;
    margin: 0;
    line-height: 1.3;
}

.faq_list .itm>h3:hover, .textInner .faq_list .itm>h3:hover, .faq_list .itm.on>h3, .textInner .faq_list .itm.on>h3 {
    background: #ededed;
}

.faq_list .itm>h3::after, .textInner .faq_list .itm>h3::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 27px;
    height: 27px;
    background: #0964a5 url("/images/arr.svg") center center no-repeat;
    background-size: 12px 12px;
    transform: translateY(-50%) rotate(0deg);
}

.faq_list .itm.on>h3::after, .textInner .faq_list .itm.on>h3::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq_list .txt p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    padding: 0;
}

.faq_list .txt p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq_list .txt {
    display: none;
    background: #f7f7f7;
    padding: 1rem;
}

.faq_list .itm.on .txt {
    display: block;
}

.faq_list .more_faq {
    padding: 5px 15px;
    border: 2px solid #0964a5;
    background: none;
    transition: background 200ms;
    color: #0964a5;
    cursor: pointer;
    font-size: 15px;
}

.faq_list .more_faq:hover {
    background: #0964a5;
    color: #fff;
}

.faq_filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.faq_filter button {
    padding: 5px 15px;
    border: 2px solid #0964a5;
    background: none;
    transition: background 200ms;
    color: #0964a5;
    cursor: pointer;
    font-size: 15px;
}

.faq_filter button:hover {
    background: #f3f3f3;
}

.faq_filter button.on {
    background: #0964a5;
    color: #fff;
}