.c-inner p {
    margin-bottom: 1.5em;
}

.c-inner p a {
    color: #007bff;
    text-decoration: underline !important;
    text-decoration: none;
}

.bold {
    font-weight: bold;
}

.flex-box {
    display: flex;
    gap: 30px;
}

.flex-box dt {
    margin: 1em 0;
    color: #527F32;
    font-size: 2rem;
}

.flex-box dd {
    margin: 1em 0 2em 0;
    color: #000;
}

.flex-box__item {
    flex: 1;
    padding: 0;
}

/* FAQセクション */
.faq-section {
    padding: 0;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    background: #DFE5BE;
    padding: 15px 20px;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    position: relative;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question::before {
    content: "Q";
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF9800;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 2rem;
    flex-shrink: 0;
}

.faq-answer {
    padding: 20px;
    font-size: 1em;
    line-height: 1.7;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 5px;
}

.faq-answer::before {
    content: "A";
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e04f54;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer p {
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .flex-box {
        display: block;
    }

    .flex-box__item {
        display: block;
        margin-bottom: 3em;
    }

    .flex-box__item img {
        width: 100%;
    }
}