/* =====================================================
   YOKUCHI Q&A LIST
   ===================================================== */

.yokuchi-qa-list {
    padding: 70px 0 96px;

    background: transparent;
}

.yokuchi-qa-list__container {
    width: min(calc(100% - 80px), var(--yokuchi-container-width, 1440px));

    margin: 0 auto;
}

.yokuchi-qa-list__header {
    margin-bottom: 44px;
}

.yokuchi-qa-list__title {
    margin: 0 0 24px !important;

    color: #181818;

    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: 28px !important;
    font-weight: 500 !important;

    line-height: 40px !important;
    letter-spacing: 8px !important;

    text-transform: uppercase !important;
}

.yokuchi-qa-list__line {
    display: block;

    width: 62px;
    height: 2px;

    background: #ec1d23;
}

.yokuchi-qa-section {
    margin-bottom: 42px;
    padding: 56px 60px 58px;

    background: #fff;
}

.yokuchi-qa-section__items {
    border-top: 1px solid #d8d8d8;
}

.yokuchi-qa-item {
    display: block;

    margin: 0;
    padding: 0;

    border-bottom: 1px solid #d8d8d8;

    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.yokuchi-qa-item::after {
    content: none !important;
    display: none !important;
}

.yokuchi-qa-item__trigger {
    width: 100%;
    min-height: 84px;

    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    background: transparent;
    border: 0;

    color: #333;

    cursor: pointer;

    font-family: inherit;
    text-align: left;
}

.yokuchi-qa-item__question {
    font-size: 18px;
    font-weight: 600;

    line-height: 1.35;
    letter-spacing: 0;

    text-transform: none;
}

.yokuchi-qa-item__icon {
    flex: 0 0 auto;

    color: #ec1d23;

    font-size: 28px;
    font-weight: 700;

    line-height: 1;
}

.yokuchi-qa-item__answer {
    max-width: 1180px;

    padding: 0 72px 30px 0;

    color: #6e6e6e;

    font-size: 16px;
    font-weight: 300;

    line-height: 24px;
    letter-spacing: 0;
}

.yokuchi-qa-item__answer p {
    margin: 0 0 12px;
}

.yokuchi-qa-item__answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .yokuchi-qa-list {
        padding: 58px 0 78px;
    }

    .yokuchi-qa-list__container {
        width: calc(100% - 48px);
    }

    .yokuchi-qa-section {
        padding: 44px 36px;
    }
}

@media (max-width: 900px) {
    .yokuchi-qa-section {
        padding: 42px 32px;
    }
}

@media (max-width: 600px) {
    .yokuchi-qa-list {
        padding: 44px 0 70px;
    }

    .yokuchi-qa-list__container {
        width: calc(100% - 32px);
    }

    .yokuchi-qa-section {
        margin-bottom: 32px;
        padding: 32px 18px;
    }

    .yokuchi-qa-list__title {
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 25px !important;
        letter-spacing: 4px !important;
    }

    .yokuchi-qa-item__trigger {
        min-height: 70px;
        padding-right: 0;
    }

    .yokuchi-qa-item__question {
        font-size: 15px;
    }

    .yokuchi-qa-item__answer {
        padding-right: 0;
    }

}