@charset "UTF-8";

/*
    <!-- =============================================================== -->
    <!-- ページ全体 -->
    <!-- =============================================================== -->
*/

.c-block {
    strong {
        color: #ff8800;
    }

    h2 {
        font-size: 1.875rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 1em;
    }

    h3{
        font-size: 1.5rem;
        font-weight: bold;
    }
    .highlight {
        font-size: 1.25rem;
        font-weight: bold;
    }

    img {
        width: 100%;
    }

    .c-block__inner.-pbottom_0{
        padding-bottom: 0;
    }
    div {
        box-sizing: border-box;
    }
}

@media (max-width: 48em) {
    .c-block {
        padding-top: 1.5em;
        h2 {
            font-size: 1.4rem;
            text-align: left;
            padding-bottom: 0.5em;
        }

        h3,
        .highlight {
            font-size: 1.25rem;
        }
    }
}

/*
    <!-- =============================================================== -->
    <!-- メインコピー -->
    <!-- =============================================================== -->
*/
.c-block.main-copy {
    background-color: #fff4e8;
    width: 100%;

    .c-block__content {
        max-width: 1200px;
        margin: 0 auto;
    }

    h2 {
        text-align: center;
    }

    p {
        margin-top: 2em;
        line-height: 1.8;
        text-align: center;
    }
}

/*
    <!-- =============================================================== -->
    <!-- ULSSAS AD とは -->
    <!-- =============================================================== -->
*/
.c-block.about-ulssas-ad {

    .about-ulssas-ad__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .sentence {
        h2 {
            line-height: 1.3;
        }

        p {
            margin-top: 1.4em;
            line-height: 1.9;
        }
    }

    .about-ulssas-ad__chart {
        margin: 2.5em 0 0;

        img {
            width: 100%;
            max-width: 430px;
            height: auto;
            display: block;
            margin: 0 auto;
        }
    }

    .cycle {
        background: #fff;
        border: 2px dashed;
        border-color: #d8d8d8;
        border-radius: 18px;
        padding: 1.5em;
    }

    .cycle h3 {
        margin-bottom: 1.2em;
        text-align: center;
        line-height: 1.4;
        font-weight: bold;
    }

    .cycle dl {
        margin: 0;
    }

    .cycle dt {
        position: relative;
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 1.2em;
        font-weight: bold;
        line-height: 1.6;

        &::before {
            content: "";
            width: 2em;
            height: 2em;
            border-radius: 50%;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            line-height: 1;
        }
    }

    .cycle dt:first-of-type {
        margin-top: 0;
    }

    .cycle dd {
        margin: 0.2em 0 0 3em;
        line-height: 1.9;
    }

    .cycle .ulssas-u::before {
        content: "U";
        background: #f26a00;
    }

    .cycle .ulssas-l::before {
        content: "L";
        background: #ff8400;
    }

    .cycle .ulssas-s::before {
        content: "S";
        background: #f59a00;
    }

    .cycle .ulssas-s2::before {
        content: "S";
        background: #e8b700;
    }

    .cycle .ulssas-a::before {
        content: "A";
        background: #e7bc00;
    }

    .cycle .ulssas-spread::before {
        content: "S";
        background: #f59a00;
    }

    @media (max-width: 48em) {
        .about-ulssas-ad__content {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .sentence {
            h2 {
            }

            p {
                line-height: 1.8;
            }
        }

        .about-ulssas-ad__chart {
            margin-top: 2em;

            img {
                max-width: 320px;
            }
        }

        .cycle {
            margin-top: 1.5em;
            padding: 1.5em;
            border-radius: 16px;
        }

        .cycle h3 {
        }

        .cycle dt {
            gap: 12px;
            margin-top: 0.6em;

            &::before {
                width: 36px;
                height: 36px;
            }
        }

        .cycle dd {
            margin-left: 48px;
            line-height: 1.8;
        }
    }
}

/*
    <!-- =============================================================== -->
    <!-- 特徴 -->
    <!-- =============================================================== -->
*/
.c-block.features {

    .c-block__inner {
        max-width: 1280px;
        margin: 0 auto;
    }

    h2 {
    }

    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5em;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features-item {
        display: flex;
        align-items: center;
        gap: 1em;

        background: #fff;
        border: 2px solid;
        border-color: #d8d8d8;
        border-radius: 20px;
        padding: 1.5em;
        min-height: 200px;
        box-sizing: border-box;

        figure {
            margin: 0;
            flex-shrink: 0;
        }

        img {
            width: 160px;
            height: auto;
            display: block;
        }

        p {
            margin: 0;
            font-size: clamp(1rem, 1.7vw, 1.5rem);
            line-height: 1.8;
            font-weight: bold;
        }
    }

    /* SP */
    @media (max-width: 48em) {
        .features-list {
            grid-template-columns: 1fr;
            gap: 1em;
        }

        .features-item {
            flex-direction: row;
            text-align: left;
            padding: 1em;
            gap: 1em;
            min-height: unset;

            figure{
                flex:1;
            }

            img {
                width: 100%;
            }

            p {
                font-size: 1rem;
                font-weight: normal;
                line-height: 1.5;
                flex: 2;
            }
        }
    }
}

/*
    <!-- =============================================================== -->
    <!-- 比較 -->
    <!-- =============================================================== -->
*/

.c-block.comparison {

    .c-block__inner {
        max-width: 1280px;
        margin: 0 auto;
    }

    h2 {
    }

    .comparison-table {
        position: relative;
    }

    .comparison-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .comparison-row+.comparison-row {
        margin-top: 46px;
    }

    .comparison-cell {
        position: relative;
        border-radius: 0;
        padding: 32px 26px;
        font-size: 1.125rem;
        font-weight: bold;
        line-height: 1.7;
        word-break: break-word;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .comparison-row.-before .comparison-cell {
        background-color: #ebebeb;
    }

    .comparison-row.-after .comparison-cell {
        background-color: #FDE6CC;
    }

    .comparison-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        figure {
            margin: 0 0 14px;
        }

        img {
            width: 72px;
            height: 72px;
            display: block;
        }

        span {
            display: block;
        }
    }

    /* 上段から下段への三角 */
    .comparison-row.-before .comparison-cell::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -32px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 16px solid #d9d9d9;
    }

    .comparison-row.-before .comparison-cell:first-child {
        border-radius: 20px 0 0 0;
    }

    .comparison-row.-before .comparison-cell:last-child {
        border-radius: 0 20px 0 0;
    }

    .comparison-row.-after .comparison-cell:first-child {
        border-radius: 0 0 0 20px;
    }

    .comparison-row.-after .comparison-cell:last-child {
        border-radius: 0 0 20px 0;
    }

    .comparison-conclusion {
        position: relative;
        margin-top: 56px;
        text-align: center;
        font-weight: bold;
        line-height: 1.7;
    }

    .comparison-conclusion::before {
        content: "";
        position: absolute;
        top: -36px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-top: 22px solid #d9d9d9;
    }

    @media (max-width: 48em) {
        h2 {
            margin-bottom: 1.2em;
        }

        .comparison-row {
            grid-template-columns: 1fr;
            gap: 0px;
        }

        .comparison-row+.comparison-row {
            margin-top: 1.5em;
        }

        .comparison-cell {
            min-height: auto;
            padding: 20px 18px;
            padding: 1em 1.5em 0em;
            font-size: 1rem;
            font-weight: normal;
            border-radius: 0px;
        }

        .comparison-row.-before .comparison-cell:first-child {
            border-radius: 20px 20px 0 0;
            padding-top: 1.5em;
        }

        .comparison-row.-before .comparison-cell:last-child {
            border-radius: 0 0 20px 20px;
            padding-bottom: 1.5em;
        }

        .comparison-row.-after .comparison-cell:first-child {
            border-radius: 20px 20px 0 0;
            padding-top: 1.5em;
        }

        .comparison-row.-after .comparison-cell:last-child {
            border-radius: 0 0 20px 20px;
            padding-bottom: 1.5em;
        }

        .comparison-label {
            figure {
                margin-bottom: 10px;
            }

            img {
                width: 56px;
                height: 56px;
            }
        }

        /* スマホでは各行の下に三角を出さない */
        .comparison-row.-before .comparison-cell::after {
            display: none;
        }

        .comparison-conclusion {
            margin-top: 40px;
            font-size: 1.25rem;
        }

        .comparison-conclusion::before {
            top: -28px;
            border-left: 22px solid transparent;
            border-right: 22px solid transparent;
            border-top: 18px solid #d9d9d9;
        }
    }
}

/*
    <!-- =============================================================== -->
    <!-- アイキャッチ -->
    <!-- =============================================================== -->
*/

.c-block.eyecatch {
    text-align: center;

    .c-block__inner {
        padding-bottom: 22px;
    }

    .eyecatch-title {
        position: relative;
        display: inline-block;
        background: #fff;
        border: 2px solid #ccc;
        border-radius: 16px;
        padding: 1em 1em;
        font-size: 1.875rem;
        font-weight: bold;

        &::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -22px;
            transform: translateX(-50%);
            border-width: 20px 12px 0 12px;
            border-style: solid;
            border-color: #ccc transparent transparent transparent;
        }

        &::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -19px;
            transform: translateX(-50%);
            border-width: 20px 12px 0 12px;
            border-style: solid;
            border-color: #fff transparent transparent transparent;
        }
    }
    @media (max-width: 48em) {
        .eyecatch-title {
            font-size: 1.4rem;

        }        
    }
}

/*
    <!-- =============================================================== -->
    <!-- 想起の循環 -->
    <!-- =============================================================== -->
*/

.c-block.recall-cycle {

    h2 {
    }

    .recall-cycle-lead {
        line-height: 1.9;
        margin-bottom: 2.5em;
    }

    .recall-cycle-flow {
        position: relative;
        background: #FEF3EB;
        border-radius: 24px;
        padding: 1.5em;
    }

    .recall-cycle-flow__title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 1.2em;
        font-weight: bold;
        line-height: 1.4;

        img {
            width: auto;
            height: 1em;
            display: block;
        }
    }

    .recall-cycle-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2em;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .recall-cycle-list li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: #fff;
        border-radius: 20px;
        padding: 1.5em;
    }

    /* ボックス間の三角 */
    .recall-cycle-list li:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -1.5em;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 14px solid #d9d9d9;
    }

    .recall-cycle-conclusion {
        position: relative;
        margin-top: 48px;
        text-align: center;
        font-weight: bold;
        line-height: 1.7;
    }

    /* 下向き三角 */
    .recall-cycle-conclusion::before {
        content: "";
        position: absolute;
        top: -28px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 28px solid transparent;
        border-right: 28px solid transparent;
        border-top: 22px solid #d9d9d9;
    }

    .recall-cycle-conclusion strong {
        color: #ff8800;
    }

    @media (max-width: 48em) {
        .recall-cycle-lead {
            margin-bottom: 2em;
        }

        .recall-cycle-flow {
            padding: 24px 16px 20px;
            border-radius: 20px;
        }

        .recall-cycle-flow__title {
            font-size: 1.5rem;

            img {
                width: 30px;
            }
        }

        .recall-cycle-list {
            grid-template-columns: 1fr;
            gap: 2em;
        }

        .recall-cycle-list li {
            min-height: auto;
            font-size: 1.25rem;
            padding: 18px 14px;
        }

        /* スマホでは矢印を下向きに */
        .recall-cycle-list li:not(:last-child)::after {
            top: auto;
            right: auto;
            left: 50%;
            bottom: -1.1em;
            transform: translateX(-50%);
            border-top: 12px solid #d9d9d9;
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            border-bottom: 0;
        }

        .recall-cycle-conclusion {
            margin-top: 40px;
            font-size: 1.25rem;
        }

        .recall-cycle-conclusion::before {
            top: -24px;
            border-left: 22px solid transparent;
            border-right: 22px solid transparent;
            border-top: 18px solid #d9d9d9;
        }
    }
}

/*
    <!-- =============================================================== -->
    <!-- レコメンドメディア -->
    <!-- =============================================================== -->
*/

.c-block.recommend-media {


    >.c-block__inner>p {
        line-height: 1.9;
        margin-bottom: 2.5em;
    }

    h3 {
        line-height: 1.4;
        margin-bottom: 0.75em;
    }

    ul {
        list-style: disc;
        padding-left: 1.4em;
        margin: 0;
    }

    li {
        list-style: disc;
        line-height: 1.9;
        margin-top: 0.75em;
    }

    .recommend-media-card {
        display: flex;
        grid-template-columns: 140px 1fr;
        gap: 24px;
        align-items: center;
        border-radius: 24px;
        padding: 28px 32px;
    }

    .recommend-media-card+.recommend-media-card {
        margin-top: 28px;
    }

    .recommend-media-card.-social {
        background-color: #ebebeb;
    }

    .recommend-media-card.-recommend {
        background-color: #FDDE9A;
    }

    .recommend-media-card__icon {
        width: 140px;
        height: 140px;
        border-radius: 16px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .recommend-media-card__icon img {
        width: 100%;
        max-width: 120px;
        height: auto;
        display: block;
    }

    .recommend-media-card__body {
        min-width: 0;
        flex: 2;
    }

    @media (max-width: 48em) {
        >.c-block__inner>p {
            margin-bottom: 2em;
        }

        .recommend-media-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 24px 20px;
        }

        .recommend-media-card__icon {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin: 0 auto;
        }
    }
}

/*
    <!-- =============================================================== -->
    <!-- 再現 -->
    <!-- =============================================================== -->
*/

.c-block.reproduction {
    p.highlight {
        margin-top: 2em;
        text-align: center;
        font-weight: bold;
    }

    ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        position: relative;
        padding: 0;
        list-style: none;
        margin-top: 30px;
        margin-bottom: 30px;

        li {
            display: flex;
            align-items: center;
            gap: 16px;

            background: #eee;
            border-radius: 16px;
            padding: 20px;

            figure {
                margin: 0;
                background: #fff;
                border-radius: 12px;
                padding: 12px;
                flex-shrink: 0;
            }

            img {
                width: 100%;
                height: auto;
            }

            span {
                flex: 1.5;
                font-size: 1.5rem;
                font-weight: bold;
                line-height: 1.6;
            }
        }

        li:first-of-type {
            border-radius: 16px 0 0 16px;
        }

        li:nth-of-type(2) {
            border-radius: 0 16px 16px 0;
        }

        /* 三角 */
        &::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -38px;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 28px solid transparent;
            border-right: 28px solid transparent;
            border-top: 20px solid #d9d9d9;
        }
    }

    /* レスポンシブ */
    @media (max-width: 48em) {
        ul {
            grid-template-columns: 1fr;

            &::after {}

            li:first-of-type {
                border-radius: 16px 16px 0 0;
            }

            li:nth-of-type(2) {
                border-radius: 0 0 16px 16px;
            }
            li {
                
                figure{
                    flex: 1;
                }
                span{
                    flex: 2;
                    font-size: 1.25rem;
                    line-height: 1.4;
                }
            }
        }

    }
}

/*
    <!-- =============================================================== -->
    <!-- 理由 -->
    <!-- =============================================================== -->
*/

.c-block.reason {

    /* リスト全体 */
    .reason-list {
        counter-reset: reason-number;
        list-style: none;
        padding: 0;
        margin-top: 2em;

        /* 各項目 */
        li {
            counter-increment: reason-number;
            display: flex;
            align-items: flex-start;
            gap: 0.5em;
            margin-bottom: 0.6em;
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 1.6;

            span {
                display: block;
                flex: 1;
            }

            /* 丸数字 */
            &::before {
                content: counter(reason-number);
                margin-right: 0.15em;
                width: 1.5em;
                height: 1.5em;
                border-radius: 50%;
                background: #f97316;
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

            /* 強調テキスト */
            strong {
                color: #f97316;
            }
        }
    }

    @media (max-width: 48em) {
        .reason-list li {
            font-size: 1.25rem;
            line-height: 1.4;
        }
    }
}

/*
    <!-- =============================================================== -->
    <!-- 事例 -->
    <!-- =============================================================== -->
*/
div.p-board-1-container {
}