.interview-title {
    text-align: center;
}

.faq-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0;
    background-color: #fff;
    box-sizing: border-box;
}

.faq-container {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    background-color: #D32F2F;
    border-radius: 10px;
    padding: 15px;
    flex-wrap: wrap;
}

.faq-title-container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 50px !important;
}

.faq-title {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.plus-icon {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.faq-name-box {
    margin-top: 10px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    position: relative;
}

.faq-label {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.faq-name {
    font-size: 14px;
    margin: 0;
    color: #000;
    margin-top: 5px;
}

.plus-icon {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.faq-contents-container {
    display: block;
    overflow: hidden;
    padding: 0 20px;
    max-height: 0;
    margin-bottom: 0px;
    margin-top: 0;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-contents-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
}

.faq-contents-message {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-line {
    width: 100%;
    height: 1px;
    background-color: #D32F2F;
    margin-top: 0px;
}

.toggle-icon {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}


/* スマートフォン表示時のスタイル */

@media (max-width: 600px) {
    .faq-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .faq-title-container {
        width: 100%;
        justify-content: space-between;
    }
}