.faq-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(45, 41, 38, .94), rgba(145, 119, 82, .86));
    text-align: center;
}
.faq-hero h1 {
    margin: 0;
    font-size: 2.1rem;
    letter-spacing: .12em;
}
.faq-hero h1 span {
    display: block;
    margin-top: .55em;
    font-size: .42em;
    font-weight: normal;
    letter-spacing: .3em;
}
.faq-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
}
.faq-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 20px 90px;
    text-align: left;
    box-sizing: border-box;
}
.faq-page__intro {
    margin-bottom: 32px;
    text-align: center;
}
.faq-page__intro p {
    margin: 0;
    line-height: 1.9;
}
.faq-page__categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 56px;
}
.faq-page__categories a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 8px 14px;
    border: 1px solid #b7a472;
    color: #51483d;
    background: #fff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: color .2s ease, background-color .2s ease;
}
.faq-page__categories a:hover,
.faq-page__categories a:focus {
    color: #fff;
    background: #8d7757;
}
.faq-section {
    margin: 0 0 58px;
    scroll-margin-top: 30px;
}
.faq-section h2 {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 13px;
    border-bottom: 1px solid #d9d1c4;
    color: #3e3933;
    font-size: 1.55rem;
    text-align: left;
}
.faq-section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 88px;
    height: 3px;
    background: #9b805d;
}
.faq-list {
    border-top: 1px solid #ded8cf;
}
.faq-item {
    border-bottom: 1px solid #ded8cf;
    background: #fff;
}
.faq-item summary {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 74px;
    padding: 14px 54px 14px 18px;
    color: #2f2b27;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.7;
    cursor: pointer;
    list-style: none;
    box-sizing: border-box;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8d7757;
    font-size: 1.7rem;
    font-weight: 300;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: #8d7757;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
}
.faq-item__answer {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 22px 54px 26px 18px;
    background: #f7f5f1;
    line-height: 1.9;
}
.faq-item__answer .faq-item__mark {
    color: #8d7757;
    background: #fff;
    border: 1px solid #b7a472;
    box-sizing: border-box;
}
.faq-item__content > :first-child { margin-top: 3px; }
.faq-item__content > :last-child { margin-bottom: 0; }
.faq-item__content a { color: #795f3f; text-decoration: underline; overflow-wrap: anywhere; }
.faq-page__empty { padding: 50px 20px; background: #f7f5f1; text-align: center; }
@media screen and (max-width: 799px) {
    .faq-hero { min-height: 180px; }
    .faq-hero h1 { font-size: 1.55rem; }
    .faq-page { padding: 32px 4.5% 90px; }
    .faq-page__intro { margin-bottom: 24px; text-align: left; }
    .faq-page__categories { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 42px; }
    .faq-page__categories a { min-height: 48px; padding: 7px 8px; font-size: .85rem; }
    .faq-section { margin-bottom: 44px; }
    .faq-section h2 { font-size: 1.25rem; }
    .faq-item summary { grid-template-columns: 36px 1fr; gap: 8px; min-height: 66px; padding: 12px 40px 12px 10px; font-size: .95rem; }
    .faq-item summary::after { right: 12px; }
    .faq-item__mark { width: 32px; height: 32px; }
    .faq-item__answer { grid-template-columns: 36px 1fr; gap: 8px; padding: 18px 12px 22px 10px; font-size: .92rem; }
}
/* FAQキーワード検索 */
.faq-search {
    position: relative;
    z-index: 5;
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: left;
}
.faq-search > label {
    display: block;
    margin-bottom: 10px;
    color: #3e3933;
    font-weight: 600;
}
.faq-search__field {
    position: relative;
}
.faq-search__icon {
    position: absolute;
    left: 19px;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #8d7757;
    border-radius: 50%;
    transform: translateY(-58%);
    box-sizing: border-box;
    pointer-events: none;
}
.faq-search__icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    background: #8d7757;
    transform: rotate(45deg);
    transform-origin: left center;
}
.faq-search__input {
    width: 100%;
    height: 58px;
    padding: 0 54px 0 52px;
    border: 1px solid #b7a472;
    border-radius: 2px;
    color: #2f2b27;
    background: #fff;
    font: inherit;
    font-size: 1rem;
    box-shadow: 0 5px 18px rgba(62, 52, 42, .08);
    box-sizing: border-box;
}
.faq-search__input:focus {
    border-color: #795f3f;
    outline: 3px solid rgba(183, 164, 114, .25);
}
.faq-search__input::-webkit-search-cancel-button {
    display: none;
    -webkit-appearance: none;
    appearance: none;
}
.faq-search__input::-ms-clear { display: none; }
.faq-search__clear {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    color: #6b6259;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}
.faq-search__results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 390px;
    overflow-y: auto;
    border: 1px solid #d2c7b7;
    background: #fff;
    box-shadow: 0 12px 30px rgba(45, 38, 31, .17);
}
.faq-search__status {
    margin: 0;
    padding: 10px 16px;
    color: #6b6259;
    background: #f7f5f1;
    font-size: .82rem;
}
.faq-search__suggestions {
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq-search__suggestions li + li {
    border-top: 1px solid #ebe6de;
}
.faq-search__suggestion {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    color: #2f2b27;
    background: #fff;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.faq-search__suggestion:hover,
.faq-search__suggestion:focus {
    background: #f3efe8;
    outline: none;
}
.faq-search__suggestion-question {
    line-height: 1.55;
}
.faq-search__suggestion-category {
    color: #806b4f;
    font-size: .78rem;
    white-space: nowrap;
}
@media screen and (max-width: 799px) {
    .faq-search { margin-bottom: 28px; }
    .faq-search > label { font-size: .92rem; }
    .faq-search__input { height: 54px; padding-left: 48px; font-size: .92rem; }
    .faq-search__icon { left: 17px; }
    .faq-search__results { max-height: 330px; }
    .faq-search__suggestion { grid-template-columns: 1fr; gap: 5px; padding: 12px 14px; }
    .faq-search__suggestion-category { white-space: normal; }
}