.p-request-info {
    background-color: #fffaf5; /* 画像のような薄いベージュ */
    padding: 40px 30px;
    margin-top: 60px; /* 前のコンテンツとの間隔 */
}

.p-request-info__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.p-request-info__content {
    flex: 1;
}

.p-request-info__label {
    color: #f3981d;
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.p-request-info__title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.p-request-info__line {
    width: 60px;
    height: 2px;
    background-color: #f3981d;
    margin-bottom: 25px;
}

.p-request-info__list {
    margin-bottom: 40px;
    padding-left: 0;
    list-style: none;
}

.p-request-info__list li {
    position: relative;
    padding-left: 1.5em;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.p-request-info__list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.p-request-info__image {
    flex: 0 0 50%;
		line-height: 0;
}

.p-request-info__image img {
    max-width: 100%;
    height: auto;
		object-fit: contain;
}

/* 資料請求パーツ内のCTAエリア */
.p-request-info__cta {
    margin-top: 30px;
    text-align: left; /* ボタンを左寄せにする */
}

.p-request-info__cta .c-button {
    display: inline-block; /* 幅を中身に合わせる */
    width: 80%;           /* 親の幅を無視してコンテンツ幅に */
    padding: 16px 48px;    /* 資料請求パーツ用に少しゆったりした余白 */
    text-align: center;
}

@media (max-width: 768px) {
    .p-request-info {
        padding: 40px 20px;
    }

    .p-request-info__inner {
        flex-direction: column;
        text-align: left;
        gap: 30px; /* 縦に並んだ時の画像との間隔 */
    }

    .p-request-info__content {
        width: 100%;
    }

    .p-request-info__title {
        font-size: 24px;

    }

    .p-request-info__list {
        display: inline-block;
        text-align: left;
        margin-bottom: 30px;
    }

    .p-request-info__image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;   /* 中央寄せ */
    }

    .p-request-info__cta {
        text-align: center; /* ボタンを中央に */
    }

    .p-request-info__cta .c-button {
        width: 100%;
        padding: 16px 0;
    }
}
