/***************************************
MV
****************************************/

.about-title {
    color: #B68C21;
}


/***************************************
concept
****************************************/
.concept__section {
    margin-bottom: 153px;
    display: flex;
    gap: 88px;
    margin-top: 120px;

    position: relative;
}

.concept_shape {
    position: absolute;
    bottom: -48px;
    right: 0;

    width: 18%;
}

.concept__image {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* 子要素を右寄せ */
}

.concept__image01 {
    width: 79%;
    min-width: 321px;
    margin-bottom: 46px;
    align-self: flex-start;
}

.concept__image02 {
    width: 56%;
    min-width: 250px;
}

.concept__title {
    font-weight: 500;
    margin-bottom: 60px;
    font-size: clamp(24px, 1.45vw, 32px);
}



.concept-text {
    font-weight: 500;
    line-height: 1.93;
    font-size: 16px;
}

.red__svg {
    margin-top: 48px;
}

@media screen and (max-width:768px) {

    .concept__section {
        flex-direction: column;
        gap: 40px;
        margin-top: 60px;
        margin-bottom: 100px;
        align-items: center;
        /* ← 全体中央 */
        text-align: center;
        margin-bottom: 57px;
    }

    .concept__image {
        width: 100%;
    }

    .concept__image01 {
        margin-bottom: 15px;
    }

    .concept__image01,
    .concept__image02 {
        max-width: 100%;
        /* ← スマホで画面からはみ出さないように */
        min-width: 0;
        /* ← PC の min-width を打ち消す */
    }


    .concept__title {
        margin-bottom: 20px;
        text-align: center;
    }

    .concept-textbox {
        width: 100%;
    }

    .concept-text {
        font-size: 15px;
        line-height: 1.9;
        text-align: center;
    }

    .concept_shape {
        position: absolute;
        bottom: -50px;
        right: 0;

        width: 25%;
    }

}

/***************************************
特徴
****************************************/
.feature {
    margin-bottom: 81px;
}

/* 特徴_タイトル */
.feature__title-outer {
    text-align: center;
}

.feature__title {
    font-weight: 400;
    line-height: 1.8;
    padding: 14px 54px;
    display: inline-block;
    border: solid 1px #B68C21;
    border-radius: 60px;
    margin-bottom: 54px;
    font-size: clamp(24px, 1.45vw, 32px);
}

.feature__title span {
    color: #B68C21;
}

.feature__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 30px;
    padding: 77px 72px 83px 79px;
    border-top: solid 1px #B68C21;
}

.feature__item:last-child {
    border-bottom: solid 1px #B68C21;
}



/* 特徴_項目タイトル */
.feature__item-title {
    font-weight: 400;
    margin-left: 97px;
    position: relative;
}

/* 特徴_項目タイトル_数字 */
.feature__item-title::before {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    height: 58px;
    border: solid 1px #B68C21;
    border-radius: 50%;
    color: #B68C21;
    font-size: 24px;
    background-color: #fff;

    position: absolute;
    left: -97px;
    top: 50%;
    transform: translateY(-50%);
}

.feature__item-title01::before {
    content: "01";
}

.feature__item-title02::before {
    content: "02";
}

.feature__item-title03::before {
    content: "03";
}

.feature__item-title04::before {
    content: "04";
}

.feature__item-title05::before {
    content: "05";
}

.feature__item-title06::before {
    content: "06";
}

.feature__item-title07::before {
    content: "07";
}

.feature__item-title h4 {
    line-height: 1.5;
    margin-bottom: 4px;
    font-size: clamp(16px, 1.8vw, 26px);
    font-weight: 400;
}


.feature__item-title p {
    line-height: 1.8;
    color: #B68C21;
    margin-bottom: 42px;
    font-size: clamp(13px, 0.72vw, 14px);
    font-weight: 400;
    margin-left: -9px;
}

.feature__item-text {
    font-size: clamp(14px, 1.04vw, 16px);
    font-weight: 400;
}

/* 特徴_画像 */
.feature__img {
    width: 29%;
    min-width: 321px;
}


/* 特徴_説明文 */
.feature__text {
    font-weight: 400;
    line-height: 1.8;
    width: 40.83vw;
    font-size: clamp(14px, 1.11vw, 18px);
}


@media screen and (max-width:768px) {
    .feature__item {
        padding: 36px 0px 52px;
        flex-direction: column;
        margin: 0 auto;
    }

    .feature__img {
        width: 90%;
        min-width: 321px;
    }

    .feature__text {
        width: 81%;
        margin-bottom: 50px;
    }

    .feature__item-title {
        margin-left: 0px;
        text-align: center;
    }

    .feature__item-title::before {
        left: 50%;
        top: -65px;
        transform: translateX(-50%);
    }

    .feature {
        margin-bottom: 57px;
    }

    br {
        display: none;
    }
}


/***************************************
メッセージ
****************************************/
.section_message {
    text-align: center;
}

.message {
    color: #B68C21;
    margin-bottom: 110px;
}

.message__innner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
}

.message__left-shape {
    position: absolute;

    left: -79px;
    bottom: -42px;
}

.orange__svg {
    margin-left: -95px;
    margin-bottom: 41px;
}

.message__right-shape {
    display: flex;

    position: absolute;
    top: -25px;
    right: -131px;
}

.blue__svg {
    margin-top: 111px;
    margin-right: -33px;
}

.message__image {
    width: 45%;
    min-width: 321px;
}


.message__container {
    text-align: left;
    line-height: 1.8;
}

.message__title {
    font-weight: 500;
    margin-bottom: 42px;
    font-size: clamp(20px, 1.65vw, 24px);
}


.message__text,
.message__name {
    font-weight: 400;
    font-size: clamp(14px, 1.38vw, 20px);
    line-height: 1.8;
}

.message__text {
    margin-bottom: 45px;
}



.message__name {
    text-align: right
}




@media screen and (max-width:768px) {
    .message__innner {
        flex-direction: column;
    }

    .message__image {
        width: 100%;
        min-width: 0;
    }

    .message {
        margin-bottom: 25px;
    }

    .message__title {
        margin: 20px auto 15px;
        text-align: center;
    }

    .message__container {
        line-height: 1.8;
        width: 90%;
    }

    .orange__svg,
    .pink__svg,
    .blue__svg,
    .yellow__svg {
        width: 65px;
        height: 65px;
    }


    .orange__svg {
        margin-left: -50px;
        margin-bottom: 0px;
    }

    .message__left-shape {
        left: 10px;
        bottom: -60px;

        br.sp-br {
            display: inline;
        }
    }

    .blue__svg {
        margin-top: 70px;
    }

    .message__right-shape {
        top: -25px;
        right: -50px;
    }
}

.border {
    width: 100%;
    height: 1px;
    background-color: #393836;
    /* 色 */
    margin: 127px 0 166px;
}