/* -------- FAQ -------- */.faq-wrap {
    background: #FAF6EF;
    border-radius: 20px;
    padding: 2.2rem 1.8rem 2rem;
    font-family: var(--font-sans);
    border: 1.5px solid #E8DDD0;
}

.faq-ttl {
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    color: #6B4A2A;
    line-height: 1.6;
    margin: 0 0 1.4rem;
    letter-spacing: 0.02em;
}

.faq-divider {
    width: 48px;
    height: 2px;
    background: #C9A882;
    border-radius: 2px;
    margin: 0 auto 1.6rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.faq-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E8DDD0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.faq-img-placeholder {
    width: 72px;
    flex-shrink: 0;
    background: #EDE4D8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #E8DDD0;
}

.faq-img-placeholder i {
    font-size: 22px;
    color: #C4A882;
}

.faq-card-body {
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F3EAE0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-check i {
    font-size: 13px;
    color: #A0745A;
}

.faq-card-text {
    font-size: 12.5px;
    color: #5C4030;
    line-height: 1.65;
    font-weight: 500;
    margin: 0;
}

/* モバイル対応（必要に応じて） */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* -------- 検索BOX -------- */.search-box {
    padding: 20px;
    margin: 10px 0;
    background: #ddd;
}

.search-box input[type=text] {
    width: 100%;
    border: 0;
    padding: 5px;
    margin: 10px 0;
    font-size: 16pt;
    border-radius: calc(var(--radius) - 2px);
}

.title_txt {
    color: #900;
    font-weight: 700;
}

.btn-kaitori {
    border: 0;
    padding: 10px 20px;
    margin: 10px 0;
    font-size: 14pt;
    border-radius: 10px;
    background-color: rgb(197, 103, 103);
    color: #fff;
}


/* -------- 強み -------- */section.strength * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section.strength {
    width: 100%;
    font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
    background: #eb8a8a;
    padding: 60px 40px;
    margin: 80px auto;
}

section.strength .kaitori_main_grid {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

section.strength .strength-title {
    text-align: center;
    font-size: 2.6em;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1a1a1a;
}

section.strength .strength-line {
    width: 4%;
    height: 3px;
    background: #d52b1e;
    margin: 16px auto;
}

section.strength .strength-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

section.strength .strength-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
}

section.strength .strength-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px 24px 24px;
    min-height: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

section.strength .strength-number {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1f1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

section.strength .strength-card h3 {
    font-size: 2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

section.strength .strength-card img {
    width: 100%;
    /*height: 200px;*/
    object-fit: contain;
    margin-top: auto;
}

section.strength .strength-subtxt {
    font-size: 1em;
}

section.strength .strength-subtxt a {
    color: #660000;
}

@media (max-width: 900px) {
    section.strength {
        padding: 40px 20px;
    }

    section.strength .strength-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    section.strength .strength-title {
        font-size: 48px;
    }

    section.strength .strength-number {
        position: absolute;
        top: 16px;
        left: 16px;
    }

    section.strength .strength-card {
        min-height: auto;
    }
}


/* -------- カテゴリ -------- */.category-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}


.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* -------- Q&A -------- */.qanda-wrap {
    width: 100%;
    padding: 0;
    margin: 40px auto;
}

.qanda-section-title {
    font-size: 1.4em !important;
    font-weight: 600;
    color: #555;
    text-align: center;
    margin: 0 0 1.25rem;
    letter-spacing: 0.05em;
}

.qanda-item {
    border: 2px solid #7a1a1a;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.qanda-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    user-select: none;
    transition: background 0.15s, color 0.15s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    background: #faf0f0;
    font-size: 1.2em;
    cursor: pointer;
}

.qanda-q:hover {
    background: #faf0f0;
}

.qanda-q[aria-expanded="true"] {
    background: #7a1a1a;
}

.qanda-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #7a1a1a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
    transition: background-color 0.15s;
}

.qanda-q[aria-expanded="true"] .qanda-num {
    background: rgba(255, 255, 255, 0.25);
}

.qanda-q-text {
    flex: 1;
    font-size: 1.4em;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    transition: color 0.15s;
}

.qanda-q[aria-expanded="true"] .qanda-q-text {
    color: #fff;
}

.qanda-q[aria-expanded="true"] .qanda-icon {
    transform: rotate(180deg);
    color: #fff;
}

.qanda-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #888;
    transition: transform 0.25s ease, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qanda-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qanda-a {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.qanda-a-inner {
    padding: 18px 20px;
    border-top: 1px solid #f4e8e8;
}

.qanda-a-label {
    font-size: 11px;
    font-weight: 700;
    color: #7a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.qanda-a-text p {
    font-size: 1.2em;
    color: #444;
    line-height: 1.8;
}

.qanda-a-note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    display: block;
}

@media (max-width: 600px) {
    .qanda-header h1 {
        font-size: 22px;
    }

    .qanda-q {
        padding: 14px 14px;
        gap: 10px;
    }

    .qanda-q-text {
        font-size: 14px;
    }

    .qanda-a-inner {
        padding: 14px;
    }
}



/* -------- 追従ボタン -------- */


.sticky-button-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(20px);
    z-index: 9999;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    pointer-events: none;
    width: max-content;
    max-width: 95vw;
}

.sticky-button-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.floating-btn {
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 280px;
}

.search-toggle-icon {
    display: none;
}

.search-bar-btn {
    width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.search-label {
    margin: 0 0 0 15px;
    padding: 0;
    font-size: 13px;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 1);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #fff;
    height: 60px;
    box-sizing: border-box;
}

.telephone-btn .btn-content {
    background-color: #e60012;
}

.mail-btn .btn-content {
    background-color: #333333;
}

.line-btn .btn-content {
    background-color: #06C755;
}

.search-bar-content {
    width: 100% !important;
    background-color: #fff;
    border: 2px solid #f00;
    height: 60px;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 15px;
}

.search-icon svg {
    width: 32px;
    height: 32px;
    color: #f00;
    display: block;
}

.search-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 10px 5px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    font-size: 14px;
    color: #aaa;
}

.search-submit-btn {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-icon {
    font-size: 22px;
    margin-left: 5px;
}

.line-icon,
.btn-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.btn-text {
    font-size: 11px;
    line-height: 1.3;
    text-align: left;
}

.btn-text strong {
    font-size: 15px;
    display: block;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .sticky-button-container {
        left: 0;
        right: 0;
        transform: translateY(20px);
        margin: 0 auto;
        width: auto;
        padding: 0 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        bottom: 10px;
    }

    .sticky-button-container.show {
        transform: translateY(0);
    }

    .line-btn {
        grid-column: 1 / 3;
        width: 100%;
        order: 1;
    }


    .telephone-btn {
        grid-column: auto;
        width: 100%;
        order: 2;
    }

    .mail-btn {
        grid-column: auto;
        width: 100%;
        order: 3;
    }

    .floating-btn {
        width: 100%;
    }

    .btn-content {
        padding: 8px 12px;
        height: 50px;
        border-radius: 8px;
    }

    .search-bar-btn {
        grid-column: 1 / 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        order: 0;
    }


    .search-label {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .search-toggle-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .close-icon {
        display: none;
    }

    .search-handle {
        transition: all 0.2s ease;
    }

    .search-bar-btn.active .search-toggle-icon {
        transform: rotate(90deg);
        background: #f4f4f4;
    }

    .search-bar-btn.active .search-handle {
        opacity: 0;
    }

    .search-bar-btn.active .close-icon {
        display: block;
        color: #e60012;
    }

    .search-content-wrapper {
        display: none;
        width: 100%;
        margin-top: 10px;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .search-bar-btn.active .search-content-wrapper {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .btn-text strong {
        font-size: 13px;
    }

    .btn-text {
        font-size: 10px;
    }

    .line-icon,
    .btn-icon {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .search-content-wrapper {
        display: block !important;
        width: 100%;
    }

    .search-bar-btn {
        width: 480px;
    }
}

@media (max-width: 375px) {
    .search-bar-content {
        padding: 5px 8px;
        height: 48px;
    }

    .search-input {
        font-size: 13px;
    }

    .search-input::placeholder {
        font-size: 11px;
    }

    .search-submit-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 60px;
    }

    .search-icon svg {
        width: 16px;
        height: 16px;
    }
}