/*******************************
page-header
 *******************************/

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .page-header__description {
        text-align: left !important;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .page-header__description {
        font-size: 1.8rem;
        text-align: center !important;
    }
}

/*******************************
 blend
 *******************************/
.blend {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 50px 0;
    border-top: 1px solid #ccc;
}

.blend__header {
    margin-bottom: 3rem;
    text-align: center;
}

.blend__title {
    font-weight: 600;
    font-size: clamp(2rem, 3vw, 4rem);
}

.blend__title::after {
    display: block;
    width: 35px;
    height: 6px;
    margin: 0 auto;
    margin-top: 2rem;
    border-radius: 2px;
    content: "";
}

.blend.-blend01 .blend__title::after {
    background-color: var(--c-wholesale);
}

.blend.-blend02 .blend__title::after {
    background-color: var(--c-oem);
}

.blend.-blend03 .blend__title::after {
    background-color: var(--c-blend);
}

.blend__item.-tea01 .blend__title::after {
    background-color: #3c7718;
}

.blend__item.-tea02 .blend__title::after {
    background-color: #4ba714
}

.blend__item.-tea03 .blend__title::after {
    background-color: #8e5a16;
}

.blend__body {
    display: flex;
    flex-direction: column;

    gap: 2rem;
}

.blend__text p {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
}

.blend__highlight {
    color: #b50000;
    font-weight: 600;
}

.blend__example {
    padding: 2rem;
    border: 1px solid #ccc;
}

.blend__example-title {
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: .5em;
    text-align: center;
}

.blend__example-list li {
    position: relative;
    margin-bottom: .8rem;
    padding-left: 1.5rem;
    font-size: 1.4rem;
}

.blend__example-list li::before {
    position: absolute;
    left: 0;
    content: "●";
}

.blend.-blend01 .blend__example-list li::before {
    color: var(--c-wholesale);
}

.blend.-blend02 .blend__example-list li::before {
    color: var(--c-oem);
}

.blend.-blend03 .blend__example-list li::before {
    color: var(--c-blend);
}

.blend__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 600px) {
    .blend__body {
        flex-direction: row;
        justify-content: space-between;
    }

    .blend__text {
        flex: 2;
    }

    .blend__example {
        flex: 1;
        max-width: 300px;
        margin-left: 3rem;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .blend {
        margin-top: 100px;
        padding: 70px 0;
    }

    .blend__header {
        margin-bottom: 5rem;
    }


    .blend__title::after {
        margin-top: 4rem;
    }

    .blend__text p {
        font-size: 1.7rem;
    }

    .blend__example-list li {
        padding-left: 2rem;
        font-size: 1.6rem;
    }

    .blend__items {
        display: flex;
        flex-direction: row;
        gap: 50px;
    }
}

/*******************************
 当社の強み
 *******************************/
/* /css/style.css  モバイルファースト */
:root {
    --bg: #f2f2f2;
    --ink: #222;
    --muted: #666;
    --accent: #0f7b4f;
    --white: #fff;
    --container: 1000px;
    --line: #e5e5e5;
    /* 見出し下の1pxライン */
}

/* section */
.strength {
    padding: 4rem 1.6rem 6rem;
    background: var(--bg);
}

.strength__inner {
    max-width: var(--container);

    margin-inline: auto;
}

.strength__head {
    position: relative;
    margin-bottom: 2.4rem;
    text-align: center;
}

.strength__title {
    font-weight: 700;
    font-size: clamp(2rem, 1.6rem + 1.2vw, 2.6rem);
    letter-spacing: .08em;
}

/* list & item */
.strength__list {
    display: grid;

    gap: 2.4rem;
}

.strength__item {
    display: grid;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
    background: var(--white);

    gap: 1.6rem;
}

/* ---- 見出し行（番号＋タイトルを横並び、下線1px） ---- */
.strength__headrow {
    display: flex;
    align-items: center;
    margin-bottom: .8rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid #000;

    gap: .8rem;
}

.strength__num {
    display: grid;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background: #939393;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;

    place-items: center;
}

.strength__item-title {
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.6;
}

.strength__text {
    padding: 1.6rem;
}

/* paragraph */
.strength__para {
    font-size: 1.4rem;
    line-height: 1.9;
    letter-spacing: .02em;
}

/* media */
.strength__media {
    width: 100%;
}

.strength__media img {
    display: block;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}

/* Tablet ≥600px */
@media screen and (min-width: 600px) {
    .strength {
        padding: 5rem 2rem 8rem;
    }

    .strength__list {
        gap: 3.2rem;
    }

    .strength__item {
        grid-template-columns: 1fr 1fr;
        gap: 2.4rem;
    }

    .strength__media {
        width: 100%;
        background: #000;
    }

    .strength__item-title {
        font-size: 2rem;
    }

    .strength__para {
        font-size: 1.5rem;
    }

    .strength__text {
        padding: 2.4rem;
    }
}

/* Desktop ≥960px */
@media screen and (min-width: 960px) {
    .strength__head {
        margin-bottom: 5rem;
    }

    .strength__headrow {
        margin-bottom: 2rem;
    }

    .strength__list {
        gap: 6rem;
    }

    .strength__item {
        grid-template-columns: 1fr 350px;
    }

    .strength__para {
        font-size: 1.7rem;
    }

    .strength__text {
        padding: 5rem 3rem 5rem 5rem;
    }

    .strength__item-title {
        font-size: 2.4rem;
        letter-spacing: .1em;
    }

    .strength__media img {}
}

/*******************************
 ご依頼の流れ
 *******************************/

/* /css/style.css */
/* 基本設定 */
:root {
    --c-text: #202326;
    --c-muted: #6b7280;
    --c-bg: #f5f7f8;
    --c-card: #f2f2f2;
    --c-line: #e2e8ee;
    --c-accent: #1f2937;
    --c-wholesale: #356767;
    /* 緑系 */
    --c-oem: #654367;
    /* 紫系 */
    --c-blend: #3b4e70;
    /* 青系 */
}



/* レイアウト */
.flow {
    max-width: 1000px;
    margin: 4rem auto 8rem;
    padding: 0 2rem;
}

.flow__title {
    padding: 1rem 0;
    border: 1px solid #000;
    font-weight: 700;
    font-size: clamp(2.0rem, 1.3rem + 2vw, 2.6rem);
    letter-spacing: .08em;
    text-align: center;
}

/* アイテムカード */
.flow__item {
    position: relative;
    margin-top: 6rem;
}

.flow__item:not(:last-child)::after {
    position: absolute;
    bottom: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 25px solid #939393;
    /* ▼ */
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    content: "";
}

.flow__card {
    padding: 2.0rem;
    background: var(--c-card);
}

/* グリッド（モバイル：タイトル→本文） */
.flow__grid {
    display: grid;

    grid-template-columns: 1fr;
    gap: 1.6rem;
}

/* 見出し部 */
.flow__head {
    display: flex;
    align-items: center;

    gap: 1.2rem;
}

.flow__no {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    background: #fff;
    color: var(--c-muted);
    font-size: 1.4rem;

    place-items: center;
}

.flow__step {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: .04em;
}

.flow__sub {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

/* 本文 */
.flow__text {
    padding: 1.6rem 0;
    font-size: 1.5rem;
    line-height: 1.9;
}



/* ケース詳細 */
.flow__caseDetail {
    display: grid;
    margin-top: 1.6rem;

    gap: 1.6rem;
}

.flow__detail {
    padding: 1.4rem 0;
}

.flow__detailTitle {
    margin-bottom: .4rem;
    margin-bottom: 10px;
    padding: .5rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

.flow__detailText {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.9;
}

.flow__detail.-detail01 .flow__detailTitle {
    background: var(--c-wholesale);
}

.flow__detail.-detail01 .flow__detailText {
    color: var(--c-wholesale);
}

.flow__detail.-detail02 .flow__detailTitle {
    background: var(--c-oem);
}

.flow__detail.-detail02 .flow__detailText {
    color: var(--c-oem);
}


.flow__detail.-detail03 .flow__detailTitle {
    background: var(--c-blend);
}

.flow__detail.-detail03 .flow__detailText {
    color: var(--c-blend);
}


/* --- Breakpoints --- */
@media screen and (min-width:600px) {
    .flow__grid {
        align-items: center;

        grid-template-columns: 280px 1fr;
        /* 左：番号＋見出し / 右：本文 */
        gap: 2.0rem;
    }

    .flow__head {
        justify-content: flex-start;
    }

    .flow__body {
        border-left: 1px solid #000;
    }

    .flow__text {
        padding: 1.8rem;
    }

    /* ケース詳細 */
    .flow__caseDetail {
        margin-top: 1.6rem;

        gap: 0;
    }

    .flow__detail {
        display: grid;
        align-items: center;
        padding: 0;

        grid-template-columns: 280px 1fr;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }

    .flow__detailTitle {
        margin-bottom: 0;
        margin-bottom: 0;
        padding: 1rem;
        font-size: 1.5rem;
    }

    .flow__detailText {
        padding: 1.8rem;
        line-height: 1.5;
    }
}

@media screen and (min-width:960px) {
    .flow {
        margin: 8rem auto 10rem;
    }

    .flow__title {
        font-size: 2.8rem;
    }

    .flow__no {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }

    .flow__step {
        font-size: 2.2rem;
    }

    .flow__grid {
        grid-template-columns: 300px 1fr;
    }

    .flow__item:not(:last-child)::after {
        bottom: -4.2rem;
    }

    .flow__text {
        padding-left: 3.6rem;
    }

    .flow__card {
        padding: 3rem;
    }

    /* ケース詳細 */
    .flow__caseDetail {
        margin-top: 5rem;
    }

    .flow__detail {
        align-items: center;
        padding: 1rem 0;

        grid-template-columns: 320px 1fr;
    }

    .flow__detailTitle {
        padding: 1.5rem 0;
        font-size: 1.8rem;
    }

    .flow__detailText {
        padding: 0 1.8rem;
    }
}